uikit 3.16.5-dev.dda1f1b31 → 3.16.6-dev.64eba8a3c

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.
Files changed (52) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +14 -0
  3. package/build/scss.js +1 -1
  4. package/build/util.js +2 -1
  5. package/dist/css/uikit-core-rtl.css +1 -1
  6. package/dist/css/uikit-core-rtl.min.css +1 -1
  7. package/dist/css/uikit-core.css +1 -1
  8. package/dist/css/uikit-core.min.css +1 -1
  9. package/dist/css/uikit-rtl.css +1 -1
  10. package/dist/css/uikit-rtl.min.css +1 -1
  11. package/dist/css/uikit.css +1 -1
  12. package/dist/css/uikit.min.css +1 -1
  13. package/dist/js/components/countdown.js +1 -1
  14. package/dist/js/components/countdown.min.js +1 -1
  15. package/dist/js/components/filter.js +1 -1
  16. package/dist/js/components/filter.min.js +1 -1
  17. package/dist/js/components/lightbox-panel.js +15 -7
  18. package/dist/js/components/lightbox-panel.min.js +1 -1
  19. package/dist/js/components/lightbox.js +15 -7
  20. package/dist/js/components/lightbox.min.js +1 -1
  21. package/dist/js/components/notification.js +1 -1
  22. package/dist/js/components/notification.min.js +1 -1
  23. package/dist/js/components/parallax.js +1 -1
  24. package/dist/js/components/parallax.min.js +1 -1
  25. package/dist/js/components/slider-parallax.js +1 -1
  26. package/dist/js/components/slider-parallax.min.js +1 -1
  27. package/dist/js/components/slider.js +15 -7
  28. package/dist/js/components/slider.min.js +1 -1
  29. package/dist/js/components/slideshow-parallax.js +1 -1
  30. package/dist/js/components/slideshow-parallax.min.js +1 -1
  31. package/dist/js/components/slideshow.js +15 -7
  32. package/dist/js/components/slideshow.min.js +1 -1
  33. package/dist/js/components/sortable.js +1 -1
  34. package/dist/js/components/sortable.min.js +1 -1
  35. package/dist/js/components/tooltip.js +5 -5
  36. package/dist/js/components/tooltip.min.js +1 -1
  37. package/dist/js/components/upload.js +1 -1
  38. package/dist/js/components/upload.min.js +1 -1
  39. package/dist/js/uikit-core.js +5 -5
  40. package/dist/js/uikit-core.min.js +1 -1
  41. package/dist/js/uikit-icons.js +1 -1
  42. package/dist/js/uikit-icons.min.js +1 -1
  43. package/dist/js/uikit.js +15 -7
  44. package/dist/js/uikit.min.js +1 -1
  45. package/package.json +1 -1
  46. package/src/js/api/component.js +3 -3
  47. package/src/js/api/hooks.js +1 -1
  48. package/src/js/mixin/slider-autoplay.js +10 -2
  49. package/src/scss/mixins-theme.scss +1635 -1679
  50. package/src/scss/mixins.scss +1357 -1357
  51. package/src/scss/variables-theme.scss +1258 -1258
  52. package/src/scss/variables.scss +1134 -1134
