uikit 3.7.7-dev.8ab84e819 → 3.8.2-dev.713899c03

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 (135) hide show
  1. package/CHANGELOG.md +38 -6
  2. package/build/prefix.js +2 -2
  3. package/build/release.js +12 -16
  4. package/build/scope.js +14 -19
  5. package/build/scss.js +1 -0
  6. package/build/util.js +1 -1
  7. package/dist/css/uikit-core-rtl.css +332 -840
  8. package/dist/css/uikit-core-rtl.min.css +1 -1
  9. package/dist/css/uikit-core.css +332 -840
  10. package/dist/css/uikit-core.min.css +1 -1
  11. package/dist/css/uikit-rtl.css +364 -848
  12. package/dist/css/uikit-rtl.min.css +1 -1
  13. package/dist/css/uikit.css +364 -848
  14. package/dist/css/uikit.min.css +1 -1
  15. package/dist/js/components/countdown.js +1 -1
  16. package/dist/js/components/countdown.min.js +1 -1
  17. package/dist/js/components/filter.js +1 -1
  18. package/dist/js/components/filter.min.js +1 -1
  19. package/dist/js/components/lightbox-panel.js +1 -1
  20. package/dist/js/components/lightbox-panel.min.js +1 -1
  21. package/dist/js/components/lightbox.js +1 -1
  22. package/dist/js/components/lightbox.min.js +1 -1
  23. package/dist/js/components/notification.js +1 -1
  24. package/dist/js/components/notification.min.js +1 -1
  25. package/dist/js/components/parallax.js +1 -1
  26. package/dist/js/components/parallax.min.js +1 -1
  27. package/dist/js/components/slider-parallax.js +1 -1
  28. package/dist/js/components/slider-parallax.min.js +1 -1
  29. package/dist/js/components/slider.js +1 -1
  30. package/dist/js/components/slider.min.js +1 -1
  31. package/dist/js/components/slideshow-parallax.js +1 -1
  32. package/dist/js/components/slideshow-parallax.min.js +1 -1
  33. package/dist/js/components/slideshow.js +1 -1
  34. package/dist/js/components/slideshow.min.js +1 -1
  35. package/dist/js/components/sortable.js +1 -1
  36. package/dist/js/components/sortable.min.js +1 -1
  37. package/dist/js/components/tooltip.js +1 -1
  38. package/dist/js/components/tooltip.min.js +1 -1
  39. package/dist/js/components/upload.js +1 -1
  40. package/dist/js/components/upload.min.js +1 -1
  41. package/dist/js/uikit-core.js +22 -10
  42. package/dist/js/uikit-core.min.js +2 -2
  43. package/dist/js/uikit-icons.js +1 -1
  44. package/dist/js/uikit-icons.min.js +1 -1
  45. package/dist/js/uikit.js +22 -10
  46. package/dist/js/uikit.min.js +2 -2
  47. package/package.json +11 -11
  48. package/src/js/core/sticky.js +5 -2
  49. package/src/js/util/viewport.js +13 -7
  50. package/src/less/components/accordion.less +3 -6
  51. package/src/less/components/alert.less +2 -3
  52. package/src/less/components/animation.less +69 -216
  53. package/src/less/components/badge.less +2 -5
  54. package/src/less/components/base.less +42 -11
  55. package/src/less/components/breadcrumb.less +3 -5
  56. package/src/less/components/button.less +17 -36
  57. package/src/less/components/card.less +7 -7
  58. package/src/less/components/close.less +3 -6
  59. package/src/less/components/cover.less +11 -6
  60. package/src/less/components/dotnav.less +3 -6
  61. package/src/less/components/dropdown.less +1 -3
  62. package/src/less/components/form-range.less +1 -1
  63. package/src/less/components/icon.less +5 -11
  64. package/src/less/components/iconnav.less +3 -6
  65. package/src/less/components/lightbox.less +11 -7
  66. package/src/less/components/link.less +6 -14
  67. package/src/less/components/marker.less +3 -6
  68. package/src/less/components/nav.less +10 -24
  69. package/src/less/components/navbar.less +6 -15
  70. package/src/less/components/notification.less +1 -1
  71. package/src/less/components/padding.less +1 -1
  72. package/src/less/components/pagination.less +3 -5
  73. package/src/less/components/position.less +45 -82
  74. package/src/less/components/search.less +3 -11
  75. package/src/less/components/slidenav.less +3 -6
  76. package/src/less/components/slider.less +0 -4
  77. package/src/less/components/slideshow.less +0 -4
  78. package/src/less/components/spinner.less +2 -2
  79. package/src/less/components/subnav.less +6 -11
  80. package/src/less/components/tab.less +3 -5
  81. package/src/less/components/table.less +3 -3
  82. package/src/less/components/thumbnav.less +3 -6
  83. package/src/less/components/totop.less +3 -6
  84. package/src/less/components/transition.less +48 -40
  85. package/src/less/components/utility.less +7 -10
  86. package/src/less/components/visibility.less +16 -45
  87. package/src/less/theme/button.less +0 -3
  88. package/src/less/theme/form.less +1 -1
  89. package/src/less/theme/table.less +9 -1
  90. package/src/scss/components/accordion.scss +2 -4
  91. package/src/scss/components/alert.scss +2 -3
  92. package/src/scss/components/animation.scss +69 -216
  93. package/src/scss/components/badge.scss +1 -3
  94. package/src/scss/components/base.scss +34 -9
  95. package/src/scss/components/breadcrumb.scss +2 -3
  96. package/src/scss/components/button.scss +12 -25
  97. package/src/scss/components/card.scss +7 -7
  98. package/src/scss/components/close.scss +2 -4
  99. package/src/scss/components/cover.scss +11 -6
  100. package/src/scss/components/dotnav.scss +2 -4
  101. package/src/scss/components/dropdown.scss +1 -3
  102. package/src/scss/components/form-range.scss +1 -1
  103. package/src/scss/components/icon.scss +3 -7
  104. package/src/scss/components/iconnav.scss +2 -4
  105. package/src/scss/components/lightbox.scss +11 -7
  106. package/src/scss/components/link.scss +3 -8
  107. package/src/scss/components/marker.scss +2 -4
  108. package/src/scss/components/nav.scss +6 -16
  109. package/src/scss/components/navbar.scss +6 -13
  110. package/src/scss/components/notification.scss +1 -1
  111. package/src/scss/components/padding.scss +1 -1
  112. package/src/scss/components/pagination.scss +2 -3
  113. package/src/scss/components/position.scss +45 -82
  114. package/src/scss/components/search.scss +2 -9
  115. package/src/scss/components/slidenav.scss +2 -4
  116. package/src/scss/components/slider.scss +0 -4
  117. package/src/scss/components/slideshow.scss +0 -4
  118. package/src/scss/components/spinner.scss +2 -2
  119. package/src/scss/components/subnav.scss +4 -7
  120. package/src/scss/components/tab.scss +2 -3
  121. package/src/scss/components/table.scss +3 -3
  122. package/src/scss/components/thumbnav.scss +2 -4
  123. package/src/scss/components/totop.scss +2 -4
  124. package/src/scss/components/transition.scss +48 -40
  125. package/src/scss/components/utility.scss +6 -8
  126. package/src/scss/components/visibility.scss +16 -45
  127. package/src/scss/mixins-theme.scss +42 -101
  128. package/src/scss/mixins.scss +38 -66
  129. package/src/scss/theme/button.scss +0 -2
  130. package/src/scss/theme/form.scss +1 -1
  131. package/src/scss/theme/table.scss +2 -1
  132. package/src/scss/variables-theme.scss +20 -14
  133. package/src/scss/variables.scss +19 -13
  134. package/tests/scroll.html +65 -1
  135. package/tests/transition.html +4 -10
