vhx-quartz 0.7.7 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/vhx/quartz/version.rb +1 -1
- data/vendor/assets/javascripts/vhx-quartz.autosuggest.js +266 -0
- data/vendor/assets/javascripts/vhx-quartz.checkbox.js +46 -0
- data/vendor/assets/javascripts/vhx-quartz.filter.js +254 -0
- data/vendor/assets/javascripts/vhx-quartz.header.js +27 -0
- data/vendor/assets/javascripts/vhx-quartz.radio.js +66 -0
- data/vendor/assets/javascripts/vhx-quartz.search_input.js +66 -0
- data/vendor/assets/javascripts/vhx-quartz.select.js +263 -0
- data/vendor/assets/stylesheets/vhx-quartz.autosuggest.css +67 -0
- data/vendor/assets/stylesheets/vhx-quartz.checkbox.css +328 -0
- data/vendor/assets/stylesheets/vhx-quartz.css +9 -616
- data/vendor/assets/stylesheets/vhx-quartz.filter.css +66 -0
- data/vendor/assets/stylesheets/vhx-quartz.min.css +1 -1
- data/vendor/assets/stylesheets/vhx-quartz.radio.css +150 -0
- data/vendor/assets/stylesheets/vhx-quartz.select.css +128 -0
- metadata +14 -2
@@ -0,0 +1,66 @@
|
|
1
|
+
/* .....................................
|
2
|
+
Fonts
|
3
|
+
..................................... */
|
4
|
+
/* .....................................
|
5
|
+
Sets
|
6
|
+
..................................... */
|
7
|
+
/* .....................................
|
8
|
+
Media Query Ranges
|
9
|
+
..................................... */
|
10
|
+
/* .....................................
|
11
|
+
Colors - Grays
|
12
|
+
..................................... */
|
13
|
+
/* .....................................
|
14
|
+
Colors - Teals
|
15
|
+
..................................... */
|
16
|
+
/* .....................................
|
17
|
+
Colors - Red
|
18
|
+
..................................... */
|
19
|
+
/* .....................................
|
20
|
+
Colors - Navy
|
21
|
+
..................................... */
|
22
|
+
/* .....................................
|
23
|
+
Colors - Brand Palette
|
24
|
+
..................................... */
|
25
|
+
/* .....................................
|
26
|
+
Colors - External Palette
|
27
|
+
..................................... */
|
28
|
+
/* helper function for margin and padding
|
29
|
+
......................................*/
|
30
|
+
.c-filter--container {
|
31
|
+
width: 550px; }
|
32
|
+
.c-filter--container .c-filter--applied {
|
33
|
+
background-color: #D7DDE1; }
|
34
|
+
.c-filter--container.is-open .c-filter--trigger {
|
35
|
+
background-color: #D7DDE1; }
|
36
|
+
.c-filter--container.is-open .c-filter--dropdown {
|
37
|
+
right: auto;
|
38
|
+
left: 0; }
|
39
|
+
.c-filter--container .c-filter--dropdown:before, .c-filter--container .c-filter--dropdown:after {
|
40
|
+
left: 45px; }
|
41
|
+
.c-filter--container .c-filter--dropdown .icon-calendar-navy {
|
42
|
+
background-position: 10px center; }
|
43
|
+
.c-filter--container .c-filter--dropdown ul {
|
44
|
+
max-height: none; }
|
45
|
+
.c-filter--container .c-filter--dropdown .c-filter--item {
|
46
|
+
background-position: center right 15px;
|
47
|
+
padding: 15px !important;
|
48
|
+
display: block; }
|
49
|
+
.c-filter--container .c-filter--item-container {
|
50
|
+
display: none; }
|
51
|
+
.c-filter--container .c-filter--item-container.is-active {
|
52
|
+
display: block; }
|
53
|
+
.c-filter--container .c-filter--trigger,
|
54
|
+
.c-filter--container .c-filter--applied {
|
55
|
+
background-position: right 15px center;
|
56
|
+
line-height: 20px;
|
57
|
+
height: 40px;
|
58
|
+
padding: 10px; }
|
59
|
+
.c-filter--container .c-filter--applied {
|
60
|
+
margin-right: 10px;
|
61
|
+
padding-right: 40px;
|
62
|
+
color: #00142B;
|
63
|
+
border-radius: 3px; }
|
64
|
+
.c-filter--container .c-filter--label {
|
65
|
+
height: 40px;
|
66
|
+
line-height: 40px; }
|