jquery.searchtools.css
1.99 KB
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
93
.js-stools {
width: 100%;
}
.js-stools-container-filters {
display: none;
margin: 10px 0;
}
.js-stools-container-bar .input-append {
margin-bottom: 0;
}
/* Use up caret to hide the search filters */
.js-stools-container-bar .btn-primary .caret {
border-top: 0;
border-bottom: 4px solid #FFF;
margin-top: 7px;
margin-bottom: 8px;
}
.js-stools .btn-wrapper {
display: inline-block;
margin: 0 5px 0 0;
}
/* Fixed filter fields (selector) */
.js-stools .js-stools-container-selector {
float: left;
margin-right: 10px;
min-width: 220px;
}
html[dir=rtl] .js-stools .js-stools-container-selector {
float: right;
margin-left: 10px;
margin-right: 0;
}
.js-stools .js-stools-container-bar {
float: left;
}
html[dir=rtl] .js-stools .js-stools-container-bar {
float: right;
}
.js-stools .js-stools-container-list {
float: right;
text-align: right;
}
html[dir=rtl] .js-stools .js-stools-container-list {
float: left;
text-align: left;
}
.js-stools .chzn-container {
text-align: left;
}
html[dir=rtl] .js-stools .chzn-container {
text-align: right;
}
.js-stools .js-stools-container-filters select.active,
.js-stools .js-stools-container-filters .chzn-container.active .chzn-single{
border: 2px solid #2384D3;
}
.js-stools .js-stools-container-filters-visible {
display: inline-block;
}
.js-stools .chzn-container-single .chzn-single span {
overflow: visible;
}
.js-stools .js-stools-field-list,
.js-stools .js-stools-field-filter {
display: inline-block;
margin: 0 5px 5px 0;
}
.js-stools .js-stools-container-list .js-stools-field-list:last-child {
margin-right: 0;
}
/* Media queries */
@media (max-width: 480px) {
.js-stools-container-filters {
display: block;
}
.js-stools-container-filters .btn-group {
display: block;
}
.js-stools-container-filters .btn-wrapper {
width: 100%
}
.js-stools-container-bar {
margin-top: 20px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.js-stools .js-stools-container-bar,
.js-stools .js-stools-container-list {
float: none;
display: block;
}
}