@@ -112,8 +112,7 @@
112
112
  @if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
113
113
  }
114
114
 
115
- .uk-badge:hover,
116
- .uk-badge:focus {
115
+ .uk-badge:hover {
117
116
  @if(mixin-exists(hook-inverse-badge-hover)) {@include hook-inverse-badge-hover();}
118
117
  }
119
118
 
@@ -184,8 +183,7 @@
184
183
 
185
184
  a:hover,
186
185
  .uk-link:hover,
187
- .uk-link-toggle:hover .uk-link,
188
- .uk-link-toggle:focus .uk-link {
186
+ .uk-link-toggle:hover .uk-link {
189
187
  color: $inverse-base-link-hover-color;
190
188
  @if(mixin-exists(hook-inverse-base-link-hover)) {@include hook-inverse-base-link-hover();}
191
189
  }
@@ -271,6 +269,13 @@
271
269
  @if(mixin-exists(hook-inverse-base-hr)) {@include hook-inverse-base-hr();}
272
270
  }
273
271
 
272
+ //
273
+ // Focus
274
+ //
275
+
276
+ :focus { outline-color: $inverse-base-focus-outline; }
277
+ :focus-visible { outline-color: $inverse-base-focus-outline; }
278
+
274
279
  }
275
280
  @mixin hook-breadcrumb(){}
