uikit 3.16.5-dev.1a12b9f06 → 3.16.5-dev.2fd0fea3e

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 (46) hide show
  1. package/CHANGELOG.md +1 -0
  2. package/dist/css/uikit-core-rtl.css +1 -1
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +1 -1
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +1 -1
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +1 -1
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +1 -1
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +4 -4
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +4 -4
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +1 -1
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +1 -1
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +4 -4
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +1 -1
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +4 -4
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +4 -4
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +4 -4
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +4 -4
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/api/component.js +2 -2
  44. package/src/scss/mixins-theme.scss +780 -736
  45. package/src/scss/mixins.scss +10 -10
  46. package/src/scss/variables-theme.scss +219 -219
@@ -1,78 +1,8 @@
1
- @mixin hook-width-misc(){}
2
- @mixin hook-visibility-misc(){}
3
- @mixin hook-panel-scrollable(){}
4
- @mixin hook-box-shadow-bottom(){}
5
1
  @mixin hook-dropcap(){
6
2
  // Prevent line wrap
7
3
  margin-bottom: -2px;
8
4
  }
9
- @mixin hook-logo(){}
10
- @mixin hook-logo-hover(){}
11
- @mixin hook-utility-misc(){}
12
- @mixin hook-inverse-dropcap(){}
13
- @mixin hook-inverse-logo(){}
14
- @mixin hook-inverse-logo-hover(){}
15
- @mixin hook-inverse-component-utility(){
16
-
17
- .uk-dropcap::first-letter,
18
- .uk-dropcap p:first-of-type::first-letter {
19
- @if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
20
- }
21
-
22
- .uk-logo {
23
- color: $inverse-logo-color;
24
- @if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
25
- }
26
-
27
- .uk-logo:hover {
28
- color: $inverse-logo-hover-color;
29
- @if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
30
- }
31
-
32
- .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
33
- .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
34
- .uk-logo-inverse { display: block; }
35
-
36
- }
37
- @mixin hook-transition-misc(){}
38
5
  @mixin hook-totop(){ transition: color 0.1s ease-in-out; }
39
- @mixin hook-totop-hover(){}
40
- @mixin hook-totop-active(){}
41
- @mixin hook-totop-misc(){}
42
- @mixin hook-inverse-totop(){}
43
- @mixin hook-inverse-totop-hover(){}
44
- @mixin hook-inverse-totop-active(){}
45
- @mixin hook-inverse-component-totop(){
46
-
47
- .uk-totop {
48
- color: $inverse-totop-color;
49
- @if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
50
- }
51
-
52
- .uk-totop:hover {
53
- color: $inverse-totop-hover-color;
54
- @if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
55
- }
56
-
57
- .uk-totop:active {
58
- color: $inverse-totop-active-color;
59
- @if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
60
- }
61
-
62
- }
63
- @mixin hook-tooltip(){}
64
- @mixin hook-tooltip-misc(){}
65
- @mixin hook-tile(){}
66
- @mixin hook-tile-default(){}
67
- @mixin hook-tile-default-hover(){}
68
- @mixin hook-tile-muted(){}
69
- @mixin hook-tile-muted-hover(){}
70
- @mixin hook-tile-primary(){}
71
- @mixin hook-tile-primary-hover(){}
72
- @mixin hook-tile-secondary(){}
73
- @mixin hook-tile-secondary-hover(){}
74
- @mixin hook-tile-misc(){}
75
- @mixin hook-thumbnav(){}
76
6
  @mixin hook-thumbnav-item(){
77
7
 
78
8
  position: relative;
@@ -95,28 +25,9 @@
95
25
  @mixin hook-thumbnav-item-active(){
96
26
  &::after { opacity: $thumbnav-item-active-opacity; }
97
27
  }
98
- @mixin hook-thumbnav-misc(){}
99
28
  @mixin hook-inverse-thumbnav-item(){
100
29
  &::after { background-image: $inverse-thumbnav-item-gradient; }
101
30
  }
102
- @mixin hook-inverse-thumbnav-item-hover(){}
103
- @mixin hook-inverse-thumbnav-item-active(){}
104
- @mixin hook-inverse-component-thumbnav(){
105
-
106
- .uk-thumbnav > * > * {
107
- @if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
108
- }
109
-
110
- .uk-thumbnav > * > :hover {
111
- @if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
112
- }
113
-
114
- .uk-thumbnav > .uk-active > * {
115
- @if(mixin-exists(hook-inverse-thumbnav-item-active)) {@include hook-inverse-thumbnav-item-active();}
116
- }
117
-
118
- }
119
- @mixin hook-text-lead(){}
120
31
  @mixin hook-text-meta(){
121
32
 
122
33
  > a { color: $text-meta-link-color; }
@@ -127,44 +38,11 @@
127
38
  }
128
39
 
129
40
  }
130
- @mixin hook-text-small(){}
131
- @mixin hook-text-large(){}
132
41
  @mixin hook-text-background(){ background-image: $internal-text-background-color-gradient; }
133
- @mixin hook-text-misc(){}
134
- @mixin hook-inverse-text-lead(){}
135
- @mixin hook-inverse-text-meta(){}
136
- @mixin hook-inverse-component-text(){
137
-
138
- .uk-text-lead {
139
- color: $inverse-text-lead-color;
140
- @if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
141
- }
142
-
143
- .uk-text-meta {
144
- color: $inverse-text-meta-color;
145
- @if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
146
- }
147
-
148
- .uk-text-muted { color: $inverse-text-muted-color !important; }
149
- .uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
150
- .uk-text-primary { color: $inverse-text-primary-color !important; }
151
- .uk-text-secondary { color: $inverse-text-secondary-color !important; }
152
-
153
- }
154
- @mixin hook-table(){}
155
- @mixin hook-table-header-cell(){ text-transform: uppercase; }
156
- @mixin hook-table-cell(){}
157
- @mixin hook-table-footer(){}
158
- @mixin hook-table-caption(){}
159
- @mixin hook-table-divider(){}
160
42
  @mixin hook-table-striped(){
161
43
  border-top: $table-striped-border-width solid $table-striped-border;
162
44
  border-bottom: $table-striped-border-width solid $table-striped-border;
163
45
  }
164
- @mixin hook-table-hover(){}
165
- @mixin hook-table-row-active(){}
166
- @mixin hook-table-small(){}
167
- @mixin hook-table-large(){}
168
46
  @mixin hook-table-misc(){
169
47
 
170
48
  .uk-table tbody tr { transition: background-color 0.1s linear; }
@@ -173,19 +51,49 @@
173
51
  .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom: $table-striped-border-width solid $table-striped-border; }
174
52
 
175
53
  }
176
- @mixin hook-inverse-table-header-cell(){}
177
- @mixin hook-inverse-table-caption(){}
178
- @mixin hook-inverse-table-row-active(){}
179
- @mixin hook-inverse-table-divider(){}
180
54
  @mixin hook-inverse-table-striped(){
181
55
  border-top-color: $inverse-global-border;
182
56
  border-bottom-color: $inverse-global-border;
183
57
  }
184
- @mixin hook-inverse-table-hover(){}
185
58
  @mixin hook-inverse-component-table(){
186
- .uk-table-striped > tr:nth-of-type(even):last-child,
187
- .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom-color: $inverse-global-border; }
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
+ }
69
+
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
+ }
75
+
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
+ }
82
+
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();}
87
+ }
88
+
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();}
93
+ }
94
+
188
95
  }
