UNPKG

1.41 kBtext/stylusView Raw
1/**
2 * Checklist filters default style
3 */
4
5@import 'config'
6
7$item-bg-color = #335EA8
8$item-font-color = #fff
9
10// div containing checklist
11.div_checklist
12 width 100%
13 height 90px
14 line-height 30px
15 border 1px solid $filter-border-color
16 overflow auto
17 text-align left
18 background-color $filter-bg-color
19 color $filter-font-color
20
21 ul.flt_checklist
22 padding 0 !important
23 margin 0 !important
24 list-style none !important
25
26 // checklist item
27 li.flt_checklist_item
28 padding 1px !important
29 margin 0 !important
30 font-size inherit
31 border-bottom 1px solid $filter-border-color !important
32
33 &:hover
34 background-color $item-bg-color !important
35 color $item-font-color !important
36
37 label
38 display block !important
39 font-weight inherit !important
40
41 input
42 vertical-align middle !important
43 margin 2px 5px 3px 1px !important
44
45// disabled checklist item
46.flt_checklist_item_disabled
47 background-color #E5E5E5
48
49// selected checklist item
50.flt_checklist_slc_item
51 background-color $item-bg-color !important
52 color: $item-font-color !important