276
281
  @mixin hook-breadcrumb-item(){}
@@ -291,8 +296,7 @@
291
296
  @if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
292
297
  }
293
298
 
294
- .uk-breadcrumb > * > :hover,
295
- .uk-breadcrumb > * > :focus {
299
+ .uk-breadcrumb > * > :hover {
296
300
  color: $inverse-breadcrumb-item-hover-color;
297
301
  @if(mixin-exists(hook-inverse-breadcrumb-item-hover)) {@include hook-inverse-breadcrumb-item-hover();}
298
302
  }
@@ -323,7 +327,6 @@
323
327
  transition-property: color, background-color, border-color;
324
328
  }
325
329
  @mixin hook-button-hover(){}
326
- @mixin hook-button-focus(){}
327
330
  @mixin hook-button-active(){}
328
331
  @mixin hook-button-default(){ border: $button-border-width solid $button-default-border; }
329
332
  @mixin hook-button-default-hover(){ border-color: $button-default-hover-border; }
@@ -386,7 +389,6 @@
386
389
  */
387
390
 
388
391
  .uk-button-group .uk-button:hover,
389
- .uk-button-group .uk-button:focus,
390
392
  .uk-button-group .uk-button:active,
391
393
  .uk-button-group .uk-button.uk-active {
392
394
  position: relative;
@@ -421,8 +423,7 @@
421
423
  @if(mixin-exists(hook-inverse-button-default)) {@include hook-inverse-button-default();}
422
424
  }
423
425
 