96
+ @mixin hook-table-header-cell(){ text-transform: uppercase; }
189
97
  @mixin hook-tab(){
190
98
 
191
99
  position: relative;
@@ -206,9 +114,6 @@
206
114
  text-transform: $tab-item-text-transform;
207
115
  transition: color 0.1s ease-in-out;
208
116
  }
209
- @mixin hook-tab-item-hover(){}
210
- @mixin hook-tab-item-active(){ border-color: $tab-item-active-border; }
211
- @mixin hook-tab-item-disabled(){}
212
117
  @mixin hook-tab-bottom(){
213
118
 
214
119
  &::before {
@@ -233,6 +138,10 @@
233
138
  }
234
139
 
235
140
  }
141
+ @mixin hook-tab-left-item(){
142
+ border-right: $tab-item-border-width solid transparent;
143
+ border-bottom: none;
144
+ }
236
145
  @mixin hook-tab-right(){
237
146
 
238
147
  &::before {
@@ -245,10 +154,6 @@
245
154
  }
246
155
 
247
156
  }
248
- @mixin hook-tab-left-item(){
249
- border-right: $tab-item-border-width solid transparent;
250
- border-bottom: none;
251
- }
252
157
  @mixin hook-tab-right-item(){
253
158
  border-left: $tab-item-border-width solid transparent;
254
159
  border-bottom: none;
@@ -263,95 +168,679 @@
263
168
  &::before { border-color: $inverse-tab-border; }
264
169
 
265
170
  }
266
- @mixin hook-inverse-tab-item(){}
267
- @mixin hook-inverse-tab-item-hover(){}
171
+ @mixin hook-tab-item-active(){ border-color: $tab-item-active-border; }
268
172
  @mixin hook-inverse-tab-item-active(){ border-color: $inverse-global-primary-background; }
269
- @mixin hook-inverse-tab-item-disabled(){}
270
- @mixin hook-inverse-component-tab(){
271
-
272
- .uk-tab {
273
- @if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
274
- }
275
-
276
- .uk-tab > * > a {
277
- color: $inverse-tab-item-color;
278
- @if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
279
- }
280
-
281
- .uk-tab > * > a:hover {
282
- color: $inverse-tab-item-hover-color;
283
- @if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
284
- }
285
-
286
- .uk-tab > .uk-active > a {
287
- color: $inverse-tab-item-active-color;
288
- @if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
289
- }
290
-
291
- .uk-tab > .uk-disabled > a {
292
- color: $inverse-tab-item-disabled-color;
293
- @if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
294
- }
295
-
296
- }
297
- @mixin hook-switcher-misc(){}
298
- @mixin hook-svg-misc(){}
299
- @mixin hook-subnav(){}
300
173
  @mixin hook-subnav-item(){
301
174
  font-size: $subnav-item-font-size;
302
175
  text-transform: $subnav-item-text-transform;
303
176
  transition: 0.1s ease-in-out;
304
177
  transition-property: color, background-color;
305
178
  }
