uikit 3.16.24 → 3.16.25-dev.931f07bf4
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.
- package/.eslintrc.json +0 -9
- package/.prettierrc.json +3 -4
- package/CHANGELOG.md +6 -0
- package/build/build.js +2 -2
- package/build/less.js +2 -2
- package/build/prefix.js +8 -7
- package/build/release.js +7 -7
- package/build/scope.js +3 -3
- package/build/scss.js +26 -16
- package/build/util.js +11 -11
- package/dist/css/uikit-core-rtl.css +6 -2
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +6 -2
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +6 -2
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +6 -2
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +2 -2
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +18 -18
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +347 -350
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +349 -352
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +6 -6
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +76 -72
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +37 -37
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +218 -224
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +37 -37
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +265 -271
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +2 -2
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +95 -95
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +2 -2
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +459 -452
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +6832 -6831
- package/dist/js/uikit.min.js +1 -1
- package/package.json +8 -7
- package/src/js/api/app.js +1 -1
- package/src/js/api/boot.js +2 -2
- package/src/js/api/component.js +1 -1
- package/src/js/api/computed.js +2 -2
- package/src/js/api/events.js +2 -2
- package/src/js/api/global.js +3 -3
- package/src/js/api/hooks.js +4 -4
- package/src/js/api/instance.js +3 -3
- package/src/js/api/log.js +1 -1
- package/src/js/api/observables.js +12 -6
- package/src/js/api/observer.js +2 -2
- package/src/js/api/options.js +2 -2
- package/src/js/api/props.js +2 -2
- package/src/js/api/state.js +2 -2
- package/src/js/components/countdown.js +1 -1
- package/src/js/components/filter.js +5 -5
- package/src/js/components/internal/lightbox-animations.js +1 -1
- package/src/js/components/internal/slider-transitioner.js +6 -6
- package/src/js/components/internal/slideshow-animations.js +1 -1
- package/src/js/components/lightbox-panel.js +10 -10
- package/src/js/components/lightbox.js +2 -2
- package/src/js/components/notification.js +4 -4
- package/src/js/components/parallax.js +5 -5
- package/src/js/components/slider-parallax.js +1 -1
- package/src/js/components/slider.js +12 -12
- package/src/js/components/slideshow.js +3 -3
- package/src/js/components/sortable.js +4 -4
- package/src/js/components/tooltip.js +6 -6
- package/src/js/components/upload.js +4 -4
- package/src/js/core/accordion.js +8 -8
- package/src/js/core/alert.js +2 -2
- package/src/js/core/cover.js +1 -1
- package/src/js/core/drop.js +12 -12
- package/src/js/core/dropnav.js +7 -7
- package/src/js/core/form-custom.js +1 -1
- package/src/js/core/grid.js +9 -9
- package/src/js/core/height-match.js +2 -2
- package/src/js/core/height-viewport.js +1 -1
- package/src/js/core/icon.js +23 -23
- package/src/js/core/img.js +2 -2
- package/src/js/core/index.js +16 -14
- package/src/js/core/leader.js +2 -2
- package/src/js/core/modal.js +7 -7
- package/src/js/core/navbar.js +4 -4
- package/src/js/core/offcanvas.js +3 -3
- package/src/js/core/overflow-auto.js +3 -3
- package/src/js/core/responsive.js +3 -3
- package/src/js/core/scrollspy-nav.js +1 -1
- package/src/js/core/scrollspy.js +1 -1
- package/src/js/core/sticky.js +13 -13
- package/src/js/core/svg.js +4 -4
- package/src/js/core/switcher.js +7 -7
- package/src/js/core/tab.js +2 -2
- package/src/js/core/toggle.js +5 -5
- package/src/js/core/video.js +1 -1
- package/src/js/mixin/animate.js +1 -1
- package/src/js/mixin/i18n.js +1 -1
- package/src/js/mixin/internal/animate-fade.js +14 -14
- package/src/js/mixin/internal/animate-slide.js +1 -1
- package/src/js/mixin/internal/scroll.js +1 -1
- package/src/js/mixin/modal.js +15 -12
- package/src/js/mixin/parallax.js +2 -2
- package/src/js/mixin/position.js +2 -2
- package/src/js/mixin/slider-drag.js +1 -1
- package/src/js/mixin/slider-nav.js +8 -14
- package/src/js/mixin/slider.js +9 -9
- package/src/js/mixin/slideshow.js +1 -1
- package/src/js/mixin/togglable.js +4 -4
- package/src/js/uikit-core.js +2 -2
- package/src/js/uikit.js +2 -2
- package/src/js/util/animation.js +8 -8
- package/src/js/util/class.js +1 -1
- package/src/js/util/dimensions.js +5 -5
- package/src/js/util/dom.js +3 -3
- package/src/js/util/event.js +3 -3
- package/src/js/util/filter.js +1 -1
- package/src/js/util/lang.js +4 -4
- package/src/js/util/observer.js +2 -2
- package/src/js/util/player.js +1 -1
- package/src/js/util/position.js +5 -5
- package/src/js/util/selector.js +1 -1
- package/src/js/util/style.js +1 -1
- package/src/js/util/svg.js +2 -2
- package/src/js/util/viewport.js +6 -6
- package/src/less/components/slider.less +8 -2
- package/src/scss/components/inverse.scss +0 -1
- package/src/scss/components/slider.scss +8 -2
- package/src/scss/mixins-theme.scss +560 -552
- package/src/scss/mixins.scss +456 -448
- package/src/scss/variables-theme.scss +2 -2
- package/src/scss/variables.scss +2 -2
- package/tests/js/index.js +7 -7
- package/build/scss/inverse.scss +0 -30
|
@@ -1123,536 +1123,6 @@
|
|
|
1123
1123
|
}
|
|
1124
1124
|
|
|
1125
1125
|
}
|
|
1126
|
-
@mixin hook-inverse-component-link(){
|
|
1127
|
-
|
|
1128
|
-
a.uk-link-muted,
|
|
1129
|
-
.uk-link-muted a {
|
|
1130
|
-
color: $inverse-link-muted-color;
|
|
1131
|
-
@if(mixin-exists(hook-inverse-link-muted)) {@include hook-inverse-link-muted();}
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
a.uk-link-muted:hover,
|
|
1135
|
-
.uk-link-muted a:hover,
|
|
1136
|
-
.uk-link-toggle:hover .uk-link-muted {
|
|
1137
|
-
color: $inverse-link-muted-hover-color;
|
|
1138
|
-
@if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
a.uk-link-text:hover,
|
|
1142
|
-
.uk-link-text a:hover,
|
|
1143
|
-
.uk-link-toggle:hover .uk-link-text {
|
|
1144
|
-
color: $inverse-link-text-hover-color;
|
|
1145
|
-
@if(mixin-exists(hook-inverse-link-text-hover)) {@include hook-inverse-link-text-hover();}
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
a.uk-link-heading:hover,
|
|
1149
|
-
.uk-link-heading a:hover,
|
|
1150
|
-
.uk-link-toggle:hover .uk-link-heading {
|
|
1151
|
-
color: $inverse-link-heading-hover-color;
|
|
1152
|
-
@if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
}
|
|
1156
|
-
@mixin hook-inverse-component-list(){
|
|
1157
|
-
|
|
1158
|
-
.uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
|
|
1159
|
-
.uk-list-emphasis > ::before { color: $inverse-list-emphasis-color !important; }
|
|
1160
|
-
.uk-list-primary > ::before { color: $inverse-list-primary-color !important; }
|
|
1161
|
-
.uk-list-secondary > ::before { color: $inverse-list-secondary-color !important; }
|
|
1162
|
-
|
|
1163
|
-
.uk-list-bullet > ::before {
|
|
1164
|
-
@include svg-fill($internal-list-bullet-image, "#000", $inverse-list-bullet-icon-color);
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
.uk-list-divider > :nth-child(n+2) {
|
|
1168
|
-
border-top-color: $inverse-list-divider-border;
|
|
1169
|
-
@if(mixin-exists(hook-inverse-list-divider)) {@include hook-inverse-list-divider();}
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
.uk-list-striped > * {
|
|
1173
|
-
@if(mixin-exists(hook-inverse-list-striped)) {@include hook-inverse-list-striped();}
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1177
|
-
|
|
1178
|
-
}
|
|
1179
|
-
@mixin hook-inverse-component-totop(){
|
|
1180
|
-
|
|
1181
|
-
.uk-totop {
|
|
1182
|
-
color: $inverse-totop-color;
|
|
1183
|
-
@if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
.uk-totop:hover {
|
|
1187
|
-
color: $inverse-totop-hover-color;
|
|
1188
|
-
@if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
|
-
.uk-totop:active {
|
|
1192
|
-
color: $inverse-totop-active-color;
|
|
1193
|
-
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
}
|
|
1197
|
-
@mixin hook-inverse-component-label(){
|
|
1198
|
-
|
|
1199
|
-
.uk-label {
|
|
1200
|
-
background-color: $inverse-label-background;
|
|
1201
|
-
color: $inverse-label-color;
|
|
1202
|
-
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
|
|
1203
|
-
}
|
|
1204
|
-
|
|
1205
|
-
}
|
|
1206
|
-
@mixin hook-inverse-component-search(){
|
|
1207
|
-
|
|
1208
|
-
//
|
|
1209
|
-
// Input
|
|
1210
|
-
//
|
|
1211
|
-
|
|
1212
|
-
.uk-search-input { color: $inverse-search-color; }
|
|
1213
|
-
|
|
1214
|
-
.uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
|
|
1215
|
-
|
|
1216
|
-
//
|
|
1217
|
-
// Icon
|
|
1218
|
-
//
|
|
1219
|
-
|
|
1220
|
-
.uk-search .uk-search-icon { color: $inverse-search-icon-color; }
|
|
1221
|
-
.uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
|
|
1222
|
-
|
|
1223
|
-
//
|
|
1224
|
-
// Style modifier
|
|
1225
|
-
//
|
|
1226
|
-
|
|
1227
|
-
.uk-search-default .uk-search-input {
|
|
1228
|
-
background-color: $inverse-search-default-background;
|
|
1229
|
-
@if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
.uk-search-default .uk-search-input:focus {
|
|
1233
|
-
background-color: $inverse-search-default-focus-background;
|
|
1234
|
-
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
.uk-search-navbar .uk-search-input {
|
|
1238
|
-
background-color: $inverse-search-navbar-background;
|
|
1239
|
-
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
.uk-search-navbar .uk-search-input:focus {
|
|
1243
|
-
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
.uk-search-large .uk-search-input {
|
|
1247
|
-
background-color: $inverse-search-large-background;
|
|
1248
|
-
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
.uk-search-large .uk-search-input:focus {
|
|
1252
|
-
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
//
|
|
1256
|
-
// Toggle
|
|
1257
|
-
//
|
|
1258
|
-
|
|
1259
|
-
.uk-search-toggle {
|
|
1260
|
-
color: $inverse-search-toggle-color;
|
|
1261
|
-
@if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
.uk-search-toggle:hover {
|
|
1265
|
-
color: $inverse-search-toggle-hover-color;
|
|
1266
|
-
@if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
}
|
|
1270
|
-
@mixin hook-inverse-component-nav(){
|
|
1271
|
-
|
|
1272
|
-
//
|
|
1273
|
-
// Default
|
|
1274
|
-
//
|
|
1275
|
-
|
|
1276
|
-
.uk-nav-default > li > a {
|
|
1277
|
-
color: $inverse-nav-default-item-color;
|
|
1278
|
-
@if(mixin-exists(hook-inverse-nav-default-item)) {@include hook-inverse-nav-default-item();}
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
.uk-nav-default > li > a:hover {
|
|
1282
|
-
color: $inverse-nav-default-item-hover-color;
|
|
1283
|
-
@if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
.uk-nav-default > li.uk-active > a {
|
|
1287
|
-
color: $inverse-nav-default-item-active-color;
|
|
1288
|
-
@if(mixin-exists(hook-inverse-nav-default-item-active)) {@include hook-inverse-nav-default-item-active();}
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.uk-nav-default .uk-nav-header {
|
|
1292
|
-
color: $inverse-nav-default-header-color;
|
|
1293
|
-
@if(mixin-exists(hook-inverse-nav-default-header)) {@include hook-inverse-nav-default-header();}
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
.uk-nav-default .uk-nav-divider {
|
|
1297
|
-
border-top-color: $inverse-nav-default-divider-border;
|
|
1298
|
-
@if(mixin-exists(hook-inverse-nav-default-divider)) {@include hook-inverse-nav-default-divider();}
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
.uk-nav-default .uk-nav-sub a { color: $inverse-nav-default-sublist-item-color; }
|
|
1302
|
-
|
|
1303
|
-
.uk-nav-default .uk-nav-sub a:hover { color: $inverse-nav-default-sublist-item-hover-color; }
|
|
1304
|
-
|
|
1305
|
-
.uk-nav-default .uk-nav-sub li.uk-active > a { color: $inverse-nav-default-sublist-item-active-color; }
|
|
1306
|
-
|
|
1307
|
-
//
|
|
1308
|
-
// Primary
|
|
1309
|
-
//
|
|
1310
|
-
|
|
1311
|
-
.uk-nav-primary > li > a {
|
|
1312
|
-
color: $inverse-nav-primary-item-color;
|
|
1313
|
-
@if(mixin-exists(hook-inverse-nav-primary-item)) {@include hook-inverse-nav-primary-item();}
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
.uk-nav-primary > li > a:hover {
|
|
1317
|
-
color: $inverse-nav-primary-item-hover-color;
|
|
1318
|
-
@if(mixin-exists(hook-inverse-nav-primary-item-hover)) {@include hook-inverse-nav-primary-item-hover();}
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
.uk-nav-primary > li.uk-active > a {
|
|
1322
|
-
color: $inverse-nav-primary-item-active-color;
|
|
1323
|
-
@if(mixin-exists(hook-inverse-nav-primary-item-active)) {@include hook-inverse-nav-primary-item-active();}
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
|
-
.uk-nav-primary .uk-nav-header {
|
|
1327
|
-
color: $inverse-nav-primary-header-color;
|
|
1328
|
-
@if(mixin-exists(hook-inverse-nav-primary-header)) {@include hook-inverse-nav-primary-header();}
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
|
-
.uk-nav-primary .uk-nav-divider {
|
|
1332
|
-
border-top-color: $inverse-nav-primary-divider-border;
|
|
1333
|
-
@if(mixin-exists(hook-inverse-nav-primary-divider)) {@include hook-inverse-nav-primary-divider();}
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1336
|
-
.uk-nav-primary .uk-nav-sub a { color: $inverse-nav-primary-sublist-item-color; }
|
|
1337
|
-
|
|
1338
|
-
.uk-nav-primary .uk-nav-sub a:hover { color: $inverse-nav-primary-sublist-item-hover-color; }
|
|
1339
|
-
|
|
1340
|
-
.uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
|
|
1341
|
-
|
|
1342
|
-
//
|
|
1343
|
-
// Secondary
|
|
1344
|
-
//
|
|
1345
|
-
|
|
1346
|
-
.uk-nav-secondary > li > a {
|
|
1347
|
-
color: $inverse-nav-secondary-item-color;
|
|
1348
|
-
@if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
.uk-nav-secondary > li > a:hover {
|
|
1352
|
-
color: $inverse-nav-secondary-item-hover-color;
|
|
1353
|
-
@if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
.uk-nav-secondary > li.uk-active > a {
|
|
1357
|
-
color: $inverse-nav-secondary-item-active-color;
|
|
1358
|
-
@if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
|
-
.uk-nav-secondary .uk-nav-subtitle {
|
|
1362
|
-
color: $inverse-nav-secondary-subtitle-color;
|
|
1363
|
-
@if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
1367
|
-
color: $inverse-nav-secondary-subtitle-hover-color;
|
|
1368
|
-
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
1372
|
-
color: $inverse-nav-secondary-subtitle-active-color;
|
|
1373
|
-
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
.uk-nav-secondary .uk-nav-header {
|
|
1377
|
-
color: $inverse-nav-secondary-header-color;
|
|
1378
|
-
@if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
.uk-nav-secondary .uk-nav-divider {
|
|
1382
|
-
border-top-color: $inverse-nav-secondary-divider-border;
|
|
1383
|
-
@if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
.uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
|
|
1387
|
-
|
|
1388
|
-
.uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
|
|
1389
|
-
|
|
1390
|
-
.uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
|
|
1391
|
-
|
|
1392
|
-
//
|
|
1393
|
-
// Dividers
|
|
1394
|
-
//
|
|
1395
|
-
|
|
1396
|
-
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
1397
|
-
border-top-color: $inverse-nav-dividers-border;
|
|
1398
|
-
@if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
}
|
|
1402
|
-
@mixin hook-inverse-component-navbar(){
|
|
1403
|
-
|
|
1404
|
-
//
|
|
1405
|
-
// Nav Item
|
|
1406
|
-
//
|
|
1407
|
-
|
|
1408
|
-
.uk-navbar-nav > li > a {
|
|
1409
|
-
color: $inverse-navbar-nav-item-color;
|
|
1410
|
-
@if(mixin-exists(hook-inverse-navbar-nav-item)) {@include hook-inverse-navbar-nav-item();}
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
|
-
.uk-navbar-nav > li:hover > a,
|
|
1414
|
-
.uk-navbar-nav > li > a[aria-expanded="true"] {
|
|
1415
|
-
color: $inverse-navbar-nav-item-hover-color;
|
|
1416
|
-
@if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
|
|
1417
|
-
}
|
|
1418
|
-
|
|
1419
|
-
.uk-navbar-nav > li > a:active {
|
|
1420
|
-
color: $inverse-navbar-nav-item-onclick-color;
|
|
1421
|
-
@if(mixin-exists(hook-inverse-navbar-nav-item-onclick)) {@include hook-inverse-navbar-nav-item-onclick();}
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
.uk-navbar-nav > li.uk-active > a {
|
|
1425
|
-
color: $inverse-navbar-nav-item-active-color;
|
|
1426
|
-
@if(mixin-exists(hook-inverse-navbar-nav-item-active)) {@include hook-inverse-navbar-nav-item-active();}
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
//
|
|
1430
|
-
// Item
|
|
1431
|
-
//
|
|
1432
|
-
|
|
1433
|
-
.uk-navbar-item {
|
|
1434
|
-
color: $inverse-navbar-item-color;
|
|
1435
|
-
@if(mixin-exists(hook-inverse-navbar-item)) {@include hook-inverse-navbar-item();}
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
//
|
|
1439
|
-
// Toggle
|
|
1440
|
-
//
|
|
1441
|
-
|
|
1442
|
-
.uk-navbar-toggle {
|
|
1443
|
-
color: $inverse-navbar-toggle-color;
|
|
1444
|
-
@if(mixin-exists(hook-inverse-navbar-toggle)) {@include hook-inverse-navbar-toggle();}
|
|
1445
|
-
}
|
|
1446
|
-
|
|
1447
|
-
.uk-navbar-toggle:hover,
|
|
1448
|
-
.uk-navbar-toggle[aria-expanded="true"] {
|
|
1449
|
-
color: $inverse-navbar-toggle-hover-color;
|
|
1450
|
-
@if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
}
|
|
1454
|
-
@mixin hook-inverse-component-subnav(){
|
|
1455
|
-
|
|
1456
|
-
.uk-subnav > * > :first-child {
|
|
1457
|
-
color: $inverse-subnav-item-color;
|
|
1458
|
-
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
1459
|
-
}
|
|
1460
|
-
|
|
1461
|
-
.uk-subnav > * > a:hover {
|
|
1462
|
-
color: $inverse-subnav-item-hover-color;
|
|
1463
|
-
@if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
|
-
.uk-subnav > .uk-active > a {
|
|
1467
|
-
color: $inverse-subnav-item-active-color;
|
|
1468
|
-
@if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
//
|
|
1472
|
-
// Divider
|
|
1473
|
-
//
|
|
1474
|
-
|
|
1475
|
-
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
|
|
1476
|
-
border-left-color: $inverse-subnav-divider-border;
|
|
1477
|
-
@if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
//
|
|
1481
|
-
// Pill
|
|
1482
|
-
//
|
|
1483
|
-
|
|
1484
|
-
.uk-subnav-pill > * > :first-child {
|
|
1485
|
-
background-color: $inverse-subnav-pill-item-background;
|
|
1486
|
-
color: $inverse-subnav-pill-item-color;
|
|
1487
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
.uk-subnav-pill > * > a:hover {
|
|
1491
|
-
background-color: $inverse-subnav-pill-item-hover-background;
|
|
1492
|
-
color: $inverse-subnav-pill-item-hover-color;
|
|
1493
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
|
|
1494
|
-
}
|
|
1495
|
-
|
|
1496
|
-
.uk-subnav-pill > * > a:active {
|
|
1497
|
-
background-color: $inverse-subnav-pill-item-onclick-background;
|
|
1498
|
-
color: $inverse-subnav-pill-item-onclick-color;
|
|
1499
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1500
|
-
}
|
|
1501
|
-
|
|
1502
|
-
.uk-subnav-pill > .uk-active > a {
|
|
1503
|
-
background-color: $inverse-subnav-pill-item-active-background;
|
|
1504
|
-
color: $inverse-subnav-pill-item-active-color;
|
|
1505
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
|
-
//
|
|
1509
|
-
// Disabled
|
|
1510
|
-
//
|
|
1511
|
-
|
|
1512
|
-
.uk-subnav > .uk-disabled > a {
|
|
1513
|
-
color: $inverse-subnav-item-disabled-color;
|
|
1514
|
-
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
|
-
}
|
|
1518
|
-
@mixin hook-inverse-component-pagination(){
|
|
1519
|
-
|
|
1520
|
-
.uk-pagination > * > * {
|
|
1521
|
-
color: $inverse-pagination-item-color;
|
|
1522
|
-
@if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
.uk-pagination > * > :hover {
|
|
1526
|
-
color: $inverse-pagination-item-hover-color;
|
|
1527
|
-
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
|
-
.uk-pagination > .uk-active > * {
|
|
1531
|
-
color: $inverse-pagination-item-active-color;
|
|
1532
|
-
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
.uk-pagination > .uk-disabled > * {
|
|
1536
|
-
color: $inverse-pagination-item-disabled-color;
|
|
1537
|
-
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
1538
|
-
}
|
|
1539
|
-
|
|
1540
|
-
}
|
|
1541
|
-
@mixin hook-inverse-component-tab(){
|
|
1542
|
-
|
|
1543
|
-
.uk-tab {
|
|
1544
|
-
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
|
-
.uk-tab > * > a {
|
|
1548
|
-
color: $inverse-tab-item-color;
|
|
1549
|
-
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
.uk-tab > * > a:hover {
|
|
1553
|
-
color: $inverse-tab-item-hover-color;
|
|
1554
|
-
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
1555
|
-
}
|
|
1556
|
-
|
|
1557
|
-
.uk-tab > .uk-active > a {
|
|
1558
|
-
color: $inverse-tab-item-active-color;
|
|
1559
|
-
@if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
|
|
1560
|
-
}
|
|
1561
|
-
|
|
1562
|
-
.uk-tab > .uk-disabled > a {
|
|
1563
|
-
color: $inverse-tab-item-disabled-color;
|
|
1564
|
-
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
|
-
}
|
|
1568
|
-
@mixin hook-inverse-component-slidenav(){
|
|
1569
|
-
|
|
1570
|
-
.uk-slidenav {
|
|
1571
|
-
color: $inverse-slidenav-color;
|
|
1572
|
-
@if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
|
|
1573
|
-
}
|
|
1574
|
-
|
|
1575
|
-
.uk-slidenav:hover {
|
|
1576
|
-
color: $inverse-slidenav-hover-color;
|
|
1577
|
-
@if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
|
-
.uk-slidenav:active {
|
|
1581
|
-
color: $inverse-slidenav-active-color;
|
|
1582
|
-
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
1583
|
-
}
|
|
1584
|
-
|
|
1585
|
-
}
|
|
1586
|
-
@mixin hook-inverse-component-text(){
|
|
1587
|
-
|
|
1588
|
-
.uk-text-lead {
|
|
1589
|
-
color: $inverse-text-lead-color;
|
|
1590
|
-
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
1591
|
-
}
|
|
1592
|
-
|
|
1593
|
-
.uk-text-meta {
|
|
1594
|
-
color: $inverse-text-meta-color;
|
|
1595
|
-
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
1596
|
-
}
|
|
1597
|
-
|
|
1598
|
-
.uk-text-muted { color: $inverse-text-muted-color !important; }
|
|
1599
|
-
.uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
|
|
1600
|
-
.uk-text-primary { color: $inverse-text-primary-color !important; }
|
|
1601
|
-
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
1602
|
-
|
|
1603
|
-
}
|
|
1604
|
-
@mixin hook-inverse-component-utility(){
|
|
1605
|
-
|
|
1606
|
-
.uk-dropcap::first-letter,
|
|
1607
|
-
.uk-dropcap p:first-of-type::first-letter {
|
|
1608
|
-
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
1609
|
-
}
|
|
1610
|
-
|
|
1611
|
-
.uk-logo {
|
|
1612
|
-
color: $inverse-logo-color;
|
|
1613
|
-
@if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
.uk-logo:hover {
|
|
1617
|
-
color: $inverse-logo-hover-color;
|
|
1618
|
-
@if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
|
-
.uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
1622
|
-
.uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
|
|
1623
|
-
.uk-logo-inverse { display: block; }
|
|
1624
|
-
|
|
1625
|
-
}
|
|
1626
|
-
@mixin hook-inverse() {
|
|
1627
|
-
@include hook-inverse-component-base();
|
|
1628
|
-
@include hook-inverse-component-link();
|
|
1629
|
-
@include hook-inverse-component-heading();
|
|
1630
|
-
@include hook-inverse-component-divider();
|
|
1631
|
-
@include hook-inverse-component-list();
|
|
1632
|
-
@include hook-inverse-component-icon();
|
|
1633
|
-
@include hook-inverse-component-form();
|
|
1634
|
-
@include hook-inverse-component-button();
|
|
1635
|
-
@include hook-inverse-component-grid();
|
|
1636
|
-
@include hook-inverse-component-close();
|
|
1637
|
-
@include hook-inverse-component-totop();
|
|
1638
|
-
@include hook-inverse-component-badge();
|
|
1639
|
-
@include hook-inverse-component-label();
|
|
1640
|
-
@include hook-inverse-component-article();
|
|
1641
|
-
@include hook-inverse-component-search();
|
|
1642
|
-
@include hook-inverse-component-nav();
|
|
1643
|
-
@include hook-inverse-component-navbar();
|
|
1644
|
-
@include hook-inverse-component-subnav();
|
|
1645
|
-
@include hook-inverse-component-breadcrumb();
|
|
1646
|
-
@include hook-inverse-component-pagination();
|
|
1647
|
-
@include hook-inverse-component-tab();
|
|
1648
|
-
@include hook-inverse-component-slidenav();
|
|
1649
|
-
@include hook-inverse-component-dotnav();
|
|
1650
|
-
@include hook-inverse-component-accordion();
|
|
1651
|
-
@include hook-inverse-component-iconnav();
|
|
1652
|
-
@include hook-inverse-component-text();
|
|
1653
|
-
@include hook-inverse-component-column();
|
|
1654
|
-
@include hook-inverse-component-utility();
|
|
1655
|
-
}
|
|
1656
1126
|
@mixin hook-label(){
|
|
1657
1127
|
border-radius: $label-border-radius;
|
|
1658
1128
|
text-transform: $label-text-transform;
|
|
@@ -1662,6 +1132,15 @@
|
|
|
1662
1132
|
@mixin hook-label-danger(){}
|
|
1663
1133
|
@mixin hook-label-misc(){}
|
|
1664
1134
|
@mixin hook-inverse-label(){}
|
|
1135
|
+
@mixin hook-inverse-component-label(){
|
|
1136
|
+
|
|
1137
|
+
.uk-label {
|
|
1138
|
+
background-color: $inverse-label-background;
|
|
1139
|
+
color: $inverse-label-color;
|
|
1140
|
+
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
}
|
|
1665
1144
|
@mixin hook-leader(){}
|
|
1666
1145
|
@mixin hook-leader-misc(){}
|
|
1667
1146
|
@mixin hook-inverse-leader(){}
|
|
@@ -1693,6 +1172,36 @@
|
|
|
1693
1172
|
@mixin hook-inverse-link-muted-hover(){}
|
|
1694
1173
|
@mixin hook-inverse-link-text-hover(){}
|
|
1695
1174
|
@mixin hook-inverse-link-heading-hover(){}
|
|
1175
|
+
@mixin hook-inverse-component-link(){
|
|
1176
|
+
|
|
1177
|
+
a.uk-link-muted,
|
|
1178
|
+
.uk-link-muted a {
|
|
1179
|
+
color: $inverse-link-muted-color;
|
|
1180
|
+
@if(mixin-exists(hook-inverse-link-muted)) {@include hook-inverse-link-muted();}
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
a.uk-link-muted:hover,
|
|
1184
|
+
.uk-link-muted a:hover,
|
|
1185
|
+
.uk-link-toggle:hover .uk-link-muted {
|
|
1186
|
+
color: $inverse-link-muted-hover-color;
|
|
1187
|
+
@if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
a.uk-link-text:hover,
|
|
1191
|
+
.uk-link-text a:hover,
|
|
1192
|
+
.uk-link-toggle:hover .uk-link-text {
|
|
1193
|
+
color: $inverse-link-text-hover-color;
|
|
1194
|
+
@if(mixin-exists(hook-inverse-link-text-hover)) {@include hook-inverse-link-text-hover();}
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
a.uk-link-heading:hover,
|
|
1198
|
+
.uk-link-heading a:hover,
|
|
1199
|
+
.uk-link-toggle:hover .uk-link-heading {
|
|
1200
|
+
color: $inverse-link-heading-hover-color;
|
|
1201
|
+
@if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
}
|
|
1696
1205
|
@mixin hook-list-divider(){}
|
|
1697
1206
|
@mixin hook-list-striped(){
|
|
1698
1207
|
|
|
@@ -1711,6 +1220,29 @@
|
|
|
1711
1220
|
border-bottom-color: $inverse-global-border;
|
|
1712
1221
|
}
|
|
1713
1222
|
|
|
1223
|
+
}
|
|
1224
|
+
@mixin hook-inverse-component-list(){
|
|
1225
|
+
|
|
1226
|
+
.uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
|
|
1227
|
+
.uk-list-emphasis > ::before { color: $inverse-list-emphasis-color !important; }
|
|
1228
|
+
.uk-list-primary > ::before { color: $inverse-list-primary-color !important; }
|
|
1229
|
+
.uk-list-secondary > ::before { color: $inverse-list-secondary-color !important; }
|
|
1230
|
+
|
|
1231
|
+
.uk-list-bullet > ::before {
|
|
1232
|
+
@include svg-fill($internal-list-bullet-image, "#000", $inverse-list-bullet-icon-color);
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.uk-list-divider > :nth-child(n+2) {
|
|
1236
|
+
border-top-color: $inverse-list-divider-border;
|
|
1237
|
+
@if(mixin-exists(hook-inverse-list-divider)) {@include hook-inverse-list-divider();}
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.uk-list-striped > * {
|
|
1241
|
+
@if(mixin-exists(hook-inverse-list-striped)) {@include hook-inverse-list-striped();}
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1245
|
+
|
|
1714
1246
|
}
|
|
1715
1247
|
@mixin hook-margin-misc(){}
|
|
1716
1248
|
@mixin hook-marker(){
|
|
@@ -1815,6 +1347,138 @@
|
|
|
1815
1347
|
@mixin hook-inverse-nav-secondary-header(){}
|
|
1816
1348
|
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1817
1349
|
@mixin hook-inverse-nav-dividers(){}
|
|
1350
|
+
@mixin hook-inverse-component-nav(){
|
|
1351
|
+
|
|
1352
|
+
//
|
|
1353
|
+
// Default
|
|
1354
|
+
//
|
|
1355
|
+
|
|
1356
|
+
.uk-nav-default > li > a {
|
|
1357
|
+
color: $inverse-nav-default-item-color;
|
|
1358
|
+
@if(mixin-exists(hook-inverse-nav-default-item)) {@include hook-inverse-nav-default-item();}
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.uk-nav-default > li > a:hover {
|
|
1362
|
+
color: $inverse-nav-default-item-hover-color;
|
|
1363
|
+
@if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.uk-nav-default > li.uk-active > a {
|
|
1367
|
+
color: $inverse-nav-default-item-active-color;
|
|
1368
|
+
@if(mixin-exists(hook-inverse-nav-default-item-active)) {@include hook-inverse-nav-default-item-active();}
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
.uk-nav-default .uk-nav-header {
|
|
1372
|
+
color: $inverse-nav-default-header-color;
|
|
1373
|
+
@if(mixin-exists(hook-inverse-nav-default-header)) {@include hook-inverse-nav-default-header();}
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.uk-nav-default .uk-nav-divider {
|
|
1377
|
+
border-top-color: $inverse-nav-default-divider-border;
|
|
1378
|
+
@if(mixin-exists(hook-inverse-nav-default-divider)) {@include hook-inverse-nav-default-divider();}
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.uk-nav-default .uk-nav-sub a { color: $inverse-nav-default-sublist-item-color; }
|
|
1382
|
+
|
|
1383
|
+
.uk-nav-default .uk-nav-sub a:hover { color: $inverse-nav-default-sublist-item-hover-color; }
|
|
1384
|
+
|
|
1385
|
+
.uk-nav-default .uk-nav-sub li.uk-active > a { color: $inverse-nav-default-sublist-item-active-color; }
|
|
1386
|
+
|
|
1387
|
+
//
|
|
1388
|
+
// Primary
|
|
1389
|
+
//
|
|
1390
|
+
|
|
1391
|
+
.uk-nav-primary > li > a {
|
|
1392
|
+
color: $inverse-nav-primary-item-color;
|
|
1393
|
+
@if(mixin-exists(hook-inverse-nav-primary-item)) {@include hook-inverse-nav-primary-item();}
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.uk-nav-primary > li > a:hover {
|
|
1397
|
+
color: $inverse-nav-primary-item-hover-color;
|
|
1398
|
+
@if(mixin-exists(hook-inverse-nav-primary-item-hover)) {@include hook-inverse-nav-primary-item-hover();}
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.uk-nav-primary > li.uk-active > a {
|
|
1402
|
+
color: $inverse-nav-primary-item-active-color;
|
|
1403
|
+
@if(mixin-exists(hook-inverse-nav-primary-item-active)) {@include hook-inverse-nav-primary-item-active();}
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.uk-nav-primary .uk-nav-header {
|
|
1407
|
+
color: $inverse-nav-primary-header-color;
|
|
1408
|
+
@if(mixin-exists(hook-inverse-nav-primary-header)) {@include hook-inverse-nav-primary-header();}
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.uk-nav-primary .uk-nav-divider {
|
|
1412
|
+
border-top-color: $inverse-nav-primary-divider-border;
|
|
1413
|
+
@if(mixin-exists(hook-inverse-nav-primary-divider)) {@include hook-inverse-nav-primary-divider();}
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.uk-nav-primary .uk-nav-sub a { color: $inverse-nav-primary-sublist-item-color; }
|
|
1417
|
+
|
|
1418
|
+
.uk-nav-primary .uk-nav-sub a:hover { color: $inverse-nav-primary-sublist-item-hover-color; }
|
|
1419
|
+
|
|
1420
|
+
.uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
|
|
1421
|
+
|
|
1422
|
+
//
|
|
1423
|
+
// Secondary
|
|
1424
|
+
//
|
|
1425
|
+
|
|
1426
|
+
.uk-nav-secondary > li > a {
|
|
1427
|
+
color: $inverse-nav-secondary-item-color;
|
|
1428
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.uk-nav-secondary > li > a:hover {
|
|
1432
|
+
color: $inverse-nav-secondary-item-hover-color;
|
|
1433
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.uk-nav-secondary > li.uk-active > a {
|
|
1437
|
+
color: $inverse-nav-secondary-item-active-color;
|
|
1438
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.uk-nav-secondary .uk-nav-subtitle {
|
|
1442
|
+
color: $inverse-nav-secondary-subtitle-color;
|
|
1443
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
1447
|
+
color: $inverse-nav-secondary-subtitle-hover-color;
|
|
1448
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
1452
|
+
color: $inverse-nav-secondary-subtitle-active-color;
|
|
1453
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.uk-nav-secondary .uk-nav-header {
|
|
1457
|
+
color: $inverse-nav-secondary-header-color;
|
|
1458
|
+
@if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.uk-nav-secondary .uk-nav-divider {
|
|
1462
|
+
border-top-color: $inverse-nav-secondary-divider-border;
|
|
1463
|
+
@if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
|
|
1467
|
+
|
|
1468
|
+
.uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
|
|
1469
|
+
|
|
1470
|
+
.uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
|
|
1471
|
+
|
|
1472
|
+
//
|
|
1473
|
+
// Dividers
|
|
1474
|
+
//
|
|
1475
|
+
|
|
1476
|
+
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
1477
|
+
border-top-color: $inverse-nav-dividers-border;
|
|
1478
|
+
@if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
}
|
|
1818
1482
|
@mixin hook-navbar(){}
|
|
1819
1483
|
@mixin hook-navbar-container(){}
|
|
1820
1484
|
@mixin hook-navbar-nav-item(){
|
|
@@ -1875,6 +1539,58 @@
|
|
|
1875
1539
|
@mixin hook-inverse-navbar-item(){}
|
|
1876
1540
|
@mixin hook-inverse-navbar-toggle(){}
|
|
1877
1541
|
@mixin hook-inverse-navbar-toggle-hover(){}
|
|
1542
|
+
@mixin hook-inverse-component-navbar(){
|
|
1543
|
+
|
|
1544
|
+
//
|
|
1545
|
+
// Nav Item
|
|
1546
|
+
//
|
|
1547
|
+
|
|
1548
|
+
.uk-navbar-nav > li > a {
|
|
1549
|
+
color: $inverse-navbar-nav-item-color;
|
|
1550
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item)) {@include hook-inverse-navbar-nav-item();}
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.uk-navbar-nav > li:hover > a,
|
|
1554
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] {
|
|
1555
|
+
color: $inverse-navbar-nav-item-hover-color;
|
|
1556
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
.uk-navbar-nav > li > a:active {
|
|
1560
|
+
color: $inverse-navbar-nav-item-onclick-color;
|
|
1561
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-onclick)) {@include hook-inverse-navbar-nav-item-onclick();}
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.uk-navbar-nav > li.uk-active > a {
|
|
1565
|
+
color: $inverse-navbar-nav-item-active-color;
|
|
1566
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-active)) {@include hook-inverse-navbar-nav-item-active();}
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
//
|
|
1570
|
+
// Item
|
|
1571
|
+
//
|
|
1572
|
+
|
|
1573
|
+
.uk-navbar-item {
|
|
1574
|
+
color: $inverse-navbar-item-color;
|
|
1575
|
+
@if(mixin-exists(hook-inverse-navbar-item)) {@include hook-inverse-navbar-item();}
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
//
|
|
1579
|
+
// Toggle
|
|
1580
|
+
//
|
|
1581
|
+
|
|
1582
|
+
.uk-navbar-toggle {
|
|
1583
|
+
color: $inverse-navbar-toggle-color;
|
|
1584
|
+
@if(mixin-exists(hook-inverse-navbar-toggle)) {@include hook-inverse-navbar-toggle();}
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
.uk-navbar-toggle:hover,
|
|
1588
|
+
.uk-navbar-toggle[aria-expanded="true"] {
|
|
1589
|
+
color: $inverse-navbar-toggle-hover-color;
|
|
1590
|
+
@if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
}
|
|
1878
1594
|
@mixin hook-notification(){}
|
|
1879
1595
|
@mixin hook-notification-message(){}
|
|
1880
1596
|
@mixin hook-notification-close(){}
|
|
@@ -1903,6 +1619,29 @@
|
|
|
1903
1619
|
@mixin hook-inverse-pagination-item-hover(){}
|
|
1904
1620
|
@mixin hook-inverse-pagination-item-active(){}
|
|
1905
1621
|
@mixin hook-inverse-pagination-item-disabled(){}
|
|
1622
|
+
@mixin hook-inverse-component-pagination(){
|
|
1623
|
+
|
|
1624
|
+
.uk-pagination > * > * {
|
|
1625
|
+
color: $inverse-pagination-item-color;
|
|
1626
|
+
@if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.uk-pagination > * > :hover {
|
|
1630
|
+
color: $inverse-pagination-item-hover-color;
|
|
1631
|
+
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
.uk-pagination > .uk-active > * {
|
|
1635
|
+
color: $inverse-pagination-item-active-color;
|
|
1636
|
+
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.uk-pagination > .uk-disabled > * {
|
|
1640
|
+
color: $inverse-pagination-item-disabled-color;
|
|
1641
|
+
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
}
|
|
1906
1645
|
@mixin hook-placeholder(){ border: $placeholder-border-width dashed $placeholder-border; }
|
|
1907
1646
|
@mixin hook-placeholder-misc(){}
|
|
1908
1647
|
@mixin hook-position-misc(){}
|
|
@@ -1911,27 +1650,91 @@
|
|
|
1911
1650
|
border-radius: $progress-border-radius;
|
|
1912
1651
|
overflow: hidden;
|
|
1913
1652
|
}
|
|
1914
|
-
@mixin hook-progress-bar(){}
|
|
1915
|
-
@mixin hook-progress-misc(){}
|
|
1916
|
-
@mixin hook-search-input(){}
|
|
1917
|
-
@mixin hook-search-icon(){}
|
|
1918
|
-
@mixin hook-search-default-input(){ border: $search-default-border-width solid $search-default-border; }
|
|
1919
|
-
@mixin hook-search-default-input-focus(){ border-color: $search-default-focus-border; }
|
|
1920
|
-
@mixin hook-search-navbar-input(){}
|
|
1921
|
-
@mixin hook-search-navbar-input-focus(){}
|
|
1922
|
-
@mixin hook-search-large-input(){}
|
|
1923
|
-
@mixin hook-search-large-input-focus(){}
|
|
1924
|
-
@mixin hook-search-toggle(){}
|
|
1925
|
-
@mixin hook-search-toggle-hover(){}
|
|
1926
|
-
@mixin hook-search-misc(){}
|
|
1927
|
-
@mixin hook-inverse-search-default-input(){ border-color: $inverse-global-border; }
|
|
1928
|
-
@mixin hook-inverse-search-default-input-focus(){}
|
|
1929
|
-
@mixin hook-inverse-search-navbar-input(){}
|
|
1930
|
-
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
1931
|
-
@mixin hook-inverse-search-large-input(){}
|
|
1932
|
-
@mixin hook-inverse-search-large-input-focus(){}
|
|
1933
|
-
@mixin hook-inverse-search-toggle(){}
|
|
1934
|
-
@mixin hook-inverse-search-toggle-hover(){}
|
|
1653
|
+
@mixin hook-progress-bar(){}
|
|
1654
|
+
@mixin hook-progress-misc(){}
|
|
1655
|
+
@mixin hook-search-input(){}
|
|
1656
|
+
@mixin hook-search-icon(){}
|
|
1657
|
+
@mixin hook-search-default-input(){ border: $search-default-border-width solid $search-default-border; }
|
|
1658
|
+
@mixin hook-search-default-input-focus(){ border-color: $search-default-focus-border; }
|
|
1659
|
+
@mixin hook-search-navbar-input(){}
|
|
1660
|
+
@mixin hook-search-navbar-input-focus(){}
|
|
1661
|
+
@mixin hook-search-large-input(){}
|
|
1662
|
+
@mixin hook-search-large-input-focus(){}
|
|
1663
|
+
@mixin hook-search-toggle(){}
|
|
1664
|
+
@mixin hook-search-toggle-hover(){}
|
|
1665
|
+
@mixin hook-search-misc(){}
|
|
1666
|
+
@mixin hook-inverse-search-default-input(){ border-color: $inverse-global-border; }
|
|
1667
|
+
@mixin hook-inverse-search-default-input-focus(){}
|
|
1668
|
+
@mixin hook-inverse-search-navbar-input(){}
|
|
1669
|
+
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
1670
|
+
@mixin hook-inverse-search-large-input(){}
|
|
1671
|
+
@mixin hook-inverse-search-large-input-focus(){}
|
|
1672
|
+
@mixin hook-inverse-search-toggle(){}
|
|
1673
|
+
@mixin hook-inverse-search-toggle-hover(){}
|
|
1674
|
+
@mixin hook-inverse-component-search(){
|
|
1675
|
+
|
|
1676
|
+
//
|
|
1677
|
+
// Input
|
|
1678
|
+
//
|
|
1679
|
+
|
|
1680
|
+
.uk-search-input { color: $inverse-search-color; }
|
|
1681
|
+
|
|
1682
|
+
.uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
|
|
1683
|
+
|
|
1684
|
+
//
|
|
1685
|
+
// Icon
|
|
1686
|
+
//
|
|
1687
|
+
|
|
1688
|
+
.uk-search .uk-search-icon { color: $inverse-search-icon-color; }
|
|
1689
|
+
.uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
|
|
1690
|
+
|
|
1691
|
+
//
|
|
1692
|
+
// Style modifier
|
|
1693
|
+
//
|
|
1694
|
+
|
|
1695
|
+
.uk-search-default .uk-search-input {
|
|
1696
|
+
background-color: $inverse-search-default-background;
|
|
1697
|
+
@if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.uk-search-default .uk-search-input:focus {
|
|
1701
|
+
background-color: $inverse-search-default-focus-background;
|
|
1702
|
+
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.uk-search-navbar .uk-search-input {
|
|
1706
|
+
background-color: $inverse-search-navbar-background;
|
|
1707
|
+
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.uk-search-navbar .uk-search-input:focus {
|
|
1711
|
+
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.uk-search-large .uk-search-input {
|
|
1715
|
+
background-color: $inverse-search-large-background;
|
|
1716
|
+
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.uk-search-large .uk-search-input:focus {
|
|
1720
|
+
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
//
|
|
1724
|
+
// Toggle
|
|
1725
|
+
//
|
|
1726
|
+
|
|
1727
|
+
.uk-search-toggle {
|
|
1728
|
+
color: $inverse-search-toggle-color;
|
|
1729
|
+
@if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.uk-search-toggle:hover {
|
|
1733
|
+
color: $inverse-search-toggle-hover-color;
|
|
1734
|
+
@if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
}
|
|
1935
1738
|
@mixin hook-section(){}
|
|
1936
1739
|
@mixin hook-section-default(){}
|
|
1937
1740
|
@mixin hook-section-muted(){}
|
|
@@ -1950,6 +1753,24 @@
|
|
|
1950
1753
|
@mixin hook-inverse-slidenav(){}
|
|
1951
1754
|
@mixin hook-inverse-slidenav-hover(){}
|
|
1952
1755
|
@mixin hook-inverse-slidenav-active(){}
|
|
1756
|
+
@mixin hook-inverse-component-slidenav(){
|
|
1757
|
+
|
|
1758
|
+
.uk-slidenav {
|
|
1759
|
+
color: $inverse-slidenav-color;
|
|
1760
|
+
@if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.uk-slidenav:hover {
|
|
1764
|
+
color: $inverse-slidenav-hover-color;
|
|
1765
|
+
@if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.uk-slidenav:active {
|
|
1769
|
+
color: $inverse-slidenav-active-color;
|
|
1770
|
+
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
}
|
|
1953
1774
|
@mixin hook-slider(){}
|
|
1954
1775
|
@mixin hook-slider-misc(){}
|
|
1955
1776
|
@mixin hook-slideshow(){}
|
|
@@ -1987,6 +1808,70 @@
|
|
|
1987
1808
|
@mixin hook-inverse-subnav-pill-item-onclick(){}
|
|
1988
1809
|
@mixin hook-inverse-subnav-pill-item-active(){}
|
|
1989
1810
|
@mixin hook-inverse-subnav-item-disabled(){}
|
|
1811
|
+
@mixin hook-inverse-component-subnav(){
|
|
1812
|
+
|
|
1813
|
+
.uk-subnav > * > :first-child {
|
|
1814
|
+
color: $inverse-subnav-item-color;
|
|
1815
|
+
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.uk-subnav > * > a:hover {
|
|
1819
|
+
color: $inverse-subnav-item-hover-color;
|
|
1820
|
+
@if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.uk-subnav > .uk-active > a {
|
|
1824
|
+
color: $inverse-subnav-item-active-color;
|
|
1825
|
+
@if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
//
|
|
1829
|
+
// Divider
|
|
1830
|
+
//
|
|
1831
|
+
|
|
1832
|
+
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
|
|
1833
|
+
border-left-color: $inverse-subnav-divider-border;
|
|
1834
|
+
@if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
//
|
|
1838
|
+
// Pill
|
|
1839
|
+
//
|
|
1840
|
+
|
|
1841
|
+
.uk-subnav-pill > * > :first-child {
|
|
1842
|
+
background-color: $inverse-subnav-pill-item-background;
|
|
1843
|
+
color: $inverse-subnav-pill-item-color;
|
|
1844
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.uk-subnav-pill > * > a:hover {
|
|
1848
|
+
background-color: $inverse-subnav-pill-item-hover-background;
|
|
1849
|
+
color: $inverse-subnav-pill-item-hover-color;
|
|
1850
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.uk-subnav-pill > * > a:active {
|
|
1854
|
+
background-color: $inverse-subnav-pill-item-onclick-background;
|
|
1855
|
+
color: $inverse-subnav-pill-item-onclick-color;
|
|
1856
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.uk-subnav-pill > .uk-active > a {
|
|
1860
|
+
background-color: $inverse-subnav-pill-item-active-background;
|
|
1861
|
+
color: $inverse-subnav-pill-item-active-color;
|
|
1862
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
//
|
|
1866
|
+
// Disabled
|
|
1867
|
+
//
|
|
1868
|
+
|
|
1869
|
+
.uk-subnav > .uk-disabled > a {
|
|
1870
|
+
color: $inverse-subnav-item-disabled-color;
|
|
1871
|
+
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
}
|
|
1990
1875
|
@mixin hook-svg-misc(){}
|
|
1991
1876
|
@mixin hook-switcher-misc(){}
|
|
1992
1877
|
@mixin hook-tab(){
|
|
@@ -2070,6 +1955,33 @@
|
|
|
2070
1955
|
@mixin hook-inverse-tab-item-hover(){}
|
|
2071
1956
|
@mixin hook-inverse-tab-item-active(){ border-color: $inverse-global-primary-background; }
|
|
2072
1957
|
@mixin hook-inverse-tab-item-disabled(){}
|
|
1958
|
+
@mixin hook-inverse-component-tab(){
|
|
1959
|
+
|
|
1960
|
+
.uk-tab {
|
|
1961
|
+
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.uk-tab > * > a {
|
|
1965
|
+
color: $inverse-tab-item-color;
|
|
1966
|
+
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
.uk-tab > * > a:hover {
|
|
1970
|
+
color: $inverse-tab-item-hover-color;
|
|
1971
|
+
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.uk-tab > .uk-active > a {
|
|
1975
|
+
color: $inverse-tab-item-active-color;
|
|
1976
|
+
@if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.uk-tab > .uk-disabled > a {
|
|
1980
|
+
color: $inverse-tab-item-disabled-color;
|
|
1981
|
+
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
}
|
|
2073
1985
|
@mixin hook-table(){}
|
|
2074
1986
|
@mixin hook-table-header-cell(){ text-transform: uppercase; }
|
|
2075
1987
|
@mixin hook-table-cell(){}
|
|
@@ -2122,6 +2034,24 @@
|
|
|
2122
2034
|
@mixin hook-text-misc(){}
|
|
2123
2035
|
@mixin hook-inverse-text-lead(){}
|
|
2124
2036
|
@mixin hook-inverse-text-meta(){}
|
|
2037
|
+
@mixin hook-inverse-component-text(){
|
|
2038
|
+
|
|
2039
|
+
.uk-text-lead {
|
|
2040
|
+
color: $inverse-text-lead-color;
|
|
2041
|
+
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.uk-text-meta {
|
|
2045
|
+
color: $inverse-text-meta-color;
|
|
2046
|
+
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.uk-text-muted { color: $inverse-text-muted-color !important; }
|
|
2050
|
+
.uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
|
|
2051
|
+
.uk-text-primary { color: $inverse-text-primary-color !important; }
|
|
2052
|
+
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
2053
|
+
|
|
2054
|
+
}
|
|
2125
2055
|
@mixin hook-thumbnav(){}
|
|
2126
2056
|
@mixin hook-thumbnav-item(){
|
|
2127
2057
|
|
|
@@ -2185,6 +2115,24 @@
|
|
|
2185
2115
|
@mixin hook-inverse-totop(){}
|
|
2186
2116
|
@mixin hook-inverse-totop-hover(){}
|
|
2187
2117
|
@mixin hook-inverse-totop-active(){}
|
|
2118
|
+
@mixin hook-inverse-component-totop(){
|
|
2119
|
+
|
|
2120
|
+
.uk-totop {
|
|
2121
|
+
color: $inverse-totop-color;
|
|
2122
|
+
@if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
.uk-totop:hover {
|
|
2126
|
+
color: $inverse-totop-hover-color;
|
|
2127
|
+
@if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
.uk-totop:active {
|
|
2131
|
+
color: $inverse-totop-active-color;
|
|
2132
|
+
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
}
|
|
2188
2136
|
@mixin hook-transition-misc(){}
|
|
2189
2137
|
@mixin hook-panel-scrollable(){}
|
|
2190
2138
|
@mixin hook-box-shadow-bottom(){}
|
|
@@ -2198,5 +2146,65 @@
|
|
|
2198
2146
|
@mixin hook-inverse-dropcap(){}
|
|
2199
2147
|
@mixin hook-inverse-logo(){}
|
|
2200
2148
|
@mixin hook-inverse-logo-hover(){}
|
|
2149
|
+
@mixin hook-inverse-component-utility(){
|
|
2150
|
+
|
|
2151
|
+
.uk-dropcap::first-letter,
|
|
2152
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
2153
|
+
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.uk-logo {
|
|
2157
|
+
color: $inverse-logo-color;
|
|
2158
|
+
@if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.uk-logo:hover {
|
|
2162
|
+
color: $inverse-logo-hover-color;
|
|
2163
|
+
@if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
.uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
2167
|
+
.uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
|
|
2168
|
+
.uk-logo-inverse { display: block; }
|
|
2169
|
+
|
|
2170
|
+
}
|
|
2201
2171
|
@mixin hook-visibility-misc(){}
|
|
2202
|
-
@mixin hook-width-misc(){}
|
|
2172
|
+
@mixin hook-width-misc(){}
|
|
2173
|
+
@mixin hook-inverse() {
|
|
2174
|
+
@include hook-inverse-component-accordion();
|
|
2175
|
+
@include hook-inverse-component-article();
|
|
2176
|
+
@include hook-inverse-component-badge();
|
|
2177
|
+
@include hook-inverse-component-base();
|
|
2178
|
+
@include hook-inverse-component-breadcrumb();
|
|
2179
|
+
@include hook-inverse-component-button();
|
|
2180
|
+
@include hook-inverse-component-card();
|
|
2181
|
+
@include hook-inverse-component-close();
|
|
2182
|
+
@include hook-inverse-component-column();
|
|
2183
|
+
@include hook-inverse-component-countdown();
|
|
2184
|
+
@include hook-inverse-component-divider();
|
|
2185
|
+
@include hook-inverse-component-dotnav();
|
|
2186
|
+
@include hook-inverse-component-form();
|
|
2187
|
+
@include hook-inverse-component-grid();
|
|
2188
|
+
@include hook-inverse-component-heading();
|
|
2189
|
+
@include hook-inverse-component-icon();
|
|
2190
|
+
@include hook-inverse-component-iconnav();
|
|
2191
|
+
@include hook-inverse-component-label();
|
|
2192
|
+
@include hook-inverse-component-leader();
|
|
2193
|
+
@include hook-inverse-component-link();
|
|
2194
|
+
@include hook-inverse-component-list();
|
|
2195
|
+
@include hook-inverse-component-marker();
|
|
2196
|
+
@include hook-inverse-component-nav();
|
|
2197
|
+
@include hook-inverse-component-navbar();
|
|
2198
|
+
@include hook-inverse-component-pagination();
|
|
2199
|
+
@include hook-inverse-component-search();
|
|
2200
|
+
@include hook-inverse-component-slidenav();
|
|
2201
|
+
@include hook-inverse-component-subnav();
|
|
2202
|
+
@include hook-inverse-component-tab();
|
|
2203
|
+
@include hook-inverse-component-table();
|
|
2204
|
+
@include hook-inverse-component-text();
|
|
2205
|
+
@include hook-inverse-component-thumbnav();
|
|
2206
|
+
@include hook-inverse-component-totop();
|
|
2207
|
+
@include hook-inverse-component-utility();
|
|
2208
|
+
@include hook-inverse-component-accordion();
|
|
2209
|
+
@include hook-inverse-component-table();
|
|
2210
|
+
}
|