424
- .uk-button-default:hover,
425
- .uk-button-default:focus {
426
+ .uk-button-default:hover {
426
427
  background-color: $inverse-button-default-hover-background;
427
428
  color: $inverse-button-default-hover-color;
428
429
  @if(mixin-exists(hook-inverse-button-default-hover)) {@include hook-inverse-button-default-hover();}
@@ -445,8 +446,7 @@
445
446
  @if(mixin-exists(hook-inverse-button-primary)) {@include hook-inverse-button-primary();}
446
447
  }
447
448
 
448
- .uk-button-primary:hover,
449
- .uk-button-primary:focus {
449
+ .uk-button-primary:hover {
450
450
  background-color: $inverse-button-primary-hover-background;
451
451
  color: $inverse-button-primary-hover-color;
452
452
  @if(mixin-exists(hook-inverse-button-primary-hover)) {@include hook-inverse-button-primary-hover();}
@@ -469,8 +469,7 @@
469
469
  @if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
470
470
  }
471
471
 
472
- .uk-button-secondary:hover,
473
- .uk-button-secondary:focus {
472
+ .uk-button-secondary:hover {
474
473
  background-color: $inverse-button-secondary-hover-background;
475
474
  color: $inverse-button-secondary-hover-color;
476
475
  @if(mixin-exists(hook-inverse-button-secondary-hover)) {@include hook-inverse-button-secondary-hover();}
@@ -492,8 +491,7 @@
492
491
  @if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
493
492
  }
494
493
 
495
- .uk-button-text:hover,
496
- .uk-button-text:focus {
494
+ .uk-button-text:hover {
497
495
  color: $inverse-button-text-hover-color;
498
496
  @if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
499
497
  }
@@ -512,9 +510,7 @@
512
510
  @if(mixin-exists(hook-inverse-button-link)) {@include hook-inverse-button-link();}
513
511
  }
514
512
 
515
- .uk-button-link:hover,
516
- .uk-button-link:focus { color: $inverse-button-link-hover-color; }
517
-
513
+ .uk-button-link:hover { color: $inverse-button-link-hover-color; }
518
514
 
519
515
  }
520
516
  @mixin hook-card(){ transition: box-shadow 0.1s ease-in-out; }
@@ -660,8 +656,7 @@
660
656
  @if(mixin-exists(hook-inverse-close)) {@include hook-inverse-close();}
661
657
  }
662
658
 
663
- .uk-close:hover,
664
- .uk-close:focus {
659
+ .uk-close:hover {
665
660
  color: $inverse-close-hover-color;
666
661
  @if(mixin-exists(hook-inverse-close-hover)) {@include hook-inverse-close-hover();}
667
662
  }
@@ -793,8 +788,7 @@
793
788
  @if(mixin-exists(hook-inverse-dotnav-item)) {@include hook-inverse-dotnav-item();}
794
789
  }
795
790
 
796
- .uk-dotnav > * > :hover,
797
- .uk-dotnav > * > :focus {
791
+ .uk-dotnav > * > :hover {
798
792
  background-color: $inverse-dotnav-item-hover-background;
799
793
  @if(mixin-exists(hook-inverse-dotnav-item-hover)) {@include hook-inverse-dotnav-item-hover();}
800
794
  }
@@ -1062,8 +1056,7 @@
1062
1056
  @if(mixin-exists(hook-inverse-icon-link)) {@include hook-inverse-icon-link();}
1063
1057
  }
1064
1058
 
1065
- .uk-icon-link:hover,
1066
- .uk-icon-link:focus {
1059
+ .uk-icon-link:hover {
1067
1060
  color: $inverse-icon-link-hover-color;
1068
1061
  @if(mixin-exists(hook-inverse-icon-link-hover)) {@include hook-inverse-icon-link-hover();}
1069
1062
  }
@@ -1084,8 +1077,7 @@
1084
1077
  @if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
1085
1078
  }
1086
1079
 
1087
- .uk-icon-button:hover,
1088
- .uk-icon-button:focus {
1080
+ .uk-icon-button:hover {
1089
1081
  background-color: $inverse-icon-button-hover-background;
1090
1082
  color: $inverse-icon-button-hover-color;
1091
1083
  @if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
@@ -1117,8 +1109,7 @@
1117
1109
  @if(mixin-exists(hook-inverse-iconnav-item)) {@include hook-inverse-iconnav-item();}
1118
1110
  }
1119
1111
 
1120
- .uk-iconnav > * > a:hover,
1121
- .uk-iconnav > * > a:focus {
1112
+ .uk-iconnav > * > a:hover {
1122
1113
  color: $inverse-iconnav-item-hover-color;
1123
1114
  @if(mixin-exists(hook-inverse-iconnav-item-hover)) {@include hook-inverse-iconnav-item-hover();}
1124
1115
  }
@@ -1139,24 +1130,21 @@
1139
1130
 
1140
1131
  a.uk-link-muted:hover,
1141
1132
  .uk-link-muted a:hover,
1142
- .uk-link-toggle:hover .uk-link-muted,
1143
- .uk-link-toggle:focus .uk-link-muted {
1133
+ .uk-link-toggle:hover .uk-link-muted {
1144
1134
  color: $inverse-link-muted-hover-color;
1145
1135
  @if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
1146
1136
  }
1147
1137
 
1148
1138
  a.uk-link-text:hover,
1149
1139
  .uk-link-text a:hover,
1150
- .uk-link-toggle:hover .uk-link-text,
1151
- .uk-link-toggle:focus .uk-link-text {
1140
+ .uk-link-toggle:hover .uk-link-text {
1152
1141
  color: $inverse-link-text-hover-color;
1153
1142
  @if(mixin-exists(hook-inverse-link-text-hover)) {@include hook-inverse-link-text-hover();}
1154
1143
  }
1155
1144
 
1156
1145
  a.uk-link-heading:hover,
1157
1146
  .uk-link-heading a:hover,
1158
- .uk-link-toggle:hover .uk-link-heading,
1159
- .uk-link-toggle:focus .uk-link-heading {
1147
+ .uk-link-toggle:hover .uk-link-heading {
1160
1148
  color: $inverse-link-heading-hover-color;
1161
1149
  @if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
1162
1150
  }
@@ -1192,8 +1180,7 @@
1192
1180
  @if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
1193
1181
  }
1194
1182
 
1195
- .uk-totop:hover,
1196
- .uk-totop:focus {
1183
+ .uk-totop:hover {
1197
1184
  color: $inverse-totop-hover-color;
1198
1185
  @if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
1199
1186
  }
@@ -1265,8 +1252,7 @@
1265
1252
  @if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
1266
1253
  }
1267
1254
 
1268
- .uk-search-toggle:hover,
1269
- .uk-search-toggle:focus {
1255
+ .uk-search-toggle:hover {
1270
1256
  color: $inverse-search-toggle-hover-color;
1271
1257
  @if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
1272
1258
  }
@@ -1294,8 +1280,7 @@
1294
1280
  @if(mixin-exists(hook-inverse-nav-default-item)) {@include hook-inverse-nav-default-item();}
1295
1281
  }
1296
1282
 
1297
- .uk-nav-default > li > a:hover,
1298
- .uk-nav-default > li > a:focus {
1283
+ .uk-nav-default > li > a:hover {
1299
1284
  color: $inverse-nav-default-item-hover-color;
1300
1285
  @if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
1301
1286
  }
@@ -1317,8 +1302,7 @@
1317
1302
 
1318
1303
  .uk-nav-default .uk-nav-sub a { color: $inverse-nav-default-sublist-item-color; }
1319
1304
 
1320
- .uk-nav-default .uk-nav-sub a:hover,
1321
- .uk-nav-default .uk-nav-sub a:focus { color: $inverse-nav-default-sublist-item-hover-color; }
1305
+ .uk-nav-default .uk-nav-sub a:hover { color: $inverse-nav-default-sublist-item-hover-color; }
1322
1306
 
1323
1307
  .uk-nav-default .uk-nav-sub li.uk-active > a { color: $inverse-nav-default-sublist-item-active-color; }
1324
1308
 
@@ -1331,8 +1315,7 @@
1331
1315
  @if(mixin-exists(hook-inverse-nav-primary-item)) {@include hook-inverse-nav-primary-item();}
1332
1316
  }
1333
1317
 
1334
- .uk-nav-primary > li > a:hover,
1335
- .uk-nav-primary > li > a:focus {
1318
+ .uk-nav-primary > li > a:hover {
1336
1319
  color: $inverse-nav-primary-item-hover-color;
1337
1320
  @if(mixin-exists(hook-inverse-nav-primary-item-hover)) {@include hook-inverse-nav-primary-item-hover();}
1338
1321
  }
@@ -1354,8 +1337,7 @@
1354
1337
 
1355
1338
  .uk-nav-primary .uk-nav-sub a { color: $inverse-nav-primary-sublist-item-color; }
1356
1339
 
1357
- .uk-nav-primary .uk-nav-sub a:hover,
1358
- .uk-nav-primary .uk-nav-sub a:focus { color: $inverse-nav-primary-sublist-item-hover-color; }
1340
+ .uk-nav-primary .uk-nav-sub a:hover { color: $inverse-nav-primary-sublist-item-hover-color; }
1359
1341
 
1360
1342
  .uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
1361
1343
 
@@ -1377,7 +1359,6 @@
1377
1359
  }
1378
1360
 
1379
1361
  .uk-navbar-nav > li:hover > a,
1380
- .uk-navbar-nav > li > a:focus,
1381
1362
  .uk-navbar-nav > li > a[aria-expanded="true"] {
1382
1363
  color: $inverse-navbar-nav-item-hover-color;
1383
1364
  @if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
@@ -1404,7 +1385,6 @@
1404
1385
  }
1405
1386
 
1406
1387
  .uk-navbar-toggle:hover,
1407
- .uk-navbar-toggle:focus,
1408
1388
  .uk-navbar-toggle[aria-expanded="true"] {
1409
1389
  color: $inverse-navbar-toggle-hover-color;
1410
1390
  @if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
@@ -1418,8 +1398,7 @@
1418
1398
  @if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
1419
1399
  }
1420
1400
 
1421
- .uk-subnav > * > a:hover,
1422
- .uk-subnav > * > a:focus {
1401
+ .uk-subnav > * > a:hover {
1423
1402
  color: $inverse-subnav-item-hover-color;
1424
1403
  @if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
1425
1404
  }
@@ -1448,8 +1427,7 @@
1448
1427
  @if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
1449
1428
  }
1450
1429
 
1451
- .uk-subnav-pill > * > a:hover,
1452
- .uk-subnav-pill > * > a:focus {
1430
+ .uk-subnav-pill > * > a:hover {
1453
1431
  background-color: $inverse-subnav-pill-item-hover-background;
1454
1432
  color: $inverse-subnav-pill-item-hover-color;
1455
1433
  @if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
@@ -1484,8 +1462,7 @@
1484
1462
  @if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
1485
1463
  }
1486
1464
 
1487
- .uk-pagination > * > :hover,
1488
- .uk-pagination > * > :focus {
1465
+ .uk-pagination > * > :hover {
1489
1466
  color: $inverse-pagination-item-hover-color;
1490
1467
  @if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
1491
1468
  }
@@ -1512,8 +1489,7 @@
1512
1489
  @if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
1513
1490
  }
1514
1491
 
1515
- .uk-tab > * > a:hover,
1516
- .uk-tab > * > a:focus{
1492
+ .uk-tab > * > a:hover {
1517
1493
  color: $inverse-tab-item-hover-color;
1518
1494
  @if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
1519
1495
  }
@@ -1536,8 +1512,7 @@
1536
1512
  @if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
1537
1513
  }
1538
1514
 
1539
- .uk-slidenav:hover,
1540
- .uk-slidenav:focus {
1515
+ .uk-slidenav:hover {
1541
1516
  color: $inverse-slidenav-hover-color;
1542
1517
  @if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
1543
1518
  }
@@ -1578,8 +1553,7 @@
1578
1553
  @if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
1579
1554
  }
1580
1555
 
1581
- .uk-logo:hover,
1582
- .uk-logo:focus {
1556
+ .uk-logo:hover {
1583
1557
  color: $inverse-logo-hover-color;
1584
1558
  @if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
1585
1559
  }
@@ -1693,8 +1667,7 @@
1693
1667
  @if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
1694
1668
  }
1695
1669
 
1696
- .uk-marker:hover,
1697
- .uk-marker:focus {
1670
+ .uk-marker:hover {
1698
1671
  color: $inverse-marker-hover-color;
1699
1672
  @if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
1700
1673
  }
@@ -2032,6 +2005,9 @@
2032
2005
 
2033
2006
  .uk-table tbody tr { transition: background-color 0.1s linear; }
2034
2007
 
2008
+ .uk-table-striped > tr:nth-of-type(even):last-child,
2009
+ .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom: $table-striped-border-width solid $table-striped-border; }
2010
+
2035
2011
  }
2036
2012
  @mixin hook-inverse-table-header-cell(){}
2037
2013
  @mixin hook-inverse-table-caption(){}
@@ -2043,42 +2019,8 @@
2043
2019
  }
2044
2020
  @mixin hook-inverse-table-hover(){}
2045
2021
  @mixin hook-inverse-component-table(){
2046
-
2047
- .uk-table th {
2048
- color: $inverse-table-header-cell-color;
2049
- @if(mixin-exists(hook-inverse-table-header-cell)) {@include hook-inverse-table-header-cell();}
2050
- }
2051
-
2052
- .uk-table caption {
2053
- color: $inverse-table-caption-color;
2054
- @if(mixin-exists(hook-inverse-table-caption)) {@include hook-inverse-table-caption();}
2055
- }
2056
-
2057
- .uk-table > tr.uk-active,
2058
- .uk-table tbody tr.uk-active {
2059
- background: $inverse-table-row-active-background;
2060
- @if(mixin-exists(hook-inverse-table-row-active)) {@include hook-inverse-table-row-active();}
2061
- }
2062
-
2063
- .uk-table-divider > tr:not(:first-child),
2064
- .uk-table-divider > :not(:first-child) > tr,
2065
- .uk-table-divider > :first-child > tr:not(:first-child) {
2066
- border-top-color: $inverse-table-divider-border;
2067
- @if(mixin-exists(hook-inverse-table-divider)) {@include hook-inverse-table-divider();}
2068
- }
2069
-
2070
- .uk-table-striped > tr:nth-of-type(odd),
2071
- .uk-table-striped tbody tr:nth-of-type(odd) {
2072
- background: $inverse-table-striped-row-background;
2073
- @if(mixin-exists(hook-inverse-table-striped)) {@include hook-inverse-table-striped();}
2074
- }
2075
-
2076
- .uk-table-hover > tr:hover,
2077
- .uk-table-hover tbody tr:hover {
2078
- background: $inverse-table-hover-row-background;
2079
- @if(mixin-exists(hook-inverse-table-hover)) {@include hook-inverse-table-hover();}
2080
- }
2081
-
2022
+ .uk-table-striped > tr:nth-of-type(even):last-child,
2023
+ .uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom-color: $inverse-global-border; }
2082
2024
  }
2083
2025
  @mixin hook-text-lead(){}
2084
2026
  @mixin hook-text-meta(){
@@ -2130,8 +2072,7 @@
2130
2072
  @if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
2131
2073
  }
2132
2074
 
2133
- .uk-thumbnav > * > :hover,
2134
- .uk-thumbnav > * > :focus {
2075
+ .uk-thumbnav > * > :hover {
2135
2076
  @if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
2136
2077
  }
2137
2078