306
- @mixin hook-subnav-item-hover(){}
307
- @mixin hook-subnav-item-active(){}
308
- @mixin hook-subnav-divider(){}
309
- @mixin hook-subnav-pill-item(){}
310
- @mixin hook-subnav-pill-item-hover(){}
311
- @mixin hook-subnav-pill-item-onclick(){}
312
- @mixin hook-subnav-pill-item-active(){}
313
- @mixin hook-subnav-item-disabled(){}
314
- @mixin hook-subnav-misc(){}
315
- @mixin hook-inverse-subnav-item(){}
316
- @mixin hook-inverse-subnav-item-hover(){}
317
- @mixin hook-inverse-subnav-item-active(){}
318
- @mixin hook-inverse-subnav-divider(){}
319
- @mixin hook-inverse-subnav-pill-item(){}
320
- @mixin hook-inverse-subnav-pill-item-hover(){}
321
- @mixin hook-inverse-subnav-pill-item-onclick(){}
322
- @mixin hook-inverse-subnav-pill-item-active(){}
323
- @mixin hook-inverse-subnav-item-disabled(){}
324
- @mixin hook-inverse-component-subnav(){
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;
186
+ }
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;
193
+ }
194
+ @mixin hook-navbar-misc(){
325
195
 
326
- .uk-subnav > * > :first-child {
327
- color: $inverse-subnav-item-color;
328
- @if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
329
- }
196
+ /* Tablet landscape and bigger */
197
+ @media (min-width: $breakpoint-medium) {
330
198
 
331
- .uk-subnav > * > a:hover {
332
- color: $inverse-subnav-item-hover-color;
333
- @if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
334
- }
199
+ .uk-navbar-left,
200
+ .uk-navbar-right,
201
+ [class*='uk-navbar-center'] { gap: $navbar-gap-m; }
202
+
203
+ .uk-navbar-center-left { right: unquote('calc(100% + #{$navbar-gap-m})'); }
204
+ .uk-navbar-center-right { left: unquote('calc(100% + #{$navbar-gap-m})'); }
335
205
 
336
- .uk-subnav > .uk-active > a {
337
- color: $inverse-subnav-item-active-color;
338
- @if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
339
206
  }
340
207
 
341
- //
342
- // Divider
343
- //
208
+ /* Tablet landscape and bigger */
209
+ @media (min-width: $breakpoint-medium) {
344
210
 
345
- .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
346
- border-left-color: $inverse-subnav-divider-border;
347
- @if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
348
- }
211
+ .uk-navbar-nav { gap: $navbar-nav-gap-m; }
349
212
 
350
- //
351
- // Pill
352
- //
213
+ }
353
214
 
354
- .uk-subnav-pill > * > :first-child {
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(){
234
+
235
+ /* Tablet landscape and bigger */
236
+ @media (min-width: $breakpoint-medium) {
237
+
238
+ .uk-modal-close-full {
239
+ padding: $modal-close-full-padding-m;
240
+ }
241
+
242
+ }
243
+
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;
255
+ }
256
+
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;
263
+ }
264
+
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);
362
+ }
363
+
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;
369
+ }
370
+
371
+ .uk-card-body > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left + $card-body-padding-horizontal; }
372
+
373
+
374
+ /* Desktop and bigger */
375
+ @media (min-width: $breakpoint-large) {
376
+
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
+ }
385
+
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
+ }
392
+
393
+ .uk-card-body > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left + $card-body-padding-horizontal-l; }
394
+
395
+ }
396
+
397
+ /*
398
+ * Small
399
+ */
400
+
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
+ }
409
+
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
+ }
416
+
417
+ .uk-card-small > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left + $card-small-body-padding-horizontal; }
418
+
419
+ /*
420
+ * Large
421
+ */
422
+
423
+ /* Desktop and bigger */
424
+ @media (min-width: $breakpoint-large) {
425
+
426
+ .uk-card-large > .uk-nav-default { margin: 0; }
427
+ .uk-card-large > .uk-nav-default:only-child { margin: 0; }
428
+
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
+ }
435
+
436
+ .uk-card-large > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left; }
437
+
438
+ }
439
+
440
+ }
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
+ @mixin hook-button(){
452
+ text-transform: $button-text-transform;
453
+ transition: 0.1s ease-in-out;
454
+ transition-property: color, background-color, border-color;
455
+ }
456
+ @mixin hook-button-text(){
457
+
458
+ position: relative;
459
+
460
+ &::before {
461
+ content: "";
462
+ position: absolute;
463
+ bottom: 0;
464
+ left: 0;
465
+ right: 100%;
466
+ border-bottom: $button-text-border-width solid $button-text-border;
467
+ transition: right 0.3s ease-out;
468
+ }
469
+
470
+ }
471
+ @mixin hook-button-text-hover(){
472
+
473
+ &::before { right: 0; }
474
+
475
+ }
476
+ @mixin hook-button-text-disabled(){
477
+
478
+ &::before { display: none; }
479
+
480
+ }
481
+ @mixin hook-button-misc(){
482
+
483
+ /* Group
484
+ ========================================================================== */
485
+
486
+ /*
487
+ * Collapse border
488
+ */
489
+
490
+ .uk-button-group > .uk-button:nth-child(n+2),
491
+ .uk-button-group > div:nth-child(n+2) .uk-button { margin-left: (-$button-border-width); }
492
+
493
+ /*
494
+ * Create position context to superimpose the successor elements border
495
+ * Known issue: If you use an `a` element as button and an icon inside,
496
+ * the active state will not work if you click the icon inside the button
497
+ * Workaround: Just use a `button` or `input` element as button
498
+ */
499
+
500
+ .uk-button-group .uk-button:hover,
501
+ .uk-button-group .uk-button:focus,
502
+ .uk-button-group .uk-button:active,
503
+ .uk-button-group .uk-button.uk-active {
504
+ position: relative;
505
+ z-index: 1;
506
+ }
507
+
508
+ }
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
+ @mixin hook-inverse-button-default(){ border-color: $inverse-global-color; }
520
+ @mixin hook-inverse-button-default-hover(){ border-color: $inverse-global-emphasis-color; }
521
+ @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;
544
+ }
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(){
548
+
549
+ a { color: $article-meta-link-color; }
550
+
551
+ a:hover {
552
+ color: $article-meta-link-hover-color;
553
+ text-decoration: none;
554
+ }
555
+
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(){
566
+
567
+ /*
568
+ * Content
569
+ */
570
+
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; }
577
+
578
+ .uk-alert a:not([class]) {
579
+ color: inherit;
580
+ text-decoration: underline;
581
+ }
582
+
583
+ .uk-alert a:not([class]):hover {
584
+ color: inherit;
585
+ text-decoration: underline;
586
+ }
587
+
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;
593
+
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;
596
+
597
+ #{$property}: unquote($replace-src);
598
+ }
599
+ @mixin hook-accordion-title(){
600
+
601
+ overflow: hidden;
602
+
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%;
612
+ }
613
+
614
+ .uk-open > &::before { @include svg-fill($internal-accordion-open-image, "#000", $accordion-icon-color); }
615
+
616
+ }
617
+ @mixin hook-inverse-component-accordion(){
618
+
619
+ .uk-accordion > :nth-child(n+2) {
620
+ @if(mixin-exists(hook-inverse-accordion-item)) {@include hook-inverse-accordion-item();}
621
+ }
622
+
623
+ .uk-accordion-title {
624
+ color: $inverse-accordion-title-color;
625
+ @if(mixin-exists(hook-inverse-accordion-title)) {@include hook-inverse-accordion-title();}
626
+ }
627
+
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();}
631
+ }
632
+
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(){
645
+
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
+ }
650
+
651
+ .uk-logo {
652
+ color: $inverse-logo-color;
653
+ @if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
654
+ }
655
+
656
+ .uk-logo:hover {
657
+ color: $inverse-logo-hover-color;
658
+ @if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
659
+ }
660
+
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; }
664
+
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
+
675
+ .uk-totop {
676
+ color: $inverse-totop-color;
677
+ @if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
678
+ }
679
+
680
+ .uk-totop:hover {
681
+ color: $inverse-totop-hover-color;
682
+ @if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
683
+ }
684
+
685
+ .uk-totop:active {
686
+ color: $inverse-totop-active-color;
687
+ @if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
688
+ }
689
+
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(){
708
+
709
+ .uk-thumbnav > * > * {
710
+ @if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
711
+ }
712
+
713
+ .uk-thumbnav > * > :hover {
714
+ @if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
715
+ }
716
+
717
+ .uk-thumbnav > .uk-active > * {
718
+ @if(mixin-exists(hook-inverse-thumbnav-item-active)) {@include hook-inverse-thumbnav-item-active();}
719
+ }
720
+
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(){
729
+
730
+ .uk-text-lead {
731
+ color: $inverse-text-lead-color;
732
+ @if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
733
+ }
734
+
735
+ .uk-text-meta {
736
+ color: $inverse-text-meta-color;
737
+ @if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
738
+ }
739
+
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; }
744
+
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(){
766
+
767
+ .uk-tab {
768
+ @if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
769
+ }
770
+
771
+ .uk-tab > * > a {
772
+ color: $inverse-tab-item-color;
773
+ @if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
774
+ }
775
+
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();}
779
+ }
780
+
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();}
784
+ }
785
+
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();}
789
+ }
790
+
791
+ }
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
+ }
824
+
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
+ }
829
+
830
+ //
831
+ // Divider
832
+ //
833
+
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();}
837
+ }
838
+
839
+ //
840
+ // Pill
841
+ //
842
+
843
+ .uk-subnav-pill > * > :first-child {
355
844
  background-color: $inverse-subnav-pill-item-background;
356
845
  color: $inverse-subnav-pill-item-color;
357
846
  @if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
@@ -397,7 +886,6 @@
397
886
  @mixin hook-slideshow-misc(){}
398
887
  @mixin hook-slider(){}
399
888
  @mixin hook-slider-misc(){}
400
- @mixin hook-slidenav(){ transition: color 0.1s ease-in-out; }
401
889
  @mixin hook-slidenav-hover(){}
402
890
  @mixin hook-slidenav-active(){}
403
891
  @mixin hook-slidenav-previous(){}
@@ -435,8 +923,6 @@
435
923
  @mixin hook-section-misc(){}
436
924
  @mixin hook-search-input(){}
437
925
  @mixin hook-search-icon(){}
438
- @mixin hook-search-default-input(){ border: $search-default-border-width solid $search-default-border; }
439
- @mixin hook-search-default-input-focus(){ border-color: $search-default-focus-border; }
440
926
  @mixin hook-search-navbar-input(){}
441
927
  @mixin hook-search-navbar-input-focus(){}
442
928
  @mixin hook-search-large-input(){}
@@ -444,7 +930,6 @@
444
930
  @mixin hook-search-toggle(){}
445
931
  @mixin hook-search-toggle-hover(){}
446
932
  @mixin hook-search-misc(){}
447
- @mixin hook-inverse-search-default-input(){ border-color: $inverse-global-border; }
448
933
  @mixin hook-inverse-search-default-input-focus(){}
449
934
  @mixin hook-inverse-search-navbar-input(){}
450
935
  @mixin hook-inverse-search-navbar-input-focus(){}
@@ -516,18 +1001,12 @@
516
1001
  }
517
1002
 
518
1003
  }
