uikit 3.14.4-dev.3a6c538ab → 3.14.4-dev.5e7e87ba7
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/CHANGELOG.md +27 -17
- package/build/util.js +1 -0
- package/dist/css/uikit-core-rtl.css +271 -61
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +271 -61
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +291 -65
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +291 -65
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +69 -114
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +69 -114
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +85 -131
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +339 -339
- package/dist/js/uikit-core.min.js +14 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +339 -339
- package/dist/js/uikit.min.js +14 -1
- package/package.json +1 -1
- package/src/images/components/navbar-toggle-icon.svg +22 -3
- package/src/js/api/state.js +1 -1
- package/src/js/core/accordion.js +9 -17
- package/src/js/core/alert.js +35 -14
- package/src/js/core/drop.js +90 -61
- package/src/js/core/height-viewport.js +4 -2
- package/src/js/core/navbar.js +28 -45
- package/src/js/core/scroll.js +37 -10
- package/src/js/mixin/position.js +18 -20
- package/src/js/mixin/togglable.js +80 -124
- package/src/js/util/animation.js +4 -3
- package/src/js/util/filter.js +3 -7
- package/src/js/util/position.js +42 -47
- package/src/js/util/viewport.js +3 -5
- package/src/less/components/_import.less +1 -0
- package/src/less/components/drop.less +1 -18
- package/src/less/components/dropbar.less +115 -0
- package/src/less/components/dropdown.less +6 -20
- package/src/less/components/nav.less +211 -22
- package/src/less/components/navbar.less +10 -52
- package/src/less/theme/_import.less +1 -0
- package/src/less/theme/dropbar.less +44 -0
- package/src/less/theme/dropdown.less +0 -11
- package/src/less/theme/nav.less +46 -0
- package/src/less/theme/navbar.less +1 -5
- package/src/scss/components/_import.scss +1 -0
- package/src/scss/components/drop.scss +1 -18
- package/src/scss/components/dropbar.scss +115 -0
- package/src/scss/components/dropdown.scss +6 -20
- package/src/scss/components/nav.scss +160 -21
- package/src/scss/components/navbar.scss +10 -52
- package/src/scss/mixins-theme.scss +78 -7
- package/src/scss/mixins.scss +75 -3
- package/src/scss/theme/_import.scss +1 -0
- package/src/scss/theme/dropbar.scss +44 -0
- package/src/scss/theme/dropdown.scss +0 -8
- package/src/scss/theme/nav.scss +44 -0
- package/src/scss/theme/navbar.scss +1 -5
- package/src/scss/variables-theme.scss +50 -9
- package/src/scss/variables.scss +39 -7
- package/tests/accordion.html +2 -2
- package/tests/alert.html +2 -2
- package/tests/countdown.html +1 -1
- package/tests/drop.html +444 -412
- package/tests/dropbar.html +456 -0
- package/tests/dropdown.html +8 -470
- package/tests/filter.html +9 -12
- package/tests/form.html +1 -1
- package/tests/index.html +124 -105
- package/tests/lightbox.html +5 -5
- package/tests/list.html +8 -8
- package/tests/modal.html +13 -13
- package/tests/nav.html +121 -12
- package/tests/navbar.html +76 -212
- package/tests/offcanvas.html +10 -14
- package/tests/parallax.html +1 -1
- package/tests/position.html +13 -24
- package/tests/progress.html +9 -9
- package/tests/scroll.html +7 -10
- package/tests/search.html +5 -5
- package/tests/slider.html +6 -5
- package/tests/slideshow.html +8 -8
- package/tests/sortable.html +6 -8
- package/tests/sticky-navbar.html +6 -6
- package/tests/sticky.html +8 -8
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/table.html +7 -7
- package/tests/toggle.html +2 -2
- package/tests/tooltip.html +1 -1
- package/tests/upload.html +11 -11
|
@@ -805,11 +805,13 @@
|
|
|
805
805
|
|
|
806
806
|
}
|
|
807
807
|
@mixin hook-drop-misc(){}
|
|
808
|
+
@mixin hook-dropbar(){}
|
|
809
|
+
@mixin hook-dropbar-top(){ box-shadow: $dropbar-top-box-shadow; }
|
|
810
|
+
@mixin hook-dropbar-bottom(){ box-shadow: $dropbar-bottom-box-shadow; }
|
|
811
|
+
@mixin hook-dropbar-left(){ box-shadow: $dropbar-left-box-shadow; }
|
|
812
|
+
@mixin hook-dropbar-right(){ box-shadow: $dropbar-right-box-shadow; }
|
|
813
|
+
@mixin hook-dropbar-misc(){}
|
|
808
814
|
@mixin hook-dropdown(){ box-shadow: $dropdown-box-shadow; }
|
|
809
|
-
@mixin hook-dropdown-stretch(){
|
|
810
|
-
box-shadow: none;
|
|
811
|
-
background: $dropdown-stretch-background;
|
|
812
|
-
}
|
|
813
815
|
@mixin hook-dropdown-nav(){ font-size: $dropdown-nav-font-size; }
|
|
814
816
|
@mixin hook-dropdown-nav-item(){}
|
|
815
817
|
@mixin hook-dropdown-nav-item-hover(){}
|
|
@@ -1339,13 +1341,63 @@
|
|
|
1339
1341
|
|
|
1340
1342
|
.uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
|
|
1341
1343
|
|
|
1344
|
+
//
|
|
1345
|
+
// Secondary
|
|
1346
|
+
//
|
|
1347
|
+
|
|
1348
|
+
.uk-nav-secondary > li > a {
|
|
1349
|
+
color: $inverse-nav-secondary-item-color;
|
|
1350
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.uk-nav-secondary > li > a:hover {
|
|
1354
|
+
color: $inverse-nav-secondary-item-hover-color;
|
|
1355
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.uk-nav-secondary > li.uk-active > a {
|
|
1359
|
+
color: $inverse-nav-secondary-item-active-color;
|
|
1360
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
.uk-nav-secondary .uk-nav-subtitle {
|
|
1364
|
+
color: $inverse-nav-secondary-subtitle-color;
|
|
1365
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
1369
|
+
color: $inverse-nav-secondary-subtitle-hover-color;
|
|
1370
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
1374
|
+
color: $inverse-nav-secondary-subtitle-active-color;
|
|
1375
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
.uk-nav-secondary .uk-nav-header {
|
|
1379
|
+
color: $inverse-nav-secondary-header-color;
|
|
1380
|
+
@if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.uk-nav-secondary .uk-nav-divider {
|
|
1384
|
+
border-top-color: $inverse-nav-secondary-divider-border;
|
|
1385
|
+
@if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
|
|
1389
|
+
|
|
1390
|
+
.uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
|
|
1391
|
+
|
|
1392
|
+
.uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
|
|
1393
|
+
|
|
1342
1394
|
//
|
|
1343
1395
|
// Dividers
|
|
1344
1396
|
//
|
|
1345
1397
|
|
|
1346
1398
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
1347
1399
|
border-top-color: $inverse-nav-dividers-border;
|
|
1348
|
-
@if(mixin-exists(hook-nav-dividers)) {@include hook-nav-dividers();}
|
|
1400
|
+
@if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
|
|
1349
1401
|
}
|
|
1350
1402
|
|
|
1351
1403
|
}
|
|
@@ -1722,6 +1774,17 @@
|
|
|
1722
1774
|
@mixin hook-nav-primary-subtitle(){}
|
|
1723
1775
|
@mixin hook-nav-primary-header(){}
|
|
1724
1776
|
@mixin hook-nav-primary-divider(){}
|
|
1777
|
+
@mixin hook-nav-secondary(){
|
|
1778
|
+
> :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { margin-top: $nav-background-margin-top; }
|
|
1779
|
+
}
|
|
1780
|
+
@mixin hook-nav-secondary-item(){ padding: $nav-background-item-padding-vertical $nav-background-item-padding-horizontal; }
|
|
1781
|
+
@mixin hook-nav-secondary-item-hover(){ background-color: $nav-background-item-hover-background; }
|
|
1782
|
+
@mixin hook-nav-secondary-item-active(){ background-color: $nav-background-item-active-background; }
|
|
1783
|
+
@mixin hook-nav-secondary-subtitle(){}
|
|
1784
|
+
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
1785
|
+
@mixin hook-nav-secondary-subtitle-active(){}
|
|
1786
|
+
@mixin hook-nav-secondary-header(){}
|
|
1787
|
+
@mixin hook-nav-secondary-divider(){}
|
|
1725
1788
|
@mixin hook-nav-dividers(){}
|
|
1726
1789
|
@mixin hook-nav-misc(){}
|
|
1727
1790
|
@mixin hook-inverse-nav-default-item(){}
|
|
@@ -1734,6 +1797,15 @@
|
|
|
1734
1797
|
@mixin hook-inverse-nav-primary-item-active(){}
|
|
1735
1798
|
@mixin hook-inverse-nav-primary-header(){}
|
|
1736
1799
|
@mixin hook-inverse-nav-primary-divider(){}
|
|
1800
|
+
@mixin hook-inverse-nav-secondary-item(){}
|
|
1801
|
+
@mixin hook-inverse-nav-secondary-item-hover(){ background-color: $inverse-nav-background-item-hover-background; }
|
|
1802
|
+
@mixin hook-inverse-nav-secondary-item-active(){ background-color: $inverse-nav-background-item-active-background; }
|
|
1803
|
+
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
1804
|
+
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
1805
|
+
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
1806
|
+
@mixin hook-inverse-nav-secondary-header(){}
|
|
1807
|
+
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1808
|
+
@mixin hook-inverse-nav-dividers(){}
|
|
1737
1809
|
@mixin hook-navbar(){}
|
|
1738
1810
|
@mixin hook-navbar-container(){}
|
|
1739
1811
|
@mixin hook-navbar-nav-item(){
|
|
@@ -1754,7 +1826,6 @@
|
|
|
1754
1826
|
@mixin hook-navbar-transparent(){}
|
|
1755
1827
|
@mixin hook-navbar-sticky(){}
|
|
1756
1828
|
@mixin hook-navbar-dropdown(){ box-shadow: $navbar-dropdown-box-shadow; }
|
|
1757
|
-
@mixin hook-navbar-dropdown-stretch(){ box-shadow: none; }
|
|
1758
1829
|
@mixin hook-navbar-dropdown-dropbar(){ box-shadow: none; }
|
|
1759
1830
|
@mixin hook-navbar-dropdown-nav(){ font-size: $navbar-dropdown-nav-font-size; }
|
|
1760
1831
|
@mixin hook-navbar-dropdown-nav-item(){}
|
|
@@ -1763,7 +1834,7 @@
|
|
|
1763
1834
|
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
1764
1835
|
@mixin hook-navbar-dropdown-nav-header(){}
|
|
1765
1836
|
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
1766
|
-
@mixin hook-navbar-dropbar(){
|
|
1837
|
+
@mixin hook-navbar-dropbar(){}
|
|
1767
1838
|
@mixin hook-navbar-misc(){
|
|
1768
1839
|
|
|
1769
1840
|
/*
|
package/src/scss/mixins.scss
CHANGED
|
@@ -580,8 +580,13 @@
|
|
|
580
580
|
|
|
581
581
|
}
|
|
582
582
|
@mixin hook-drop-misc(){}
|
|
583
|
+
@mixin hook-dropbar(){}
|
|
584
|
+
@mixin hook-dropbar-top(){}
|
|
585
|
+
@mixin hook-dropbar-bottom(){}
|
|
586
|
+
@mixin hook-dropbar-left(){}
|
|
587
|
+
@mixin hook-dropbar-right(){}
|
|
588
|
+
@mixin hook-dropbar-misc(){}
|
|
583
589
|
@mixin hook-dropdown(){}
|
|
584
|
-
@mixin hook-dropdown-stretch(){}
|
|
585
590
|
@mixin hook-dropdown-nav(){}
|
|
586
591
|
@mixin hook-dropdown-nav-item(){}
|
|
587
592
|
@mixin hook-dropdown-nav-item-hover(){}
|
|
@@ -1090,13 +1095,63 @@
|
|
|
1090
1095
|
|
|
1091
1096
|
.uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
|
|
1092
1097
|
|
|
1098
|
+
//
|
|
1099
|
+
// Secondary
|
|
1100
|
+
//
|
|
1101
|
+
|
|
1102
|
+
.uk-nav-secondary > li > a {
|
|
1103
|
+
color: $inverse-nav-secondary-item-color;
|
|
1104
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.uk-nav-secondary > li > a:hover {
|
|
1108
|
+
color: $inverse-nav-secondary-item-hover-color;
|
|
1109
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.uk-nav-secondary > li.uk-active > a {
|
|
1113
|
+
color: $inverse-nav-secondary-item-active-color;
|
|
1114
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.uk-nav-secondary .uk-nav-subtitle {
|
|
1118
|
+
color: $inverse-nav-secondary-subtitle-color;
|
|
1119
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
1123
|
+
color: $inverse-nav-secondary-subtitle-hover-color;
|
|
1124
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
1128
|
+
color: $inverse-nav-secondary-subtitle-active-color;
|
|
1129
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.uk-nav-secondary .uk-nav-header {
|
|
1133
|
+
color: $inverse-nav-secondary-header-color;
|
|
1134
|
+
@if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.uk-nav-secondary .uk-nav-divider {
|
|
1138
|
+
border-top-color: $inverse-nav-secondary-divider-border;
|
|
1139
|
+
@if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
|
|
1143
|
+
|
|
1144
|
+
.uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
|
|
1145
|
+
|
|
1146
|
+
.uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
|
|
1147
|
+
|
|
1093
1148
|
//
|
|
1094
1149
|
// Dividers
|
|
1095
1150
|
//
|
|
1096
1151
|
|
|
1097
1152
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
1098
1153
|
border-top-color: $inverse-nav-dividers-border;
|
|
1099
|
-
@if(mixin-exists(hook-nav-dividers)) {@include hook-nav-dividers();}
|
|
1154
|
+
@if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
|
|
1100
1155
|
}
|
|
1101
1156
|
|
|
1102
1157
|
}
|
|
@@ -1449,6 +1504,15 @@
|
|
|
1449
1504
|
@mixin hook-nav-primary-subtitle(){}
|
|
1450
1505
|
@mixin hook-nav-primary-header(){}
|
|
1451
1506
|
@mixin hook-nav-primary-divider(){}
|
|
1507
|
+
@mixin hook-nav-secondary(){}
|
|
1508
|
+
@mixin hook-nav-secondary-item(){}
|
|
1509
|
+
@mixin hook-nav-secondary-item-hover(){}
|
|
1510
|
+
@mixin hook-nav-secondary-item-active(){}
|
|
1511
|
+
@mixin hook-nav-secondary-subtitle(){}
|
|
1512
|
+
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
1513
|
+
@mixin hook-nav-secondary-subtitle-active(){}
|
|
1514
|
+
@mixin hook-nav-secondary-header(){}
|
|
1515
|
+
@mixin hook-nav-secondary-divider(){}
|
|
1452
1516
|
@mixin hook-nav-dividers(){}
|
|
1453
1517
|
@mixin hook-nav-misc(){}
|
|
1454
1518
|
@mixin hook-inverse-nav-default-item(){}
|
|
@@ -1461,6 +1525,15 @@
|
|
|
1461
1525
|
@mixin hook-inverse-nav-primary-item-active(){}
|
|
1462
1526
|
@mixin hook-inverse-nav-primary-header(){}
|
|
1463
1527
|
@mixin hook-inverse-nav-primary-divider(){}
|
|
1528
|
+
@mixin hook-inverse-nav-secondary-item(){}
|
|
1529
|
+
@mixin hook-inverse-nav-secondary-item-hover(){}
|
|
1530
|
+
@mixin hook-inverse-nav-secondary-item-active(){}
|
|
1531
|
+
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
1532
|
+
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
1533
|
+
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
1534
|
+
@mixin hook-inverse-nav-secondary-header(){}
|
|
1535
|
+
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1536
|
+
@mixin hook-inverse-nav-dividers(){}
|
|
1464
1537
|
@mixin hook-navbar(){}
|
|
1465
1538
|
@mixin hook-navbar-container(){}
|
|
1466
1539
|
@mixin hook-navbar-nav-item(){}
|
|
@@ -1477,7 +1550,6 @@
|
|
|
1477
1550
|
@mixin hook-navbar-transparent(){}
|
|
1478
1551
|
@mixin hook-navbar-sticky(){}
|
|
1479
1552
|
@mixin hook-navbar-dropdown(){}
|
|
1480
|
-
@mixin hook-navbar-dropdown-stretch(){}
|
|
1481
1553
|
@mixin hook-navbar-dropdown-dropbar(){}
|
|
1482
1554
|
@mixin hook-navbar-dropdown-nav(){}
|
|
1483
1555
|
@mixin hook-navbar-dropdown-nav-item(){}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Component: Dropbar
|
|
3
|
+
//
|
|
4
|
+
// ========================================================================
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Variables
|
|
8
|
+
// ========================================================================
|
|
9
|
+
|
|
10
|
+
$dropbar-padding-top: 25px !default;
|
|
11
|
+
$dropbar-background: $global-background !default;
|
|
12
|
+
|
|
13
|
+
//
|
|
14
|
+
// New
|
|
15
|
+
//
|
|
16
|
+
|
|
17
|
+
$dropbar-top-box-shadow: 0 12px 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
18
|
+
$dropbar-bottom-box-shadow: 0 -12px 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
19
|
+
$dropbar-left-box-shadow: 12px 0 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
20
|
+
$dropbar-right-box-shadow: -12px 0 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
// Component
|
|
24
|
+
// ========================================================================
|
|
25
|
+
|
|
26
|
+
// @mixin hook-dropbar(){}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
// Direction modifier
|
|
30
|
+
// ========================================================================
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
// Miscellaneous
|
|
42
|
+
// ========================================================================
|
|
43
|
+
|
|
44
|
+
// @mixin hook-dropbar-misc(){}
|
|
@@ -20,8 +20,6 @@ $dropdown-nav-font-size: $global-small-font-size !defaul
|
|
|
20
20
|
|
|
21
21
|
$dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15) !default;
|
|
22
22
|
|
|
23
|
-
$dropdown-stretch-background: $global-muted-background !default;
|
|
24
|
-
|
|
25
23
|
|
|
26
24
|
// Component
|
|
27
25
|
// ========================================================================
|
|
@@ -29,12 +27,6 @@ $dropdown-stretch-background: $global-muted-background !defau
|
|
|
29
27
|
|
|
30
28
|
|
|
31
29
|
|
|
32
|
-
// Stretch modifier
|
|
33
|
-
// ========================================================================
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
30
|
// Nav
|
|
39
31
|
// ========================================================================
|
|
40
32
|
|
package/src/scss/theme/nav.scss
CHANGED
|
@@ -11,6 +11,16 @@ $nav-default-font-size: $global-small-font-size !defaul
|
|
|
11
11
|
|
|
12
12
|
$nav-default-subtitle-font-size: 12px !default;
|
|
13
13
|
|
|
14
|
+
//
|
|
15
|
+
// New
|
|
16
|
+
//
|
|
17
|
+
|
|
18
|
+
$nav-background-margin-top: 0 !default;
|
|
19
|
+
$nav-background-item-padding-horizontal: 10px !default;
|
|
20
|
+
$nav-background-item-padding-vertical: 10px !default;
|
|
21
|
+
$nav-background-item-hover-background: $global-muted-background !default;
|
|
22
|
+
$nav-background-item-active-background: $global-muted-background !default;
|
|
23
|
+
|
|
14
24
|
|
|
15
25
|
// Sublists
|
|
16
26
|
// ========================================================================
|
|
@@ -66,6 +76,28 @@ $nav-default-subtitle-font-size: 12px !default;
|
|
|
66
76
|
// @mixin hook-nav-primary-divider(){}
|
|
67
77
|
|
|
68
78
|
|
|
79
|
+
// Secondary style modifier
|
|
80
|
+
// ========================================================================
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
// @mixin hook-nav-secondary-subtitle(){}
|
|
91
|
+
|
|
92
|
+
// @mixin hook-nav-secondary-subtitle-hover(){}
|
|
93
|
+
|
|
94
|
+
// @mixin hook-nav-secondary-subtitle-active(){}
|
|
95
|
+
|
|
96
|
+
// @mixin hook-nav-secondary-header(){}
|
|
97
|
+
|
|
98
|
+
// @mixin hook-nav-secondary-divider(){}
|
|
99
|
+
|
|
100
|
+
|
|
69
101
|
// Style modifier
|
|
70
102
|
// ========================================================================
|
|
71
103
|
|
|
@@ -81,6 +113,9 @@ $nav-default-subtitle-font-size: 12px !default;
|
|
|
81
113
|
// Inverse
|
|
82
114
|
// ========================================================================
|
|
83
115
|
|
|
116
|
+
$inverse-nav-background-item-hover-background: $inverse-global-muted-background !default;
|
|
117
|
+
$inverse-nav-background-item-active-background: $inverse-global-muted-background !default;
|
|
118
|
+
|
|
84
119
|
// @mixin hook-inverse-nav-default-item(){}
|
|
85
120
|
// @mixin hook-inverse-nav-default-item-hover(){}
|
|
86
121
|
// @mixin hook-inverse-nav-default-item-active(){}
|
|
@@ -93,4 +128,13 @@ $nav-default-subtitle-font-size: 12px !default;
|
|
|
93
128
|
// @mixin hook-inverse-nav-primary-header(){}
|
|
94
129
|
// @mixin hook-inverse-nav-primary-divider(){}
|
|
95
130
|
|
|
131
|
+
// @mixin hook-inverse-nav-secondary-item(){}
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
// @mixin hook-inverse-nav-secondary-subtitle(){}
|
|
135
|
+
// @mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
136
|
+
// @mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
137
|
+
// @mixin hook-inverse-nav-secondary-header(){}
|
|
138
|
+
// @mixin hook-inverse-nav-secondary-divider(){}
|
|
139
|
+
|
|
96
140
|
// @mixin hook-inverse-nav-dividers(){}
|
|
@@ -34,8 +34,6 @@ $navbar-dropdown-nav-font-size: $global-small-font-size !defaul
|
|
|
34
34
|
|
|
35
35
|
$navbar-dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15) !default;
|
|
36
36
|
|
|
37
|
-
$navbar-dropbar-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05) !default;
|
|
38
|
-
|
|
39
37
|
$navbar-dropdown-grid-divider-border-width: $global-border-width !default;
|
|
40
38
|
$navbar-dropdown-grid-divider-border: $navbar-dropdown-nav-divider-border !default;
|
|
41
39
|
|
|
@@ -106,8 +104,6 @@ $navbar-dropdown-grid-divider-border: $navbar-dropdown-nav-divider-bo
|
|
|
106
104
|
|
|
107
105
|
|
|
108
106
|
|
|
109
|
-
|
|
110
|
-
|
|
111
107
|
// Dropdown nav
|
|
112
108
|
// ========================================================================
|
|
113
109
|
|
|
@@ -127,7 +123,7 @@ $navbar-dropdown-grid-divider-border: $navbar-dropdown-nav-divider-bo
|
|
|
127
123
|
// Dropbar
|
|
128
124
|
// ========================================================================
|
|
129
125
|
|
|
130
|
-
|
|
126
|
+
// @mixin hook-navbar-dropbar(){}
|
|
131
127
|
|
|
132
128
|
|
|
133
129
|
// Miscellaneous
|
|
@@ -369,6 +369,16 @@ $drop-z-index: $global-z-index + 20 !default;
|
|
|
369
369
|
$drop-margin: $global-margin !default;
|
|
370
370
|
$drop-viewport-margin: 15px !default;
|
|
371
371
|
$drop-width: 300px !default;
|
|
372
|
+
$dropbar-margin: 0 !default;
|
|
373
|
+
$dropbar-z-index: $global-z-index + 20 !default;
|
|
374
|
+
$dropbar-padding-top: 25px !default;
|
|
375
|
+
$dropbar-padding-bottom: $dropbar-padding-top !default;
|
|
376
|
+
$dropbar-padding-horizontal: 15px !default;
|
|
377
|
+
$dropbar-padding-horizontal-s: $global-gutter !default;
|
|
378
|
+
$dropbar-padding-horizontal-m: $global-medium-gutter !default;
|
|
379
|
+
$dropbar-background: $global-background !default;
|
|
380
|
+
$dropbar-color: $global-color !default;
|
|
381
|
+
$dropbar-color-mode: none !default;
|
|
372
382
|
$dropdown-z-index: $global-z-index + 20 !default;
|
|
373
383
|
$dropdown-margin: $global-small-margin !default;
|
|
374
384
|
$dropdown-viewport-margin: 15px !default;
|
|
@@ -376,6 +386,7 @@ $dropdown-min-width: 200px !default;
|
|
|
376
386
|
$dropdown-padding: 25px !default;
|
|
377
387
|
$dropdown-background: $global-background !default;
|
|
378
388
|
$dropdown-color: $global-color !default;
|
|
389
|
+
$dropdown-color-mode: none !default;
|
|
379
390
|
$dropdown-large-padding: 40px !default;
|
|
380
391
|
$dropdown-nav-item-color: $global-muted-color !default;
|
|
381
392
|
$dropdown-nav-item-hover-color: $global-color !default;
|
|
@@ -716,6 +727,23 @@ $nav-primary-sublist-line-height: $global-line-height !default;
|
|
|
716
727
|
$nav-primary-sublist-item-color: $global-muted-color !default;
|
|
717
728
|
$nav-primary-sublist-item-hover-color: $global-color !default;
|
|
718
729
|
$nav-primary-sublist-item-active-color: $global-emphasis-color !default;
|
|
730
|
+
$nav-secondary-font-size: $global-font-size !default;
|
|
731
|
+
$nav-secondary-line-height: $global-line-height !default;
|
|
732
|
+
$nav-secondary-item-color: $global-emphasis-color !default;
|
|
733
|
+
$nav-secondary-item-hover-color: $global-emphasis-color !default;
|
|
734
|
+
$nav-secondary-item-active-color: $global-emphasis-color !default;
|
|
735
|
+
$nav-secondary-subtitle-font-size: $global-small-font-size !default;
|
|
736
|
+
$nav-secondary-subtitle-color: $global-muted-color !default;
|
|
737
|
+
$nav-secondary-subtitle-hover-color: $global-color !default;
|
|
738
|
+
$nav-secondary-subtitle-active-color: $global-emphasis-color !default;
|
|
739
|
+
$nav-secondary-header-color: $global-emphasis-color !default;
|
|
740
|
+
$nav-secondary-divider-border-width: $global-border-width !default;
|
|
741
|
+
$nav-secondary-divider-border: $global-border !default;
|
|
742
|
+
$nav-secondary-sublist-font-size: $global-small-font-size !default;
|
|
743
|
+
$nav-secondary-sublist-line-height: $global-line-height !default;
|
|
744
|
+
$nav-secondary-sublist-item-color: $global-muted-color !default;
|
|
745
|
+
$nav-secondary-sublist-item-hover-color: $global-color !default;
|
|
746
|
+
$nav-secondary-sublist-item-active-color: $global-emphasis-color !default;
|
|
719
747
|
$nav-dividers-margin-top: 5px !default;
|
|
720
748
|
$nav-dividers-border-width: $global-border-width !default;
|
|
721
749
|
$nav-dividers-border: $global-border !default;
|
|
@@ -735,6 +763,17 @@ $inverse-nav-primary-divider-border: $inverse-global-border !default;
|
|
|
735
763
|
$inverse-nav-primary-sublist-item-color: $inverse-global-muted-color !default;
|
|
736
764
|
$inverse-nav-primary-sublist-item-hover-color: $inverse-global-color !default;
|
|
737
765
|
$inverse-nav-primary-sublist-item-active-color: $inverse-global-emphasis-color !default;
|
|
766
|
+
$inverse-nav-secondary-item-color: $inverse-global-emphasis-color !default;
|
|
767
|
+
$inverse-nav-secondary-item-hover-color: $inverse-global-emphasis-color !default;
|
|
768
|
+
$inverse-nav-secondary-item-active-color: $inverse-global-emphasis-color !default;
|
|
769
|
+
$inverse-nav-secondary-subtitle-color: $inverse-global-muted-color !default;
|
|
770
|
+
$inverse-nav-secondary-subtitle-hover-color: $inverse-global-color !default;
|
|
771
|
+
$inverse-nav-secondary-subtitle-active-color: $inverse-global-emphasis-color !default;
|
|
772
|
+
$inverse-nav-secondary-header-color: $inverse-global-emphasis-color !default;
|
|
773
|
+
$inverse-nav-secondary-divider-border: $inverse-global-border !default;
|
|
774
|
+
$inverse-nav-secondary-sublist-item-color: $inverse-global-muted-color !default;
|
|
775
|
+
$inverse-nav-secondary-sublist-item-hover-color: $inverse-global-color !default;
|
|
776
|
+
$inverse-nav-secondary-sublist-item-active-color: $inverse-global-emphasis-color !default;
|
|
738
777
|
$inverse-nav-dividers-border: $inverse-global-border !default;
|
|
739
778
|
$navbar-background: $global-muted-background !default;
|
|
740
779
|
$navbar-gap: 30px !default;
|
|
@@ -767,12 +806,6 @@ $navbar-dropdown-grid-gutter-horizontal: ($navbar-dropdown-padding * 2) !default
|
|
|
767
806
|
$navbar-dropdown-grid-gutter-vertical: $navbar-dropdown-grid-gutter-horizontal !default;
|
|
768
807
|
$navbar-dropdown-large-shift-margin: 0 !default;
|
|
769
808
|
$navbar-dropdown-large-padding: 40px !default;
|
|
770
|
-
$navbar-dropdown-stretch-padding-top: 15px !default;
|
|
771
|
-
$navbar-dropdown-stretch-padding-bottom: $navbar-dropdown-stretch-padding-top !default;
|
|
772
|
-
$navbar-dropdown-stretch-padding-horizontal: 15px !default;
|
|
773
|
-
$navbar-dropdown-stretch-padding-horizontal-s: $global-gutter !default;
|
|
774
|
-
$navbar-dropdown-stretch-padding-horizontal-m: $global-medium-gutter !default;
|
|
775
|
-
$navbar-dropdown-stretch-background: $navbar-dropdown-background !default;
|
|
776
809
|
$navbar-dropdown-dropbar-padding-top: $navbar-dropdown-padding !default;
|
|
777
810
|
$navbar-dropdown-dropbar-padding-bottom: $navbar-dropdown-dropbar-padding-top !default;
|
|
778
811
|
$navbar-dropdown-dropbar-padding-horizontal: $navbar-nav-item-padding-horizontal !default;
|
|
@@ -789,7 +822,6 @@ $navbar-dropdown-nav-divider-border: $global-border !default;
|
|
|
789
822
|
$navbar-dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
790
823
|
$navbar-dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
791
824
|
$navbar-dropdown-nav-sublist-item-active-color: $global-emphasis-color !default;
|
|
792
|
-
$navbar-dropbar-background: $navbar-dropdown-background !default;
|
|
793
825
|
$navbar-dropbar-z-index: $global-z-index - 20 !default;
|
|
794
826
|
$inverse-navbar-nav-item-color: $inverse-global-muted-color !default;
|
|
795
827
|
$inverse-navbar-nav-item-hover-color: $inverse-global-color !default;
|
|
@@ -1154,9 +1186,12 @@ $dotnav-item-border: rgba($global-color, 0.4) !default;
|
|
|
1154
1186
|
$dotnav-item-hover-border: transparent !default;
|
|
1155
1187
|
$dotnav-item-onclick-border: transparent !default;
|
|
1156
1188
|
$dotnav-item-active-border: transparent !default;
|
|
1189
|
+
$dropbar-top-box-shadow: 0 12px 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
1190
|
+
$dropbar-bottom-box-shadow: 0 -12px 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
1191
|
+
$dropbar-left-box-shadow: 12px 0 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
1192
|
+
$dropbar-right-box-shadow: -12px 0 7px -6px rgba(0, 0, 0, 0.05) !default;
|
|
1157
1193
|
$dropdown-nav-font-size: $global-small-font-size !default;
|
|
1158
1194
|
$dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15) !default;
|
|
1159
|
-
$dropdown-stretch-background: $global-muted-background !default;
|
|
1160
1195
|
$form-range-thumb-border-width: $global-border-width !default;
|
|
1161
1196
|
$form-range-thumb-border: darken($global-border, 10%) !default;
|
|
1162
1197
|
$form-range-track-border-radius: 500px !default;
|
|
@@ -1186,10 +1221,16 @@ $modal-footer-border-width: $global-border-width !default;
|
|
|
1186
1221
|
$modal-footer-border: $global-border !default;
|
|
1187
1222
|
$modal-close-full-padding: $global-margin !default;
|
|
1188
1223
|
$modal-close-full-background: $modal-dialog-background !default;
|
|
1224
|
+
$nav-background-margin-top: 0 !default;
|
|
1225
|
+
$nav-background-item-padding-horizontal: 10px !default;
|
|
1226
|
+
$nav-background-item-padding-vertical: 10px !default;
|
|
1227
|
+
$nav-background-item-hover-background: $global-muted-background !default;
|
|
1228
|
+
$nav-background-item-active-background: $global-muted-background !default;
|
|
1229
|
+
$inverse-nav-background-item-hover-background: $inverse-global-muted-background !default;
|
|
1230
|
+
$inverse-nav-background-item-active-background: $inverse-global-muted-background !default;
|
|
1189
1231
|
$navbar-nav-item-text-transform: uppercase !default;
|
|
1190
1232
|
$navbar-dropdown-nav-font-size: $global-small-font-size !default;
|
|
1191
1233
|
$navbar-dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15) !default;
|
|
1192
|
-
$navbar-dropbar-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05) !default;
|
|
1193
1234
|
$navbar-dropdown-grid-divider-border-width: $global-border-width !default;
|
|
1194
1235
|
$navbar-dropdown-grid-divider-border: $navbar-dropdown-nav-divider-border !default;
|
|
1195
1236
|
$placeholder-border-width: $global-border-width !default;
|
package/src/scss/variables.scss
CHANGED
|
@@ -368,6 +368,16 @@ $drop-z-index: $global-z-index + 20 !default;
|
|
|
368
368
|
$drop-margin: $global-margin !default;
|
|
369
369
|
$drop-viewport-margin: 15px !default;
|
|
370
370
|
$drop-width: 300px !default;
|
|
371
|
+
$dropbar-margin: 0 !default;
|
|
372
|
+
$dropbar-z-index: $global-z-index + 20 !default;
|
|
373
|
+
$dropbar-padding-top: 15px !default;
|
|
374
|
+
$dropbar-padding-bottom: $dropbar-padding-top !default;
|
|
375
|
+
$dropbar-padding-horizontal: 15px !default;
|
|
376
|
+
$dropbar-padding-horizontal-s: $global-gutter !default;
|
|
377
|
+
$dropbar-padding-horizontal-m: $global-medium-gutter !default;
|
|
378
|
+
$dropbar-background: $global-muted-background !default;
|
|
379
|
+
$dropbar-color: $global-color !default;
|
|
380
|
+
$dropbar-color-mode: none !default;
|
|
371
381
|
$dropdown-z-index: $global-z-index + 20 !default;
|
|
372
382
|
$dropdown-margin: $global-small-margin !default;
|
|
373
383
|
$dropdown-viewport-margin: 15px !default;
|
|
@@ -375,6 +385,7 @@ $dropdown-min-width: 200px !default;
|
|
|
375
385
|
$dropdown-padding: 15px !default;
|
|
376
386
|
$dropdown-background: $global-muted-background !default;
|
|
377
387
|
$dropdown-color: $global-color !default;
|
|
388
|
+
$dropdown-color-mode: none !default;
|
|
378
389
|
$dropdown-large-padding: 40px !default;
|
|
379
390
|
$dropdown-nav-item-color: $global-muted-color !default;
|
|
380
391
|
$dropdown-nav-item-hover-color: $global-color !default;
|
|
@@ -714,6 +725,23 @@ $nav-primary-sublist-line-height: $global-line-height !default;
|
|
|
714
725
|
$nav-primary-sublist-item-color: $global-muted-color !default;
|
|
715
726
|
$nav-primary-sublist-item-hover-color: $global-color !default;
|
|
716
727
|
$nav-primary-sublist-item-active-color: $global-emphasis-color !default;
|
|
728
|
+
$nav-secondary-font-size: $global-font-size !default;
|
|
729
|
+
$nav-secondary-line-height: $global-line-height !default;
|
|
730
|
+
$nav-secondary-item-color: $global-emphasis-color !default;
|
|
731
|
+
$nav-secondary-item-hover-color: $global-emphasis-color !default;
|
|
732
|
+
$nav-secondary-item-active-color: $global-emphasis-color !default;
|
|
733
|
+
$nav-secondary-subtitle-font-size: $global-small-font-size !default;
|
|
734
|
+
$nav-secondary-subtitle-color: $global-muted-color !default;
|
|
735
|
+
$nav-secondary-subtitle-hover-color: $global-color !default;
|
|
736
|
+
$nav-secondary-subtitle-active-color: $global-emphasis-color !default;
|
|
737
|
+
$nav-secondary-header-color: $global-emphasis-color !default;
|
|
738
|
+
$nav-secondary-divider-border-width: $global-border-width !default;
|
|
739
|
+
$nav-secondary-divider-border: $global-border !default;
|
|
740
|
+
$nav-secondary-sublist-font-size: $global-small-font-size !default;
|
|
741
|
+
$nav-secondary-sublist-line-height: $global-line-height !default;
|
|
742
|
+
$nav-secondary-sublist-item-color: $global-muted-color !default;
|
|
743
|
+
$nav-secondary-sublist-item-hover-color: $global-color !default;
|
|
744
|
+
$nav-secondary-sublist-item-active-color: $global-emphasis-color !default;
|
|
717
745
|
$nav-dividers-margin-top: 5px !default;
|
|
718
746
|
$nav-dividers-border-width: $global-border-width !default;
|
|
719
747
|
$nav-dividers-border: $global-border !default;
|
|
@@ -733,6 +761,17 @@ $inverse-nav-primary-divider-border: $inverse-global-border !default;
|
|
|
733
761
|
$inverse-nav-primary-sublist-item-color: $inverse-global-muted-color !default;
|
|
734
762
|
$inverse-nav-primary-sublist-item-hover-color: $inverse-global-color !default;
|
|
735
763
|
$inverse-nav-primary-sublist-item-active-color: $inverse-global-emphasis-color !default;
|
|
764
|
+
$inverse-nav-secondary-item-color: $inverse-global-emphasis-color !default;
|
|
765
|
+
$inverse-nav-secondary-item-hover-color: $inverse-global-emphasis-color !default;
|
|
766
|
+
$inverse-nav-secondary-item-active-color: $inverse-global-emphasis-color !default;
|
|
767
|
+
$inverse-nav-secondary-subtitle-color: $inverse-global-muted-color !default;
|
|
768
|
+
$inverse-nav-secondary-subtitle-hover-color: $inverse-global-color !default;
|
|
769
|
+
$inverse-nav-secondary-subtitle-active-color: $inverse-global-emphasis-color !default;
|
|
770
|
+
$inverse-nav-secondary-header-color: $inverse-global-emphasis-color !default;
|
|
771
|
+
$inverse-nav-secondary-divider-border: $inverse-global-border !default;
|
|
772
|
+
$inverse-nav-secondary-sublist-item-color: $inverse-global-muted-color !default;
|
|
773
|
+
$inverse-nav-secondary-sublist-item-hover-color: $inverse-global-color !default;
|
|
774
|
+
$inverse-nav-secondary-sublist-item-active-color: $inverse-global-emphasis-color !default;
|
|
736
775
|
$inverse-nav-dividers-border: $inverse-global-border !default;
|
|
737
776
|
$navbar-background: $global-muted-background !default;
|
|
738
777
|
$navbar-gap: 0px !default;
|
|
@@ -765,12 +804,6 @@ $navbar-dropdown-grid-gutter-horizontal: $global-gutter !default;
|
|
|
765
804
|
$navbar-dropdown-grid-gutter-vertical: $navbar-dropdown-grid-gutter-horizontal !default;
|
|
766
805
|
$navbar-dropdown-large-shift-margin: 0 !default;
|
|
767
806
|
$navbar-dropdown-large-padding: 40px !default;
|
|
768
|
-
$navbar-dropdown-stretch-padding-top: 15px !default;
|
|
769
|
-
$navbar-dropdown-stretch-padding-bottom: $navbar-dropdown-stretch-padding-top !default;
|
|
770
|
-
$navbar-dropdown-stretch-padding-horizontal: 15px !default;
|
|
771
|
-
$navbar-dropdown-stretch-padding-horizontal-s: $global-gutter !default;
|
|
772
|
-
$navbar-dropdown-stretch-padding-horizontal-m: $global-medium-gutter !default;
|
|
773
|
-
$navbar-dropdown-stretch-background: $navbar-dropdown-background !default;
|
|
774
807
|
$navbar-dropdown-dropbar-padding-top: $navbar-dropdown-padding !default;
|
|
775
808
|
$navbar-dropdown-dropbar-padding-bottom: $navbar-dropdown-dropbar-padding-top !default;
|
|
776
809
|
$navbar-dropdown-dropbar-padding-horizontal: $navbar-nav-item-padding-horizontal !default;
|
|
@@ -787,7 +820,6 @@ $navbar-dropdown-nav-divider-border: $global-border !default;
|
|
|
787
820
|
$navbar-dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
788
821
|
$navbar-dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
789
822
|
$navbar-dropdown-nav-sublist-item-active-color: $global-emphasis-color !default;
|
|
790
|
-
$navbar-dropbar-background: $navbar-dropdown-background !default;
|
|
791
823
|
$navbar-dropbar-z-index: $global-z-index - 20 !default;
|
|
792
824
|
$inverse-navbar-nav-item-color: $inverse-global-muted-color !default;
|
|
793
825
|
$inverse-navbar-nav-item-hover-color: $inverse-global-color !default;
|
package/tests/accordion.html
CHANGED
|
@@ -189,9 +189,9 @@
|
|
|
189
189
|
</tr>
|
|
190
190
|
<tr>
|
|
191
191
|
<td><code>animation</code></td>
|
|
192
|
-
<td>
|
|
192
|
+
<td>Boolean</td>
|
|
193
193
|
<td>true</td>
|
|
194
|
-
<td>
|
|
194
|
+
<td>Space-separated names of animations. Comma-separated for animation out.</td>
|
|
195
195
|
</tr>
|
|
196
196
|
<tr>
|
|
197
197
|
<td><code>duration</code></td>
|
package/tests/alert.html
CHANGED
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
<tbody>
|
|
99
99
|
<tr>
|
|
100
100
|
<td><code>animation</code></td>
|
|
101
|
-
<td>Boolean
|
|
101
|
+
<td>Boolean</td>
|
|
102
102
|
<td>true</td>
|
|
103
|
-
<td>On close fade out
|
|
103
|
+
<td>On close fade out.</td>
|
|
104
104
|
</tr>
|
|
105
105
|
<tr>
|
|
106
106
|
<td><code>duration</code></td>
|
package/tests/countdown.html
CHANGED