-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilten.css
92 lines (92 loc) · 1.66 KB
/
filten.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.filten {
display: none;
border: 1px solid #204759;
background: #f3f3f3;
border-radius: 3px;
}
.filten-header {
text-align: center;
background: #204759;
padding: 0.4em;
}
.filten-title {
font-size: 1.3em;
font-weight: bold;
background: #204759;
color: #fff;
}
.filten-summary {
background: #204759;
color: #fff;
font-style: italic;
}
.filten-summary-counts {
text-align: center;
}
.filten-crit {
border-top: 1px solid #fff;
border-bottom: 1px solid #ccc;
padding: 0.3em;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.filten-crit:first-child {
border-top: none;
}
.filten-crit:last-child {
border-bottom: none;
}
.filten-crit-header {
font-weight: bold;
font-size: 1.1em;
margin-bottom: 0.3em;
}
.filten-crit-value {
position: relative;
cursor: pointer;
padding: 0.3em 0;
}
div.filten-crit-value:hover {
background-color: #DFDFEA;
}
.filten-crit-value.filten-active {
font-weight: bold;
font-style: italic;
}
.filten-crit-value-checkbox {
display: inline-block;
width: 0.8em;
height: 0.8em;
border: 1px solid #204759;
border-radius: 2px;
vertical-align: baseline;
margin: 0 0.3em;
}
.filten-active .filten-crit-value-checkbox {
/* display: none */
background: #204759;
}
.filten-crit-value-count {
position: absolute;
right: 0;
}
.filten-item-filtered {
display: none;
}
.filten-footer {
text-align: center;
background: #204759;
padding: 0.4em;
}
.filten-brand {
font-size: 1em;
background: #204759;
color: #fff;
}
.filten div.filten-brand a {
color: #fff;
}