519
- @mixin hook-progress(){
520
- border-radius: $progress-border-radius;
521
- overflow: hidden;
522
- }
523
1004
  @mixin hook-progress-bar(){}
524
1005
  @mixin hook-progress-misc(){}
525
1006
  @mixin hook-print(){}
526
1007
  @mixin hook-position-misc(){}
527
- @mixin hook-placeholder(){ border: $placeholder-border-width dashed $placeholder-border; }
528
1008
  @mixin hook-placeholder-misc(){}
529
1009
  @mixin hook-pagination(){}
530
- @mixin hook-pagination-item(){ transition: color 0.1s ease-in-out; }
531
1010
  @mixin hook-pagination-item-hover(){}
532
1011
  @mixin hook-pagination-item-active(){}
533
1012
  @mixin hook-pagination-item-disabled(){}
@@ -579,11 +1058,6 @@
579
1058
  @mixin hook-notification-misc(){}
580
1059
  @mixin hook-navbar(){}
581
1060
  @mixin hook-navbar-container(){}
582
- @mixin hook-navbar-nav-item(){
583
- text-transform: $navbar-nav-item-text-transform;
584
- transition: 0.1s ease-in-out;
585
- transition-property: color, background-color;
586
- }
587
1061
  @mixin hook-navbar-nav-item-hover(){}
588
1062
  @mixin hook-navbar-nav-item-onclick(){}
589
1063
  @mixin hook-navbar-nav-item-active(){}
@@ -596,11 +1070,8 @@
596
1070
  @mixin hook-navbar-primary(){}
597
1071
  @mixin hook-navbar-transparent(){}
598
1072
  @mixin hook-navbar-sticky(){}
599
- @mixin hook-navbar-dropdown(){ box-shadow: $navbar-dropdown-box-shadow; }
600
1073
  @mixin hook-navbar-dropdown-large(){}
601
- @mixin hook-navbar-dropdown-dropbar(){ box-shadow: none; }
602
1074
  @mixin hook-navbar-dropdown-dropbar-large(){}
603
- @mixin hook-navbar-dropdown-nav(){ font-size: $navbar-dropdown-nav-font-size; }
604
1075
  @mixin hook-navbar-dropdown-nav-item(){}
605
1076
  @mixin hook-navbar-dropdown-nav-item-hover(){}
606
1077
  @mixin hook-navbar-dropdown-nav-item-active(){}
@@ -608,28 +1079,6 @@
608
1079
  @mixin hook-navbar-dropdown-nav-header(){}
609
1080
  @mixin hook-navbar-dropdown-nav-divider(){}
610
1081
  @mixin hook-navbar-dropbar(){}
611
- @mixin hook-navbar-misc(){
612
-
613
- /* Tablet landscape and bigger */
614
- @media (min-width: $breakpoint-medium) {
615
-
616
- .uk-navbar-left,
617
- .uk-navbar-right,
618
- [class*='uk-navbar-center'] { gap: $navbar-gap-m; }
619
-
620
- .uk-navbar-center-left { right: unquote('calc(100% + #{$navbar-gap-m})'); }
621
- .uk-navbar-center-right { left: unquote('calc(100% + #{$navbar-gap-m})'); }
622
-
623
- }
624
-
625
- /* Tablet landscape and bigger */
626
- @media (min-width: $breakpoint-medium) {
627
-
628
- .uk-navbar-nav { gap: $navbar-nav-gap-m; }
629
-
630
- }
631
-
632
- }
633
1082
  @mixin hook-inverse-navbar-nav-item(){}
634
1083
  @mixin hook-inverse-navbar-nav-item-hover(){}
635
1084
  @mixin hook-inverse-navbar-nav-item-onclick(){}
@@ -706,12 +1155,6 @@
706
1155
  @mixin hook-nav-primary-subtitle(){}
707
1156
  @mixin hook-nav-primary-header(){}
708
1157
  @mixin hook-nav-primary-divider(){}
709
- @mixin hook-nav-secondary(){
710
- > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { margin-top: $nav-background-margin-top; }
711
- }
712
- @mixin hook-nav-secondary-item(){ padding: $nav-background-item-padding-vertical $nav-background-item-padding-horizontal; }
713
- @mixin hook-nav-secondary-item-hover(){ background-color: $nav-background-item-hover-background; }
714
- @mixin hook-nav-secondary-item-active(){ background-color: $nav-background-item-active-background; }
715
1158
  @mixin hook-nav-secondary-subtitle(){}
716
1159
  @mixin hook-nav-secondary-subtitle-hover(){}
717
1160
  @mixin hook-nav-secondary-subtitle-active(){}
@@ -730,8 +1173,6 @@
730
1173
  @mixin hook-inverse-nav-primary-header(){}
731
1174
  @mixin hook-inverse-nav-primary-divider(){}
732
1175
  @mixin hook-inverse-nav-secondary-item(){}
733
- @mixin hook-inverse-nav-secondary-item-hover(){ background-color: $inverse-nav-background-item-hover-background; }
734
- @mixin hook-inverse-nav-secondary-item-active(){ background-color: $inverse-nav-background-item-active-background; }
735
1176
  @mixin hook-inverse-nav-secondary-subtitle(){}
736
1177
  @mixin hook-inverse-nav-secondary-subtitle-hover(){}
737
1178
  @mixin hook-inverse-nav-secondary-subtitle-active(){}
@@ -861,60 +1302,27 @@
861
1302
  .uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
862
1303
 
863
1304
  //
864
- // Dividers
865
- //
866
-
867
- .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
868
- border-top-color: $inverse-nav-dividers-border;
869
- @if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
870
- }
871
-
872
- }
873
- @mixin hook-modal(){}
874
- @mixin hook-modal-dialog(){}
875
- @mixin hook-modal-full(){}
876
- @mixin hook-modal-body(){}
877
- @mixin hook-modal-header(){ border-bottom: $modal-header-border-width solid $modal-header-border; }
878
- @mixin hook-modal-footer(){ border-top: $modal-footer-border-width solid $modal-footer-border; }
879
- @mixin hook-modal-title(){}
880
- @mixin hook-modal-close(){}
881
- @mixin hook-modal-close-hover(){}
882
- @mixin hook-modal-close-default(){}
883
- @mixin hook-modal-close-default-hover(){}
884
- @mixin hook-modal-close-outside(){}
885
- @mixin hook-modal-close-outside-hover(){}
886
- @mixin hook-modal-close-full(){
887
- top: 0;
888
- right: 0;
889
- padding: $modal-close-full-padding;
890
- background: $modal-close-full-background;
891
- }
892
- @mixin hook-modal-close-full-hover(){}
893
- @mixin hook-modal-misc(){
894
-
895
- /* Tablet landscape and bigger */
896
- @media (min-width: $breakpoint-medium) {
897
-
898
- .uk-modal-close-full {
899
- padding: $modal-close-full-padding-m;
900
- }
901
-
902
- }
903
-
904
- }
905
- @mixin svg-fill($src, $color-default, $color-new, $property: background-image){
906
-
907
- $escape-color-default: escape($color-default) !default;
908
- $escape-color-new: escape("#{$color-new}") !default;
1305
+ // Dividers
1306
+ //
909
1307
 
910
- $data-uri: data-uri('image/svg+xml;charset=UTF-8', "#{$src}") !default;
911
- $replace-src: replace("#{$data-uri}", "#{$escape-color-default}", "#{$escape-color-new}", "g") !default;
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
+ }
912
1312
 