@@ -1,850 +1,892 @@
1
- @mixin svg-fill($src, $color-default, $color-new, $property: background-image){
1
+ @mixin hook-accordion(){}
2
+ @mixin hook-accordion-item(){}
3
+ @mixin hook-accordion-title(){}
4
+ @mixin hook-accordion-title-hover(){}
5
+ @mixin hook-accordion-content(){}
6
+ @mixin hook-accordion-misc(){}
7
+ @mixin hook-inverse-accordion-item(){}
8
+ @mixin hook-inverse-accordion-title(){}
9
+ @mixin hook-inverse-accordion-title-hover(){}
10
+ @mixin hook-inverse-component-accordion(){
2
11
 
3
- $escape-color-default: escape($color-default) !default;
4
- $escape-color-new: escape("#{$color-new}") !default;
12
+ .uk-accordion > :nth-child(n+2) {
13
+ @if(mixin-exists(hook-inverse-accordion-item)) {@include hook-inverse-accordion-item();}
14
+ }
5
15
 
6
- $data-uri: data-uri('image/svg+xml;charset=UTF-8', "#{$src}") !default;
7
- $replace-src: replace("#{$data-uri}", "#{$escape-color-default}", "#{$escape-color-new}", "g") !default;
16
+ .uk-accordion-title {
17
+ color: $inverse-accordion-title-color;
18
+ @if(mixin-exists(hook-inverse-accordion-title)) {@include hook-inverse-accordion-title();}
19
+ }
20
+
21
+ .uk-accordion-title:hover {
22
+ color: $inverse-accordion-title-hover-color;
23
+ @if(mixin-exists(hook-inverse-accordion-title-hover)) {@include hook-inverse-accordion-title-hover();}
24
+ }
8
25
 
9
- #{$property}: unquote($replace-src);
10
26
  }
11
- @mixin hook-width-misc(){}
12
- @mixin hook-visibility-misc(){}
13
- @mixin hook-panel-scrollable(){}
14
- @mixin hook-box-shadow-bottom(){}
15
- @mixin hook-dropcap(){}
16
- @mixin hook-logo(){}
17
- @mixin hook-logo-hover(){}
18
- @mixin hook-utility-misc(){}
19
- @mixin hook-inverse-dropcap(){}
20
- @mixin hook-inverse-logo(){}
21
- @mixin hook-inverse-logo-hover(){}
22
- @mixin hook-inverse-component-utility(){
27
+ @mixin hook-alert(){}
28
+ @mixin hook-alert-close(){}
29
+ @mixin hook-alert-close-hover(){}
30
+ @mixin hook-alert-primary(){}
31
+ @mixin hook-alert-success(){}
32
+ @mixin hook-alert-warning(){}
33
+ @mixin hook-alert-danger(){}
34
+ @mixin hook-alert-misc(){}
35
+ @mixin hook-align-misc(){}
36
+ @mixin hook-animation-misc(){}
37
+ @mixin hook-article(){}
38
+ @mixin hook-article-adjacent(){}
39
+ @mixin hook-article-title(){}
40
+ @mixin hook-article-meta(){}
41
+ @mixin hook-article-misc(){}
42
+ @mixin hook-inverse-article-title(){}
43
+ @mixin hook-inverse-article-meta(){}
44
+ @mixin hook-inverse-component-article(){
23
45
 
24
- .uk-dropcap::first-letter,
25
- .uk-dropcap p:first-of-type::first-letter {
26
- @if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
46
+ .uk-article-title {
47
+ @if(mixin-exists(hook-inverse-article-title)) {@include hook-inverse-article-title();}
27
48
  }
28
49
 
29
- .uk-logo {
30
- color: $inverse-logo-color;
31
- @if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
50
+ .uk-article-meta {
51
+ color: $inverse-article-meta-color;
52
+ @if(mixin-exists(hook-inverse-article-meta)) {@include hook-inverse-article-meta();}
32
53
  }
33
54
 
34
- .uk-logo:hover {
35
- color: $inverse-logo-hover-color;
36
- @if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
55
+ }
56
+ @mixin hook-background-misc(){}
57
+ @mixin hook-badge(){}
58
+ @mixin hook-badge-hover(){}
59
+ @mixin hook-badge-misc(){}
60
+ @mixin hook-inverse-badge(){}
61
+ @mixin hook-inverse-badge-hover(){}
62
+ @mixin hook-inverse-component-badge(){
63
+
64
+ .uk-badge {
65
+ background-color: $inverse-badge-background;
66
+ color: $inverse-badge-color !important;
67
+ @if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
37
68
  }
38
69
 
39
- .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
40
- .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
41
- .uk-logo-inverse { display: block; }
70
+ .uk-badge:hover {
71
+ @if(mixin-exists(hook-inverse-badge-hover)) {@include hook-inverse-badge-hover();}
72
+ }
42
73
 
43
74
  }
44
- @mixin hook-transition-misc(){}
45
- @mixin hook-totop(){}
46
- @mixin hook-totop-hover(){}
47
- @mixin hook-totop-active(){}
48
- @mixin hook-totop-misc(){}
49
- @mixin hook-inverse-totop(){}
50
- @mixin hook-inverse-totop-hover(){}
51
- @mixin hook-inverse-totop-active(){}
52
- @mixin hook-inverse-component-totop(){
75
+ @mixin hook-base-body(){}
76
+ @mixin hook-base-link(){}
77
+ @mixin hook-base-link-hover(){}
78
+ @mixin hook-base-code(){}
79
+ @mixin hook-base-heading(){}
80
+ @mixin hook-base-h1(){}
81
+ @mixin hook-base-h2(){}
82
+ @mixin hook-base-h3(){}
83
+ @mixin hook-base-h4(){}
84
+ @mixin hook-base-h5(){}
85
+ @mixin hook-base-h6(){}
86
+ @mixin hook-base-hr(){}
87
+ @mixin hook-base-blockquote(){}
88
+ @mixin hook-base-blockquote-footer(){}
89
+ @mixin hook-base-pre(){}
90
+ @mixin hook-base-misc(){}
91
+ @mixin hook-inverse-base-link(){}
92
+ @mixin hook-inverse-base-link-hover(){}
93
+ @mixin hook-inverse-base-code(){}
94
+ @mixin hook-inverse-base-heading(){}
95
+ @mixin hook-inverse-base-h1(){}
96
+ @mixin hook-inverse-base-h2(){}
97
+ @mixin hook-inverse-base-h3(){}
98
+ @mixin hook-inverse-base-h4(){}
99
+ @mixin hook-inverse-base-h5(){}
100
+ @mixin hook-inverse-base-h6(){}
101
+ @mixin hook-inverse-base-blockquote(){}
102
+ @mixin hook-inverse-base-blockquote-footer(){}
103
+ @mixin hook-inverse-base-hr(){}
104
+ @mixin hook-inverse-component-base(){
53
105
 
54
- .uk-totop {
55
- color: $inverse-totop-color;
56
- @if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
106
+ color: $inverse-base-color;
107
+
108
+ // Base
109
+ // ========================================================================
110
+
111
+ //
112
+ // Link
113
+ //
114
+
115
+ a,
116
+ .uk-link {
117
+ color: $inverse-base-link-color;
118
+ @if(mixin-exists(hook-inverse-base-link)) {@include hook-inverse-base-link();}
57
119
  }
58
120
 
59
- .uk-totop:hover {
60
- color: $inverse-totop-hover-color;
61
- @if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
121
+ a:hover,
122
+ .uk-link:hover,
123
+ .uk-link-toggle:hover .uk-link {
124
+ color: $inverse-base-link-hover-color;
125
+ @if(mixin-exists(hook-inverse-base-link-hover)) {@include hook-inverse-base-link-hover();}
62
126
  }
63
127
 
64
- .uk-totop:active {
65
- color: $inverse-totop-active-color;
66
- @if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
128
+ //
129
+ // Code
130
+ //
131
+
132
+ :not(pre) > code,
133
+ :not(pre) > kbd,
134
+ :not(pre) > samp {
135
+ color: $inverse-base-code-color;
136
+ @if(mixin-exists(hook-inverse-base-code)) {@include hook-inverse-base-code();}
67
137
  }
68
138
 
69
- }
70
- @mixin hook-tooltip(){}
71
- @mixin hook-tooltip-misc(){}
72
- @mixin hook-tile(){}
73
- @mixin hook-tile-default(){}
74
- @mixin hook-tile-default-hover(){}
75
- @mixin hook-tile-muted(){}
76
- @mixin hook-tile-muted-hover(){}
77
- @mixin hook-tile-primary(){}
78
- @mixin hook-tile-primary-hover(){}
79
- @mixin hook-tile-secondary(){}
80
- @mixin hook-tile-secondary-hover(){}
81
- @mixin hook-tile-misc(){}
82
- @mixin hook-thumbnav(){}
83
- @mixin hook-thumbnav-item(){}
84
- @mixin hook-thumbnav-item-hover(){}
85
- @mixin hook-thumbnav-item-active(){}
86
- @mixin hook-thumbnav-misc(){}
87
- @mixin hook-inverse-thumbnav-item(){}
88
- @mixin hook-inverse-thumbnav-item-hover(){}
89
- @mixin hook-inverse-thumbnav-item-active(){}
90
- @mixin hook-inverse-component-thumbnav(){
139
+ //
140
+ // Emphasize
141
+ //
91
142
 
92
- .uk-thumbnav > * > * {
93
- @if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
143
+ em { color: $inverse-base-em-color; }
144
+
145
+ //
146
+ // Headings
147
+ //
148
+
149
+ h1, .uk-h1,
150
+ h2, .uk-h2,
151
+ h3, .uk-h3,
152
+ h4, .uk-h4,
153
+ h5, .uk-h5,
154
+ h6, .uk-h6,
155
+ .uk-heading-small,
156
+ .uk-heading-medium,
157
+ .uk-heading-large,
158
+ .uk-heading-xlarge,
159
+ .uk-heading-2xlarge {
160
+ color: $inverse-base-heading-color;
161
+ @if(mixin-exists(hook-inverse-base-heading)) {@include hook-inverse-base-heading();}
94
162
  }
95
163
 
96
- .uk-thumbnav > * > :hover {
97
- @if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
164
+ h1, .uk-h1 {
165
+ @if(mixin-exists(hook-inverse-base-h1)) {@include hook-inverse-base-h1();}
98
166
  }
99
167
 
100
- .uk-thumbnav > .uk-active > * {
101
- @if(mixin-exists(hook-inverse-thumbnav-item-active)) {@include hook-inverse-thumbnav-item-active();}
168
+ h2, .uk-h2 {
169
+ @if(mixin-exists(hook-inverse-base-h2)) {@include hook-inverse-base-h2();}
102
170
  }
103
171
 
104
- }
105
- @mixin hook-text-lead(){}
106
- @mixin hook-text-meta(){}
107
- @mixin hook-text-small(){}
108
- @mixin hook-text-large(){}
109
- @mixin hook-text-background(){}
110
- @mixin hook-text-misc(){}
111
- @mixin hook-inverse-text-lead(){}
112
- @mixin hook-inverse-text-meta(){}
113
- @mixin hook-inverse-component-text(){
172
+ h3, .uk-h3 {
173
+ @if(mixin-exists(hook-inverse-base-h3)) {@include hook-inverse-base-h3();}
174
+ }
114
175
 
115
- .uk-text-lead {
116
- color: $inverse-text-lead-color;
117
- @if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
176
+ h4, .uk-h4 {
177
+ @if(mixin-exists(hook-inverse-base-h4)) {@include hook-inverse-base-h4();}
118
178
  }
119
179
 
120
- .uk-text-meta {
121
- color: $inverse-text-meta-color;
122
- @if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
180
+ h5, .uk-h5 {
181
+ @if(mixin-exists(hook-inverse-base-h5)) {@include hook-inverse-base-h5();}
123
182
  }
124
183
 
125
- .uk-text-muted { color: $inverse-text-muted-color !important; }
126
- .uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
127
- .uk-text-primary { color: $inverse-text-primary-color !important; }
128
- .uk-text-secondary { color: $inverse-text-secondary-color !important; }
184
+ h6, .uk-h6 {
185
+ @if(mixin-exists(hook-inverse-base-h6)) {@include hook-inverse-base-h6();}
186
+ }
129
187
 
130
- }
131
- @mixin hook-table(){}
132
- @mixin hook-table-header-cell(){}
133
- @mixin hook-table-cell(){}
134
- @mixin hook-table-footer(){}
135
- @mixin hook-table-caption(){}
136
- @mixin hook-table-divider(){}
137
- @mixin hook-table-striped(){}
138
- @mixin hook-table-hover(){}
139
- @mixin hook-table-row-active(){}
140
- @mixin hook-table-small(){}
141
- @mixin hook-table-large(){}
142
- @mixin hook-table-misc(){}
143
- @mixin hook-inverse-table-header-cell(){}
144
- @mixin hook-inverse-table-caption(){}
145
- @mixin hook-inverse-table-row-active(){}
146
- @mixin hook-inverse-table-divider(){}
147
- @mixin hook-inverse-table-striped(){}
148
- @mixin hook-inverse-table-hover(){}
149
- @mixin hook-inverse-component-table(){
188
+ //
189
+ // Blockquotes
190
+ //
150
191
 
151
- .uk-table th {
152
- color: $inverse-table-header-cell-color;
153
- @if(mixin-exists(hook-inverse-table-header-cell)) {@include hook-inverse-table-header-cell();}
192
+ blockquote {
193
+ @if(mixin-exists(hook-inverse-base-blockquote)) {@include hook-inverse-base-blockquote();}
154
194
  }
155
195
 
156
- .uk-table caption {
157
- color: $inverse-table-caption-color;
158
- @if(mixin-exists(hook-inverse-table-caption)) {@include hook-inverse-table-caption();}
196
+ blockquote footer {
197
+ @if(mixin-exists(hook-inverse-base-blockquote-footer)) {@include hook-inverse-base-blockquote-footer();}
159
198
  }
160
199
 
161
- .uk-table > tr.uk-active,
162
- .uk-table tbody tr.uk-active {
163
- background: $inverse-table-row-active-background;
164
- @if(mixin-exists(hook-inverse-table-row-active)) {@include hook-inverse-table-row-active();}
165
- }
200
+ //
201
+ // Horizontal rules
202
+ //
166
203
 
167
- .uk-table-divider > tr:not(:first-child),
168
- .uk-table-divider > :not(:first-child) > tr,
169
- .uk-table-divider > :first-child > tr:not(:first-child) {
170
- border-top-color: $inverse-table-divider-border;
171
- @if(mixin-exists(hook-inverse-table-divider)) {@include hook-inverse-table-divider();}
204
+ hr, .uk-hr {
205
+ border-top-color: $inverse-base-hr-border;
206
+ @if(mixin-exists(hook-inverse-base-hr)) {@include hook-inverse-base-hr();}
172
207
  }
173
208
 
174
- .uk-table-striped > tr:nth-of-type(odd),
175
- .uk-table-striped tbody tr:nth-of-type(odd) {
176
- background: $inverse-table-striped-row-background;
177
- @if(mixin-exists(hook-inverse-table-striped)) {@include hook-inverse-table-striped();}
178
- }
209
+ //
210
+ // Focus
211
+ //
179
212
 
180
- .uk-table-hover > tr:hover,
181
- .uk-table-hover tbody tr:hover {
182
- background: $inverse-table-hover-row-background;
183
- @if(mixin-exists(hook-inverse-table-hover)) {@include hook-inverse-table-hover();}
184
- }
213
+ :focus { outline-color: $inverse-base-focus-outline; }
214
+ :focus-visible { outline-color: $inverse-base-focus-outline; }
185
215
 
186
216
  }
187
- @mixin hook-tab(){}
188
- @mixin hook-tab-item(){}
189
- @mixin hook-tab-item-hover(){}
190
- @mixin hook-tab-item-active(){}
191
- @mixin hook-tab-item-disabled(){}
192
- @mixin hook-tab-bottom(){}
193
- @mixin hook-tab-bottom-item(){}
194
- @mixin hook-tab-left(){}
195
- @mixin hook-tab-right(){}
196
- @mixin hook-tab-left-item(){}
197
- @mixin hook-tab-right-item(){}
198
- @mixin hook-tab-misc(){}
199
- @mixin hook-inverse-tab(){}
200
- @mixin hook-inverse-tab-item(){}
201
- @mixin hook-inverse-tab-item-hover(){}
202
- @mixin hook-inverse-tab-item-active(){}
203
- @mixin hook-inverse-tab-item-disabled(){}
204
- @mixin hook-inverse-component-tab(){
217
+ @mixin hook-breadcrumb(){}
218
+ @mixin hook-breadcrumb-item(){}
219
+ @mixin hook-breadcrumb-item-hover(){}
220
+ @mixin hook-breadcrumb-item-disabled(){}
221
+ @mixin hook-breadcrumb-item-active(){}
222
+ @mixin hook-breadcrumb-divider(){}
223
+ @mixin hook-breadcrumb-misc(){}
224
+ @mixin hook-inverse-breadcrumb-item(){}
225
+ @mixin hook-inverse-breadcrumb-item-hover(){}
226
+ @mixin hook-inverse-breadcrumb-item-disabled(){}
227
+ @mixin hook-inverse-breadcrumb-item-active(){}
228
+ @mixin hook-inverse-breadcrumb-divider(){}
229
+ @mixin hook-inverse-component-breadcrumb(){
205
230
 
206
- .uk-tab {
207
- @if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
231
+ .uk-breadcrumb > * > * {
232
+ color: $inverse-breadcrumb-item-color;
233
+ @if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
208
234
  }
209
235
 
210
- .uk-tab > * > a {
211
- color: $inverse-tab-item-color;
212
- @if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
236
+ .uk-breadcrumb > * > :hover {
237
+ color: $inverse-breadcrumb-item-hover-color;
238
+ @if(mixin-exists(hook-inverse-breadcrumb-item-hover)) {@include hook-inverse-breadcrumb-item-hover();}
213
239
  }
214
240
 
215
- .uk-tab > * > a:hover {
216
- color: $inverse-tab-item-hover-color;
217
- @if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
241
+
242
+ .uk-breadcrumb > .uk-disabled > * {
243
+ @if(mixin-exists(hook-inverse-breadcrumb-item-disabled)) {@include hook-inverse-breadcrumb-item-disabled();}
218
244
  }
219
245
 
220
- .uk-tab > .uk-active > a {
221
- color: $inverse-tab-item-active-color;
222
- @if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
246
+ .uk-breadcrumb > :last-child > * {
247
+ color: $inverse-breadcrumb-item-active-color;
248
+ @if(mixin-exists(hook-inverse-breadcrumb-item-active)) {@include hook-inverse-breadcrumb-item-active();}
223
249
  }
224
250
 
225
- .uk-tab > .uk-disabled > a {
226
- color: $inverse-tab-item-disabled-color;
227
- @if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
251
+ //
252
+ // Divider
253
+ //
254
+
255
+ .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
256
+ color: $inverse-breadcrumb-divider-color;
257
+ @if(mixin-exists(hook-inverse-breadcrumb-divider)) {@include hook-inverse-breadcrumb-divider();}
228
258
  }
229
259
 
230
260
  }
231
- @mixin hook-switcher-misc(){}
232
- @mixin hook-svg-misc(){}
233
- @mixin hook-subnav(){}
234
- @mixin hook-subnav-item(){}
235
- @mixin hook-subnav-item-hover(){}
236
- @mixin hook-subnav-item-active(){}
237
- @mixin hook-subnav-divider(){}
238
- @mixin hook-subnav-pill-item(){}
239
- @mixin hook-subnav-pill-item-hover(){}
240
- @mixin hook-subnav-pill-item-onclick(){}
241
- @mixin hook-subnav-pill-item-active(){}
242
- @mixin hook-subnav-item-disabled(){}
243
- @mixin hook-subnav-misc(){}
244
- @mixin hook-inverse-subnav-item(){}
245
- @mixin hook-inverse-subnav-item-hover(){}
246
- @mixin hook-inverse-subnav-item-active(){}
247
- @mixin hook-inverse-subnav-divider(){}
248
- @mixin hook-inverse-subnav-pill-item(){}
249
- @mixin hook-inverse-subnav-pill-item-hover(){}
250
- @mixin hook-inverse-subnav-pill-item-onclick(){}
251
- @mixin hook-inverse-subnav-pill-item-active(){}
252
- @mixin hook-inverse-subnav-item-disabled(){}
253
- @mixin hook-inverse-component-subnav(){
261
+ @mixin hook-button(){}
262
+ @mixin hook-button-hover(){}
263
+ @mixin hook-button-active(){}
264
+ @mixin hook-button-default(){}
265
+ @mixin hook-button-default-hover(){}
266
+ @mixin hook-button-default-active(){}
267
+ @mixin hook-button-primary(){}
268
+ @mixin hook-button-primary-hover(){}
269
+ @mixin hook-button-primary-active(){}
270
+ @mixin hook-button-secondary(){}
271
+ @mixin hook-button-secondary-hover(){}
272
+ @mixin hook-button-secondary-active(){}
273
+ @mixin hook-button-danger(){}
274
+ @mixin hook-button-danger-hover(){}
275
+ @mixin hook-button-danger-active(){}
276
+ @mixin hook-button-disabled(){}
277
+ @mixin hook-button-small(){}
278
+ @mixin hook-button-large(){}
279
+ @mixin hook-button-text(){}
280
+ @mixin hook-button-text-hover(){}
281
+ @mixin hook-button-text-disabled(){}
282
+ @mixin hook-button-link(){}
283
+ @mixin hook-button-misc(){}
284
+ @mixin hook-inverse-button-default(){}
285
+ @mixin hook-inverse-button-default-hover(){}
286
+ @mixin hook-inverse-button-default-active(){}
287
+ @mixin hook-inverse-button-primary(){}
288
+ @mixin hook-inverse-button-primary-hover(){}
289
+ @mixin hook-inverse-button-primary-active(){}
290
+ @mixin hook-inverse-button-secondary(){}
291
+ @mixin hook-inverse-button-secondary-hover(){}
292
+ @mixin hook-inverse-button-secondary-active(){}
293
+ @mixin hook-inverse-button-text(){}
294
+ @mixin hook-inverse-button-text-hover(){}
295
+ @mixin hook-inverse-button-text-disabled(){}
296
+ @mixin hook-inverse-button-link(){}
297
+ @mixin hook-inverse-component-button(){
254
298
 
255
- .uk-subnav > * > :first-child {
256
- color: $inverse-subnav-item-color;
257
- @if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
258
- }
299
+ //
300
+ // Default
301
+ //
259
302
 
260
- .uk-subnav > * > a:hover {
261
- color: $inverse-subnav-item-hover-color;
262
- @if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
303
+ .uk-button-default {
304
+ background-color: $inverse-button-default-background;
305
+ color: $inverse-button-default-color;
306
+ @if(mixin-exists(hook-inverse-button-default)) {@include hook-inverse-button-default();}
263
307
  }
264
308
 
265
- .uk-subnav > .uk-active > a {
266
- color: $inverse-subnav-item-active-color;
267
- @if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
309
+ .uk-button-default:hover {
310
+ background-color: $inverse-button-default-hover-background;
311
+ color: $inverse-button-default-hover-color;
312
+ @if(mixin-exists(hook-inverse-button-default-hover)) {@include hook-inverse-button-default-hover();}
268
313
  }
269
314
 
270
- //
271
- // Divider
272
- //
273
-
274
- .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
275
- border-left-color: $inverse-subnav-divider-border;
276
- @if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
315
+ .uk-button-default:active,
316
+ .uk-button-default.uk-active {
317
+ background-color: $inverse-button-default-active-background;
318
+ color: $inverse-button-default-active-color;
319
+ @if(mixin-exists(hook-inverse-button-default-active)) {@include hook-inverse-button-default-active();}
277
320
  }
278
321
 
279
322
  //
280
- // Pill
323
+ // Primary
281
324
  //
282
325
 
283
- .uk-subnav-pill > * > :first-child {
284
- background-color: $inverse-subnav-pill-item-background;
285
- color: $inverse-subnav-pill-item-color;
286
- @if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
287
- }
288
-
289
- .uk-subnav-pill > * > a:hover {
290
- background-color: $inverse-subnav-pill-item-hover-background;
291
- color: $inverse-subnav-pill-item-hover-color;
292
- @if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
326
+ .uk-button-primary {
327
+ background-color: $inverse-button-primary-background;
328
+ color: $inverse-button-primary-color;
329
+ @if(mixin-exists(hook-inverse-button-primary)) {@include hook-inverse-button-primary();}
293
330
  }
294
331
 
295
- .uk-subnav-pill > * > a:active {
296
- background-color: $inverse-subnav-pill-item-onclick-background;
297
- color: $inverse-subnav-pill-item-onclick-color;
298
- @if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
332
+ .uk-button-primary:hover {
333
+ background-color: $inverse-button-primary-hover-background;
334
+ color: $inverse-button-primary-hover-color;
335
+ @if(mixin-exists(hook-inverse-button-primary-hover)) {@include hook-inverse-button-primary-hover();}
299
336
  }
300
337
 
301
- .uk-subnav-pill > .uk-active > a {
302
- background-color: $inverse-subnav-pill-item-active-background;
303
- color: $inverse-subnav-pill-item-active-color;
304
- @if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
338
+ .uk-button-primary:active,
339
+ .uk-button-primary.uk-active {
340
+ background-color: $inverse-button-primary-active-background;
341
+ color: $inverse-button-primary-active-color;
342
+ @if(mixin-exists(hook-inverse-button-primary-active)) {@include hook-inverse-button-primary-active();}
305
343
  }
306
344
 
307
345
  //
308
- // Disabled
346
+ // Secondary
309
347
  //
310
348
 
311
- .uk-subnav > .uk-disabled > a {
312
- color: $inverse-subnav-item-disabled-color;
313
- @if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
349
+ .uk-button-secondary {
350
+ background-color: $inverse-button-secondary-background;
351
+ color: $inverse-button-secondary-color;
352
+ @if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
314
353
  }
315
354
 
316
- }
317
- @mixin hook-sticky-misc(){}
318
- @mixin hook-spinner(){}
319
- @mixin hook-spinner-misc(){}
320
- @mixin hook-sortable(){}
321
- @mixin hook-sortable-drag(){}
322
- @mixin hook-sortable-placeholder(){}
323
- @mixin hook-sortable-empty(){}
324
- @mixin hook-sortable-misc(){}
325
- @mixin hook-slideshow(){}
326
- @mixin hook-slideshow-misc(){}
327
- @mixin hook-slider(){}
328
- @mixin hook-slider-misc(){}
329
- @mixin hook-slidenav(){}
330
- @mixin hook-slidenav-hover(){}
331
- @mixin hook-slidenav-active(){}
332
- @mixin hook-slidenav-previous(){}
333
- @mixin hook-slidenav-next(){}
334
- @mixin hook-slidenav-large(){}
335
- @mixin hook-slidenav-container(){}
336
- @mixin hook-slidenav-misc(){}
337
- @mixin hook-inverse-slidenav(){}
338
- @mixin hook-inverse-slidenav-hover(){}
339
- @mixin hook-inverse-slidenav-active(){}
340
- @mixin hook-inverse-component-slidenav(){
341
-
342
- .uk-slidenav {
343
- color: $inverse-slidenav-color;
344
- @if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
345
- }
346
-
347
- .uk-slidenav:hover {
348
- color: $inverse-slidenav-hover-color;
349
- @if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
355
+ .uk-button-secondary:hover {
356
+ background-color: $inverse-button-secondary-hover-background;
357
+ color: $inverse-button-secondary-hover-color;
358
+ @if(mixin-exists(hook-inverse-button-secondary-hover)) {@include hook-inverse-button-secondary-hover();}
350
359
  }
351
360
 
352
- .uk-slidenav:active {
353
- color: $inverse-slidenav-active-color;
354
- @if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
361
+ .uk-button-secondary:active,
362
+ .uk-button-secondary.uk-active {
363
+ background-color: $inverse-button-secondary-active-background;
364
+ color: $inverse-button-secondary-active-color;
365
+ @if(mixin-exists(hook-inverse-button-secondary-active)) {@include hook-inverse-button-secondary-active();}
355
366
  }
356
367
 
357
- }
358
- @mixin hook-section(){}
359
- @mixin hook-section-default(){}
360
- @mixin hook-section-muted(){}
361
- @mixin hook-section-primary(){}
362
- @mixin hook-section-secondary(){}
363
- @mixin hook-section-overlap(){}
364
- @mixin hook-section-misc(){}
365
- @mixin hook-search-input(){}
366
- @mixin hook-search-icon(){}
367
- @mixin hook-search-default-input(){}
368
- @mixin hook-search-default-input-focus(){}
369
- @mixin hook-search-navbar-input(){}
370
- @mixin hook-search-navbar-input-focus(){}
371
- @mixin hook-search-large-input(){}
372
- @mixin hook-search-large-input-focus(){}
373
- @mixin hook-search-toggle(){}
374
- @mixin hook-search-toggle-hover(){}
375
- @mixin hook-search-misc(){}
376
- @mixin hook-inverse-search-default-input(){}
377
- @mixin hook-inverse-search-default-input-focus(){}
378
- @mixin hook-inverse-search-navbar-input(){}
379
- @mixin hook-inverse-search-navbar-input-focus(){}
380
- @mixin hook-inverse-search-large-input(){}
381
- @mixin hook-inverse-search-large-input-focus(){}
382
- @mixin hook-inverse-search-toggle(){}
383
- @mixin hook-inverse-search-toggle-hover(){}
384
- @mixin hook-inverse-component-search(){
385
-
386
368
  //
387
- // Input
369
+ // Text
388
370
  //
389
371
 
390
- .uk-search-input { color: $inverse-search-color; }
391
-
392
- .uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
372
+ .uk-button-text {
373
+ color: $inverse-button-text-color;
374
+ @if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
375
+ }
393
376
 
394
- //
395
- // Icon
396
- //
377
+ .uk-button-text:hover {
378
+ color: $inverse-button-text-hover-color;
379
+ @if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
380
+ }
397
381
 
398
- .uk-search .uk-search-icon { color: $inverse-search-icon-color; }
399
- .uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
382
+ .uk-button-text:disabled {
383
+ color: $inverse-button-text-disabled-color;
384
+ @if(mixin-exists(hook-inverse-button-text-disabled)) {@include hook-inverse-button-text-disabled();}
385
+ }
400
386
 
401
387
  //
402
- // Style modifier
388
+ // Link
403
389
  //
404
390
 
405
- .uk-search-default .uk-search-input {
406
- background-color: $inverse-search-default-background;
407
- @if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
391
+ .uk-button-link {
392
+ color: $inverse-button-link-color;
393
+ @if(mixin-exists(hook-inverse-button-link)) {@include hook-inverse-button-link();}
408
394
  }
409
395
 
410
- .uk-search-default .uk-search-input:focus {
411
- background-color: $inverse-search-default-focus-background;
412
- @if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
413
- }
396
+ .uk-button-link:hover { color: $inverse-button-link-hover-color; }
414
397
 
415
- .uk-search-navbar .uk-search-input {
416
- background-color: $inverse-search-navbar-background;
417
- @if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
418
- }
398
+ }
399
+ @mixin hook-card(){}
400
+ @mixin hook-card-body(){}
401
+ @mixin hook-card-header(){}
402
+ @mixin hook-card-footer(){}
403
+ @mixin hook-card-media(){}
404
+ @mixin hook-card-media-top(){}
405
+ @mixin hook-card-media-bottom(){}
406
+ @mixin hook-card-media-left(){}
407
+ @mixin hook-card-media-right(){}
408
+ @mixin hook-card-title(){}
409
+ @mixin hook-card-badge(){}
410
+ @mixin hook-card-hover(){}
411
+ @mixin hook-card-default(){}
412
+ @mixin hook-card-default-title(){}
413
+ @mixin hook-card-default-hover(){}
414
+ @mixin hook-card-default-header(){}
415
+ @mixin hook-card-default-footer(){}
416
+ @mixin hook-card-primary(){}
417
+ @mixin hook-card-primary-title(){}
418
+ @mixin hook-card-primary-hover(){}
419
+ @mixin hook-card-secondary(){}
420
+ @mixin hook-card-secondary-title(){}
421
+ @mixin hook-card-secondary-hover(){}
422
+ @mixin hook-card-misc(){}
423
+ @mixin hook-inverse-card-badge(){}
424
+ @mixin hook-inverse-component-card(){
419
425
 
420
- .uk-search-navbar .uk-search-input:focus {
421
- @if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
426
+ &.uk-card-badge {
427
+ background-color: $inverse-card-badge-background;
428
+ color: $inverse-card-badge-color;
429
+ @if(mixin-exists(hook-inverse-card-badge)) {@include hook-inverse-card-badge();}
422
430
  }
423
431
 
424
- .uk-search-large .uk-search-input {
425
- background-color: $inverse-search-large-background;
426
- @if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
427
- }
432
+ }
433
+ @mixin hook-close(){}
434
+ @mixin hook-close-hover(){}
435
+ @mixin hook-close-misc(){}
436
+ @mixin hook-inverse-close(){}
437
+ @mixin hook-inverse-close-hover(){}
438
+ @mixin hook-inverse-component-close(){
428
439
 
429
- .uk-search-large .uk-search-input:focus {
430
- @if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
440
+ .uk-close {
441
+ color: $inverse-close-color;
442
+ @if(mixin-exists(hook-inverse-close)) {@include hook-inverse-close();}
431
443
  }
432
444
 
433
- //
434
- // Toggle
435
- //
436
-
437
- .uk-search-toggle {
438
- color: $inverse-search-toggle-color;
439
- @if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
445
+ .uk-close:hover {
446
+ color: $inverse-close-hover-color;
447
+ @if(mixin-exists(hook-inverse-close-hover)) {@include hook-inverse-close-hover();}
440
448
  }
441
449
 
442
- .uk-search-toggle:hover {
443
- color: $inverse-search-toggle-hover-color;
444
- @if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
445
- }
450
+ }
451
+ @mixin hook-column-misc(){}
452
+ @mixin hook-inverse-component-column(){
453
+
454
+ .uk-column-divider { column-rule-color: $inverse-column-divider-rule-color; }
446
455
 
447
456
  }
448
- @mixin hook-progress(){}
449
- @mixin hook-progress-bar(){}
450
- @mixin hook-progress-misc(){}
451
- @mixin hook-print(){}
452
- @mixin hook-position-misc(){}
453
- @mixin hook-placeholder(){}
454
- @mixin hook-placeholder-misc(){}
455
- @mixin hook-pagination(){}
456
- @mixin hook-pagination-item(){}
457
- @mixin hook-pagination-item-hover(){}
458
- @mixin hook-pagination-item-active(){}
459
- @mixin hook-pagination-item-disabled(){}
460
- @mixin hook-pagination-misc(){}
461
- @mixin hook-inverse-pagination-item(){}
462
- @mixin hook-inverse-pagination-item-hover(){}
463
- @mixin hook-inverse-pagination-item-active(){}
464
- @mixin hook-inverse-pagination-item-disabled(){}
465
- @mixin hook-inverse-component-pagination(){
457
+ @mixin hook-comment(){}
458
+ @mixin hook-comment-body(){}
459
+ @mixin hook-comment-header(){}
460
+ @mixin hook-comment-title(){}
461
+ @mixin hook-comment-meta(){}
462
+ @mixin hook-comment-avatar(){}
463
+ @mixin hook-comment-list-adjacent(){}
464
+ @mixin hook-comment-list-sub(){}
465
+ @mixin hook-comment-list-sub-adjacent(){}
466
+ @mixin hook-comment-primary(){}
467
+ @mixin hook-comment-misc(){}
468
+ @mixin hook-container-misc(){}
469
+ @mixin hook-countdown(){}
470
+ @mixin hook-countdown-item(){}
471
+ @mixin hook-countdown-number(){}
472
+ @mixin hook-countdown-separator(){}
473
+ @mixin hook-countdown-label(){}
474
+ @mixin hook-countdown-misc(){}
475
+ @mixin hook-inverse-countdown-item(){}
476
+ @mixin hook-inverse-countdown-number(){}
477
+ @mixin hook-inverse-countdown-separator(){}
478
+ @mixin hook-inverse-countdown-label(){}
479
+ @mixin hook-inverse-component-countdown(){
466
480
 
467
- .uk-pagination > * > * {
468
- color: $inverse-pagination-item-color;
469
- @if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
481
+ .uk-countdown-number,
482
+ .uk-countdown-separator {
483
+ @if(mixin-exists(hook-inverse-countdown-item)) {@include hook-inverse-countdown-item();}
470
484
  }
471
485
 
472
- .uk-pagination > * > :hover {
473
- color: $inverse-pagination-item-hover-color;
474
- @if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
486
+ .uk-countdown-number {
487
+ @if(mixin-exists(hook-inverse-countdown-number)) {@include hook-inverse-countdown-number();}
475
488
  }
476
489
 
477
- .uk-pagination > .uk-active > * {
478
- color: $inverse-pagination-item-active-color;
479
- @if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
490
+ .uk-countdown-separator {
491
+ @if(mixin-exists(hook-inverse-countdown-separator)) {@include hook-inverse-countdown-separator();}
480
492
  }
481
493
 
482
- .uk-pagination > .uk-disabled > * {
483
- color: $inverse-pagination-item-disabled-color;
484
- @if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
494
+ .uk-countdown-label {
495
+ @if(mixin-exists(hook-inverse-countdown-label)) {@include hook-inverse-countdown-label();}
485
496
  }
486
497
 
487
498
  }
488
- @mixin hook-padding-misc(){}
489
- @mixin hook-overlay(){}
490
- @mixin hook-overlay-icon(){}
491
- @mixin hook-overlay-default(){}
492
- @mixin hook-overlay-primary(){}
493
- @mixin hook-overlay-misc(){}
494
- @mixin hook-offcanvas-bar(){}
495
- @mixin hook-offcanvas-close(){}
496
- @mixin hook-offcanvas-overlay(){}
497
- @mixin hook-offcanvas-misc(){}
498
- @mixin hook-notification(){}
499
- @mixin hook-notification-message(){}
500
- @mixin hook-notification-close(){}
501
- @mixin hook-notification-message-primary(){}
502
- @mixin hook-notification-message-success(){}
503
- @mixin hook-notification-message-warning(){}
504
- @mixin hook-notification-message-danger(){}
505
- @mixin hook-notification-misc(){}
506
- @mixin hook-navbar(){}
507
- @mixin hook-navbar-container(){}
508
- @mixin hook-navbar-nav-item(){}
509
- @mixin hook-navbar-nav-item-hover(){}
510
- @mixin hook-navbar-nav-item-onclick(){}
511
- @mixin hook-navbar-nav-item-active(){}
512
- @mixin hook-navbar-item(){}
513
- @mixin hook-navbar-toggle(){}
514
- @mixin hook-navbar-toggle-hover(){}
515
- @mixin hook-navbar-toggle-icon(){}
516
- @mixin hook-navbar-toggle-icon-hover(){}
517
- @mixin hook-navbar-subtitle(){}
518
- @mixin hook-navbar-primary(){}
519
- @mixin hook-navbar-transparent(){}
520
- @mixin hook-navbar-sticky(){}
521
- @mixin hook-navbar-dropdown(){}
522
- @mixin hook-navbar-dropdown-large(){}
523
- @mixin hook-navbar-dropdown-dropbar(){}
524
- @mixin hook-navbar-dropdown-dropbar-large(){}
525
- @mixin hook-navbar-dropdown-nav(){}
526
- @mixin hook-navbar-dropdown-nav-item(){}
527
- @mixin hook-navbar-dropdown-nav-item-hover(){}
528
- @mixin hook-navbar-dropdown-nav-item-active(){}
529
- @mixin hook-navbar-dropdown-nav-subtitle(){}
530
- @mixin hook-navbar-dropdown-nav-header(){}
531
- @mixin hook-navbar-dropdown-nav-divider(){}
532
- @mixin hook-navbar-dropbar(){}
533
- @mixin hook-navbar-misc(){}
534
- @mixin hook-inverse-navbar-nav-item(){}
535
- @mixin hook-inverse-navbar-nav-item-hover(){}
536
- @mixin hook-inverse-navbar-nav-item-onclick(){}
537
- @mixin hook-inverse-navbar-nav-item-active(){}
538
- @mixin hook-inverse-navbar-item(){}
539
- @mixin hook-inverse-navbar-toggle(){}
540
- @mixin hook-inverse-navbar-toggle-hover(){}
541
- @mixin hook-inverse-component-navbar(){
499
+ @mixin hook-cover-misc(){}
500
+ @mixin hook-description-list-term(){}
501
+ @mixin hook-description-list-description(){}
502
+ @mixin hook-description-list-divider-term(){}
503
+ @mixin hook-description-list-misc(){}
504
+ @mixin svg-fill($src, $color-default, $color-new, $property: background-image){
542
505
 
543
- //
544
- // Nav Item
545
- //
506
+ $escape-color-default: escape($color-default) !default;
507
+ $escape-color-new: escape("#{$color-new}") !default;
546
508
 
547
- .uk-navbar-nav > li > a {
548
- color: $inverse-navbar-nav-item-color;
549
- @if(mixin-exists(hook-inverse-navbar-nav-item)) {@include hook-inverse-navbar-nav-item();}
509
+ $data-uri: data-uri('image/svg+xml;charset=UTF-8', "#{$src}") !default;
510
+ $replace-src: replace("#{$data-uri}", "#{$escape-color-default}", "#{$escape-color-new}", "g") !default;
511
+
512
+ #{$property}: unquote($replace-src);
513
+ }
514
+ @mixin hook-divider-icon(){}
515
+ @mixin hook-divider-icon-line(){}
516
+ @mixin hook-divider-icon-line-left(){}
517
+ @mixin hook-divider-icon-line-right(){}
518
+ @mixin hook-divider-small(){}
519
+ @mixin hook-divider-vertical(){}
520
+ @mixin hook-divider-misc(){}
521
+ @mixin hook-inverse-divider-icon(){}
522
+ @mixin hook-inverse-divider-icon-line(){}
523
+ @mixin hook-inverse-divider-small(){}
524
+ @mixin hook-inverse-divider-vertical(){}
525
+ @mixin hook-inverse-component-divider(){
526
+
527
+ .uk-divider-icon {
528
+ @include svg-fill($internal-divider-icon-image, "#000", $inverse-divider-icon-color);
529
+ @if(mixin-exists(hook-inverse-divider-icon)) {@include hook-inverse-divider-icon();}
550
530
  }
551
531
 
552
- .uk-navbar-nav > li:hover > a,
553
- .uk-navbar-nav > li > a[aria-expanded="true"] {
554
- color: $inverse-navbar-nav-item-hover-color;
555
- @if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
532
+ .uk-divider-icon::before,
533
+ .uk-divider-icon::after {
534
+ border-bottom-color: $inverse-divider-icon-line-border;
535
+ @if(mixin-exists(hook-inverse-divider-icon-line)) {@include hook-inverse-divider-icon-line();}
556
536
  }
557
537
 
558
- .uk-navbar-nav > li > a:active {
559
- color: $inverse-navbar-nav-item-onclick-color;
560
- @if(mixin-exists(hook-inverse-navbar-nav-item-onclick)) {@include hook-inverse-navbar-nav-item-onclick();}
538
+ .uk-divider-small::after {
539
+ border-top-color: $inverse-divider-small-border;
540
+ @if(mixin-exists(hook-inverse-divider-small)) {@include hook-inverse-divider-small();}
561
541
  }
562
542
 
563
- .uk-navbar-nav > li.uk-active > a {
564
- color: $inverse-navbar-nav-item-active-color;
565
- @if(mixin-exists(hook-inverse-navbar-nav-item-active)) {@include hook-inverse-navbar-nav-item-active();}
543
+ .uk-divider-vertical {
544
+ border-left-color: $inverse-divider-vertical-border;
545
+ @if(mixin-exists(hook-inverse-divider-vertical)) {@include hook-inverse-divider-vertical();}
566
546
  }
567
547
 
568
- //
569
- // Item
570
- //
548
+ }
549
+ @mixin hook-dotnav(){}
550
+ @mixin hook-dotnav-item(){}
551
+ @mixin hook-dotnav-item-hover(){}
552
+ @mixin hook-dotnav-item-onclick(){}
553
+ @mixin hook-dotnav-item-active(){}
554
+ @mixin hook-dotnav-misc(){}
555
+ @mixin hook-inverse-dotnav-item(){}
556
+ @mixin hook-inverse-dotnav-item-hover(){}
557
+ @mixin hook-inverse-dotnav-item-onclick(){}
558
+ @mixin hook-inverse-dotnav-item-active(){}
559
+ @mixin hook-inverse-component-dotnav(){
571
560
 
572
- .uk-navbar-item {
573
- color: $inverse-navbar-item-color;
574
- @if(mixin-exists(hook-inverse-navbar-item)) {@include hook-inverse-navbar-item();}
561
+ .uk-dotnav > * > * {
562
+ background-color: $inverse-dotnav-item-background;
563
+ @if(mixin-exists(hook-inverse-dotnav-item)) {@include hook-inverse-dotnav-item();}
575
564
  }
576
565
 
577
- //
578
- // Toggle
579
- //
566
+ .uk-dotnav > * > :hover {
567
+ background-color: $inverse-dotnav-item-hover-background;
568
+ @if(mixin-exists(hook-inverse-dotnav-item-hover)) {@include hook-inverse-dotnav-item-hover();}
569
+ }
580
570
 
581
- .uk-navbar-toggle {
582
- color: $inverse-navbar-toggle-color;
583
- @if(mixin-exists(hook-inverse-navbar-toggle)) {@include hook-inverse-navbar-toggle();}
571
+ .uk-dotnav > * > :active {
572
+ background-color: $inverse-dotnav-item-onclick-background;
573
+ @if(mixin-exists(hook-inverse-dotnav-item-onclick)) {@include hook-inverse-dotnav-item-onclick();}
584
574
  }
585
575
 
586
- .uk-navbar-toggle:hover,
587
- .uk-navbar-toggle[aria-expanded="true"] {
588
- color: $inverse-navbar-toggle-hover-color;
589
- @if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
576
+ .uk-dotnav > .uk-active > * {
577
+ background-color: $inverse-dotnav-item-active-background;
578
+ @if(mixin-exists(hook-inverse-dotnav-item-active)) {@include hook-inverse-dotnav-item-active();}
590
579
  }
591
580
 
592
581
  }
593
- @mixin hook-nav-sub(){}
594
- @mixin hook-nav-header(){}
595
- @mixin hook-nav-divider(){}
596
- @mixin hook-nav-default(){}
597
- @mixin hook-nav-default-item(){}
598
- @mixin hook-nav-default-item-hover(){}
599
- @mixin hook-nav-default-item-active(){}
600
- @mixin hook-nav-default-subtitle(){}
601
- @mixin hook-nav-default-header(){}
602
- @mixin hook-nav-default-divider(){}
603
- @mixin hook-nav-primary(){}
604
- @mixin hook-nav-primary-item(){}
605
- @mixin hook-nav-primary-item-hover(){}
606
- @mixin hook-nav-primary-item-active(){}
607
- @mixin hook-nav-primary-subtitle(){}
608
- @mixin hook-nav-primary-header(){}
609
- @mixin hook-nav-primary-divider(){}
610
- @mixin hook-nav-secondary(){}
611
- @mixin hook-nav-secondary-item(){}
612
- @mixin hook-nav-secondary-item-hover(){}
613
- @mixin hook-nav-secondary-item-active(){}
614
- @mixin hook-nav-secondary-subtitle(){}
615
- @mixin hook-nav-secondary-subtitle-hover(){}
616
- @mixin hook-nav-secondary-subtitle-active(){}
617
- @mixin hook-nav-secondary-header(){}
618
- @mixin hook-nav-secondary-divider(){}
619
- @mixin hook-nav-dividers(){}
620
- @mixin hook-nav-misc(){}
621
- @mixin hook-inverse-nav-default-item(){}
622
- @mixin hook-inverse-nav-default-item-hover(){}
623
- @mixin hook-inverse-nav-default-item-active(){}
624
- @mixin hook-inverse-nav-default-header(){}
625
- @mixin hook-inverse-nav-default-divider(){}
626
- @mixin hook-inverse-nav-primary-item(){}
627
- @mixin hook-inverse-nav-primary-item-hover(){}
628
- @mixin hook-inverse-nav-primary-item-active(){}
629
- @mixin hook-inverse-nav-primary-header(){}
630
- @mixin hook-inverse-nav-primary-divider(){}
631
- @mixin hook-inverse-nav-secondary-item(){}
632
- @mixin hook-inverse-nav-secondary-item-hover(){}
633
- @mixin hook-inverse-nav-secondary-item-active(){}
634
- @mixin hook-inverse-nav-secondary-subtitle(){}
635
- @mixin hook-inverse-nav-secondary-subtitle-hover(){}
636
- @mixin hook-inverse-nav-secondary-subtitle-active(){}
637
- @mixin hook-inverse-nav-secondary-header(){}
638
- @mixin hook-inverse-nav-secondary-divider(){}
639
- @mixin hook-inverse-nav-dividers(){}
640
- @mixin hook-inverse-component-nav(){
582
+ @mixin hook-drop-misc(){}
583
+ @mixin hook-dropbar(){}
584
+ @mixin hook-dropbar-top(){}
585
+ @mixin hook-dropbar-bottom(){}
586
+ @mixin hook-dropbar-left(){}
587
+ @mixin hook-dropbar-right(){}
588
+ @mixin hook-dropbar-misc(){}
589
+ @mixin hook-dropdown(){}
590
+ @mixin hook-dropdown-dropbar(){}
591
+ @mixin hook-dropdown-dropbar-large(){}
592
+ @mixin hook-dropdown-nav(){}
593
+ @mixin hook-dropdown-nav-item(){}
594
+ @mixin hook-dropdown-nav-item-hover(){}
595
+ @mixin hook-dropdown-nav-subtitle(){}
596
+ @mixin hook-dropdown-nav-header(){}
597
+ @mixin hook-dropdown-nav-divider(){}
598
+ @mixin hook-dropdown-misc(){}
599
+ @mixin hook-dropnav-misc(){}
600
+ @mixin hook-flex-misc(){}
601
+ @mixin hook-form-range(){}
602
+ @mixin hook-form-range-track(){}
603
+ @mixin hook-form-range-track-focus(){}
604
+ @mixin hook-form-range-thumb(){}
605
+ @mixin hook-form-range-misc(){}
606
+ @mixin hook-form(){}
607
+ @mixin hook-form-single-line(){}
608
+ @mixin hook-form-multi-line(){}
609
+ @mixin hook-form-focus(){}
610
+ @mixin hook-form-disabled(){}
611
+ @mixin hook-form-danger(){}
612
+ @mixin hook-form-success(){}
613
+ @mixin hook-form-blank(){}
614
+ @mixin hook-form-blank-focus(){}
615
+ @mixin hook-form-radio(){}
616
+ @mixin hook-form-radio-focus(){}
617
+ @mixin hook-form-radio-checked(){}
618
+ @mixin hook-form-radio-checked-focus(){}
619
+ @mixin hook-form-radio-disabled(){}
620
+ @mixin hook-form-legend(){}
621
+ @mixin hook-form-label(){}
622
+ @mixin hook-form-stacked-label(){}
623
+ @mixin hook-form-horizontal-label(){}
624
+ @mixin hook-form-icon(){}
625
+ @mixin hook-form-misc(){}
626
+ @mixin hook-inverse-form(){}
627
+ @mixin hook-inverse-form-focus(){}
628
+ @mixin hook-inverse-form-radio(){}
629
+ @mixin hook-inverse-form-radio-focus(){}
630
+ @mixin hook-inverse-form-radio-checked(){}
631
+ @mixin hook-inverse-form-radio-checked-focus(){}
632
+ @mixin hook-inverse-form-label(){}
633
+ @mixin hook-inverse-form-icon(){}
634
+ @mixin hook-inverse-component-form(){
641
635
 
642
- //
643
- // Default
644
- //
636
+ .uk-input,
637
+ .uk-select,
638
+ .uk-textarea {
639
+ background-color: $inverse-form-background;
640
+ color: $inverse-form-color;
641
+ background-clip: padding-box;
642
+ @if(mixin-exists(hook-inverse-form)) {@include hook-inverse-form();}
645
643
 
646
- .uk-nav-default > li > a {
647
- color: $inverse-nav-default-item-color;
648
- @if(mixin-exists(hook-inverse-nav-default-item)) {@include hook-inverse-nav-default-item();}
644
+ &:focus {
645
+ background-color: $inverse-form-focus-background;
646
+ color: $inverse-form-focus-color;
647
+ @if(mixin-exists(hook-inverse-form-focus)) {@include hook-inverse-form-focus();}
648
+ }
649
649
  }
650
650
 
651
- .uk-nav-default > li > a:hover {
652
- color: $inverse-nav-default-item-hover-color;
653
- @if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
654
- }
651
+ //
652
+ // Placeholder
653
+ //
655
654
 
656
- .uk-nav-default > li.uk-active > a {
657
- color: $inverse-nav-default-item-active-color;
658
- @if(mixin-exists(hook-inverse-nav-default-item-active)) {@include hook-inverse-nav-default-item-active();}
659
- }
655
+ .uk-input::placeholder { color: $inverse-form-placeholder-color; }
660
656
 
661
- .uk-nav-default .uk-nav-header {
662
- color: $inverse-nav-default-header-color;
663
- @if(mixin-exists(hook-inverse-nav-default-header)) {@include hook-inverse-nav-default-header();}
664
- }
657
+ .uk-textarea::placeholder { color: $inverse-form-placeholder-color; }
665
658
 
666
- .uk-nav-default .uk-nav-divider {
667
- border-top-color: $inverse-nav-default-divider-border;
668
- @if(mixin-exists(hook-inverse-nav-default-divider)) {@include hook-inverse-nav-default-divider();}
669
- }
659
+ //
660
+ // Select
661
+ //
670
662
 
671
- .uk-nav-default .uk-nav-sub a { color: $inverse-nav-default-sublist-item-color; }
663
+ .uk-select:not([multiple]):not([size]) { @include svg-fill($internal-form-select-image, "#000", $inverse-form-select-icon-color); }
672
664
 
673
- .uk-nav-default .uk-nav-sub a:hover { color: $inverse-nav-default-sublist-item-hover-color; }
665
+ //
666
+ // Datalist
667
+ //
674
668
 
675
- .uk-nav-default .uk-nav-sub li.uk-active > a { color: $inverse-nav-default-sublist-item-active-color; }
669
+ .uk-input[list]:hover,
670
+ .uk-input[list]:focus { @include svg-fill($internal-form-datalist-image, "#000", $inverse-form-datalist-icon-color); }
676
671
 
677
672
  //
678
- // Primary
673
+ // Radio and checkbox
679
674
  //
680
675
 
681
- .uk-nav-primary > li > a {
682
- color: $inverse-nav-primary-item-color;
683
- @if(mixin-exists(hook-inverse-nav-primary-item)) {@include hook-inverse-nav-primary-item();}
684
- }
685
-
686
- .uk-nav-primary > li > a:hover {
687
- color: $inverse-nav-primary-item-hover-color;
688
- @if(mixin-exists(hook-inverse-nav-primary-item-hover)) {@include hook-inverse-nav-primary-item-hover();}
676
+ .uk-radio,
677
+ .uk-checkbox {
678
+ background-color: $inverse-form-radio-background;
679
+ @if(mixin-exists(hook-inverse-form-radio)) {@include hook-inverse-form-radio();}
689
680
  }
690
681
 
691
- .uk-nav-primary > li.uk-active > a {
692
- color: $inverse-nav-primary-item-active-color;
693
- @if(mixin-exists(hook-inverse-nav-primary-item-active)) {@include hook-inverse-nav-primary-item-active();}
682
+ // Focus
683
+ .uk-radio:focus,
684
+ .uk-checkbox:focus {
685
+ background-color: $inverse-form-radio-focus-background;
686
+ @if(mixin-exists(hook-inverse-form-radio-focus)) {@include hook-inverse-form-radio-focus();}
694
687
  }
695
688
 
696
- .uk-nav-primary .uk-nav-header {
697
- color: $inverse-nav-primary-header-color;
698
- @if(mixin-exists(hook-inverse-nav-primary-header)) {@include hook-inverse-nav-primary-header();}
689
+ // Checked
690
+ .uk-radio:checked,
691
+ .uk-checkbox:checked,
692
+ .uk-checkbox:indeterminate {
693
+ background-color: $inverse-form-radio-checked-background;
694
+ @if(mixin-exists(hook-inverse-form-radio-checked)) {@include hook-inverse-form-radio-checked();}
699
695
  }
700
696
 
701
- .uk-nav-primary .uk-nav-divider {
702
- border-top-color: $inverse-nav-primary-divider-border;
703
- @if(mixin-exists(hook-inverse-nav-primary-divider)) {@include hook-inverse-nav-primary-divider();}
697
+ // Focus
698
+ .uk-radio:checked:focus,
699
+ .uk-checkbox:checked:focus,
700
+ .uk-checkbox:indeterminate:focus {
701
+ background-color: $inverse-form-radio-checked-focus-background;
702
+ @if(mixin-exists(hook-inverse-form-radio-checked-focus)) {@include hook-inverse-form-radio-checked-focus();}
704
703
  }
705
704
 
706
- .uk-nav-primary .uk-nav-sub a { color: $inverse-nav-primary-sublist-item-color; }
705
+ // Icon
706
+ .uk-radio:checked { @include svg-fill($internal-form-radio-image, "#000", $inverse-form-radio-checked-icon-color); }
707
+ .uk-checkbox:checked { @include svg-fill($internal-form-checkbox-image, "#000", $inverse-form-radio-checked-icon-color); }
708
+ .uk-checkbox:indeterminate { @include svg-fill($internal-form-checkbox-indeterminate-image, "#000", $inverse-form-radio-checked-icon-color); }
707
709
 
708
- .uk-nav-primary .uk-nav-sub a:hover { color: $inverse-nav-primary-sublist-item-hover-color; }
710
+ // Label
711
+ .uk-form-label {
712
+ @if(mixin-exists(hook-inverse-form-label)) {@include hook-inverse-form-label();}
713
+ }
709
714
 
710
- .uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
715
+ // Icon
716
+ .uk-form-icon {
717
+ color: $inverse-form-icon-color;
718
+ @if(mixin-exists(hook-inverse-form-icon)) {@include hook-inverse-form-icon();}
719
+ }
720
+ .uk-form-icon:hover { color: $inverse-form-icon-hover-color; }
711
721
 
712
- //
713
- // Secondary
714
- //
722
+ }
723
+ @mixin hook-grid-divider-horizontal(){}
724
+ @mixin hook-grid-divider-vertical(){}
725
+ @mixin hook-grid-misc(){}
726
+ @mixin hook-inverse-grid-divider-horizontal(){}
727
+ @mixin hook-inverse-grid-divider-vertical(){}
728
+ @mixin hook-inverse-component-grid(){
715
729
 
716
- .uk-nav-secondary > li > a {
717
- color: $inverse-nav-secondary-item-color;
718
- @if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
730
+ .uk-grid-divider > :not(.uk-first-column)::before {
731
+ border-left-color: $inverse-grid-divider-border;
732
+ @if(mixin-exists(hook-inverse-grid-divider-horizontal)) {@include hook-inverse-grid-divider-horizontal();}
719
733
  }
720
734
 
721
- .uk-nav-secondary > li > a:hover {
722
- color: $inverse-nav-secondary-item-hover-color;
723
- @if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
735
+ .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
736
+ border-top-color: $inverse-grid-divider-border;
737
+ @if(mixin-exists(hook-inverse-grid-divider-vertical)) {@include hook-inverse-grid-divider-vertical();}
724
738
  }
725
739
 
726
- .uk-nav-secondary > li.uk-active > a {
727
- color: $inverse-nav-secondary-item-active-color;
728
- @if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
740
+ }
741
+ @mixin hook-heading-small(){}
742
+ @mixin hook-heading-medium(){}
743
+ @mixin hook-heading-large(){}
744
+ @mixin hook-heading-xlarge(){}
745
+ @mixin hook-heading-2xlarge(){}
746
+ @mixin hook-heading-primary(){}
747
+ @mixin hook-heading-hero(){}
748
+ @mixin hook-heading-divider(){}
749
+ @mixin hook-heading-bullet(){}
750
+ @mixin hook-heading-line(){}
751
+ @mixin hook-heading-misc(){}
752
+ @mixin hook-inverse-heading-small(){}
753
+ @mixin hook-inverse-heading-medium(){}
754
+ @mixin hook-inverse-heading-large(){}
755
+ @mixin hook-inverse-heading-xlarge(){}
756
+ @mixin hook-inverse-heading-2xlarge(){}
757
+ @mixin hook-inverse-heading-primary(){}
758
+ @mixin hook-inverse-heading-hero(){}
759
+ @mixin hook-inverse-heading-divider(){}
760
+ @mixin hook-inverse-heading-bullet(){}
761
+ @mixin hook-inverse-heading-line(){}
762
+ @mixin hook-inverse-component-heading(){
763
+
764
+ .uk-heading-small {
765
+ @if(mixin-exists(hook-inverse-heading-small)) {@include hook-inverse-heading-small();}
729
766
  }
730
767
 
731
- .uk-nav-secondary .uk-nav-subtitle {
732
- color: $inverse-nav-secondary-subtitle-color;
733
- @if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
768
+ .uk-heading-medium {
769
+ @if(mixin-exists(hook-inverse-heading-medium)) {@include hook-inverse-heading-medium();}
734
770
  }
735
771
 
736
- .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
737
- color: $inverse-nav-secondary-subtitle-hover-color;
738
- @if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
772
+ .uk-heading-large {
773
+ @if(mixin-exists(hook-inverse-heading-large)) {@include hook-inverse-heading-large();}
739
774
  }
740
775
 
741
- .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
742
- color: $inverse-nav-secondary-subtitle-active-color;
743
- @if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
776
+ .uk-heading-xlarge {
777
+ @if(mixin-exists(hook-inverse-heading-xlarge)) {@include hook-inverse-heading-xlarge();}
744
778
  }
745
779
 
746
- .uk-nav-secondary .uk-nav-header {
747
- color: $inverse-nav-secondary-header-color;
748
- @if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
780
+ .uk-heading-2xlarge {
781
+ @if(mixin-exists(hook-inverse-heading-2xlarge)) {@include hook-inverse-heading-2xlarge();}
749
782
  }
750
783
 
751
- .uk-nav-secondary .uk-nav-divider {
752
- border-top-color: $inverse-nav-secondary-divider-border;
753
- @if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
784
+ @if ($deprecated == true) { .uk-heading-primary { @if (mixin-exists(hook-inverse-heading-primary)) {@include hook-inverse-heading-primary();}}}
785
+
786
+ @if ($deprecated == true) { .uk-heading-hero { @if (mixin-exists(hook-inverse-heading-hero)) {@include hook-inverse-heading-hero();}}}
787
+
788
+ .uk-heading-divider {
789
+ border-bottom-color: $inverse-heading-divider-border;
790
+ @if(mixin-exists(hook-inverse-heading-divider)) {@include hook-inverse-heading-divider();}
754
791
  }
755
792
 
756
- .uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
793
+ .uk-heading-bullet::before {
794
+ border-left-color: $inverse-heading-bullet-border;
795
+ @if(mixin-exists(hook-inverse-heading-bullet)) {@include hook-inverse-heading-bullet();}
796
+ }
757
797
 
758
- .uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
798
+ .uk-heading-line > ::before,
799
+ .uk-heading-line > ::after {
800
+ border-bottom-color: $inverse-heading-line-border;
801
+ @if(mixin-exists(hook-inverse-heading-line)) {@include hook-inverse-heading-line();}
802
+ }
759
803
 
760
- .uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
804
+ }
805
+ @mixin hook-height-misc(){}
806
+ @mixin hook-icon-link(){}
807
+ @mixin hook-icon-link-hover(){}
808
+ @mixin hook-icon-link-active(){}
809
+ @mixin hook-icon-button(){}
810
+ @mixin hook-icon-button-hover(){}
811
+ @mixin hook-icon-button-active(){}
812
+ @mixin hook-icon-misc(){}
813
+ @mixin hook-inverse-icon-link(){}
814
+ @mixin hook-inverse-icon-link-hover(){}
815
+ @mixin hook-inverse-icon-link-active(){}
816
+ @mixin hook-inverse-icon-button(){}
817
+ @mixin hook-inverse-icon-button-hover(){}
818
+ @mixin hook-inverse-icon-button-active(){}
819
+ @mixin hook-inverse-component-icon(){
761
820
 
762
821
  //
763
- // Dividers
822
+ // Link
764
823
  //
765
824
 
766
- .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
767
- border-top-color: $inverse-nav-dividers-border;
768
- @if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
825
+ .uk-icon-link {
826
+ color: $inverse-icon-link-color;
827
+ @if(mixin-exists(hook-inverse-icon-link)) {@include hook-inverse-icon-link();}
769
828
  }
770
829
 
771
- }
772
- @mixin hook-modal(){}
773
- @mixin hook-modal-dialog(){}
774
- @mixin hook-modal-full(){}
775
- @mixin hook-modal-body(){}
776
- @mixin hook-modal-header(){}
777
- @mixin hook-modal-footer(){}
778
- @mixin hook-modal-title(){}
779
- @mixin hook-modal-close(){}
780
- @mixin hook-modal-close-hover(){}
781
- @mixin hook-modal-close-default(){}
782
- @mixin hook-modal-close-default-hover(){}
783
- @mixin hook-modal-close-outside(){}
784
- @mixin hook-modal-close-outside-hover(){}
785
- @mixin hook-modal-close-full(){}
786
- @mixin hook-modal-close-full-hover(){}
787
- @mixin hook-modal-misc(){}
788
- @mixin hook-marker(){}
789
- @mixin hook-marker-hover(){}
790
- @mixin hook-marker-misc(){}
791
- @mixin hook-inverse-marker(){}
792
- @mixin hook-inverse-marker-hover(){}
793
- @mixin hook-inverse-component-marker(){
794
-
795
- .uk-marker {
796
- background: $inverse-marker-background;
797
- color: $inverse-marker-color;
798
- @if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
830
+ .uk-icon-link:hover {
831
+ color: $inverse-icon-link-hover-color;
832
+ @if(mixin-exists(hook-inverse-icon-link-hover)) {@include hook-inverse-icon-link-hover();}
799
833
  }
800
834
 
801
- .uk-marker:hover {
802
- color: $inverse-marker-hover-color;
803
- @if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
835
+ .uk-icon-link:active,
836
+ .uk-active > .uk-icon-link {
837
+ color: $inverse-icon-link-active-color;
838
+ @if(mixin-exists(hook-inverse-icon-link-active)) {@include hook-inverse-icon-link-active();}
804
839
  }
805
840
 
806
- }
807
- @mixin hook-margin-misc(){}
808
- @mixin hook-list-divider(){}
809
- @mixin hook-list-striped(){}
810
- @mixin hook-list-misc(){}
811
- @mixin hook-inverse-list-divider(){}
812
- @mixin hook-inverse-list-striped(){}
813
- @mixin hook-inverse-component-list(){
841
+ //
842
+ // Button
843
+ //
814
844
 
815
- .uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
816
- .uk-list-emphasis > ::before { color: $inverse-list-emphasis-color !important; }
817
- .uk-list-primary > ::before { color: $inverse-list-primary-color !important; }
818
- .uk-list-secondary > ::before { color: $inverse-list-secondary-color !important; }
845
+ .uk-icon-button {
846
+ background-color: $inverse-icon-button-background;
847
+ color: $inverse-icon-button-color;
848
+ @if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
849
+ }
819
850
 
820
- .uk-list-bullet > ::before {
821
- @include svg-fill($internal-list-bullet-image, "#000", $inverse-list-bullet-icon-color);
851
+ .uk-icon-button:hover {
852
+ background-color: $inverse-icon-button-hover-background;
853
+ color: $inverse-icon-button-hover-color;
854
+ @if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
822
855
  }
823
856
 
824
- .uk-list-divider > :nth-child(n+2) {
825
- border-top-color: $inverse-list-divider-border;
826
- @if(mixin-exists(hook-inverse-list-divider)) {@include hook-inverse-list-divider();}
857
+ .uk-icon-button:active {
858
+ background-color: $inverse-icon-button-active-background;
859
+ color: $inverse-icon-button-active-color;
860
+ @if(mixin-exists(hook-inverse-icon-button-active)) {@include hook-inverse-icon-button-active();}
827
861
  }
828
862
 
829
- .uk-list-striped > * {
830
- @if(mixin-exists(hook-inverse-list-striped)) {@include hook-inverse-list-striped();}
863
+ }
864
+ @mixin hook-iconnav(){}
865
+ @mixin hook-iconnav-item(){}
866
+ @mixin hook-iconnav-item-hover(){}
867
+ @mixin hook-iconnav-item-active(){}
868
+ @mixin hook-iconnav-misc(){}
869
+ @mixin hook-inverse-iconnav-item(){}
870
+ @mixin hook-inverse-iconnav-item-hover(){}
871
+ @mixin hook-inverse-iconnav-item-active(){}
872
+ @mixin hook-inverse-component-iconnav(){
873
+
874
+ .uk-iconnav > * > a {
875
+ color: $inverse-iconnav-item-color;
876
+ @if(mixin-exists(hook-inverse-iconnav-item)) {@include hook-inverse-iconnav-item();}
831
877
  }
832
878
 
833
- .uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
879
+ .uk-iconnav > * > a:hover {
880
+ color: $inverse-iconnav-item-hover-color;
881
+ @if(mixin-exists(hook-inverse-iconnav-item-hover)) {@include hook-inverse-iconnav-item-hover();}
882
+ }
883
+
884
+ .uk-iconnav > .uk-active > a {
885
+ color: $inverse-iconnav-item-active-color;
886
+ @if(mixin-exists(hook-inverse-iconnav-item-active)) {@include hook-inverse-iconnav-item-active();}
887
+ }
834
888
 
835
889
  }
836
- @mixin hook-link-muted(){}
837
- @mixin hook-link-muted-hover(){}
838
- @mixin hook-link-text(){}
839
- @mixin hook-link-text-hover(){}
840
- @mixin hook-link-heading(){}
841
- @mixin hook-link-heading-hover(){}
842
- @mixin hook-link-reset(){}
843
- @mixin hook-link-misc(){}
844
- @mixin hook-inverse-link-muted(){}
845
- @mixin hook-inverse-link-muted-hover(){}
846
- @mixin hook-inverse-link-text-hover(){}
847
- @mixin hook-inverse-link-heading-hover(){}
848
890
  @mixin hook-inverse-component-link(){
849
891
 
850
892
  a.uk-link-muted,
@@ -875,31 +917,47 @@
875
917
  }
876
918
 
877
919
  }
878
- @mixin hook-lightbox(){}
879
- @mixin hook-lightbox-item(){}
880
- @mixin hook-lightbox-toolbar(){}
881
- @mixin hook-lightbox-toolbar-icon(){}
882
- @mixin hook-lightbox-toolbar-icon-hover(){}
883
- @mixin hook-lightbox-button(){}
884
- @mixin hook-lightbox-button-hover(){}
885
- @mixin hook-lightbox-button-active(){}
886
- @mixin hook-lightbox-misc(){}
887
- @mixin hook-leader(){}
888
- @mixin hook-leader-misc(){}
889
- @mixin hook-inverse-leader(){}
890
- @mixin hook-inverse-component-leader(){
920
+ @mixin hook-inverse-component-list(){
891
921
 
892
- .uk-leader-fill::after {
893
- @if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
922
+ .uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
923
+ .uk-list-emphasis > ::before { color: $inverse-list-emphasis-color !important; }
924
+ .uk-list-primary > ::before { color: $inverse-list-primary-color !important; }
925
+ .uk-list-secondary > ::before { color: $inverse-list-secondary-color !important; }
926
+
927
+ .uk-list-bullet > ::before {
928
+ @include svg-fill($internal-list-bullet-image, "#000", $inverse-list-bullet-icon-color);
929
+ }
930
+
931
+ .uk-list-divider > :nth-child(n+2) {
932
+ border-top-color: $inverse-list-divider-border;
933
+ @if(mixin-exists(hook-inverse-list-divider)) {@include hook-inverse-list-divider();}
934
+ }
935
+
936
+ .uk-list-striped > * {
937
+ @if(mixin-exists(hook-inverse-list-striped)) {@include hook-inverse-list-striped();}
938
+ }
939
+
940
+ .uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
941
+
942
+ }
943
+ @mixin hook-inverse-component-totop(){
944
+
945
+ .uk-totop {
946
+ color: $inverse-totop-color;
947
+ @if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
948
+ }
949
+
950
+ .uk-totop:hover {
951
+ color: $inverse-totop-hover-color;
952
+ @if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
953
+ }
954
+
955
+ .uk-totop:active {
956
+ color: $inverse-totop-active-color;
957
+ @if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
894
958
  }
895
959
 
896
960
  }
897
- @mixin hook-label(){}
898
- @mixin hook-label-success(){}
899
- @mixin hook-label-warning(){}
900
- @mixin hook-label-danger(){}
901
- @mixin hook-label-misc(){}
902
- @mixin hook-inverse-label(){}
903
961
  @mixin hook-inverse-component-label(){
904
962
 
905
963
  .uk-label {
@@ -909,566 +967,424 @@
909
967
  }
910
968
 
911
969
  }
912
- @mixin hook-inverse-component-base(){
913
-
914
- color: $inverse-base-color;
915
-
916
- // Base
917
- // ========================================================================
970
+ @mixin hook-inverse-component-search(){
918
971
 
919
972
  //
920
- // Link
973
+ // Input
921
974
  //
922
975
 
923
- a,
924
- .uk-link {
925
- color: $inverse-base-link-color;
926
- @if(mixin-exists(hook-inverse-base-link)) {@include hook-inverse-base-link();}
927
- }
928
-
929
- a:hover,
930
- .uk-link:hover,
931
- .uk-link-toggle:hover .uk-link {
932
- color: $inverse-base-link-hover-color;
933
- @if(mixin-exists(hook-inverse-base-link-hover)) {@include hook-inverse-base-link-hover();}
934
- }
935
-
936
- //
937
- // Code
938
- //
976
+ .uk-search-input { color: $inverse-search-color; }
939
977
 
940
- :not(pre) > code,
941
- :not(pre) > kbd,
942
- :not(pre) > samp {
943
- color: $inverse-base-code-color;
944
- @if(mixin-exists(hook-inverse-base-code)) {@include hook-inverse-base-code();}
945
- }
978
+ .uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
946
979
 
947
980
  //
948
- // Emphasize
981
+ // Icon
949
982
  //
950
983
 
951
- em { color: $inverse-base-em-color; }
984
+ .uk-search .uk-search-icon { color: $inverse-search-icon-color; }
985
+ .uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
952
986
 
953
987
  //
954
- // Headings
988
+ // Style modifier
955
989
  //
956
990
 
957
- h1, .uk-h1,
958
- h2, .uk-h2,
959
- h3, .uk-h3,
960
- h4, .uk-h4,
961
- h5, .uk-h5,
962
- h6, .uk-h6,
963
- .uk-heading-small,
964
- .uk-heading-medium,
965
- .uk-heading-large,
966
- .uk-heading-xlarge,
967
- .uk-heading-2xlarge {
968
- color: $inverse-base-heading-color;
969
- @if(mixin-exists(hook-inverse-base-heading)) {@include hook-inverse-base-heading();}
970
- }
971
-
972
- h1, .uk-h1 {
973
- @if(mixin-exists(hook-inverse-base-h1)) {@include hook-inverse-base-h1();}
991
+ .uk-search-default .uk-search-input {
992
+ background-color: $inverse-search-default-background;
993
+ @if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
974
994
  }
975
995
 
976
- h2, .uk-h2 {
977
- @if(mixin-exists(hook-inverse-base-h2)) {@include hook-inverse-base-h2();}
996
+ .uk-search-default .uk-search-input:focus {
997
+ background-color: $inverse-search-default-focus-background;
998
+ @if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
978
999
  }
979
1000
 
980
- h3, .uk-h3 {
981
- @if(mixin-exists(hook-inverse-base-h3)) {@include hook-inverse-base-h3();}
1001
+ .uk-search-navbar .uk-search-input {
1002
+ background-color: $inverse-search-navbar-background;
1003
+ @if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
982
1004
  }
983
1005
 
984
- h4, .uk-h4 {
985
- @if(mixin-exists(hook-inverse-base-h4)) {@include hook-inverse-base-h4();}
1006
+ .uk-search-navbar .uk-search-input:focus {
1007
+ @if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
986
1008
  }
987
1009
 
988
- h5, .uk-h5 {
989
- @if(mixin-exists(hook-inverse-base-h5)) {@include hook-inverse-base-h5();}
1010
+ .uk-search-large .uk-search-input {
1011
+ background-color: $inverse-search-large-background;
1012
+ @if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
990
1013
  }
991
1014
 
992
- h6, .uk-h6 {
993
- @if(mixin-exists(hook-inverse-base-h6)) {@include hook-inverse-base-h6();}
1015
+ .uk-search-large .uk-search-input:focus {
1016
+ @if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
994
1017
  }
995
1018
 
996
1019
  //
997
- // Blockquotes
1020
+ // Toggle
998
1021
  //
999
1022
 
1000
- blockquote {
1001
- @if(mixin-exists(hook-inverse-base-blockquote)) {@include hook-inverse-base-blockquote();}
1023
+ .uk-search-toggle {
1024
+ color: $inverse-search-toggle-color;
1025
+ @if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
1002
1026
  }
1003
1027
 
1004
- blockquote footer {
1005
- @if(mixin-exists(hook-inverse-base-blockquote-footer)) {@include hook-inverse-base-blockquote-footer();}
1028
+ .uk-search-toggle:hover {
1029
+ color: $inverse-search-toggle-hover-color;
1030
+ @if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
1006
1031
  }
1007
1032
 
1008
- //
1009
- // Horizontal rules
1010
- //
1011
-
1012
- hr, .uk-hr {
1013
- border-top-color: $inverse-base-hr-border;
1014
- @if(mixin-exists(hook-inverse-base-hr)) {@include hook-inverse-base-hr();}
1015
- }
1033
+ }
1034
+ @mixin hook-inverse-component-nav(){
1016
1035
 
1017
1036
  //
1018
- // Focus
1037
+ // Default
1019
1038
  //
1020
1039
 
1021
- :focus { outline-color: $inverse-base-focus-outline; }
1022
- :focus-visible { outline-color: $inverse-base-focus-outline; }
1023
-
1024
- }
1025
- @mixin hook-inverse-component-heading(){
1026
-
1027
- .uk-heading-small {
1028
- @if(mixin-exists(hook-inverse-heading-small)) {@include hook-inverse-heading-small();}
1040
+ .uk-nav-default > li > a {
1041
+ color: $inverse-nav-default-item-color;
1042
+ @if(mixin-exists(hook-inverse-nav-default-item)) {@include hook-inverse-nav-default-item();}
1029
1043
  }
1030
1044
 
1031
- .uk-heading-medium {
1032
- @if(mixin-exists(hook-inverse-heading-medium)) {@include hook-inverse-heading-medium();}
1045
+ .uk-nav-default > li > a:hover {
1046
+ color: $inverse-nav-default-item-hover-color;
1047
+ @if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
1033
1048
  }
1034
1049
 
1035
- .uk-heading-large {
1036
- @if(mixin-exists(hook-inverse-heading-large)) {@include hook-inverse-heading-large();}
1050
+ .uk-nav-default > li.uk-active > a {
1051
+ color: $inverse-nav-default-item-active-color;
1052
+ @if(mixin-exists(hook-inverse-nav-default-item-active)) {@include hook-inverse-nav-default-item-active();}
1037
1053
  }
1038
1054
 
1039
- .uk-heading-xlarge {
1040
- @if(mixin-exists(hook-inverse-heading-xlarge)) {@include hook-inverse-heading-xlarge();}
1055
+ .uk-nav-default .uk-nav-header {
1056
+ color: $inverse-nav-default-header-color;
1057
+ @if(mixin-exists(hook-inverse-nav-default-header)) {@include hook-inverse-nav-default-header();}
1041
1058
  }
1042
1059
 
1043
- .uk-heading-2xlarge {
1044
- @if(mixin-exists(hook-inverse-heading-2xlarge)) {@include hook-inverse-heading-2xlarge();}
1060
+ .uk-nav-default .uk-nav-divider {
1061
+ border-top-color: $inverse-nav-default-divider-border;
1062
+ @if(mixin-exists(hook-inverse-nav-default-divider)) {@include hook-inverse-nav-default-divider();}
1045
1063
  }
1046
1064
 
1047
- @if ($deprecated == true) { .uk-heading-primary { @if (mixin-exists(hook-inverse-heading-primary)) {@include hook-inverse-heading-primary();}}}
1065
+ .uk-nav-default .uk-nav-sub a { color: $inverse-nav-default-sublist-item-color; }
1048
1066
 
1049
- @if ($deprecated == true) { .uk-heading-hero { @if (mixin-exists(hook-inverse-heading-hero)) {@include hook-inverse-heading-hero();}}}
1067
+ .uk-nav-default .uk-nav-sub a:hover { color: $inverse-nav-default-sublist-item-hover-color; }
1050
1068
 
1051
- .uk-heading-divider {
1052
- border-bottom-color: $inverse-heading-divider-border;
1053
- @if(mixin-exists(hook-inverse-heading-divider)) {@include hook-inverse-heading-divider();}
1054
- }
1069
+ .uk-nav-default .uk-nav-sub li.uk-active > a { color: $inverse-nav-default-sublist-item-active-color; }
1055
1070
 
1056
- .uk-heading-bullet::before {
1057
- border-left-color: $inverse-heading-bullet-border;
1058
- @if(mixin-exists(hook-inverse-heading-bullet)) {@include hook-inverse-heading-bullet();}
1059
- }
1071
+ //
1072
+ // Primary
1073
+ //
1060
1074
 
1061
- .uk-heading-line > ::before,
1062
- .uk-heading-line > ::after {
1063
- border-bottom-color: $inverse-heading-line-border;
1064
- @if(mixin-exists(hook-inverse-heading-line)) {@include hook-inverse-heading-line();}
1075
+ .uk-nav-primary > li > a {
1076
+ color: $inverse-nav-primary-item-color;
1077
+ @if(mixin-exists(hook-inverse-nav-primary-item)) {@include hook-inverse-nav-primary-item();}
1065
1078
  }
1066
1079
 
1067
- }
1068
- @mixin hook-inverse-component-divider(){
1069
-
1070
- .uk-divider-icon {
1071
- @include svg-fill($internal-divider-icon-image, "#000", $inverse-divider-icon-color);
1072
- @if(mixin-exists(hook-inverse-divider-icon)) {@include hook-inverse-divider-icon();}
1080
+ .uk-nav-primary > li > a:hover {
1081
+ color: $inverse-nav-primary-item-hover-color;
1082
+ @if(mixin-exists(hook-inverse-nav-primary-item-hover)) {@include hook-inverse-nav-primary-item-hover();}
1073
1083
  }
1074
1084
 
1075
- .uk-divider-icon::before,
1076
- .uk-divider-icon::after {
1077
- border-bottom-color: $inverse-divider-icon-line-border;
1078
- @if(mixin-exists(hook-inverse-divider-icon-line)) {@include hook-inverse-divider-icon-line();}
1085
+ .uk-nav-primary > li.uk-active > a {
1086
+ color: $inverse-nav-primary-item-active-color;
1087
+ @if(mixin-exists(hook-inverse-nav-primary-item-active)) {@include hook-inverse-nav-primary-item-active();}
1079
1088
  }
1080
1089
 
1081
- .uk-divider-small::after {
1082
- border-top-color: $inverse-divider-small-border;
1083
- @if(mixin-exists(hook-inverse-divider-small)) {@include hook-inverse-divider-small();}
1090
+ .uk-nav-primary .uk-nav-header {
1091
+ color: $inverse-nav-primary-header-color;
1092
+ @if(mixin-exists(hook-inverse-nav-primary-header)) {@include hook-inverse-nav-primary-header();}
1084
1093
  }
1085
1094
 
1086
- .uk-divider-vertical {
1087
- border-left-color: $inverse-divider-vertical-border;
1088
- @if(mixin-exists(hook-inverse-divider-vertical)) {@include hook-inverse-divider-vertical();}
1095
+ .uk-nav-primary .uk-nav-divider {
1096
+ border-top-color: $inverse-nav-primary-divider-border;
1097
+ @if(mixin-exists(hook-inverse-nav-primary-divider)) {@include hook-inverse-nav-primary-divider();}
1089
1098
  }
1090
1099
 
1091
- }
1092
- @mixin hook-inverse-component-icon(){
1100
+ .uk-nav-primary .uk-nav-sub a { color: $inverse-nav-primary-sublist-item-color; }
1101
+
1102
+ .uk-nav-primary .uk-nav-sub a:hover { color: $inverse-nav-primary-sublist-item-hover-color; }
1103
+
1104
+ .uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
1093
1105
 
1094
1106
  //
1095
- // Link
1107
+ // Secondary
1096
1108
  //
1097
1109
 
1098
- .uk-icon-link {
1099
- color: $inverse-icon-link-color;
1100
- @if(mixin-exists(hook-inverse-icon-link)) {@include hook-inverse-icon-link();}
1110
+ .uk-nav-secondary > li > a {
1111
+ color: $inverse-nav-secondary-item-color;
1112
+ @if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
1101
1113
  }
1102
1114
 
1103
- .uk-icon-link:hover {
1104
- color: $inverse-icon-link-hover-color;
1105
- @if(mixin-exists(hook-inverse-icon-link-hover)) {@include hook-inverse-icon-link-hover();}
1115
+ .uk-nav-secondary > li > a:hover {
1116
+ color: $inverse-nav-secondary-item-hover-color;
1117
+ @if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
1106
1118
  }
1107
1119
 
1108
- .uk-icon-link:active,
1109
- .uk-active > .uk-icon-link {
1110
- color: $inverse-icon-link-active-color;
1111
- @if(mixin-exists(hook-inverse-icon-link-active)) {@include hook-inverse-icon-link-active();}
1120
+ .uk-nav-secondary > li.uk-active > a {
1121
+ color: $inverse-nav-secondary-item-active-color;
1122
+ @if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
1112
1123
  }
1113
1124
 
1114
- //
1115
- // Button
1116
- //
1117
-
1118
- .uk-icon-button {
1119
- background-color: $inverse-icon-button-background;
1120
- color: $inverse-icon-button-color;
1121
- @if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
1125
+ .uk-nav-secondary .uk-nav-subtitle {
1126
+ color: $inverse-nav-secondary-subtitle-color;
1127
+ @if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
1122
1128
  }
1123
1129
 
1124
- .uk-icon-button:hover {
1125
- background-color: $inverse-icon-button-hover-background;
1126
- color: $inverse-icon-button-hover-color;
1127
- @if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
1130
+ .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
1131
+ color: $inverse-nav-secondary-subtitle-hover-color;
1132
+ @if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
1128
1133
  }
1129
1134
 
1130
- .uk-icon-button:active {
1131
- background-color: $inverse-icon-button-active-background;
1132
- color: $inverse-icon-button-active-color;
1133
- @if(mixin-exists(hook-inverse-icon-button-active)) {@include hook-inverse-icon-button-active();}
1135
+ .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
1136
+ color: $inverse-nav-secondary-subtitle-active-color;
1137
+ @if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
1134
1138
  }
1135
1139
 
1136
- }
1137
- @mixin hook-inverse-component-form(){
1138
-
1139
- .uk-input,
1140
- .uk-select,
1141
- .uk-textarea {
1142
- background-color: $inverse-form-background;
1143
- color: $inverse-form-color;
1144
- background-clip: padding-box;
1145
- @if(mixin-exists(hook-inverse-form)) {@include hook-inverse-form();}
1140
+ .uk-nav-secondary .uk-nav-header {
1141
+ color: $inverse-nav-secondary-header-color;
1142
+ @if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
1143
+ }
1146
1144
 
1147
- &:focus {
1148
- background-color: $inverse-form-focus-background;
1149
- color: $inverse-form-focus-color;
1150
- @if(mixin-exists(hook-inverse-form-focus)) {@include hook-inverse-form-focus();}
1151
- }
1145
+ .uk-nav-secondary .uk-nav-divider {
1146
+ border-top-color: $inverse-nav-secondary-divider-border;
1147
+ @if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
1152
1148
  }
1153
1149
 
1154
- //
1155
- // Placeholder
1156
- //
1150
+ .uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
1157
1151
 
1158
- .uk-input::placeholder { color: $inverse-form-placeholder-color; }
1152
+ .uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
1159
1153
 
1160
- .uk-textarea::placeholder { color: $inverse-form-placeholder-color; }
1154
+ .uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
1161
1155
 
1162
1156
  //
1163
- // Select
1157
+ // Dividers
1164
1158
  //
1165
1159
 
1166
- .uk-select:not([multiple]):not([size]) { @include svg-fill($internal-form-select-image, "#000", $inverse-form-select-icon-color); }
1167
-
1168
- //
1169
- // Datalist
1170
- //
1160
+ .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
1161
+ border-top-color: $inverse-nav-dividers-border;
1162
+ @if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
1163
+ }
1171
1164
 
1172
- .uk-input[list]:hover,
1173
- .uk-input[list]:focus { @include svg-fill($internal-form-datalist-image, "#000", $inverse-form-datalist-icon-color); }
1165
+ }
1166
+ @mixin hook-inverse-component-navbar(){
1174
1167
 
1175
1168
  //
1176
- // Radio and checkbox
1169
+ // Nav Item
1177
1170
  //
1178
1171
 
1179
- .uk-radio,
1180
- .uk-checkbox {
1181
- background-color: $inverse-form-radio-background;
1182
- @if(mixin-exists(hook-inverse-form-radio)) {@include hook-inverse-form-radio();}
1172
+ .uk-navbar-nav > li > a {
1173
+ color: $inverse-navbar-nav-item-color;
1174
+ @if(mixin-exists(hook-inverse-navbar-nav-item)) {@include hook-inverse-navbar-nav-item();}
1183
1175
  }
1184
1176
 
1185
- // Focus
1186
- .uk-radio:focus,
1187
- .uk-checkbox:focus {
1188
- background-color: $inverse-form-radio-focus-background;
1189
- @if(mixin-exists(hook-inverse-form-radio-focus)) {@include hook-inverse-form-radio-focus();}
1177
+ .uk-navbar-nav > li:hover > a,
1178
+ .uk-navbar-nav > li > a[aria-expanded="true"] {
1179
+ color: $inverse-navbar-nav-item-hover-color;
1180
+ @if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
1190
1181
  }
1191
1182
 
1192
- // Checked
1193
- .uk-radio:checked,
1194
- .uk-checkbox:checked,
1195
- .uk-checkbox:indeterminate {
1196
- background-color: $inverse-form-radio-checked-background;
1197
- @if(mixin-exists(hook-inverse-form-radio-checked)) {@include hook-inverse-form-radio-checked();}
1183
+ .uk-navbar-nav > li > a:active {
1184
+ color: $inverse-navbar-nav-item-onclick-color;
1185
+ @if(mixin-exists(hook-inverse-navbar-nav-item-onclick)) {@include hook-inverse-navbar-nav-item-onclick();}
1198
1186
  }
1199
1187
 
1200
- // Focus
1201
- .uk-radio:checked:focus,
1202
- .uk-checkbox:checked:focus,
1203
- .uk-checkbox:indeterminate:focus {
1204
- background-color: $inverse-form-radio-checked-focus-background;
1205
- @if(mixin-exists(hook-inverse-form-radio-checked-focus)) {@include hook-inverse-form-radio-checked-focus();}
1188
+ .uk-navbar-nav > li.uk-active > a {
1189
+ color: $inverse-navbar-nav-item-active-color;
1190
+ @if(mixin-exists(hook-inverse-navbar-nav-item-active)) {@include hook-inverse-navbar-nav-item-active();}
1206
1191
  }
1207
1192
 
1208
- // Icon
1209
- .uk-radio:checked { @include svg-fill($internal-form-radio-image, "#000", $inverse-form-radio-checked-icon-color); }
1210
- .uk-checkbox:checked { @include svg-fill($internal-form-checkbox-image, "#000", $inverse-form-radio-checked-icon-color); }
1211
- .uk-checkbox:indeterminate { @include svg-fill($internal-form-checkbox-indeterminate-image, "#000", $inverse-form-radio-checked-icon-color); }
1193
+ //
1194
+ // Item
1195
+ //
1212
1196
 
1213
- // Label
1214
- .uk-form-label {
1215
- @if(mixin-exists(hook-inverse-form-label)) {@include hook-inverse-form-label();}
1197
+ .uk-navbar-item {
1198
+ color: $inverse-navbar-item-color;
1199
+ @if(mixin-exists(hook-inverse-navbar-item)) {@include hook-inverse-navbar-item();}
1216
1200
  }
1217
1201
 
1218
- // Icon
1219
- .uk-form-icon {
1220
- color: $inverse-form-icon-color;
1221
- @if(mixin-exists(hook-inverse-form-icon)) {@include hook-inverse-form-icon();}
1202
+ //
1203
+ // Toggle
1204
+ //
1205
+
1206
+ .uk-navbar-toggle {
1207
+ color: $inverse-navbar-toggle-color;
1208
+ @if(mixin-exists(hook-inverse-navbar-toggle)) {@include hook-inverse-navbar-toggle();}
1222
1209
  }
1223
- .uk-form-icon:hover { color: $inverse-form-icon-hover-color; }
1224
1210
 
1225
- }
1226
- @mixin hook-inverse-component-button(){
1211
+ .uk-navbar-toggle:hover,
1212
+ .uk-navbar-toggle[aria-expanded="true"] {
1213
+ color: $inverse-navbar-toggle-hover-color;
1214
+ @if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
1215
+ }
1227
1216
 
1228
- //
1229
- // Default
1230
- //
1217
+ }
1218
+ @mixin hook-inverse-component-subnav(){
1231
1219
 
1232
- .uk-button-default {
1233
- background-color: $inverse-button-default-background;
1234
- color: $inverse-button-default-color;
1235
- @if(mixin-exists(hook-inverse-button-default)) {@include hook-inverse-button-default();}
1220
+ .uk-subnav > * > :first-child {
1221
+ color: $inverse-subnav-item-color;
1222
+ @if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
1236
1223
  }
1237
1224
 
1238
- .uk-button-default:hover {
1239
- background-color: $inverse-button-default-hover-background;
1240
- color: $inverse-button-default-hover-color;
1241
- @if(mixin-exists(hook-inverse-button-default-hover)) {@include hook-inverse-button-default-hover();}
1225
+ .uk-subnav > * > a:hover {
1226
+ color: $inverse-subnav-item-hover-color;
1227
+ @if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
1242
1228
  }
1243
1229
 
1244
- .uk-button-default:active,
1245
- .uk-button-default.uk-active {
1246
- background-color: $inverse-button-default-active-background;
1247
- color: $inverse-button-default-active-color;
1248
- @if(mixin-exists(hook-inverse-button-default-active)) {@include hook-inverse-button-default-active();}
1230
+ .uk-subnav > .uk-active > a {
1231
+ color: $inverse-subnav-item-active-color;
1232
+ @if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
1249
1233
  }
1250
1234
 
1251
1235
  //
1252
- // Primary
1236
+ // Divider
1253
1237
  //
1254
1238
 
1255
- .uk-button-primary {
1256
- background-color: $inverse-button-primary-background;
1257
- color: $inverse-button-primary-color;
1258
- @if(mixin-exists(hook-inverse-button-primary)) {@include hook-inverse-button-primary();}
1259
- }
1260
-
1261
- .uk-button-primary:hover {
1262
- background-color: $inverse-button-primary-hover-background;
1263
- color: $inverse-button-primary-hover-color;
1264
- @if(mixin-exists(hook-inverse-button-primary-hover)) {@include hook-inverse-button-primary-hover();}
1265
- }
1266
-
1267
- .uk-button-primary:active,
1268
- .uk-button-primary.uk-active {
1269
- background-color: $inverse-button-primary-active-background;
1270
- color: $inverse-button-primary-active-color;
1271
- @if(mixin-exists(hook-inverse-button-primary-active)) {@include hook-inverse-button-primary-active();}
1239
+ .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
1240
+ border-left-color: $inverse-subnav-divider-border;
1241
+ @if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
1272
1242
  }
1273
1243
 
1274
1244
  //
1275
- // Secondary
1245
+ // Pill
1276
1246
  //
1277
1247
 
1278
- .uk-button-secondary {
1279
- background-color: $inverse-button-secondary-background;
1280
- color: $inverse-button-secondary-color;
1281
- @if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
1282
- }
1283
-
1284
- .uk-button-secondary:hover {
1285
- background-color: $inverse-button-secondary-hover-background;
1286
- color: $inverse-button-secondary-hover-color;
1287
- @if(mixin-exists(hook-inverse-button-secondary-hover)) {@include hook-inverse-button-secondary-hover();}
1288
- }
1289
-
1290
- .uk-button-secondary:active,
1291
- .uk-button-secondary.uk-active {
1292
- background-color: $inverse-button-secondary-active-background;
1293
- color: $inverse-button-secondary-active-color;
1294
- @if(mixin-exists(hook-inverse-button-secondary-active)) {@include hook-inverse-button-secondary-active();}
1248
+ .uk-subnav-pill > * > :first-child {
1249
+ background-color: $inverse-subnav-pill-item-background;
1250
+ color: $inverse-subnav-pill-item-color;
1251
+ @if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
1295
1252
  }
1296
1253
 
1297
- //
1298
- // Text
1299
- //
1300
-
1301
- .uk-button-text {
1302
- color: $inverse-button-text-color;
1303
- @if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
1254
+ .uk-subnav-pill > * > a:hover {
1255
+ background-color: $inverse-subnav-pill-item-hover-background;
1256
+ color: $inverse-subnav-pill-item-hover-color;
1257
+ @if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
1304
1258
  }
1305
1259
 
1306
- .uk-button-text:hover {
1307
- color: $inverse-button-text-hover-color;
1308
- @if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
1260
+ .uk-subnav-pill > * > a:active {
1261
+ background-color: $inverse-subnav-pill-item-onclick-background;
1262
+ color: $inverse-subnav-pill-item-onclick-color;
1263
+ @if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
1309
1264
  }
1310
1265
 
1311
- .uk-button-text:disabled {
1312
- color: $inverse-button-text-disabled-color;
1313
- @if(mixin-exists(hook-inverse-button-text-disabled)) {@include hook-inverse-button-text-disabled();}
1266
+ .uk-subnav-pill > .uk-active > a {
1267
+ background-color: $inverse-subnav-pill-item-active-background;
1268
+ color: $inverse-subnav-pill-item-active-color;
1269
+ @if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
1314
1270
  }
1315
1271
 
1316
1272
  //
1317
- // Link
1273
+ // Disabled
1318
1274
  //
1319
1275
 
1320
- .uk-button-link {
1321
- color: $inverse-button-link-color;
1322
- @if(mixin-exists(hook-inverse-button-link)) {@include hook-inverse-button-link();}
1323
- }
1324
-
1325
- .uk-button-link:hover { color: $inverse-button-link-hover-color; }
1326
-
1327
- }
1328
- @mixin hook-inverse-component-grid(){
1329
-
1330
- .uk-grid-divider > :not(.uk-first-column)::before {
1331
- border-left-color: $inverse-grid-divider-border;
1332
- @if(mixin-exists(hook-inverse-grid-divider-horizontal)) {@include hook-inverse-grid-divider-horizontal();}
1333
- }
1334
-
1335
- .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
1336
- border-top-color: $inverse-grid-divider-border;
1337
- @if(mixin-exists(hook-inverse-grid-divider-vertical)) {@include hook-inverse-grid-divider-vertical();}
1338
- }
1339
-
1340
- }
1341
- @mixin hook-inverse-component-close(){
1342
-
1343
- .uk-close {
1344
- color: $inverse-close-color;
1345
- @if(mixin-exists(hook-inverse-close)) {@include hook-inverse-close();}
1346
- }
1347
-
1348
- .uk-close:hover {
1349
- color: $inverse-close-hover-color;
1350
- @if(mixin-exists(hook-inverse-close-hover)) {@include hook-inverse-close-hover();}
1276
+ .uk-subnav > .uk-disabled > a {
1277
+ color: $inverse-subnav-item-disabled-color;
1278
+ @if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
1351
1279
  }
1352
1280
 
1353
1281
  }
1354
- @mixin hook-inverse-component-badge(){
1282
+ @mixin hook-inverse-component-pagination(){
1355
1283
 
1356
- .uk-badge {
1357
- background-color: $inverse-badge-background;
1358
- color: $inverse-badge-color !important;
1359
- @if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
1284
+ .uk-pagination > * > * {
1285
+ color: $inverse-pagination-item-color;
1286
+ @if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
1360
1287
  }
1361
1288
 
1362
- .uk-badge:hover {
1363
- @if(mixin-exists(hook-inverse-badge-hover)) {@include hook-inverse-badge-hover();}
1289
+ .uk-pagination > * > :hover {
1290
+ color: $inverse-pagination-item-hover-color;
1291
+ @if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
1364
1292
  }
1365
1293
 
1366
- }
1367
- @mixin hook-inverse-component-article(){
1368
-
1369
- .uk-article-title {
1370
- @if(mixin-exists(hook-inverse-article-title)) {@include hook-inverse-article-title();}
1294
+ .uk-pagination > .uk-active > * {
1295
+ color: $inverse-pagination-item-active-color;
1296
+ @if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
1371
1297
  }
1372
1298
 
1373
- .uk-article-meta {
1374
- color: $inverse-article-meta-color;
1375
- @if(mixin-exists(hook-inverse-article-meta)) {@include hook-inverse-article-meta();}
1299
+ .uk-pagination > .uk-disabled > * {
1300
+ color: $inverse-pagination-item-disabled-color;
1301
+ @if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
1376
1302
  }
1377
1303
 
1378
1304
  }
1379
- @mixin hook-inverse-component-breadcrumb(){
1305
+ @mixin hook-inverse-component-tab(){
1380
1306
 
1381
- .uk-breadcrumb > * > * {
1382
- color: $inverse-breadcrumb-item-color;
1383
- @if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
1307
+ .uk-tab {
1308
+ @if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
1384
1309
  }
1385
1310
 
1386
- .uk-breadcrumb > * > :hover {
1387
- color: $inverse-breadcrumb-item-hover-color;
1388
- @if(mixin-exists(hook-inverse-breadcrumb-item-hover)) {@include hook-inverse-breadcrumb-item-hover();}
1311
+ .uk-tab > * > a {
1312
+ color: $inverse-tab-item-color;
1313
+ @if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
1389
1314
  }
1390
1315
 
1391
-
1392
- .uk-breadcrumb > .uk-disabled > * {
1393
- @if(mixin-exists(hook-inverse-breadcrumb-item-disabled)) {@include hook-inverse-breadcrumb-item-disabled();}
1316
+ .uk-tab > * > a:hover {
1317
+ color: $inverse-tab-item-hover-color;
1318
+ @if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
1394
1319
  }
1395
1320
 
1396
- .uk-breadcrumb > :last-child > * {
1397
- color: $inverse-breadcrumb-item-active-color;
1398
- @if(mixin-exists(hook-inverse-breadcrumb-item-active)) {@include hook-inverse-breadcrumb-item-active();}
1321
+ .uk-tab > .uk-active > a {
1322
+ color: $inverse-tab-item-active-color;
1323
+ @if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
1399
1324
  }
1400
1325
 
1401
- //
1402
- // Divider
1403
- //
1404
-
1405
- .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
1406
- color: $inverse-breadcrumb-divider-color;
1407
- @if(mixin-exists(hook-inverse-breadcrumb-divider)) {@include hook-inverse-breadcrumb-divider();}
1326
+ .uk-tab > .uk-disabled > a {
1327
+ color: $inverse-tab-item-disabled-color;
1328
+ @if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
1408
1329
  }
1409
1330
 
1410
1331
  }
1411
- @mixin hook-inverse-component-dotnav(){
1412
-
1413
- .uk-dotnav > * > * {
1414
- background-color: $inverse-dotnav-item-background;
1415
- @if(mixin-exists(hook-inverse-dotnav-item)) {@include hook-inverse-dotnav-item();}
1416
- }
1332
+ @mixin hook-inverse-component-slidenav(){
1417
1333
 
1418
- .uk-dotnav > * > :hover {
1419
- background-color: $inverse-dotnav-item-hover-background;
1420
- @if(mixin-exists(hook-inverse-dotnav-item-hover)) {@include hook-inverse-dotnav-item-hover();}
1334
+ .uk-slidenav {
1335
+ color: $inverse-slidenav-color;
1336
+ @if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
1421
1337
  }
1422
1338
 
1423
- .uk-dotnav > * > :active {
1424
- background-color: $inverse-dotnav-item-onclick-background;
1425
- @if(mixin-exists(hook-inverse-dotnav-item-onclick)) {@include hook-inverse-dotnav-item-onclick();}
1339
+ .uk-slidenav:hover {
1340
+ color: $inverse-slidenav-hover-color;
1341
+ @if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
1426
1342
  }
1427
1343
 
1428
- .uk-dotnav > .uk-active > * {
1429
- background-color: $inverse-dotnav-item-active-background;
1430
- @if(mixin-exists(hook-inverse-dotnav-item-active)) {@include hook-inverse-dotnav-item-active();}
1344
+ .uk-slidenav:active {
1345
+ color: $inverse-slidenav-active-color;
1346
+ @if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
1431
1347
  }
1432
1348
 
1433
1349
  }
1434
- @mixin hook-inverse-component-accordion(){
1350
+ @mixin hook-inverse-component-text(){
1435
1351
 
1436
- .uk-accordion > :nth-child(n+2) {
1437
- @if(mixin-exists(hook-inverse-accordion-item)) {@include hook-inverse-accordion-item();}
1352
+ .uk-text-lead {
1353
+ color: $inverse-text-lead-color;
1354
+ @if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
1438
1355
  }
1439
1356
 
1440
- .uk-accordion-title {
1441
- color: $inverse-accordion-title-color;
1442
- @if(mixin-exists(hook-inverse-accordion-title)) {@include hook-inverse-accordion-title();}
1357
+ .uk-text-meta {
1358
+ color: $inverse-text-meta-color;
1359
+ @if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
1443
1360
  }
1444
1361
 
1445
- .uk-accordion-title:hover {
1446
- color: $inverse-accordion-title-hover-color;
1447
- @if(mixin-exists(hook-inverse-accordion-title-hover)) {@include hook-inverse-accordion-title-hover();}
1448
- }
1362
+ .uk-text-muted { color: $inverse-text-muted-color !important; }
1363
+ .uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
1364
+ .uk-text-primary { color: $inverse-text-primary-color !important; }
1365
+ .uk-text-secondary { color: $inverse-text-secondary-color !important; }
1449
1366
 
1450
1367
  }
1451
- @mixin hook-inverse-component-iconnav(){
1368
+ @mixin hook-inverse-component-utility(){
1452
1369
 
1453
- .uk-iconnav > * > a {
1454
- color: $inverse-iconnav-item-color;
1455
- @if(mixin-exists(hook-inverse-iconnav-item)) {@include hook-inverse-iconnav-item();}
1370
+ .uk-dropcap::first-letter,
1371
+ .uk-dropcap p:first-of-type::first-letter {
1372
+ @if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
1456
1373
  }
1457
1374
 
1458
- .uk-iconnav > * > a:hover {
1459
- color: $inverse-iconnav-item-hover-color;
1460
- @if(mixin-exists(hook-inverse-iconnav-item-hover)) {@include hook-inverse-iconnav-item-hover();}
1375
+ .uk-logo {
1376
+ color: $inverse-logo-color;
1377
+ @if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
1461
1378
  }
1462
1379
 
1463
- .uk-iconnav > .uk-active > a {
1464
- color: $inverse-iconnav-item-active-color;
1465
- @if(mixin-exists(hook-inverse-iconnav-item-active)) {@include hook-inverse-iconnav-item-active();}
1380
+ .uk-logo:hover {
1381
+ color: $inverse-logo-hover-color;
1382
+ @if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
1466
1383
  }
1467
1384
 
1468
- }
1469
- @mixin hook-inverse-component-column(){
1470
-
1471
- .uk-column-divider { column-rule-color: $inverse-column-divider-rule-color; }
1385
+ .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
1386
+ .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
1387
+ .uk-logo-inverse { display: block; }
1472
1388
 
1473
1389
  }
1474
1390
  @mixin hook-inverse(){
@@ -1501,320 +1417,404 @@
1501
1417
  @include hook-inverse-component-column();
1502
1418
  @include hook-inverse-component-utility();
1503
1419
  }
1504
- @mixin hook-iconnav(){}
1505
- @mixin hook-iconnav-item(){}
1506
- @mixin hook-iconnav-item-hover(){}
1507
- @mixin hook-iconnav-item-active(){}
1508
- @mixin hook-iconnav-misc(){}
1509
- @mixin hook-inverse-iconnav-item(){}
1510
- @mixin hook-inverse-iconnav-item-hover(){}
1511
- @mixin hook-inverse-iconnav-item-active(){}
1512
- @mixin hook-icon-link(){}
1513
- @mixin hook-icon-link-hover(){}
1514
- @mixin hook-icon-link-active(){}
1515
- @mixin hook-icon-button(){}
1516
- @mixin hook-icon-button-hover(){}
1517
- @mixin hook-icon-button-active(){}
1518
- @mixin hook-icon-misc(){}
1519
- @mixin hook-inverse-icon-link(){}
1520
- @mixin hook-inverse-icon-link-hover(){}
1521
- @mixin hook-inverse-icon-link-active(){}
1522
- @mixin hook-inverse-icon-button(){}
1523
- @mixin hook-inverse-icon-button-hover(){}
1524
- @mixin hook-inverse-icon-button-active(){}
1525
- @mixin hook-height-misc(){}
1526
- @mixin hook-heading-small(){}
1527
- @mixin hook-heading-medium(){}
1528
- @mixin hook-heading-large(){}
1529
- @mixin hook-heading-xlarge(){}
1530
- @mixin hook-heading-2xlarge(){}
1531
- @mixin hook-heading-primary(){}
1532
- @mixin hook-heading-hero(){}
1533
- @mixin hook-heading-divider(){}
1534
- @mixin hook-heading-bullet(){}
1535
- @mixin hook-heading-line(){}
1536
- @mixin hook-heading-misc(){}
1537
- @mixin hook-inverse-heading-small(){}
1538
- @mixin hook-inverse-heading-medium(){}
1539
- @mixin hook-inverse-heading-large(){}
1540
- @mixin hook-inverse-heading-xlarge(){}
1541
- @mixin hook-inverse-heading-2xlarge(){}
1542
- @mixin hook-inverse-heading-primary(){}
1543
- @mixin hook-inverse-heading-hero(){}
1544
- @mixin hook-inverse-heading-divider(){}
1545
- @mixin hook-inverse-heading-bullet(){}
1546
- @mixin hook-inverse-heading-line(){}
1547
- @mixin hook-grid-divider-horizontal(){}
1548
- @mixin hook-grid-divider-vertical(){}
1549
- @mixin hook-grid-misc(){}
1550
- @mixin hook-inverse-grid-divider-horizontal(){}
1551
- @mixin hook-inverse-grid-divider-vertical(){}
1552
- @mixin hook-form(){}
1553
- @mixin hook-form-single-line(){}
1554
- @mixin hook-form-multi-line(){}
1555
- @mixin hook-form-focus(){}
1556
- @mixin hook-form-disabled(){}
1557
- @mixin hook-form-danger(){}
1558
- @mixin hook-form-success(){}
1559
- @mixin hook-form-blank(){}
1560
- @mixin hook-form-blank-focus(){}
1561
- @mixin hook-form-radio(){}
1562
- @mixin hook-form-radio-focus(){}
1563
- @mixin hook-form-radio-checked(){}
1564
- @mixin hook-form-radio-checked-focus(){}
1565
- @mixin hook-form-radio-disabled(){}
1566
- @mixin hook-form-legend(){}
1567
- @mixin hook-form-label(){}
1568
- @mixin hook-form-stacked-label(){}
1569
- @mixin hook-form-horizontal-label(){}
1570
- @mixin hook-form-icon(){}
1571
- @mixin hook-form-misc(){}
1572
- @mixin hook-inverse-form(){}
1573
- @mixin hook-inverse-form-focus(){}
1574
- @mixin hook-inverse-form-radio(){}
1575
- @mixin hook-inverse-form-radio-focus(){}
1576
- @mixin hook-inverse-form-radio-checked(){}
1577
- @mixin hook-inverse-form-radio-checked-focus(){}
1578
- @mixin hook-inverse-form-label(){}
1579
- @mixin hook-inverse-form-icon(){}
1580
- @mixin hook-form-range(){}
1581
- @mixin hook-form-range-track(){}
1582
- @mixin hook-form-range-track-focus(){}
1583
- @mixin hook-form-range-thumb(){}
1584
- @mixin hook-form-range-misc(){}
1585
- @mixin hook-flex-misc(){}
1586
- @mixin hook-dropnav-misc(){}
1587
- @mixin hook-dropdown(){}
1588
- @mixin hook-dropdown-dropbar(){}
1589
- @mixin hook-dropdown-dropbar-large(){}
1590
- @mixin hook-dropdown-nav(){}
1591
- @mixin hook-dropdown-nav-item(){}
1592
- @mixin hook-dropdown-nav-item-hover(){}
1593
- @mixin hook-dropdown-nav-subtitle(){}
1594
- @mixin hook-dropdown-nav-header(){}
1595
- @mixin hook-dropdown-nav-divider(){}
1596
- @mixin hook-dropdown-misc(){}
1597
- @mixin hook-dropbar(){}
1598
- @mixin hook-dropbar-top(){}
1599
- @mixin hook-dropbar-bottom(){}
1600
- @mixin hook-dropbar-left(){}
1601
- @mixin hook-dropbar-right(){}
1602
- @mixin hook-dropbar-misc(){}
1603
- @mixin hook-drop-misc(){}
1604
- @mixin hook-dotnav(){}
1605
- @mixin hook-dotnav-item(){}
1606
- @mixin hook-dotnav-item-hover(){}
1607
- @mixin hook-dotnav-item-onclick(){}
1608
- @mixin hook-dotnav-item-active(){}
1609
- @mixin hook-dotnav-misc(){}
1610
- @mixin hook-inverse-dotnav-item(){}
1611
- @mixin hook-inverse-dotnav-item-hover(){}
1612
- @mixin hook-inverse-dotnav-item-onclick(){}
1613
- @mixin hook-inverse-dotnav-item-active(){}
1614
- @mixin hook-divider-icon(){}
1615
- @mixin hook-divider-icon-line(){}
1616
- @mixin hook-divider-icon-line-left(){}
1617
- @mixin hook-divider-icon-line-right(){}
1618
- @mixin hook-divider-small(){}
1619
- @mixin hook-divider-vertical(){}
1620
- @mixin hook-divider-misc(){}
1621
- @mixin hook-inverse-divider-icon(){}
1622
- @mixin hook-inverse-divider-icon-line(){}
1623
- @mixin hook-inverse-divider-small(){}
1624
- @mixin hook-inverse-divider-vertical(){}
1625
- @mixin hook-description-list-term(){}
1626
- @mixin hook-description-list-description(){}
1627
- @mixin hook-description-list-divider-term(){}
1628
- @mixin hook-description-list-misc(){}
1629
- @mixin hook-cover-misc(){}
1630
- @mixin hook-countdown(){}
1631
- @mixin hook-countdown-item(){}
1632
- @mixin hook-countdown-number(){}
1633
- @mixin hook-countdown-separator(){}
1634
- @mixin hook-countdown-label(){}
1635
- @mixin hook-countdown-misc(){}
1636
- @mixin hook-inverse-countdown-item(){}
1637
- @mixin hook-inverse-countdown-number(){}
1638
- @mixin hook-inverse-countdown-separator(){}
1639
- @mixin hook-inverse-countdown-label(){}
1640
- @mixin hook-inverse-component-countdown(){
1420
+ @mixin hook-label(){}
1421
+ @mixin hook-label-success(){}
1422
+ @mixin hook-label-warning(){}
1423
+ @mixin hook-label-danger(){}
1424
+ @mixin hook-label-misc(){}
1425
+ @mixin hook-inverse-label(){}
1426
+ @mixin hook-leader(){}
1427
+ @mixin hook-leader-misc(){}
1428
+ @mixin hook-inverse-leader(){}
1429
+ @mixin hook-inverse-component-leader(){
1430
+
1431
+ .uk-leader-fill::after {
1432
+ @if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
1433
+ }
1434
+
1435
+ }
1436
+ @mixin hook-lightbox(){}
1437
+ @mixin hook-lightbox-item(){}
1438
+ @mixin hook-lightbox-toolbar(){}
1439
+ @mixin hook-lightbox-toolbar-icon(){}
1440
+ @mixin hook-lightbox-toolbar-icon-hover(){}
1441
+ @mixin hook-lightbox-button(){}
1442
+ @mixin hook-lightbox-button-hover(){}
1443
+ @mixin hook-lightbox-button-active(){}
1444
+ @mixin hook-lightbox-misc(){}
1445
+ @mixin hook-link-muted(){}
1446
+ @mixin hook-link-muted-hover(){}
1447
+ @mixin hook-link-text(){}
1448
+ @mixin hook-link-text-hover(){}
1449
+ @mixin hook-link-heading(){}
1450
+ @mixin hook-link-heading-hover(){}
1451
+ @mixin hook-link-reset(){}
1452
+ @mixin hook-link-misc(){}
1453
+ @mixin hook-inverse-link-muted(){}
1454
+ @mixin hook-inverse-link-muted-hover(){}
1455
+ @mixin hook-inverse-link-text-hover(){}
1456
+ @mixin hook-inverse-link-heading-hover(){}
1457
+ @mixin hook-list-divider(){}
1458
+ @mixin hook-list-striped(){}
1459
+ @mixin hook-list-misc(){}
1460
+ @mixin hook-inverse-list-divider(){}
1461
+ @mixin hook-inverse-list-striped(){}
1462
+ @mixin hook-margin-misc(){}
1463
+ @mixin hook-marker(){}
1464
+ @mixin hook-marker-hover(){}
1465
+ @mixin hook-marker-misc(){}
1466
+ @mixin hook-inverse-marker(){}
1467
+ @mixin hook-inverse-marker-hover(){}
1468
+ @mixin hook-inverse-component-marker(){
1469
+
1470
+ .uk-marker {
1471
+ background: $inverse-marker-background;
1472
+ color: $inverse-marker-color;
1473
+ @if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
1474
+ }
1475
+
1476
+ .uk-marker:hover {
1477
+ color: $inverse-marker-hover-color;
1478
+ @if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
1479
+ }
1480
+
1481
+ }
1482
+ @mixin hook-modal(){}
1483
+ @mixin hook-modal-dialog(){}
1484
+ @mixin hook-modal-full(){}
1485
+ @mixin hook-modal-body(){}
1486
+ @mixin hook-modal-header(){}
1487
+ @mixin hook-modal-footer(){}
1488
+ @mixin hook-modal-title(){}
1489
+ @mixin hook-modal-close(){}
1490
+ @mixin hook-modal-close-hover(){}
1491
+ @mixin hook-modal-close-default(){}
1492
+ @mixin hook-modal-close-default-hover(){}
1493
+ @mixin hook-modal-close-outside(){}
1494
+ @mixin hook-modal-close-outside-hover(){}
1495
+ @mixin hook-modal-close-full(){}
1496
+ @mixin hook-modal-close-full-hover(){}
1497
+ @mixin hook-modal-misc(){}
1498
+ @mixin hook-nav-sub(){}
1499
+ @mixin hook-nav-header(){}
1500
+ @mixin hook-nav-divider(){}
1501
+ @mixin hook-nav-default(){}
1502
+ @mixin hook-nav-default-item(){}
1503
+ @mixin hook-nav-default-item-hover(){}
1504
+ @mixin hook-nav-default-item-active(){}
1505
+ @mixin hook-nav-default-subtitle(){}
1506
+ @mixin hook-nav-default-header(){}
1507
+ @mixin hook-nav-default-divider(){}
1508
+ @mixin hook-nav-primary(){}
1509
+ @mixin hook-nav-primary-item(){}
1510
+ @mixin hook-nav-primary-item-hover(){}
1511
+ @mixin hook-nav-primary-item-active(){}
1512
+ @mixin hook-nav-primary-subtitle(){}
1513
+ @mixin hook-nav-primary-header(){}
1514
+ @mixin hook-nav-primary-divider(){}
1515
+ @mixin hook-nav-secondary(){}
1516
+ @mixin hook-nav-secondary-item(){}
1517
+ @mixin hook-nav-secondary-item-hover(){}
1518
+ @mixin hook-nav-secondary-item-active(){}
1519
+ @mixin hook-nav-secondary-subtitle(){}
1520
+ @mixin hook-nav-secondary-subtitle-hover(){}
1521
+ @mixin hook-nav-secondary-subtitle-active(){}
1522
+ @mixin hook-nav-secondary-header(){}
1523
+ @mixin hook-nav-secondary-divider(){}
1524
+ @mixin hook-nav-dividers(){}
1525
+ @mixin hook-nav-misc(){}
1526
+ @mixin hook-inverse-nav-default-item(){}
1527
+ @mixin hook-inverse-nav-default-item-hover(){}
1528
+ @mixin hook-inverse-nav-default-item-active(){}
1529
+ @mixin hook-inverse-nav-default-header(){}
1530
+ @mixin hook-inverse-nav-default-divider(){}
1531
+ @mixin hook-inverse-nav-primary-item(){}
1532
+ @mixin hook-inverse-nav-primary-item-hover(){}
1533
+ @mixin hook-inverse-nav-primary-item-active(){}
1534
+ @mixin hook-inverse-nav-primary-header(){}
1535
+ @mixin hook-inverse-nav-primary-divider(){}
1536
+ @mixin hook-inverse-nav-secondary-item(){}
1537
+ @mixin hook-inverse-nav-secondary-item-hover(){}
1538
+ @mixin hook-inverse-nav-secondary-item-active(){}
1539
+ @mixin hook-inverse-nav-secondary-subtitle(){}
1540
+ @mixin hook-inverse-nav-secondary-subtitle-hover(){}
1541
+ @mixin hook-inverse-nav-secondary-subtitle-active(){}
1542
+ @mixin hook-inverse-nav-secondary-header(){}
1543
+ @mixin hook-inverse-nav-secondary-divider(){}
1544
+ @mixin hook-inverse-nav-dividers(){}
1545
+ @mixin hook-navbar(){}
1546
+ @mixin hook-navbar-container(){}
1547
+ @mixin hook-navbar-nav-item(){}
1548
+ @mixin hook-navbar-nav-item-hover(){}
1549
+ @mixin hook-navbar-nav-item-onclick(){}
1550
+ @mixin hook-navbar-nav-item-active(){}
1551
+ @mixin hook-navbar-item(){}
1552
+ @mixin hook-navbar-toggle(){}
1553
+ @mixin hook-navbar-toggle-hover(){}
1554
+ @mixin hook-navbar-toggle-icon(){}
1555
+ @mixin hook-navbar-toggle-icon-hover(){}
1556
+ @mixin hook-navbar-subtitle(){}
1557
+ @mixin hook-navbar-primary(){}
1558
+ @mixin hook-navbar-transparent(){}
1559
+ @mixin hook-navbar-sticky(){}
1560
+ @mixin hook-navbar-dropdown(){}
1561
+ @mixin hook-navbar-dropdown-large(){}
1562
+ @mixin hook-navbar-dropdown-dropbar(){}
1563
+ @mixin hook-navbar-dropdown-dropbar-large(){}
1564
+ @mixin hook-navbar-dropdown-nav(){}
1565
+ @mixin hook-navbar-dropdown-nav-item(){}
1566
+ @mixin hook-navbar-dropdown-nav-item-hover(){}
1567
+ @mixin hook-navbar-dropdown-nav-item-active(){}
1568
+ @mixin hook-navbar-dropdown-nav-subtitle(){}
1569
+ @mixin hook-navbar-dropdown-nav-header(){}
1570
+ @mixin hook-navbar-dropdown-nav-divider(){}
1571
+ @mixin hook-navbar-dropbar(){}
1572
+ @mixin hook-navbar-misc(){}
1573
+ @mixin hook-inverse-navbar-nav-item(){}
1574
+ @mixin hook-inverse-navbar-nav-item-hover(){}
1575
+ @mixin hook-inverse-navbar-nav-item-onclick(){}
1576
+ @mixin hook-inverse-navbar-nav-item-active(){}
1577
+ @mixin hook-inverse-navbar-item(){}
1578
+ @mixin hook-inverse-navbar-toggle(){}
1579
+ @mixin hook-inverse-navbar-toggle-hover(){}
1580
+ @mixin hook-notification(){}
1581
+ @mixin hook-notification-message(){}
1582
+ @mixin hook-notification-close(){}
1583
+ @mixin hook-notification-message-primary(){}
1584
+ @mixin hook-notification-message-success(){}
1585
+ @mixin hook-notification-message-warning(){}
1586
+ @mixin hook-notification-message-danger(){}
1587
+ @mixin hook-notification-misc(){}
1588
+ @mixin hook-offcanvas-bar(){}
1589
+ @mixin hook-offcanvas-close(){}
1590
+ @mixin hook-offcanvas-overlay(){}
1591
+ @mixin hook-offcanvas-misc(){}
1592
+ @mixin hook-overlay(){}
1593
+ @mixin hook-overlay-icon(){}
1594
+ @mixin hook-overlay-default(){}
1595
+ @mixin hook-overlay-primary(){}
1596
+ @mixin hook-overlay-misc(){}
1597
+ @mixin hook-padding-misc(){}
1598
+ @mixin hook-pagination(){}
1599
+ @mixin hook-pagination-item(){}
1600
+ @mixin hook-pagination-item-hover(){}
1601
+ @mixin hook-pagination-item-active(){}
1602
+ @mixin hook-pagination-item-disabled(){}
1603
+ @mixin hook-pagination-misc(){}
1604
+ @mixin hook-inverse-pagination-item(){}
1605
+ @mixin hook-inverse-pagination-item-hover(){}
1606
+ @mixin hook-inverse-pagination-item-active(){}
1607
+ @mixin hook-inverse-pagination-item-disabled(){}
1608
+ @mixin hook-placeholder(){}
1609
+ @mixin hook-placeholder-misc(){}
1610
+ @mixin hook-position-misc(){}
1611
+ @mixin hook-print(){}
1612
+ @mixin hook-progress(){}
1613
+ @mixin hook-progress-bar(){}
1614
+ @mixin hook-progress-misc(){}
1615
+ @mixin hook-search-input(){}
1616
+ @mixin hook-search-icon(){}
1617
+ @mixin hook-search-default-input(){}
1618
+ @mixin hook-search-default-input-focus(){}
1619
+ @mixin hook-search-navbar-input(){}
1620
+ @mixin hook-search-navbar-input-focus(){}
1621
+ @mixin hook-search-large-input(){}
1622
+ @mixin hook-search-large-input-focus(){}
1623
+ @mixin hook-search-toggle(){}
1624
+ @mixin hook-search-toggle-hover(){}
1625
+ @mixin hook-search-misc(){}
1626
+ @mixin hook-inverse-search-default-input(){}
1627
+ @mixin hook-inverse-search-default-input-focus(){}
1628
+ @mixin hook-inverse-search-navbar-input(){}
1629
+ @mixin hook-inverse-search-navbar-input-focus(){}
1630
+ @mixin hook-inverse-search-large-input(){}
1631
+ @mixin hook-inverse-search-large-input-focus(){}
1632
+ @mixin hook-inverse-search-toggle(){}
1633
+ @mixin hook-inverse-search-toggle-hover(){}
1634
+ @mixin hook-section(){}
1635
+ @mixin hook-section-default(){}
1636
+ @mixin hook-section-muted(){}
1637
+ @mixin hook-section-primary(){}
1638
+ @mixin hook-section-secondary(){}
1639
+ @mixin hook-section-overlap(){}
1640
+ @mixin hook-section-misc(){}
1641
+ @mixin hook-slidenav(){}
1642
+ @mixin hook-slidenav-hover(){}
1643
+ @mixin hook-slidenav-active(){}
1644
+ @mixin hook-slidenav-previous(){}
1645
+ @mixin hook-slidenav-next(){}
1646
+ @mixin hook-slidenav-large(){}
1647
+ @mixin hook-slidenav-container(){}
1648
+ @mixin hook-slidenav-misc(){}
1649
+ @mixin hook-inverse-slidenav(){}
1650
+ @mixin hook-inverse-slidenav-hover(){}
1651
+ @mixin hook-inverse-slidenav-active(){}
1652
+ @mixin hook-slider(){}
1653
+ @mixin hook-slider-misc(){}
1654
+ @mixin hook-slideshow(){}
1655
+ @mixin hook-slideshow-misc(){}
1656
+ @mixin hook-sortable(){}
1657
+ @mixin hook-sortable-drag(){}
1658
+ @mixin hook-sortable-placeholder(){}
1659
+ @mixin hook-sortable-empty(){}
1660
+ @mixin hook-sortable-misc(){}
1661
+ @mixin hook-spinner(){}
1662
+ @mixin hook-spinner-misc(){}
1663
+ @mixin hook-sticky-misc(){}
1664
+ @mixin hook-subnav(){}
1665
+ @mixin hook-subnav-item(){}
1666
+ @mixin hook-subnav-item-hover(){}
1667
+ @mixin hook-subnav-item-active(){}
1668
+ @mixin hook-subnav-divider(){}
1669
+ @mixin hook-subnav-pill-item(){}
1670
+ @mixin hook-subnav-pill-item-hover(){}
1671
+ @mixin hook-subnav-pill-item-onclick(){}
1672
+ @mixin hook-subnav-pill-item-active(){}
1673
+ @mixin hook-subnav-item-disabled(){}
1674
+ @mixin hook-subnav-misc(){}
1675
+ @mixin hook-inverse-subnav-item(){}
1676
+ @mixin hook-inverse-subnav-item-hover(){}
1677
+ @mixin hook-inverse-subnav-item-active(){}
1678
+ @mixin hook-inverse-subnav-divider(){}
1679
+ @mixin hook-inverse-subnav-pill-item(){}
1680
+ @mixin hook-inverse-subnav-pill-item-hover(){}
1681
+ @mixin hook-inverse-subnav-pill-item-onclick(){}
1682
+ @mixin hook-inverse-subnav-pill-item-active(){}
1683
+ @mixin hook-inverse-subnav-item-disabled(){}
1684
+ @mixin hook-svg-misc(){}
1685
+ @mixin hook-switcher-misc(){}
1686
+ @mixin hook-tab(){}
1687
+ @mixin hook-tab-item(){}
1688
+ @mixin hook-tab-item-hover(){}
1689
+ @mixin hook-tab-item-active(){}
1690
+ @mixin hook-tab-item-disabled(){}
1691
+ @mixin hook-tab-bottom(){}
1692
+ @mixin hook-tab-bottom-item(){}
1693
+ @mixin hook-tab-left(){}
1694
+ @mixin hook-tab-right(){}
1695
+ @mixin hook-tab-left-item(){}
1696
+ @mixin hook-tab-right-item(){}
1697
+ @mixin hook-tab-misc(){}
1698
+ @mixin hook-inverse-tab(){}
1699
+ @mixin hook-inverse-tab-item(){}
1700
+ @mixin hook-inverse-tab-item-hover(){}
1701
+ @mixin hook-inverse-tab-item-active(){}
1702
+ @mixin hook-inverse-tab-item-disabled(){}
1703
+ @mixin hook-table(){}
1704
+ @mixin hook-table-header-cell(){}
1705
+ @mixin hook-table-cell(){}
1706
+ @mixin hook-table-footer(){}
1707
+ @mixin hook-table-caption(){}
1708
+ @mixin hook-table-divider(){}
1709
+ @mixin hook-table-striped(){}
1710
+ @mixin hook-table-hover(){}
1711
+ @mixin hook-table-row-active(){}
1712
+ @mixin hook-table-small(){}
1713
+ @mixin hook-table-large(){}
1714
+ @mixin hook-table-misc(){}
1715
+ @mixin hook-inverse-table-header-cell(){}
1716
+ @mixin hook-inverse-table-caption(){}
1717
+ @mixin hook-inverse-table-row-active(){}
1718
+ @mixin hook-inverse-table-divider(){}
1719
+ @mixin hook-inverse-table-striped(){}
1720
+ @mixin hook-inverse-table-hover(){}
1721
+ @mixin hook-inverse-component-table(){
1641
1722
 
1642
- .uk-countdown-number,
1643
- .uk-countdown-separator {
1644
- @if(mixin-exists(hook-inverse-countdown-item)) {@include hook-inverse-countdown-item();}
1723
+ .uk-table th {
1724
+ color: $inverse-table-header-cell-color;
1725
+ @if(mixin-exists(hook-inverse-table-header-cell)) {@include hook-inverse-table-header-cell();}
1645
1726
  }
1646
1727
 
1647
- .uk-countdown-number {
1648
- @if(mixin-exists(hook-inverse-countdown-number)) {@include hook-inverse-countdown-number();}
1728
+ .uk-table caption {
1729
+ color: $inverse-table-caption-color;
1730
+ @if(mixin-exists(hook-inverse-table-caption)) {@include hook-inverse-table-caption();}
1649
1731
  }
1650
1732
 
1651
- .uk-countdown-separator {
1652
- @if(mixin-exists(hook-inverse-countdown-separator)) {@include hook-inverse-countdown-separator();}
1733
+ .uk-table > tr.uk-active,
1734
+ .uk-table tbody tr.uk-active {
1735
+ background: $inverse-table-row-active-background;
1736
+ @if(mixin-exists(hook-inverse-table-row-active)) {@include hook-inverse-table-row-active();}
1653
1737
  }
1654
1738
 
1655
- .uk-countdown-label {
1656
- @if(mixin-exists(hook-inverse-countdown-label)) {@include hook-inverse-countdown-label();}
1739
+ .uk-table-divider > tr:not(:first-child),
1740
+ .uk-table-divider > :not(:first-child) > tr,
1741
+ .uk-table-divider > :first-child > tr:not(:first-child) {
1742
+ border-top-color: $inverse-table-divider-border;
1743
+ @if(mixin-exists(hook-inverse-table-divider)) {@include hook-inverse-table-divider();}
1744
+ }
1745
+
1746
+ .uk-table-striped > tr:nth-of-type(odd),
1747
+ .uk-table-striped tbody tr:nth-of-type(odd) {
1748
+ background: $inverse-table-striped-row-background;
1749
+ @if(mixin-exists(hook-inverse-table-striped)) {@include hook-inverse-table-striped();}
1750
+ }
1751
+
1752
+ .uk-table-hover > tr:hover,
1753
+ .uk-table-hover tbody tr:hover {
1754
+ background: $inverse-table-hover-row-background;
1755
+ @if(mixin-exists(hook-inverse-table-hover)) {@include hook-inverse-table-hover();}
1657
1756
  }
1658
1757
 
1659
1758
  }
1660
- @mixin hook-container-misc(){}
1661
- @mixin hook-comment(){}
1662
- @mixin hook-comment-body(){}
1663
- @mixin hook-comment-header(){}
1664
- @mixin hook-comment-title(){}
1665
- @mixin hook-comment-meta(){}
1666
- @mixin hook-comment-avatar(){}
1667
- @mixin hook-comment-list-adjacent(){}
1668
- @mixin hook-comment-list-sub(){}
1669
- @mixin hook-comment-list-sub-adjacent(){}
1670
- @mixin hook-comment-primary(){}
1671
- @mixin hook-comment-misc(){}
1672
- @mixin hook-column-misc(){}
1673
- @mixin hook-close(){}
1674
- @mixin hook-close-hover(){}
1675
- @mixin hook-close-misc(){}
1676
- @mixin hook-inverse-close(){}
1677
- @mixin hook-inverse-close-hover(){}
1678
- @mixin hook-card(){}
1679
- @mixin hook-card-body(){}
1680
- @mixin hook-card-header(){}
1681
- @mixin hook-card-footer(){}
1682
- @mixin hook-card-media(){}
1683
- @mixin hook-card-media-top(){}
1684
- @mixin hook-card-media-bottom(){}
1685
- @mixin hook-card-media-left(){}
1686
- @mixin hook-card-media-right(){}
1687
- @mixin hook-card-title(){}
1688
- @mixin hook-card-badge(){}
1689
- @mixin hook-card-hover(){}
1690
- @mixin hook-card-default(){}
1691
- @mixin hook-card-default-title(){}
1692
- @mixin hook-card-default-hover(){}
1693
- @mixin hook-card-default-header(){}
1694
- @mixin hook-card-default-footer(){}
1695
- @mixin hook-card-primary(){}
1696
- @mixin hook-card-primary-title(){}
1697
- @mixin hook-card-primary-hover(){}
1698
- @mixin hook-card-secondary(){}
1699
- @mixin hook-card-secondary-title(){}
1700
- @mixin hook-card-secondary-hover(){}
1701
- @mixin hook-card-misc(){}
1702
- @mixin hook-inverse-card-badge(){}
1703
- @mixin hook-inverse-component-card(){
1759
+ @mixin hook-text-lead(){}
1760
+ @mixin hook-text-meta(){}
1761
+ @mixin hook-text-small(){}
1762
+ @mixin hook-text-large(){}
1763
+ @mixin hook-text-background(){}
1764
+ @mixin hook-text-misc(){}
1765
+ @mixin hook-inverse-text-lead(){}
1766
+ @mixin hook-inverse-text-meta(){}
1767
+ @mixin hook-thumbnav(){}
1768
+ @mixin hook-thumbnav-item(){}
1769
+ @mixin hook-thumbnav-item-hover(){}
1770
+ @mixin hook-thumbnav-item-active(){}
1771
+ @mixin hook-thumbnav-misc(){}
1772
+ @mixin hook-inverse-thumbnav-item(){}
1773
+ @mixin hook-inverse-thumbnav-item-hover(){}
1774
+ @mixin hook-inverse-thumbnav-item-active(){}
1775
+ @mixin hook-inverse-component-thumbnav(){
1704
1776
 
1705
- &.uk-card-badge {
1706
- background-color: $inverse-card-badge-background;
1707
- color: $inverse-card-badge-color;
1708
- @if(mixin-exists(hook-inverse-card-badge)) {@include hook-inverse-card-badge();}
1777
+ .uk-thumbnav > * > * {
1778
+ @if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
1779
+ }
1780
+
1781
+ .uk-thumbnav > * > :hover {
1782
+ @if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
1783
+ }
1784
+
1785
+ .uk-thumbnav > .uk-active > * {
1786
+ @if(mixin-exists(hook-inverse-thumbnav-item-active)) {@include hook-inverse-thumbnav-item-active();}
1709
1787
  }
1710
1788
 
1711
1789
  }
1712
- @mixin hook-button(){}
1713
- @mixin hook-button-hover(){}
1714
- @mixin hook-button-active(){}
1715
- @mixin hook-button-default(){}
1716
- @mixin hook-button-default-hover(){}
1717
- @mixin hook-button-default-active(){}
1718
- @mixin hook-button-primary(){}
1719
- @mixin hook-button-primary-hover(){}
1720
- @mixin hook-button-primary-active(){}
1721
- @mixin hook-button-secondary(){}
1722
- @mixin hook-button-secondary-hover(){}
1723
- @mixin hook-button-secondary-active(){}
1724
- @mixin hook-button-danger(){}
1725
- @mixin hook-button-danger-hover(){}
1726
- @mixin hook-button-danger-active(){}
1727
- @mixin hook-button-disabled(){}
1728
- @mixin hook-button-small(){}
1729
- @mixin hook-button-large(){}
1730
- @mixin hook-button-text(){}
1731
- @mixin hook-button-text-hover(){}
1732
- @mixin hook-button-text-disabled(){}
1733
- @mixin hook-button-link(){}
1734
- @mixin hook-button-misc(){}
1735
- @mixin hook-inverse-button-default(){}
1736
- @mixin hook-inverse-button-default-hover(){}
1737
- @mixin hook-inverse-button-default-active(){}
1738
- @mixin hook-inverse-button-primary(){}
1739
- @mixin hook-inverse-button-primary-hover(){}
1740
- @mixin hook-inverse-button-primary-active(){}
1741
- @mixin hook-inverse-button-secondary(){}
1742
- @mixin hook-inverse-button-secondary-hover(){}
1743
- @mixin hook-inverse-button-secondary-active(){}
1744
- @mixin hook-inverse-button-text(){}
1745
- @mixin hook-inverse-button-text-hover(){}
1746
- @mixin hook-inverse-button-text-disabled(){}
1747
- @mixin hook-inverse-button-link(){}
1748
- @mixin hook-breadcrumb(){}
1749
- @mixin hook-breadcrumb-item(){}
1750
- @mixin hook-breadcrumb-item-hover(){}
1751
- @mixin hook-breadcrumb-item-disabled(){}
1752
- @mixin hook-breadcrumb-item-active(){}
1753
- @mixin hook-breadcrumb-divider(){}
1754
- @mixin hook-breadcrumb-misc(){}
1755
- @mixin hook-inverse-breadcrumb-item(){}
1756
- @mixin hook-inverse-breadcrumb-item-hover(){}
1757
- @mixin hook-inverse-breadcrumb-item-disabled(){}
1758
- @mixin hook-inverse-breadcrumb-item-active(){}
1759
- @mixin hook-inverse-breadcrumb-divider(){}
1760
- @mixin hook-base-body(){}
1761
- @mixin hook-base-link(){}
1762
- @mixin hook-base-link-hover(){}
1763
- @mixin hook-base-code(){}
1764
- @mixin hook-base-heading(){}
1765
- @mixin hook-base-h1(){}
1766
- @mixin hook-base-h2(){}
1767
- @mixin hook-base-h3(){}
1768
- @mixin hook-base-h4(){}
1769
- @mixin hook-base-h5(){}
1770
- @mixin hook-base-h6(){}
1771
- @mixin hook-base-hr(){}
1772
- @mixin hook-base-blockquote(){}
1773
- @mixin hook-base-blockquote-footer(){}
1774
- @mixin hook-base-pre(){}
1775
- @mixin hook-base-misc(){}
1776
- @mixin hook-inverse-base-link(){}
1777
- @mixin hook-inverse-base-link-hover(){}
1778
- @mixin hook-inverse-base-code(){}
1779
- @mixin hook-inverse-base-heading(){}
1780
- @mixin hook-inverse-base-h1(){}
1781
- @mixin hook-inverse-base-h2(){}
1782
- @mixin hook-inverse-base-h3(){}
1783
- @mixin hook-inverse-base-h4(){}
1784
- @mixin hook-inverse-base-h5(){}
1785
- @mixin hook-inverse-base-h6(){}
1786
- @mixin hook-inverse-base-blockquote(){}
1787
- @mixin hook-inverse-base-blockquote-footer(){}
1788
- @mixin hook-inverse-base-hr(){}
1789
- @mixin hook-badge(){}
1790
- @mixin hook-badge-hover(){}
1791
- @mixin hook-badge-misc(){}
1792
- @mixin hook-inverse-badge(){}
1793
- @mixin hook-inverse-badge-hover(){}
1794
- @mixin hook-background-misc(){}
1795
- @mixin hook-article(){}
1796
- @mixin hook-article-adjacent(){}
1797
- @mixin hook-article-title(){}
1798
- @mixin hook-article-meta(){}
1799
- @mixin hook-article-misc(){}
1800
- @mixin hook-inverse-article-title(){}
1801
- @mixin hook-inverse-article-meta(){}
1802
- @mixin hook-animation-misc(){}
1803
- @mixin hook-align-misc(){}
1804
- @mixin hook-alert(){}
1805
- @mixin hook-alert-close(){}
1806
- @mixin hook-alert-close-hover(){}
1807
- @mixin hook-alert-primary(){}
1808
- @mixin hook-alert-success(){}
1809
- @mixin hook-alert-warning(){}
1810
- @mixin hook-alert-danger(){}
1811
- @mixin hook-alert-misc(){}
1812
- @mixin hook-accordion(){}
1813
- @mixin hook-accordion-item(){}
1814
- @mixin hook-accordion-title(){}
1815
- @mixin hook-accordion-title-hover(){}
1816
- @mixin hook-accordion-content(){}
1817
- @mixin hook-accordion-misc(){}
1818
- @mixin hook-inverse-accordion-item(){}
1819
- @mixin hook-inverse-accordion-title(){}
1820
- @mixin hook-inverse-accordion-title-hover(){}
1790
+ @mixin hook-tile(){}
1791
+ @mixin hook-tile-default(){}
1792
+ @mixin hook-tile-default-hover(){}
1793
+ @mixin hook-tile-muted(){}
1794
+ @mixin hook-tile-muted-hover(){}
1795
+ @mixin hook-tile-primary(){}
1796
+ @mixin hook-tile-primary-hover(){}
1797
+ @mixin hook-tile-secondary(){}
1798
+ @mixin hook-tile-secondary-hover(){}
1799
+ @mixin hook-tile-misc(){}
1800
+ @mixin hook-tooltip(){}
1801
+ @mixin hook-tooltip-misc(){}
1802
+ @mixin hook-totop(){}
1803
+ @mixin hook-totop-hover(){}
1804
+ @mixin hook-totop-active(){}
1805
+ @mixin hook-totop-misc(){}
1806
+ @mixin hook-inverse-totop(){}
1807
+ @mixin hook-inverse-totop-hover(){}
1808
+ @mixin hook-inverse-totop-active(){}
1809
+ @mixin hook-transition-misc(){}
1810
+ @mixin hook-panel-scrollable(){}
1811
+ @mixin hook-box-shadow-bottom(){}
1812
+ @mixin hook-dropcap(){}
1813
+ @mixin hook-logo(){}
1814
+ @mixin hook-logo-hover(){}
1815
+ @mixin hook-utility-misc(){}
1816
+ @mixin hook-inverse-dropcap(){}
1817
+ @mixin hook-inverse-logo(){}
1818
+ @mixin hook-inverse-logo-hover(){}
1819
+ @mixin hook-visibility-misc(){}
1820
+ @mixin hook-width-misc(){}