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