913
- #{$property}: unquote($replace-src);
914
- }
915
- @mixin hook-marker(){
916
- border-radius: 500px;
917
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(){}
918
1326
  @mixin hook-marker-hover(){}
919
1327
  @mixin hook-marker-misc(){}
920
1328
  @mixin hook-inverse-marker(){}
@@ -935,24 +1343,8 @@
935
1343
  }
936
1344
  @mixin hook-margin-misc(){}
937
1345
  @mixin hook-list-divider(){}
938
- @mixin hook-list-striped(){
939
-
940
- &:nth-of-type(odd) {
941
- border-top: $list-striped-border-width solid $list-striped-border;
942
- border-bottom: $list-striped-border-width solid $list-striped-border;
943
- }
944
-
945
- }
946
1346
  @mixin hook-list-misc(){}
947
1347
  @mixin hook-inverse-list-divider(){}
948
- @mixin hook-inverse-list-striped(){
949
-
950
- &:nth-of-type(odd) {
951
- border-top-color: $inverse-global-border;
952
- border-bottom-color: $inverse-global-border;
953
- }
954
-
955
- }
956
1348
  @mixin hook-inverse-component-list(){
957
1349
 
958
1350
  .uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
@@ -1037,10 +1429,6 @@
1037
1429
  }
1038
1430
 
1039
1431
  }
1040
- @mixin hook-label(){
1041
- border-radius: $label-border-radius;
1042
- text-transform: $label-text-transform;
1043
- }
1044
1432
  @mixin hook-label-success(){}
1045
1433
  @mixin hook-label-warning(){}
1046
1434
  @mixin hook-label-danger(){}
@@ -1576,13 +1964,6 @@
1576
1964
  @if(mixin-exists(hook-inverse-dotnav-item-active)) {@include hook-inverse-dotnav-item-active();}
1577
1965
  }
1578
1966
 
1579
- }
1580
- @mixin hook-inverse-component-accordion(){
1581
-
1582
- .uk-accordion-title::before { @include svg-fill($internal-accordion-close-image, "#000", $inverse-global-color); }
1583
-
1584
- .uk-open > .uk-accordion-title::before { @include svg-fill($internal-accordion-open-image, "#000", $inverse-global-color); }
1585
-
1586
1967
  }
1587
1968
  @mixin hook-inverse-component-iconnav(){
1588
1969
 
@@ -1638,11 +2019,6 @@
1638
2019
  @include hook-inverse-component-utility();
1639
2020
  }
1640
2021
  @mixin hook-iconnav(){}
1641
- @mixin hook-iconnav-item(){
1642
- font-size: $subnav-item-font-size;
1643
- transition: 0.1s ease-in-out;
1644
- transition-property: color, background-color;
1645
- }
1646
2022
  @mixin hook-iconnav-item-hover(){}
1647
2023
  @mixin hook-iconnav-item-active(){}
1648
2024
  @mixin hook-iconnav-misc(){}
@@ -1652,10 +2028,6 @@
1652
2028
  @mixin hook-icon-link(){}
1653
2029
  @mixin hook-icon-link-hover(){}
1654
2030
  @mixin hook-icon-link-active(){}
1655
- @mixin hook-icon-button(){
1656
- transition: 0.1s ease-in-out;
1657
- transition-property: color, background-color;
1658
- }
1659
2031
  @mixin hook-icon-button-hover(){}
1660
2032
  @mixin hook-icon-button-active(){}
1661
2033
  @mixin hook-icon-misc(){}
@@ -1692,59 +2064,22 @@
1692
2064
  @mixin hook-grid-misc(){}
1693
2065
  @mixin hook-inverse-grid-divider-horizontal(){}
1694
2066
  @mixin hook-inverse-grid-divider-vertical(){}
1695
- @mixin hook-form(){
1696
- border: $form-border-width solid $form-border;
1697
- transition: 0.2s ease-in-out;
1698
- transition-property: color, background-color, border;
1699
- }
1700
2067
  @mixin hook-form-single-line(){}
1701
2068
  @mixin hook-form-multi-line(){}
1702
- @mixin hook-form-focus(){ border-color: $form-focus-border; }
1703
- @mixin hook-form-disabled(){ border-color: $form-disabled-border; }
1704
- @mixin hook-form-danger(){ border-color: $form-danger-border; }
1705
- @mixin hook-form-success(){ border-color: $form-success-border; }
1706
- @mixin hook-form-blank(){ border-color: transparent; }
1707
- @mixin hook-form-blank-focus(){
1708
- border-color: $form-blank-focus-border;
1709
- border-style: $form-blank-focus-border-style;
1710
- }
1711
- @mixin hook-form-radio(){
1712
- border: $form-radio-border-width solid $form-radio-border;
1713
- transition: 0.2s ease-in-out;
1714
- transition-property: background-color, border;
1715
- }
1716
- @mixin hook-form-radio-focus(){ border-color: $form-radio-focus-border; }
1717
- @mixin hook-form-radio-checked(){ border-color: $form-radio-checked-border; }
1718
2069
  @mixin hook-form-radio-checked-focus(){}
1719
- @mixin hook-form-radio-disabled(){ border-color: $form-radio-disabled-border; }
1720
2070
  @mixin hook-form-legend(){}
1721
- @mixin hook-form-label(){
1722
- color: $form-label-color;
1723
- font-size: $form-label-font-size;
1724
- }
1725
2071
  @mixin hook-form-stacked-label(){}
1726
2072
  @mixin hook-form-horizontal-label(){}
1727
2073
  @mixin hook-form-icon(){}
1728
2074
  @mixin hook-form-misc(){}
1729
- @mixin hook-inverse-form(){ border-color: $inverse-global-border; }
1730
- @mixin hook-inverse-form-focus(){ border-color: $inverse-global-color; }
1731
- @mixin hook-inverse-form-radio(){ border-color: $inverse-global-border; }
1732
- @mixin hook-inverse-form-radio-focus(){ border-color: $inverse-global-color; }
1733
- @mixin hook-inverse-form-radio-checked(){ border-color: $inverse-global-primary-background; }
1734
2075
  @mixin hook-inverse-form-radio-checked-focus(){}
1735
- @mixin hook-inverse-form-label(){ color: $inverse-form-label-color; }
1736
2076
  @mixin hook-inverse-form-icon(){}
1737
2077
  @mixin hook-form-range(){}
1738
- @mixin hook-form-range-track(){ border-radius: $form-range-track-border-radius; }
1739
2078
  @mixin hook-form-range-track-focus(){}
1740
- @mixin hook-form-range-thumb(){ border: $form-range-thumb-border-width solid $form-range-thumb-border; }
1741
2079
  @mixin hook-form-range-misc(){}
1742
2080
  @mixin hook-flex-misc(){}
1743
2081
  @mixin hook-dropnav-misc(){}
1744
- @mixin hook-dropdown(){ box-shadow: $dropdown-box-shadow; }
1745
- @mixin hook-dropdown-dropbar(){ box-shadow: none; }
1746
2082
  @mixin hook-dropdown-dropbar-large(){}
1747
- @mixin hook-dropdown-nav(){ font-size: $dropdown-nav-font-size; }
1748
2083
  @mixin hook-dropdown-nav-item(){}
