partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

_boundlist.scss (1588B)


      1 /**
      2  * Creates the base structure of a BoundList.
      3  * @member Ext.view.BoundList
      4  */
      5 @mixin extjs-boundlist {
      6     .#{$prefix}boundlist {
      7         border-width: $boundlist-border-width;
      8         border-style: $boundlist-border-style;
      9         border-color: $boundlist-border-color;
     10         background: $boundlist-background-color;
     11 
     12         .#{$prefix}toolbar {
     13             border-width: 1px 0 0 0;
     14         }
     15     }
     16 
     17     // IE6/7 have issues with lists in strict mode
     18     @if $include-ie {
     19         .#{$prefix}strict {
     20             .#{$prefix}ie6,
     21             .#{$prefix}ie7 {
     22                 .#{$prefix}boundlist-list-ct {
     23                     position: relative;
     24                 }
     25             }
     26         }
     27     }
     28 
     29     .#{$prefix}boundlist-item {
     30         padding: $boundlist-item-padding;
     31 
     32         @include no-select;
     33 
     34         cursor: pointer;
     35         cursor: hand;
     36         position: relative; /*allow hover in IE on empty items*/
     37 
     38         border-width: $boundlist-item-border-width;
     39         border-style: $boundlist-item-border-style;
     40         border-color: $boundlist-item-border-color;
     41     }
     42 
     43     .#{$prefix}boundlist-selected {
     44         background: $boundlist-item-selected-background-color;
     45         border-color: $boundlist-item-selected-border-color;
     46     }
     47 
     48     .#{$prefix}boundlist-item-over {
     49         background: $boundlist-item-over-background-color;
     50         border-color: $boundlist-item-over-border-color;
     51     }
     52 
     53     .#{$prefix}boundlist-floating {
     54         border-top-width: 0;
     55     }
     56 
     57     .#{$prefix}boundlist-above {
     58         border-top-width: 1px;
     59         border-bottom-width: 1px;
     60     }
     61 }