Upgrade to ExtJS 4.0.0 - Released 04/26/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
9         .#{$prefix}boundlist-item {
10         padding: $boundlist-item-padding;
11     
12         @include no-select;
13     
14         cursor: pointer;
15         cursor: hand;
16         position: relative; /*allow hover in IE on empty items*/
17
18         border-width: $boundlist-item-border-width;
19         border-style: $boundlist-item-border-style;
20         border-color: $boundlist-item-border-color;
21     }
22   
23     .#{$prefix}boundlist-selected {
24         background: $boundlist-item-selected-background-color;
25                 border-color: $boundlist-item-selected-border-color;
26     }
27
28         .#{$prefix}boundlist-item-over {
29                 background: $boundlist-item-over-background-color;
30                 border-color: $boundlist-item-over-border-color;
31     }
32   
33     .#{$prefix}boundlist-floating {
34                 border-top-width: 0;
35     }
36   
37     .#{$prefix}boundlist-above {
38                 border-top-width: 1px;
39                 border-bottom-width: 1px;
40     }
41 }