1749
2084
  @mixin hook-dropdown-nav-item-hover(){}
1750
2085
  @mixin hook-dropdown-nav-subtitle(){}
@@ -1752,218 +2087,83 @@
1752
2087
  @mixin hook-dropdown-nav-divider(){}
1753
2088
  @mixin hook-dropdown-misc(){}
1754
2089
  @mixin hook-dropbar(){}
1755
- @mixin hook-dropbar-top(){ box-shadow: $dropbar-top-box-shadow; }
1756
- @mixin hook-dropbar-bottom(){ box-shadow: $dropbar-bottom-box-shadow; }
1757
- @mixin hook-dropbar-left(){ box-shadow: $dropbar-left-box-shadow; }
1758
- @mixin hook-dropbar-right(){ box-shadow: $dropbar-right-box-shadow; }
1759
2090
  @mixin hook-dropbar-misc(){}
1760
2091
  @mixin hook-drop-misc(){}
1761
2092
  @mixin hook-dotnav(){}
1762
- @mixin hook-dotnav-item(){
1763
- border: $dotnav-item-border-width solid $dotnav-item-border;
1764
- transition: 0.2s ease-in-out;
1765
- transition-property: background-color, border-color;
1766
- }
1767
- @mixin hook-dotnav-item-hover(){ border-color: $dotnav-item-hover-border; }
1768
- @mixin hook-dotnav-item-onclick(){ border-color: $dotnav-item-onclick-border; }
1769
- @mixin hook-dotnav-item-active(){ border-color: $dotnav-item-active-border; }
1770
2093
  @mixin hook-dotnav-misc(){}
