active_frontend 11.1.0 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/lib/active_frontend/version.rb +1 -1
  3. data/lib/generators/active_frontend/templates/install.scss +1 -12
  4. data/vendor/assets/javascripts/_animation.js +90 -32
  5. data/vendor/assets/javascripts/_chart.js +4 -4
  6. data/vendor/assets/javascripts/_file_input.js +3 -3
  7. data/vendor/assets/javascripts/_typeahead.js +0 -2
  8. data/vendor/assets/stylesheets/_ad.scss +5 -0
  9. data/vendor/assets/stylesheets/_alert.scss +12 -9
  10. data/vendor/assets/stylesheets/_animation.scss +217 -213
  11. data/vendor/assets/stylesheets/_breadcrumb.scss +29 -19
  12. data/vendor/assets/stylesheets/_button.scss +33 -58
  13. data/vendor/assets/stylesheets/_carousel.scss +14 -21
  14. data/vendor/assets/stylesheets/_chart.scss +5 -1
  15. data/vendor/assets/stylesheets/_color.scss +5 -5
  16. data/vendor/assets/stylesheets/_colorpicker.scss +0 -1
  17. data/vendor/assets/stylesheets/_datepicker.scss +11 -10
  18. data/vendor/assets/stylesheets/_dropdown.scss +50 -24
  19. data/vendor/assets/stylesheets/_footer.scss +11 -18
  20. data/vendor/assets/stylesheets/_form.scss +193 -208
  21. data/vendor/assets/stylesheets/_grid.scss +36 -23
  22. data/vendor/assets/stylesheets/_header.scss +27 -60
  23. data/vendor/assets/stylesheets/_icon.scss +5 -5
  24. data/vendor/assets/stylesheets/_image.scss +6 -2
  25. data/vendor/assets/stylesheets/_label_and_badge.scss +6 -1
  26. data/vendor/assets/stylesheets/_link.scss +1 -0
  27. data/vendor/assets/stylesheets/_list.scss +36 -43
  28. data/vendor/assets/stylesheets/_loader.scss +8 -2
  29. data/vendor/assets/stylesheets/_map.scss +4 -0
  30. data/vendor/assets/stylesheets/_missive.scss +4 -8
  31. data/vendor/assets/stylesheets/_mixin.scss +5 -0
  32. data/vendor/assets/stylesheets/_modal.scss +90 -40
  33. data/vendor/assets/stylesheets/_nav_and_tab.scss +40 -65
  34. data/vendor/assets/stylesheets/_navbar.scss +2 -1
  35. data/vendor/assets/stylesheets/_pagination.scss +8 -10
  36. data/vendor/assets/stylesheets/_panel.scss +23 -25
  37. data/vendor/assets/stylesheets/_placeholder.scss +13 -12
  38. data/vendor/assets/stylesheets/_progress.scss +3 -4
  39. data/vendor/assets/stylesheets/_reset.scss +1 -0
  40. data/vendor/assets/stylesheets/_sidebar.scss +30 -13
  41. data/vendor/assets/stylesheets/_slider.scss +2 -2
  42. data/vendor/assets/stylesheets/_spinner.scss +348 -236
  43. data/vendor/assets/stylesheets/_swoggle.scss +2 -2
  44. data/vendor/assets/stylesheets/_table.scss +137 -127
  45. data/vendor/assets/stylesheets/_timepicker.scss +8 -5
  46. data/vendor/assets/stylesheets/_toolbar.scss +10 -22
  47. data/vendor/assets/stylesheets/_tooltip.scss +21 -7
  48. data/vendor/assets/stylesheets/_trunk.scss +19 -36
  49. data/vendor/assets/stylesheets/_typography.scss +80 -82
  50. data/vendor/assets/stylesheets/_variable.scss +15 -0
  51. data/vendor/assets/stylesheets/active_frontend.scss +1 -12
  52. metadata +4 -4
  53. data/vendor/assets/stylesheets/_aside.scss +0 -127
@@ -39,8 +39,8 @@ $sizes: (
39
39
  position: relative;
40
40
  width: calc(100% - 20px);
41
41
  }
