Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / resources / themes / stylesheets / ext4 / default / widgets / _boundlist.scss
1 @mixin extjs-boundlist {
2     .#{$prefix}boundlist {
3         border-width: $boundlist-border-width;
4         border-style: $boundlist-border-style;
5         border-color: $boundlist-border-color;
6         background: $boundlist-background-color;
7
8         .#{$prefix}toolbar {
9             border-width: 1px 0 0 0;
10         }
11     }
12
13     .#{$prefix}boundlist-item {
14         padding: $boundlist-item-padding;
15
16         @include no-select;
17
18         cursor: pointer;
19         cursor: hand;
20         position: relative; /*allow hover in IE on empty items*/
21
22         border-width: $boundlist-item-border-width;
23         border-style: $boundlist-item-border-style;
24         border-color: $boundlist-item-border-color;
25     }
26
27     .#{$prefix}boundlist-selected {
28         background: $boundlist-item-selected-background-color;
29         border-color: $boundlist-item-selected-border-color;
30     }
31
32     .#{$prefix}boundlist-item-over {
33         background: $boundlist-item-over-background-color;
34         border-color: $boundlist-item-over-border-color;
35     }
36
37     .#{$prefix}boundlist-floating {
38         border-top-width: 0;
39     }
40
41     .#{$prefix}boundlist-above {
42         border-top-width: 1px;
43         border-bottom-width: 1px;
44     }
45 }