1771
- @mixin hook-inverse-dotnav-item(){ border-color: rgba($inverse-global-color, 0.9); }
1772
- @mixin hook-inverse-dotnav-item-hover(){ border-color: transparent; }
1773
- @mixin hook-inverse-dotnav-item-onclick(){ border-color: transparent; }
1774
- @mixin hook-inverse-dotnav-item-active(){ border-color: transparent; }
1775
- @mixin hook-divider-icon(){}
1776
- @mixin hook-divider-icon-line(){}
1777
- @mixin hook-divider-icon-line-left(){}
1778
- @mixin hook-divider-icon-line-right(){}
1779
- @mixin hook-divider-small(){}
1780
- @mixin hook-divider-vertical(){}
1781
- @mixin hook-divider-misc(){}
1782
- @mixin hook-inverse-divider-icon(){}
1783
- @mixin hook-inverse-divider-icon-line(){}
1784
- @mixin hook-inverse-divider-small(){}
1785
- @mixin hook-inverse-divider-vertical(){}
1786
- @mixin hook-description-list-term(){
1787
- font-size: $description-list-term-font-size;
1788
- font-weight: $description-list-term-font-weight;
1789
- text-transform: $description-list-term-text-transform;
1790
- }
1791
- @mixin hook-description-list-description(){}
1792
- @mixin hook-description-list-divider-term(){}
1793
- @mixin hook-description-list-misc(){}
1794
- @mixin hook-cover-misc(){}
1795
- @mixin hook-countdown(){}
1796
- @mixin hook-countdown-item(){}
1797
- @mixin hook-countdown-number(){}
1798
- @mixin hook-countdown-separator(){}
1799
- @mixin hook-countdown-label(){}
1800
- @mixin hook-countdown-misc(){}
1801
- @mixin hook-inverse-countdown-item(){}
1802
- @mixin hook-inverse-countdown-number(){}
1803
- @mixin hook-inverse-countdown-separator(){}
1804
- @mixin hook-inverse-countdown-label(){}
1805
- @mixin hook-inverse-component-countdown(){
1806
-
1807
- .uk-countdown-number,
1808
- .uk-countdown-separator {
1809
- @if(mixin-exists(hook-inverse-countdown-item)) {@include hook-inverse-countdown-item();}
1810
- }
1811
-
1812
- .uk-countdown-number {
1813
- @if(mixin-exists(hook-inverse-countdown-number)) {@include hook-inverse-countdown-number();}
1814
- }
1815
-
1816
- .uk-countdown-separator {
1817
- @if(mixin-exists(hook-inverse-countdown-separator)) {@include hook-inverse-countdown-separator();}
1818
- }
1819
-
1820
- .uk-countdown-label {
1821
- @if(mixin-exists(hook-inverse-countdown-label)) {@include hook-inverse-countdown-label();}
1822
- }
1823
-
1824
- }
1825
- @mixin hook-container-misc(){}
1826
- @mixin hook-comment(){}
1827
- @mixin hook-comment-body(){}
1828
- @mixin hook-comment-header(){}
1829
- @mixin hook-comment-title(){}
1830
- @mixin hook-comment-meta(){}
1831
- @mixin hook-comment-avatar(){}
1832
- @mixin hook-comment-list-adjacent(){}
1833
- @mixin hook-comment-list-sub(){}
1834
- @mixin hook-comment-list-sub-adjacent(){}
1835
- @mixin hook-comment-primary(){
1836
- padding: $comment-primary-padding;
1837
- background-color: $comment-primary-background;
1838
- }
1839
- @mixin hook-comment-misc(){}
1840
- @mixin hook-column-misc(){}
1841
- @mixin hook-close(){
1842
- transition: 0.1s ease-in-out;
1843
- transition-property: color, opacity;
1844
- }
1845
- @mixin hook-close-hover(){}
1846
- @mixin hook-close-misc(){}
1847
- @mixin hook-inverse-close(){}
1848
- @mixin hook-inverse-close-hover(){}
1849
- @mixin hook-card(){ transition: box-shadow 0.1s ease-in-out; }
1850
- @mixin hook-card-body(){}
1851
- @mixin hook-card-header(){}
1852
- @mixin hook-card-footer(){}
1853
- @mixin hook-card-media(){}
1854
- @mixin hook-card-media-top(){}
1855
- @mixin hook-card-media-bottom(){}
1856
- @mixin hook-card-media-left(){}
1857
- @mixin hook-card-media-right(){}
1858
- @mixin hook-card-title(){}
1859
- @mixin hook-card-badge(){
1860
- border-radius: $card-badge-border-radius;
1861
- text-transform: $card-badge-text-transform;
1862
- }
1863
- @mixin hook-card-hover(){ box-shadow: $card-hover-box-shadow; }
1864
- @mixin hook-card-default(){ box-shadow: $card-default-box-shadow; }
1865
- @mixin hook-card-default-title(){}
1866
- @mixin hook-card-default-hover(){ box-shadow: $card-default-hover-box-shadow; }
1867
- @mixin hook-card-default-header(){ border-bottom: $card-default-header-border-width solid $card-default-header-border; }
1868
- @mixin hook-card-default-footer(){ border-top: $card-default-footer-border-width solid $card-default-footer-border; }
1869
- @mixin hook-card-primary(){ box-shadow: $card-primary-box-shadow; }
1870
- @mixin hook-card-primary-title(){}
1871
- @mixin hook-card-primary-hover(){ box-shadow: $card-primary-hover-box-shadow; }
1872
- @mixin hook-card-secondary(){ box-shadow: $card-secondary-box-shadow; }
1873
- @mixin hook-card-secondary-title(){}
1874
- @mixin hook-card-secondary-hover(){ box-shadow: $card-secondary-hover-box-shadow; }
1875
- @mixin hook-card-misc(){
1876
-
1877
- /*
1878
- * Default
1879
- */
1880
-
1881
- .uk-card-body > .uk-nav-default {
1882
- margin-left: (-$card-body-padding-horizontal);
1883
- margin-right: (-$card-body-padding-horizontal);
1884
- }
1885
- .uk-card-body > .uk-nav-default:only-child {
1886
- margin-top: (-$card-body-padding-vertical + 15px);
1887
- margin-bottom: (-$card-body-padding-vertical + 15px);
1888
- }
1889
-
1890
- .uk-card-body > .uk-nav-default > li > a,
1891
- .uk-card-body > .uk-nav-default .uk-nav-header,
1892
- .uk-card-body > .uk-nav-default .uk-nav-divider {
1893
- padding-left: $card-body-padding-horizontal;
1894
- padding-right: $card-body-padding-horizontal;
1895
- }
1896
-
1897
- .uk-card-body > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left + $card-body-padding-horizontal; }
1898
-
1899
-
1900
- /* Desktop and bigger */
1901
- @media (min-width: $breakpoint-large) {
1902
-
1903
- .uk-card-body > .uk-nav-default {
1904
- margin-left: (-$card-body-padding-horizontal-l);
1905
- margin-right: (-$card-body-padding-horizontal-l);
1906
- }
1907
- .uk-card-body > .uk-nav-default:only-child {
1908
- margin-top: (-$card-body-padding-vertical-l + 15px);
1909
- margin-bottom: (-$card-body-padding-vertical-l + 15px);
1910
- }
1911
-
1912
- .uk-card-body > .uk-nav-default > li > a,
1913
- .uk-card-body > .uk-nav-default .uk-nav-header,
1914
- .uk-card-body > .uk-nav-default .uk-nav-divider {
1915
- padding-left: $card-body-padding-horizontal-l;
1916
- padding-right: $card-body-padding-horizontal-l;
1917
- }
1918
-
1919
- .uk-card-body > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left + $card-body-padding-horizontal-l; }
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(){
1920
2120
 
2121
+ .uk-countdown-number,
2122
+ .uk-countdown-separator {
2123
+ @if(mixin-exists(hook-inverse-countdown-item)) {@include hook-inverse-countdown-item();}
1921
2124
  }
1922
2125
 
1923
- /*
1924
- * Small
1925
- */
1926
-
1927
- .uk-card-small > .uk-nav-default {
1928
- margin-left: (-$card-small-body-padding-horizontal);
1929
- margin-right: (-$card-small-body-padding-horizontal);
1930
- }
1931
- .uk-card-small > .uk-nav-default:only-child {
1932
- margin-top: (-$card-small-body-padding-vertical + 15px);
1933
- margin-bottom: (-$card-small-body-padding-vertical + 15px);
2126
+ .uk-countdown-number {
2127
+ @if(mixin-exists(hook-inverse-countdown-number)) {@include hook-inverse-countdown-number();}
1934
2128
  }
1935
2129
 
1936
- .uk-card-small > .uk-nav-default > li > a,
1937
- .uk-card-small > .uk-nav-default .uk-nav-header,
1938
- .uk-card-small > .uk-nav-default .uk-nav-divider {
1939
- padding-left: $card-small-body-padding-horizontal;
1940
- padding-right: $card-small-body-padding-horizontal;
2130
+ .uk-countdown-separator {
2131
+ @if(mixin-exists(hook-inverse-countdown-separator)) {@include hook-inverse-countdown-separator();}
1941
2132
  }
1942
2133
 
1943
- .uk-card-small > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left + $card-small-body-padding-horizontal; }
1944
-
1945
- /*
1946
- * Large
1947
- */
1948
-
1949
- /* Desktop and bigger */
1950
- @media (min-width: $breakpoint-large) {
1951
-
1952
- .uk-card-large > .uk-nav-default { margin: 0; }
1953
- .uk-card-large > .uk-nav-default:only-child { margin: 0; }
1954
-
1955
- .uk-card-large > .uk-nav-default > li > a,
1956
- .uk-card-large > .uk-nav-default .uk-nav-header,
1957
- .uk-card-large > .uk-nav-default .uk-nav-divider {
1958
- padding-left: 0;
1959
- padding-right: 0;
1960
- }
1961
-
1962
- .uk-card-large > .uk-nav-default .uk-nav-sub { padding-left: $nav-sublist-deeper-padding-left; }
1963
-
2134
+ .uk-countdown-label {
2135
+ @if(mixin-exists(hook-inverse-countdown-label)) {@include hook-inverse-countdown-label();}
1964
2136
  }
1965
2137
 
1966
2138
  }
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(){}
1967
2167
  @mixin hook-inverse-card-badge(){}
1968
2168
  @mixin hook-inverse-component-card(){
1969
2169
 
@@ -1974,94 +2174,23 @@
1974
2174
  }
1975
2175
 
1976
2176
  }
1977
- @mixin hook-button(){
1978
- text-transform: $button-text-transform;
1979
- transition: 0.1s ease-in-out;
1980
- transition-property: color, background-color, border-color;
1981
- }
1982
2177
  @mixin hook-button-hover(){}
1983
2178
  @mixin hook-button-active(){}
1984
- @mixin hook-button-default(){ border: $button-border-width solid $button-default-border; }
1985
- @mixin hook-button-default-hover(){ border-color: $button-default-hover-border; }
1986
- @mixin hook-button-default-active(){ border-color: $button-default-active-border; }
1987
- @mixin hook-button-primary(){ border: $button-border-width solid transparent; }
1988
2179
  @mixin hook-button-primary-hover(){}
1989
2180
  @mixin hook-button-primary-active(){}
1990
- @mixin hook-button-secondary(){ border: $button-border-width solid transparent; }
1991
2181
  @mixin hook-button-secondary-hover(){}
1992
2182
  @mixin hook-button-secondary-active(){}
1993
- @mixin hook-button-danger(){ border: $button-border-width solid transparent; }
1994
2183
  @mixin hook-button-danger-hover(){}
1995
2184
  @mixin hook-button-danger-active(){}
1996
- @mixin hook-button-disabled(){ border-color: $button-disabled-border; }
1997
2185
  @mixin hook-button-small(){}
1998
2186
  @mixin hook-button-large(){}
1999
- @mixin hook-button-text(){
2000
-
2001
- position: relative;
2002
-
2003
- &::before {
2004
- content: "";
2005
- position: absolute;
2006
- bottom: 0;
2007
- left: 0;
2008
- right: 100%;
2009
- border-bottom: $button-text-border-width solid $button-text-border;
2010
- transition: right 0.3s ease-out;
2011
- }
2012
-
2013
- }
2014
- @mixin hook-button-text-hover(){
2015
-
2016
- &::before { right: 0; }
2017
-
2018
- }
2019
- @mixin hook-button-text-disabled(){
2020
-
2021
- &::before { display: none; }
2022
-
2023
- }
2024
2187
  @mixin hook-button-link(){}
2025
- @mixin hook-button-misc(){
2026
-
2027
- /* Group
2028
- ========================================================================== */
2029
-
2030
- /*
2031
- * Collapse border
2032
- */
2033
-
2034
- .uk-button-group > .uk-button:nth-child(n+2),
2035
- .uk-button-group > div:nth-child(n+2) .uk-button { margin-left: (-$button-border-width); }
2036
-
2037
- /*
2038
- * Create position context to superimpose the successor elements border
2039
- * Known issue: If you use an `a` element as button and an icon inside,
2040
- * the active state will not work if you click the icon inside the button
2041
- * Workaround: Just use a `button` or `input` element as button
2042
- */
2043
-
2044
- .uk-button-group .uk-button:hover,
2045
- .uk-button-group .uk-button:focus,
2046
- .uk-button-group .uk-button:active,
2047
- .uk-button-group .uk-button.uk-active {
2048
- position: relative;
2049
- z-index: 1;
2050
- }
2051
-
2052
- }
2053
- @mixin hook-inverse-button-default(){ border-color: $inverse-global-color; }
2054
- @mixin hook-inverse-button-default-hover(){ border-color: $inverse-global-emphasis-color; }
2055
- @mixin hook-inverse-button-default-active(){ border-color: $inverse-global-emphasis-color; }
2056
2188
  @mixin hook-inverse-button-primary(){}
2057
2189
  @mixin hook-inverse-button-primary-hover(){}
2058
2190
  @mixin hook-inverse-button-primary-active(){}
2059
2191
  @mixin hook-inverse-button-secondary(){}
2060
2192
  @mixin hook-inverse-button-secondary-hover(){}
2061
2193
  @mixin hook-inverse-button-secondary-active(){}
2062
- @mixin hook-inverse-button-text(){
2063
- &::before { border-bottom-color: $inverse-global-emphasis-color; }
2064
- }
2065
2194
  @mixin hook-inverse-button-text-hover(){}
2066
2195
  @mixin hook-inverse-button-text-disabled(){}
2067
2196
  @mixin hook-inverse-button-link(){}
@@ -2080,10 +2209,6 @@
2080
2209
  @mixin hook-base-body(){}
2081
2210
  @mixin hook-base-link(){}
2082
2211
  @mixin hook-base-link-hover(){}
2083
- @mixin hook-base-code(){
2084
- padding: $base-code-padding-vertical $base-code-padding-horizontal;
2085
- background: $base-code-background;
2086
- }
2087
2212
  @mixin hook-base-heading(){}
2088
2213
  @mixin hook-base-h1(){}
2089
2214
  @mixin hook-base-h2(){}
@@ -2092,28 +2217,9 @@
2092
2217
  @mixin hook-base-h5(){}
2093
2218
  @mixin hook-base-h6(){}
2094
2219
  @mixin hook-base-hr(){}
2095
- @mixin hook-base-blockquote(){
2096
- color: $base-blockquote-color;
2097
- }
2098
- @mixin hook-base-blockquote-footer(){
2099
-
2100
- color: $base-blockquote-footer-color;
2101
-
2102
- &::before { content: "— "; }
2103
-
2104
- }
2105
- @mixin hook-base-pre(){
2106
- padding: $base-pre-padding;
2107
- border: $base-pre-border-width solid $base-pre-border;
2108
- border-radius: $base-pre-border-radius;
2109
- background: $base-pre-background;
2110
- }
2111
2220
  @mixin hook-base-misc(){}
2112
2221
  @mixin hook-inverse-base-link(){}
2113
2222
  @mixin hook-inverse-base-link-hover(){}
2114
- @mixin hook-inverse-base-code(){
2115
- background-color: $inverse-global-muted-background;
2116
- }
2117
2223
  @mixin hook-inverse-base-heading(){}
2118
2224
  @mixin hook-inverse-base-h1(){}
2119
2225
  @mixin hook-inverse-base-h2(){}
@@ -2121,8 +2227,6 @@
2121
2227
  @mixin hook-inverse-base-h4(){}
2122
2228
  @mixin hook-inverse-base-h5(){}
2123
2229
  @mixin hook-inverse-base-h6(){}
2124
- @mixin hook-inverse-base-blockquote(){ color: $inverse-base-blockquote-color; }
2125
- @mixin hook-inverse-base-blockquote-footer(){ color: $inverse-base-blockquote-footer-color; }
2126
2230
  @mixin hook-inverse-base-hr(){}
2127
2231
  @mixin hook-badge(){}
2128
2232
  @mixin hook-badge-hover(){}
@@ -2133,78 +2237,18 @@
2133
2237
  @mixin hook-article(){}
2134
2238
  @mixin hook-article-adjacent(){}
2135
2239
  @mixin hook-article-title(){}
2136
- @mixin hook-article-meta(){
2137
-
2138
- a { color: $article-meta-link-color; }
2139
-
2140
- a:hover {
2141
- color: $article-meta-link-hover-color;
2142
- text-decoration: none;
2143
- }
2144
-
2145
- }
2146
2240
  @mixin hook-article-misc(){}
2147
2241
  @mixin hook-inverse-article-title(){}
2148
2242
  @mixin hook-inverse-article-meta(){}
2149
2243
  @mixin hook-animation-misc(){}
2150
2244
  @mixin hook-align-misc(){}
2151
2245
  @mixin hook-alert(){}
2152
- @mixin hook-alert-close(){
2153
- color: inherit;
2154
- opacity: $alert-close-opacity;
2155
- }
2156
- @mixin hook-alert-close-hover(){
2157
- color: inherit;
2158
- opacity: $alert-close-hover-opacity;
2159
- }
2160
2246
  @mixin hook-alert-primary(){}
2161
2247
  @mixin hook-alert-success(){}
2162
2248
  @mixin hook-alert-warning(){}
2163
2249
  @mixin hook-alert-danger(){}
2164
- @mixin hook-alert-misc(){
2165
-
2166
- /*
2167
- * Content
2168
- */
2169
-
2170
- .uk-alert h1,
2171
- .uk-alert h2,
2172
- .uk-alert h3,
2173
- .uk-alert h4,
2174
- .uk-alert h5,
2175
- .uk-alert h6 { color: inherit; }
2176
-
2177
- .uk-alert a:not([class]) {
2178
- color: inherit;
2179
- text-decoration: underline;
2180
- }
2181
-
2182
- .uk-alert a:not([class]):hover {
2183
- color: inherit;
2184
- text-decoration: underline;
2185
- }
2186
-
2187
- }
2188
2250
  @mixin hook-accordion(){}
2189
2251
  @mixin hook-accordion-item(){}
2190
- @mixin hook-accordion-title(){
2191
-
2192
- overflow: hidden;
2193
-
2194
- &::before {
2195
- content: "";
2196
- width: ($accordion-title-line-height * 1em);
2197
- height: ($accordion-title-line-height * 1em);
2198
- margin-left: $accordion-icon-margin-left;
2199
- float: right;
2200
- @include svg-fill($internal-accordion-close-image, "#000", $accordion-icon-color);
2201
- background-repeat: no-repeat;
2202
- background-position: 50% 50%;
2203
- }
2204
-
2205
- .uk-open > &::before { @include svg-fill($internal-accordion-open-image, "#000", $accordion-icon-color); }
2206
-
2207
- }
2208
2252
  @mixin hook-accordion-title-hover(){}
2209
2253
  @mixin hook-accordion-content(){}
2210
2254
  @mixin hook-accordion-misc(){}