42
- .container .column,
43
- .container .columns {
42
+ .column,
43
+ .columns {
44
44
  display: inline;
45
45
  float: left;
46
46
  margin-left: 10px;
@@ -65,30 +65,38 @@ $sizes: (
65
65
  /* # Desktop
66
66
  ================================================== */
67
67
  @each $name, $size in $sizes {
68
- .container .#{$name}.column,
69
- .container .#{$name}.columns { width: calc(#{$size} - 20px); }
70
- .container .#{$name}.column.alpha,
71
- .container .#{$name}.column.omega,
72
- .container .#{$name}.columns.alpha,
73
- .container .#{$name}.columns.omega { width: calc(#{$size} - 10px); }
74
- .container .#{$name}.column.alpha.omega,
75
- .container .#{$name}.columns.alpha.omega { width: $size; }
76
- .container .offset-by-#{$name} { padding-left: $size; }
68
+ .#{$name}.column,
69
+ .#{$name}.columns { width: calc(#{$size} - 20px); }
70
+ .#{$name}.column.alpha,
71
+ .#{$name}.column.omega,
72
+ .#{$name}.columns.alpha,
73
+ .#{$name}.columns.omega { width: calc(#{$size} - 10px); }
74
+ .#{$name}.column.alpha.omega,
75
+ .#{$name}.columns.alpha.omega { width: $size; }
76
+ .offset-by-#{$name} { padding-left: $size; }
77
77
  }
78
78
  .hidden { display: none !important; }
79
79
  .hidden-desktop { display: none !important; }
80
+ .hidden-laptop { display: inherit !important; }
81
+ .hidden-tablet { display: inherit !important; }
82
+ .hidden-phone { display: inherit !important; }
80
83
  .visible { display: inherit !important; }
81
- .visible-phone { display: none !important; }
82
- .visible-tablet { display: none !important; }
84
+ .visible-laptop { display: inherit !important; }
83
85
  .visible-laptop { display: none !important; }
86
+ .visible-tablet { display: none !important; }
87
+ .visible-phone { display: none !important; }
84
88
 
85
89
  /* # Laptop
86
90
  ================================================== */
87
91
  @media only screen and (min-width: 960px) and (max-width: 1365px) {
88
92
  .hidden-desktop { display: inherit !important; }
89
93
  .hidden-laptop { display: none !important; }
94
+ .hidden-tablet { display: inherit !important; }
95
+ .hidden-phone { display: inherit !important; }
90
96
  .visible-desktop { display: none !important ; }
91
97
  .visible-laptop { display: inherit !important; }
98
+ .visible-tablet { display: none !important; }
99
+ .visible-phone { display: none !important ; }
92
100
  }
93
101
 
94
102
  /* # Tablet
@@ -97,33 +105,37 @@ $sizes: (
97
105
  .hidden-desktop { display: inherit !important; }
98
106
  .hidden-laptop { display: inherit !important; }
99
107
  .hidden-tablet { display: none !important; }
108
+ .hidden-phone { display: inherit !important; }
100
109
  .visible-desktop { display: none !important ; }
101
110
  .visible-laptop { display: none !important ; }
102
111
  .visible-tablet { display: inherit !important; }
112
+ .visible-phone { display: none !important ; }
103
113
  }
104
114
 
105
115
  /* # Mobile
106
116
  ================================================== */
107
117
  @media only screen and (max-width: 767px) {
108
118
  @each $name, $size in $sizes {
109
- .container .#{$name}.column,
110
- .container .#{$name}.columns,
111
- .container .#{$name}.column.alpha,
112
- .container .#{$name}.column.omega,
113
- .container .#{$name}.columns.alpha,
114
- .container .#{$name}.columns.omega,
115
- .container .#{$name}.column.alpha.omega,
116
- .container .#{$name}.columns.alpha.omega, {
119
+ .#{$name}.column,
120
+ .#{$name}.columns,
121
+ .#{$name}.column.alpha,
122
+ .#{$name}.column.omega,
123
+ .#{$name}.columns.alpha,
124
+ .#{$name}.columns.omega,
125
+ .#{$name}.column.alpha.omega,
126
+ .#{$name}.columns.alpha.omega, {
117
127
  margin: 0;
118
128
  width: 100%;
119
129
  }
120
- .container .offset-by-#{$name} { padding-left: 0; }
130
+ .offset-by-#{$name} { padding-left: 0; }
121
131
  }
122
132
  .hidden-desktop { display: inherit !important; }
123
133
  .hidden-laptop { display: inherit !important; }
134
+ .hidden-tablet { display: inherit !important; }
124
135
  .hidden-phone { display: none !important; }
125
136
  .visible-desktop { display: none !important; }
126
137
  .visible-laptop { display: none !important; }
138
+ .visible-tablet { display: none !important; }
127
139
  .visible-phone { display: inherit !important; }
128
140
  }
129
141
 
@@ -132,6 +144,7 @@ $sizes: (
132
144
  .display-block { display: block !important; }
133
145
  .display-inline { display: inline !important; }
134
146
  .display-inline-block { display: inline-block !important; }
147
+ .display-table { display: table !important; }
135
148
 
136
149
  /* # Pull
137
150
  ================================================== */
@@ -141,8 +154,8 @@ $sizes: (
141
154
 
142
155
  /* # Row
143
156
  ================================================== */
144
- .row-small { margin-bottom: 10px; }
145
157
  .row { margin-bottom: 20px; }
158
+ .row-small { margin-bottom: 10px; }
146
159
  .row-medium { margin-bottom: 40px; }
147
160
  .row-large { margin-bottom: 60px; }
148
161
 
@@ -12,17 +12,11 @@
12
12
  background: $color-white;
13
13
  border-bottom: 1px solid $color-haze;
14
14
  box-sizing: border-box;
15
+ color: $color-black;
15
16
  height: 60px;
16
17
  padding-top: 15px;
17
18
  width: 100%;
18
19
  }
19
- .header-fixed {
20
- left: 0;
21
- position: fixed;
22
- right: 0;
23
- top: 0;
24
- z-index: 1030;
25
- }
26
20
  .header-brand {
27
21
  float: left;
28
22
  margin-top: -4px;
@@ -40,33 +34,33 @@
40
34
  margin: -7px 0 0 20px;
41
35
  width: 280px;
42
36
  }
43
- .header-search > input { margin: 0; }
37
+ .header-search button,
38
+ .header-search input,
39
+ .header-search select { margin: 0; }
44
40
  .header-nav,
45
41
  .header-nav-alt,
46
42
  .header-toolchain {
47
- list-style-type: none;
43
+ float: right;
44
+ list-style: none;
45
+ margin: 9px 0 0 0;
48
46
  padding: 0;
49
47
  }
50
48
  .header-nav { float: left; }
51
- .header-nav-alt,
52
- .header-toolchain { float: right; }
53
- .header-nav,
54
- .header-nav-alt { margin: 9px 0 0 0; }
55
49
  .header-toolchain { margin: 1px 25px 0 0; }
56
50
  .header-nav > li,
57
51
  .header-nav-alt > li,
58
52
  .header-toolchain > li {
59
53
  float: left;
60
- color: $color-black;
54
+ line-height: 1;
61
55
  }
62
56
  .header-nav > li,
63
57
  .header-nav-alt > li {
64
58
  font-size: 12px;
65
59
  font-weight: 500;
66
60
  letter-spacing: 1px;
67
- line-height: 1;
68
61
  text-transform: uppercase;
69
62
  }
63
+ .header-toolchain > li { font-size: 26px; }
70
64
  .header-nav > li,
71
65
  .header-nav > li.btn-group,
72
66
  .header-nav > li.btn-group + li.btn-group,
@@ -78,9 +72,6 @@
78
72
  .header-toolchain > li.btn-group + li.btn-group { margin-left: 15px; }
79
73
  .header-nav-alt > li:first-child,
80
74
  .header-toolchain > li:first-child { margin-left: 0; }
81
- .header-nav > li > a,
82
- .header-nav-alt > li > a,
83
- .header-toolchain > li > a { color: $color-black; }
84
75
  .header-nav > li.lined > a {
85
76
  border-radius: 0 !important;
86
77
  border-bottom: 3px solid $color-transparent;
@@ -92,10 +83,6 @@
92
83
  .header-nav > li.lined > a:focus,
93
84
  .header-nav > li.lined.active > a { border-color: $color-primary; }
94
85
  .header-nav-alt > li > a { padding: 10px 0; }
95
- .header-toolchain > li > a {
96
- font-size: 26px;
97
- line-height: 1;
98
- }
99
86
  .header-nav > li > a:hover,
100
87
  .header-nav > li > a.active,
101
88
  .header-nav > li > a:active,
@@ -125,8 +112,8 @@
125
112
  .header-nav-alt > li.inverse > a.active,
126
113
  .header-nav-alt > li.inverse > a:active,
127
114
  .header-nav-alt > li.inverse > a:focus {
128
- background: darken($color-primary, 5%);
129
- border-color: darken($color-primary, 5%);
115
+ background: darken($color-primary, 2%);
116
+ border-color: darken($color-primary, 2%);
130
117
  color: $color-white;
131
118
  }
132
119
  .header-user {
@@ -134,7 +121,6 @@
134
121
  font-size: 13px;
135
122
  margin: -3px 0 0 20px;
136
123
  }
137
- .header-user > a { color: $color-black; }
138
124
  .header-user > a:hover,
139
125
  .header-user > a.active,
140
126
  .header-user > a:active,
@@ -168,65 +154,46 @@
168
154
  /* # Styles
169
155
  ================================================== */
170
156
  .header-borderless { border-bottom-color: $color-transparent; }
157
+ .header-fixed {
158
+ left: 0;
159
+ position: fixed;
160
+ right: 0;
161
+ top: 0;
162
+ z-index: 1030;
163
+ }
171
164
 
172
165
  /* # Colors
173
166
  ================================================== */
174
167
  .header-dark {
175
168
  background: $color-black;
176
169
  border-color: $color-dark-black;
170
+ color: $color-white;
177
171
  }
178
172
  .header-invisible {
179
173
  background: $color-transparent;
180
174
  border-color: $color-transparent;
175
+ color: $color-white;
181
176
  }
182
177
  .header-light {
183
178
  background: $color-light-haze;
184
179
  border-color: $color-dark-haze;
185
180
  }
186
- .header-dark .header-nav > li,
187
- .header-dark .header-nav-alt > li,
188
- .header-dark .header-toolchain > li,
189
- .header-dark .header-nav > li > a,
190
- .header-dark .header-nav-alt > li > a,
191
- .header-dark .header-toolchain > li > a,
192
- .header-dark .header-user > a,
193
- .header-invisible .header-brand > a,
194
- .header-invisible .header-nav > li,
195
- .header-invisible .header-nav-alt > li,
196
- .header-invisible .header-toolchain > li,
197
- .header-invisible .header-nav > li > a,
198
- .header-invisible .header-nav-alt > li > a,
199
- .header-invisible .header-toolchain > li > a,
200
- .header-invisible .header-user > a { color: $color-white; }
201
- .header-dark .header-nav > li > a:hover,
202
- .header-dark .header-nav > li > a.active,
203
- .header-dark .header-nav > li > a:active,
204
- .header-dark .header-nav > li > a:focus,
205
- .header-dark .header-nav-alt > li > a:hover,
206
- .header-dark .header-nav-alt > li > a.active,
207
- .header-dark .header-nav-alt > li > a:active,
208
- .header-dark .header-nav-alt > li > a:focus,
209
- .header-dark .header-toolchain > li > a:hover,
210
- .header-dark .header-toolchain > li > a.active,
211
- .header-dark .header-toolchain > li > a:active,
212
- .header-dark .header-toolchain > li > a:focus,
213
- .header-dark .header-user > a:hover,
214
- .header-dark .header-user > a.active,
215
- .header-dark .header-user > a:active,
216
- .header-dark .header-user > a:focus { color: $color-primary; }
217
- .header-dark .header-nav-alt > li.inverse > a { color: $color-white; }
181
+ .header-invisible .header-brand > a { color: $color-white; }
218
182
  .header-invisible .header-nav-alt > li.inverse > a {
219
183
  background: $color-white;
220
184
  border-color: $color-white;
185
+ color: $color-black;
186
+ }
187
+ .header-invisible .header-nav-alt > li.inverse.outline > a {
188
+ background: $color-transparent;
221
189
  color: $color-white;
222
190
  }
223
- .header-invisible .header-nav-alt > li.inverse.outline > a { background: $color-transparent; }
224
191
  .header-invisible .header-nav-alt > li.inverse > a:hover,
225
192
  .header-invisible .header-nav-alt > li.inverse > a.active,
226
193
  .header-invisible .header-nav-alt > li.inverse > a:active,
227
194
  .header-invisible .header-nav-alt > li.inverse > a:focus {
228
- background: darken($color-white, 5%);
229
- border-color: darken($color-white, 5%);
195
+ background: darken($color-white, 2%);
196
+ border-color: darken($color-white, 2%);
230
197
  }
231
198
 
232
199
  /* # Stripes
@@ -6,13 +6,13 @@
6
6
  ================================================== */
7
7
  @font-face {
8
8
  font-family: "Ionicons";
9
+ font-style: normal;
10
+ font-weight: normal;
9
11
  src: url(font_path("ionicons/ionicons.eot?v=2.0.1"));
10
12
  src: url(font_path("ionicons/ionicons.eot?v=2.0.1#iefix")) format("embedded-opentype"),
11
13
  url(font_path("ionicons/ionicons.ttf?v=2.0.1")) format("truetype"),
12
14
  url(font_path("ionicons/ionicons.woff?v=2.0.1")) format("woff"),
13
15
  url(font_path("ionicons/ionicons.svg?v=2.0.1#Ionicons")) format("svg");
14
- font-weight: normal;
15
- font-style: normal;
16
16
  }
17
17
  .icon,
18
18
  .iconicons,
@@ -751,16 +751,16 @@
751
751
  .icon-xbox:before {
752
752
  box-sizing: border-box;
753
753
  display: inline-block;
754
+ -webkit-font-smoothing: antialiased;
755
+ -moz-osx-font-smoothing: grayscale;
754
756
  font-family: "Ionicons";
755
- speak: none;
756
757
  font-style: normal;
757
758
  font-weight: normal;
758
759
  font-variant: normal;
759
760
  line-height: 1;
760
761
  margin: 0;
761
762
  padding: 0;
762
- -webkit-font-smoothing: antialiased;
763
- -moz-osx-font-smoothing: grayscale;
763
+ speak: none;
764
764
  text-transform: none;
765
765
  text-rendering: auto;
766
766
  }
@@ -1,6 +1,7 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
3
  # Image
4
+ # Alignments
4
5
  # Styles
5
6
  # Media Queries */
6
7
 
@@ -13,13 +14,16 @@ img {
13
14
  height: auto;
14
15
  max-width: 100%;
15
16
  vertical-align: middle;
16
- width: auto\9;
17
+ width: auto;
17
18
  }
18
19
 
20
+ /* # Alignments
21
+ ================================================== */
22
+ .img-center { margin: 0 auto; }
23
+
19
24
  /* # Styles
20
25
  ================================================== */
21
26
  .img-circle { border-radius: 500px; }
22
- .img-center { margin: 0 auto; }
23
27
  .img-square { border-radius: 0; }
24
28
 
25
29
  /* # Media Queries
@@ -1,7 +1,9 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
3
  # Variables
4
- # Label and badge */
4
+ # Label and badge
5
+ # Styles
6
+ # Colors */
5
7
 
6
8
  /* # Variables
7
9
  ================================================== */
@@ -55,6 +57,9 @@ $onwhite-colors: (
55
57
  .badge { border-radius: 500px; }
56
58
  .badge:empty,
57
59
  .label:empty { display: none; }
60
+
61
+ /* # Styles
62
+ ================================================== */
58
63
  .badge-block,
59
64
  .label-block {
60
65
  display: block;
@@ -5,6 +5,7 @@
5
5
  /* # Link
6
6
  ================================================== */
7
7
  a {
8
+ color: inherit;
8
9
  text-decoration: none;
9
10
  touch-action: manipulation;
10
11
  @include transition(all 0.3s ease-in-out);
@@ -1,8 +1,9 @@
1
1
  /* Table of Contents
2
2
  ==================================================s
3
3
  # List
4
- # Sizes
5
4
  # Styles
5
+ # Sizes
6
+ # Colors
6
7
  # Media Queries */
7
8
 
8
9
  /* # List
@@ -11,6 +12,7 @@ dl > dt,
11
12
  dl > dd,
12
13
  ul,
13
14
  ol {
15
+ border-color: $color-haze !important;
14
16
  font-size: 16px;
15
17
  font-weight: normal;
16
18
  line-height: 25px;
@@ -34,84 +36,75 @@ ol { padding-left: 23px; }
34
36
  .list-lined,
35
37
  .list-striped,
36
38
  .list-unstyled {
37
- list-style-type: none;
39
+ list-style: none;
38
40
  padding: 0;
39
41
  }
40
42
  .list-bordered > li,
41
43
  .list-lined > li,
42
44
  .list-striped > li { padding: 9px 10px 7px 10px; }
43
45
  .list-bordered > li {
44
- border: 1px solid $color-haze;
45
- border-bottom: none;
46
+ border: 1px solid;
47
+ border-bottom: 0;
48
+ border-color: inherit;
49
+ }
50
+ .list-bordered > li:last-child {
51
+ border-bottom: 1px solid;
52
+ border-color: inherit;
46
53
  }
47
- .list-bordered > li:last-child { border-bottom: 1px solid $color-haze; }
48
54
  .list-bordered.list-scrollable {
49
- border-bottom: 1px solid $color-haze;
50
- border-top: 1px solid $color-haze;
55
+ border-bottom: 1px solid;
56
+ border-top: 1px solid;
57
+ border-color: inherit;
51
58
  }
59
+ .list-bordered.list-scrollable:empty { border: 0; }
52
60
  .list-bordered.list-scrollable > li:first-child { border-top: 0; }
53
61
  .list-bordered.list-scrollable > li:last-child { border-bottom: 0; }
54
- .list-bordered:empty { border: 0; }
55
62
  .list-inline > li {
56
63
  display: inline-block;
57
64
  margin-right: 10px;
58
65
  }
59
66
  .list-inline > li:last-child { margin-right: 0; }
60
67
  .list-lined > li {
61
- border-top: 1px solid $color-haze;
68
+ border-top: 1px solid;
69
+ border-color: inherit;
62
70
  padding-left: 0;
63
71
  padding-right: 0;
64
72
  }
65
73
  .list-lined > li:first-child { border: 0; }
66
74
  .list-striped > li:nth-child(odd) { background: $color-light-haze; }
67
- .list-hover > li:hover { background: $color-haze; }
75
+ .list-hover > li:hover { background: darken($color-light-haze, 2%); }
68
76
 
69
77
  /* # Sizes
70
78
  ================================================== */
71
- .list-large {
72
- font-size: 28px;
73
- line-height: 34px;
74
- }
75
- .list-large.list-bordered > li,
76
- .list-large.list-lined > li,
77
- .list-large.list-striped > li { padding-top: 10px; }
78
- .list-medium {
79
- font-size: 21px;
80
- line-height: 27px;
81
- }
82
- .list-small {
79
+ .list-condensed {
83
80
  font-size: 14px;
84
81
  line-height: 22px;
85
82
  }
86
- .list-small.list-bordered > li,
87
- .list-small.list-lined > li,
88
- .list-small.list-striped > li { padding: 5px 5px 3px 5px; }
89
- .list-mini {
90
- font-size: 12px;
91
- line-height: 20px;
92
- }
83
+ .list-condensed.list-bordered > li,
84
+ .list-condensed.list-lined > li,
85
+ .list-condensed.list-striped > li, { padding: 5px 5px 4px 5px; }
93
86
 
94
87
  /* # Colors
95
88
  ================================================== */
96
89
  .list-dark {
97
90
  background: $color-black;
98
- border-color: $color-dark-black;
91
+ border-color: $color-dark-black !important;
99
92
  color: $color-white;
100
93
  }
101
- .list-light { background: $color-light-haze; }
102
- .list-white { background: $color-white; }
103
- .list-dark.list-bordered > li,
104
- .list-dark.list-bordered > li:last-child,
105
- .list-dark.list-bordered.list-scrollable,
106
- .list-dark.list-lined > li { border-color: $color-dark-black; }
94
+ .list-light {
95
+ background: $color-light-haze;
96
+ border-color: $color-dark-haze !important;
97
+ color: $color-black;
98
+ }
99
+ .list-white {
100
+ background: $color-white;
101
+ border-color: $color-haze !important;
102
+ color: $color-black;
103
+ }
107
104
  .list-dark.list-striped > li:nth-child(odd) { background: $color-light-black; }
108
- .list-dark.list-hover > li:hover { background: $color-dark-black; }
109
- .list-light.list-bordered > li,
110
- .list-light.list-bordered > li:last-child,
111
- .list-light.list-bordered.list-scrollable,
112
- .list-light.list-lined > li { border-color: $color-dark-haze; }
105
+ .list-dark.list-hover > li:hover { background: darken($color-black, 2%); }
113
106
  .list-light.list-striped > li:nth-child(odd) { background: $color-haze; }
114
- .list-light.list-hover > li:hover { background: $color-dark-haze; }
107
+ .list-light.list-hover > li:hover { background: darken($color-haze, 2%); }
115
108
 
116
109
  /* # Media Queries
117
110
  ================================================== */
@@ -125,5 +118,5 @@ only screen and ( min-resolution: 2dppx) {
125
118
  .list-bordered > li,
126
119
  .list-bordered > li:last-child,
127
120
  .list-bordered.list-scrollable,
128
- .list-lined > li { border-width: 0.5px; }
121
+ .list-lined > li { border-width: 0.5px; }
129
122
  }