uikit 3.16.25-dev.12f581d90 → 3.16.25-dev.eeed10ecc
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/build/scss.js +17 -7
- 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 +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 +3 -7
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +3 -7
- 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 +3 -7
- 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 +3 -7
- 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 +1 -1
- 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 +2 -2
- 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 +4 -8
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/mixin/slider-nav.js +3 -8
- 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/build/scss/inverse.scss +0 -30
package/src/scss/mixins.scss
CHANGED
|
@@ -876,6 +876,52 @@
|
|
|
876
876
|
}
|
|
877
877
|
|
|
878
878
|
}
|
|
879
|
+
@mixin hook-label(){}
|
|
880
|
+
@mixin hook-label-success(){}
|
|
881
|
+
@mixin hook-label-warning(){}
|
|
882
|
+
@mixin hook-label-danger(){}
|
|
883
|
+
@mixin hook-label-misc(){}
|
|
884
|
+
@mixin hook-inverse-label(){}
|
|
885
|
+
@mixin hook-inverse-component-label(){
|
|
886
|
+
|
|
887
|
+
.uk-label {
|
|
888
|
+
background-color: $inverse-label-background;
|
|
889
|
+
color: $inverse-label-color;
|
|
890
|
+
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
}
|
|
894
|
+
@mixin hook-leader(){}
|
|
895
|
+
@mixin hook-leader-misc(){}
|
|
896
|
+
@mixin hook-inverse-leader(){}
|
|
897
|
+
@mixin hook-inverse-component-leader(){
|
|
898
|
+
|
|
899
|
+
.uk-leader-fill::after {
|
|
900
|
+
@if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
}
|
|
904
|
+
@mixin hook-lightbox(){}
|
|
905
|
+
@mixin hook-lightbox-item(){}
|
|
906
|
+
@mixin hook-lightbox-toolbar(){}
|
|
907
|
+
@mixin hook-lightbox-toolbar-icon(){}
|
|
908
|
+
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
909
|
+
@mixin hook-lightbox-button(){}
|
|
910
|
+
@mixin hook-lightbox-button-hover(){}
|
|
911
|
+
@mixin hook-lightbox-button-active(){}
|
|
912
|
+
@mixin hook-lightbox-misc(){}
|
|
913
|
+
@mixin hook-link-muted(){}
|
|
914
|
+
@mixin hook-link-muted-hover(){}
|
|
915
|
+
@mixin hook-link-text(){}
|
|
916
|
+
@mixin hook-link-text-hover(){}
|
|
917
|
+
@mixin hook-link-heading(){}
|
|
918
|
+
@mixin hook-link-heading-hover(){}
|
|
919
|
+
@mixin hook-link-reset(){}
|
|
920
|
+
@mixin hook-link-misc(){}
|
|
921
|
+
@mixin hook-inverse-link-muted(){}
|
|
922
|
+
@mixin hook-inverse-link-muted-hover(){}
|
|
923
|
+
@mixin hook-inverse-link-text-hover(){}
|
|
924
|
+
@mixin hook-inverse-link-heading-hover(){}
|
|
879
925
|
@mixin hook-inverse-component-link(){
|
|
880
926
|
|
|
881
927
|
a.uk-link-muted,
|
|
@@ -906,6 +952,11 @@
|
|
|
906
952
|
}
|
|
907
953
|
|
|
908
954
|
}
|
|
955
|
+
@mixin hook-list-divider(){}
|
|
956
|
+
@mixin hook-list-striped(){}
|
|
957
|
+
@mixin hook-list-misc(){}
|
|
958
|
+
@mixin hook-inverse-list-divider(){}
|
|
959
|
+
@mixin hook-inverse-list-striped(){}
|
|
909
960
|
@mixin hook-inverse-component-list(){
|
|
910
961
|
|
|
911
962
|
.uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
|
|
@@ -929,97 +980,89 @@
|
|
|
929
980
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
930
981
|
|
|
931
982
|
}
|
|
932
|
-
@mixin hook-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
.uk-totop:hover {
|
|
940
|
-
color: $inverse-totop-hover-color;
|
|
941
|
-
@if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.uk-totop:active {
|
|
945
|
-
color: $inverse-totop-active-color;
|
|
946
|
-
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
}
|
|
950
|
-
@mixin hook-inverse-component-label(){
|
|
951
|
-
|
|
952
|
-
.uk-label {
|
|
953
|
-
background-color: $inverse-label-background;
|
|
954
|
-
color: $inverse-label-color;
|
|
955
|
-
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
}
|
|
959
|
-
@mixin hook-inverse-component-search(){
|
|
960
|
-
|
|
961
|
-
//
|
|
962
|
-
// Input
|
|
963
|
-
//
|
|
964
|
-
|
|
965
|
-
.uk-search-input { color: $inverse-search-color; }
|
|
966
|
-
|
|
967
|
-
.uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
|
|
968
|
-
|
|
969
|
-
//
|
|
970
|
-
// Icon
|
|
971
|
-
//
|
|
972
|
-
|
|
973
|
-
.uk-search .uk-search-icon { color: $inverse-search-icon-color; }
|
|
974
|
-
.uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
|
|
975
|
-
|
|
976
|
-
//
|
|
977
|
-
// Style modifier
|
|
978
|
-
//
|
|
979
|
-
|
|
980
|
-
.uk-search-default .uk-search-input {
|
|
981
|
-
background-color: $inverse-search-default-background;
|
|
982
|
-
@if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
.uk-search-default .uk-search-input:focus {
|
|
986
|
-
background-color: $inverse-search-default-focus-background;
|
|
987
|
-
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
988
|
-
}
|
|
989
|
-
|
|
990
|
-
.uk-search-navbar .uk-search-input {
|
|
991
|
-
background-color: $inverse-search-navbar-background;
|
|
992
|
-
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
.uk-search-navbar .uk-search-input:focus {
|
|
996
|
-
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
.uk-search-large .uk-search-input {
|
|
1000
|
-
background-color: $inverse-search-large-background;
|
|
1001
|
-
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
.uk-search-large .uk-search-input:focus {
|
|
1005
|
-
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
//
|
|
1009
|
-
// Toggle
|
|
1010
|
-
//
|
|
983
|
+
@mixin hook-margin-misc(){}
|
|
984
|
+
@mixin hook-marker(){}
|
|
985
|
+
@mixin hook-marker-hover(){}
|
|
986
|
+
@mixin hook-marker-misc(){}
|
|
987
|
+
@mixin hook-inverse-marker(){}
|
|
988
|
+
@mixin hook-inverse-marker-hover(){}
|
|
989
|
+
@mixin hook-inverse-component-marker(){
|
|
1011
990
|
|
|
1012
|
-
.uk-
|
|
1013
|
-
|
|
1014
|
-
|
|
991
|
+
.uk-marker {
|
|
992
|
+
background: $inverse-marker-background;
|
|
993
|
+
color: $inverse-marker-color;
|
|
994
|
+
@if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
|
|
1015
995
|
}
|
|
1016
996
|
|
|
1017
|
-
.uk-
|
|
1018
|
-
color: $inverse-
|
|
1019
|
-
@if(mixin-exists(hook-inverse-
|
|
997
|
+
.uk-marker:hover {
|
|
998
|
+
color: $inverse-marker-hover-color;
|
|
999
|
+
@if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
|
|
1020
1000
|
}
|
|
1021
1001
|
|
|
1022
1002
|
}
|
|
1003
|
+
@mixin hook-modal(){}
|
|
1004
|
+
@mixin hook-modal-dialog(){}
|
|
1005
|
+
@mixin hook-modal-full(){}
|
|
1006
|
+
@mixin hook-modal-body(){}
|
|
1007
|
+
@mixin hook-modal-header(){}
|
|
1008
|
+
@mixin hook-modal-footer(){}
|
|
1009
|
+
@mixin hook-modal-title(){}
|
|
1010
|
+
@mixin hook-modal-close(){}
|
|
1011
|
+
@mixin hook-modal-close-hover(){}
|
|
1012
|
+
@mixin hook-modal-close-default(){}
|
|
1013
|
+
@mixin hook-modal-close-default-hover(){}
|
|
1014
|
+
@mixin hook-modal-close-outside(){}
|
|
1015
|
+
@mixin hook-modal-close-outside-hover(){}
|
|
1016
|
+
@mixin hook-modal-close-full(){}
|
|
1017
|
+
@mixin hook-modal-close-full-hover(){}
|
|
1018
|
+
@mixin hook-modal-misc(){}
|
|
1019
|
+
@mixin hook-nav-sub(){}
|
|
1020
|
+
@mixin hook-nav-header(){}
|
|
1021
|
+
@mixin hook-nav-divider(){}
|
|
1022
|
+
@mixin hook-nav-default(){}
|
|
1023
|
+
@mixin hook-nav-default-item(){}
|
|
1024
|
+
@mixin hook-nav-default-item-hover(){}
|
|
1025
|
+
@mixin hook-nav-default-item-active(){}
|
|
1026
|
+
@mixin hook-nav-default-subtitle(){}
|
|
1027
|
+
@mixin hook-nav-default-header(){}
|
|
1028
|
+
@mixin hook-nav-default-divider(){}
|
|
1029
|
+
@mixin hook-nav-primary(){}
|
|
1030
|
+
@mixin hook-nav-primary-item(){}
|
|
1031
|
+
@mixin hook-nav-primary-item-hover(){}
|
|
1032
|
+
@mixin hook-nav-primary-item-active(){}
|
|
1033
|
+
@mixin hook-nav-primary-subtitle(){}
|
|
1034
|
+
@mixin hook-nav-primary-header(){}
|
|
1035
|
+
@mixin hook-nav-primary-divider(){}
|
|
1036
|
+
@mixin hook-nav-secondary(){}
|
|
1037
|
+
@mixin hook-nav-secondary-item(){}
|
|
1038
|
+
@mixin hook-nav-secondary-item-hover(){}
|
|
1039
|
+
@mixin hook-nav-secondary-item-active(){}
|
|
1040
|
+
@mixin hook-nav-secondary-subtitle(){}
|
|
1041
|
+
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
1042
|
+
@mixin hook-nav-secondary-subtitle-active(){}
|
|
1043
|
+
@mixin hook-nav-secondary-header(){}
|
|
1044
|
+
@mixin hook-nav-secondary-divider(){}
|
|
1045
|
+
@mixin hook-nav-dividers(){}
|
|
1046
|
+
@mixin hook-nav-misc(){}
|
|
1047
|
+
@mixin hook-inverse-nav-default-item(){}
|
|
1048
|
+
@mixin hook-inverse-nav-default-item-hover(){}
|
|
1049
|
+
@mixin hook-inverse-nav-default-item-active(){}
|
|
1050
|
+
@mixin hook-inverse-nav-default-header(){}
|
|
1051
|
+
@mixin hook-inverse-nav-default-divider(){}
|
|
1052
|
+
@mixin hook-inverse-nav-primary-item(){}
|
|
1053
|
+
@mixin hook-inverse-nav-primary-item-hover(){}
|
|
1054
|
+
@mixin hook-inverse-nav-primary-item-active(){}
|
|
1055
|
+
@mixin hook-inverse-nav-primary-header(){}
|
|
1056
|
+
@mixin hook-inverse-nav-primary-divider(){}
|
|
1057
|
+
@mixin hook-inverse-nav-secondary-item(){}
|
|
1058
|
+
@mixin hook-inverse-nav-secondary-item-hover(){}
|
|
1059
|
+
@mixin hook-inverse-nav-secondary-item-active(){}
|
|
1060
|
+
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
1061
|
+
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
1062
|
+
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
1063
|
+
@mixin hook-inverse-nav-secondary-header(){}
|
|
1064
|
+
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1065
|
+
@mixin hook-inverse-nav-dividers(){}
|
|
1023
1066
|
@mixin hook-inverse-component-nav(){
|
|
1024
1067
|
|
|
1025
1068
|
//
|
|
@@ -1152,6 +1195,41 @@
|
|
|
1152
1195
|
}
|
|
1153
1196
|
|
|
1154
1197
|
}
|
|
1198
|
+
@mixin hook-navbar(){}
|
|
1199
|
+
@mixin hook-navbar-container(){}
|
|
1200
|
+
@mixin hook-navbar-nav-item(){}
|
|
1201
|
+
@mixin hook-navbar-nav-item-hover(){}
|
|
1202
|
+
@mixin hook-navbar-nav-item-onclick(){}
|
|
1203
|
+
@mixin hook-navbar-nav-item-active(){}
|
|
1204
|
+
@mixin hook-navbar-item(){}
|
|
1205
|
+
@mixin hook-navbar-toggle(){}
|
|
1206
|
+
@mixin hook-navbar-toggle-hover(){}
|
|
1207
|
+
@mixin hook-navbar-toggle-icon(){}
|
|
1208
|
+
@mixin hook-navbar-toggle-icon-hover(){}
|
|
1209
|
+
@mixin hook-navbar-subtitle(){}
|
|
1210
|
+
@mixin hook-navbar-primary(){}
|
|
1211
|
+
@mixin hook-navbar-transparent(){}
|
|
1212
|
+
@mixin hook-navbar-sticky(){}
|
|
1213
|
+
@mixin hook-navbar-dropdown(){}
|
|
1214
|
+
@mixin hook-navbar-dropdown-large(){}
|
|
1215
|
+
@mixin hook-navbar-dropdown-dropbar(){}
|
|
1216
|
+
@mixin hook-navbar-dropdown-dropbar-large(){}
|
|
1217
|
+
@mixin hook-navbar-dropdown-nav(){}
|
|
1218
|
+
@mixin hook-navbar-dropdown-nav-item(){}
|
|
1219
|
+
@mixin hook-navbar-dropdown-nav-item-hover(){}
|
|
1220
|
+
@mixin hook-navbar-dropdown-nav-item-active(){}
|
|
1221
|
+
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
1222
|
+
@mixin hook-navbar-dropdown-nav-header(){}
|
|
1223
|
+
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
1224
|
+
@mixin hook-navbar-dropbar(){}
|
|
1225
|
+
@mixin hook-navbar-misc(){}
|
|
1226
|
+
@mixin hook-inverse-navbar-nav-item(){}
|
|
1227
|
+
@mixin hook-inverse-navbar-nav-item-hover(){}
|
|
1228
|
+
@mixin hook-inverse-navbar-nav-item-onclick(){}
|
|
1229
|
+
@mixin hook-inverse-navbar-nav-item-active(){}
|
|
1230
|
+
@mixin hook-inverse-navbar-item(){}
|
|
1231
|
+
@mixin hook-inverse-navbar-toggle(){}
|
|
1232
|
+
@mixin hook-inverse-navbar-toggle-hover(){}
|
|
1155
1233
|
@mixin hook-inverse-component-navbar(){
|
|
1156
1234
|
|
|
1157
1235
|
//
|
|
@@ -1204,368 +1282,6 @@
|
|
|
1204
1282
|
}
|
|
1205
1283
|
|
|
1206
1284
|
}
|
|
1207
|
-
@mixin hook-inverse-component-subnav(){
|
|
1208
|
-
|
|
1209
|
-
.uk-subnav > * > :first-child {
|
|
1210
|
-
color: $inverse-subnav-item-color;
|
|
1211
|
-
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
.uk-subnav > * > a:hover {
|
|
1215
|
-
color: $inverse-subnav-item-hover-color;
|
|
1216
|
-
@if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
.uk-subnav > .uk-active > a {
|
|
1220
|
-
color: $inverse-subnav-item-active-color;
|
|
1221
|
-
@if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
//
|
|
1225
|
-
// Divider
|
|
1226
|
-
//
|
|
1227
|
-
|
|
1228
|
-
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
|
|
1229
|
-
border-left-color: $inverse-subnav-divider-border;
|
|
1230
|
-
@if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
//
|
|
1234
|
-
// Pill
|
|
1235
|
-
//
|
|
1236
|
-
|
|
1237
|
-
.uk-subnav-pill > * > :first-child {
|
|
1238
|
-
background-color: $inverse-subnav-pill-item-background;
|
|
1239
|
-
color: $inverse-subnav-pill-item-color;
|
|
1240
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
.uk-subnav-pill > * > a:hover {
|
|
1244
|
-
background-color: $inverse-subnav-pill-item-hover-background;
|
|
1245
|
-
color: $inverse-subnav-pill-item-hover-color;
|
|
1246
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
.uk-subnav-pill > * > a:active {
|
|
1250
|
-
background-color: $inverse-subnav-pill-item-onclick-background;
|
|
1251
|
-
color: $inverse-subnav-pill-item-onclick-color;
|
|
1252
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
.uk-subnav-pill > .uk-active > a {
|
|
1256
|
-
background-color: $inverse-subnav-pill-item-active-background;
|
|
1257
|
-
color: $inverse-subnav-pill-item-active-color;
|
|
1258
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
//
|
|
1262
|
-
// Disabled
|
|
1263
|
-
//
|
|
1264
|
-
|
|
1265
|
-
.uk-subnav > .uk-disabled > a {
|
|
1266
|
-
color: $inverse-subnav-item-disabled-color;
|
|
1267
|
-
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
}
|
|
1271
|
-
@mixin hook-inverse-component-pagination(){
|
|
1272
|
-
|
|
1273
|
-
.uk-pagination > * > * {
|
|
1274
|
-
color: $inverse-pagination-item-color;
|
|
1275
|
-
@if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.uk-pagination > * > :hover {
|
|
1279
|
-
color: $inverse-pagination-item-hover-color;
|
|
1280
|
-
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.uk-pagination > .uk-active > * {
|
|
1284
|
-
color: $inverse-pagination-item-active-color;
|
|
1285
|
-
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
.uk-pagination > .uk-disabled > * {
|
|
1289
|
-
color: $inverse-pagination-item-disabled-color;
|
|
1290
|
-
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
}
|
|
1294
|
-
@mixin hook-inverse-component-tab(){
|
|
1295
|
-
|
|
1296
|
-
.uk-tab {
|
|
1297
|
-
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
.uk-tab > * > a {
|
|
1301
|
-
color: $inverse-tab-item-color;
|
|
1302
|
-
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
.uk-tab > * > a:hover {
|
|
1306
|
-
color: $inverse-tab-item-hover-color;
|
|
1307
|
-
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
.uk-tab > .uk-active > a {
|
|
1311
|
-
color: $inverse-tab-item-active-color;
|
|
1312
|
-
@if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
.uk-tab > .uk-disabled > a {
|
|
1316
|
-
color: $inverse-tab-item-disabled-color;
|
|
1317
|
-
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
}
|
|
1321
|
-
@mixin hook-inverse-component-slidenav(){
|
|
1322
|
-
|
|
1323
|
-
.uk-slidenav {
|
|
1324
|
-
color: $inverse-slidenav-color;
|
|
1325
|
-
@if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
.uk-slidenav:hover {
|
|
1329
|
-
color: $inverse-slidenav-hover-color;
|
|
1330
|
-
@if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
.uk-slidenav:active {
|
|
1334
|
-
color: $inverse-slidenav-active-color;
|
|
1335
|
-
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
}
|
|
1339
|
-
@mixin hook-inverse-component-text(){
|
|
1340
|
-
|
|
1341
|
-
.uk-text-lead {
|
|
1342
|
-
color: $inverse-text-lead-color;
|
|
1343
|
-
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
|
-
.uk-text-meta {
|
|
1347
|
-
color: $inverse-text-meta-color;
|
|
1348
|
-
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
.uk-text-muted { color: $inverse-text-muted-color !important; }
|
|
1352
|
-
.uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
|
|
1353
|
-
.uk-text-primary { color: $inverse-text-primary-color !important; }
|
|
1354
|
-
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
1355
|
-
|
|
1356
|
-
}
|
|
1357
|
-
@mixin hook-inverse-component-utility(){
|
|
1358
|
-
|
|
1359
|
-
.uk-dropcap::first-letter,
|
|
1360
|
-
.uk-dropcap p:first-of-type::first-letter {
|
|
1361
|
-
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
.uk-logo {
|
|
1365
|
-
color: $inverse-logo-color;
|
|
1366
|
-
@if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
.uk-logo:hover {
|
|
1370
|
-
color: $inverse-logo-hover-color;
|
|
1371
|
-
@if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
.uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
1375
|
-
.uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
|
|
1376
|
-
.uk-logo-inverse { display: block; }
|
|
1377
|
-
|
|
1378
|
-
}
|
|
1379
|
-
@mixin hook-inverse() {
|
|
1380
|
-
@include hook-inverse-component-base();
|
|
1381
|
-
@include hook-inverse-component-link();
|
|
1382
|
-
@include hook-inverse-component-heading();
|
|
1383
|
-
@include hook-inverse-component-divider();
|
|
1384
|
-
@include hook-inverse-component-list();
|
|
1385
|
-
@include hook-inverse-component-icon();
|
|
1386
|
-
@include hook-inverse-component-form();
|
|
1387
|
-
@include hook-inverse-component-button();
|
|
1388
|
-
@include hook-inverse-component-grid();
|
|
1389
|
-
@include hook-inverse-component-close();
|
|
1390
|
-
@include hook-inverse-component-totop();
|
|
1391
|
-
@include hook-inverse-component-badge();
|
|
1392
|
-
@include hook-inverse-component-label();
|
|
1393
|
-
@include hook-inverse-component-article();
|
|
1394
|
-
@include hook-inverse-component-search();
|
|
1395
|
-
@include hook-inverse-component-nav();
|
|
1396
|
-
@include hook-inverse-component-navbar();
|
|
1397
|
-
@include hook-inverse-component-subnav();
|
|
1398
|
-
@include hook-inverse-component-breadcrumb();
|
|
1399
|
-
@include hook-inverse-component-pagination();
|
|
1400
|
-
@include hook-inverse-component-tab();
|
|
1401
|
-
@include hook-inverse-component-slidenav();
|
|
1402
|
-
@include hook-inverse-component-dotnav();
|
|
1403
|
-
@include hook-inverse-component-accordion();
|
|
1404
|
-
@include hook-inverse-component-iconnav();
|
|
1405
|
-
@include hook-inverse-component-text();
|
|
1406
|
-
@include hook-inverse-component-column();
|
|
1407
|
-
@include hook-inverse-component-utility();
|
|
1408
|
-
}
|
|
1409
|
-
@mixin hook-label(){}
|
|
1410
|
-
@mixin hook-label-success(){}
|
|
1411
|
-
@mixin hook-label-warning(){}
|
|
1412
|
-
@mixin hook-label-danger(){}
|
|
1413
|
-
@mixin hook-label-misc(){}
|
|
1414
|
-
@mixin hook-inverse-label(){}
|
|
1415
|
-
@mixin hook-leader(){}
|
|
1416
|
-
@mixin hook-leader-misc(){}
|
|
1417
|
-
@mixin hook-inverse-leader(){}
|
|
1418
|
-
@mixin hook-inverse-component-leader(){
|
|
1419
|
-
|
|
1420
|
-
.uk-leader-fill::after {
|
|
1421
|
-
@if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
}
|
|
1425
|
-
@mixin hook-lightbox(){}
|
|
1426
|
-
@mixin hook-lightbox-item(){}
|
|
1427
|
-
@mixin hook-lightbox-toolbar(){}
|
|
1428
|
-
@mixin hook-lightbox-toolbar-icon(){}
|
|
1429
|
-
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
1430
|
-
@mixin hook-lightbox-button(){}
|
|
1431
|
-
@mixin hook-lightbox-button-hover(){}
|
|
1432
|
-
@mixin hook-lightbox-button-active(){}
|
|
1433
|
-
@mixin hook-lightbox-misc(){}
|
|
1434
|
-
@mixin hook-link-muted(){}
|
|
1435
|
-
@mixin hook-link-muted-hover(){}
|
|
1436
|
-
@mixin hook-link-text(){}
|
|
1437
|
-
@mixin hook-link-text-hover(){}
|
|
1438
|
-
@mixin hook-link-heading(){}
|
|
1439
|
-
@mixin hook-link-heading-hover(){}
|
|
1440
|
-
@mixin hook-link-reset(){}
|
|
1441
|
-
@mixin hook-link-misc(){}
|
|
1442
|
-
@mixin hook-inverse-link-muted(){}
|
|
1443
|
-
@mixin hook-inverse-link-muted-hover(){}
|
|
1444
|
-
@mixin hook-inverse-link-text-hover(){}
|
|
1445
|
-
@mixin hook-inverse-link-heading-hover(){}
|
|
1446
|
-
@mixin hook-list-divider(){}
|
|
1447
|
-
@mixin hook-list-striped(){}
|
|
1448
|
-
@mixin hook-list-misc(){}
|
|
1449
|
-
@mixin hook-inverse-list-divider(){}
|
|
1450
|
-
@mixin hook-inverse-list-striped(){}
|
|
1451
|
-
@mixin hook-margin-misc(){}
|
|
1452
|
-
@mixin hook-marker(){}
|
|
1453
|
-
@mixin hook-marker-hover(){}
|
|
1454
|
-
@mixin hook-marker-misc(){}
|
|
1455
|
-
@mixin hook-inverse-marker(){}
|
|
1456
|
-
@mixin hook-inverse-marker-hover(){}
|
|
1457
|
-
@mixin hook-inverse-component-marker(){
|
|
1458
|
-
|
|
1459
|
-
.uk-marker {
|
|
1460
|
-
background: $inverse-marker-background;
|
|
1461
|
-
color: $inverse-marker-color;
|
|
1462
|
-
@if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
|
|
1463
|
-
}
|
|
1464
|
-
|
|
1465
|
-
.uk-marker:hover {
|
|
1466
|
-
color: $inverse-marker-hover-color;
|
|
1467
|
-
@if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
}
|
|
1471
|
-
@mixin hook-modal(){}
|
|
1472
|
-
@mixin hook-modal-dialog(){}
|
|
1473
|
-
@mixin hook-modal-full(){}
|
|
1474
|
-
@mixin hook-modal-body(){}
|
|
1475
|
-
@mixin hook-modal-header(){}
|
|
1476
|
-
@mixin hook-modal-footer(){}
|
|
1477
|
-
@mixin hook-modal-title(){}
|
|
1478
|
-
@mixin hook-modal-close(){}
|
|
1479
|
-
@mixin hook-modal-close-hover(){}
|
|
1480
|
-
@mixin hook-modal-close-default(){}
|
|
1481
|
-
@mixin hook-modal-close-default-hover(){}
|
|
1482
|
-
@mixin hook-modal-close-outside(){}
|
|
1483
|
-
@mixin hook-modal-close-outside-hover(){}
|
|
1484
|
-
@mixin hook-modal-close-full(){}
|
|
1485
|
-
@mixin hook-modal-close-full-hover(){}
|
|
1486
|
-
@mixin hook-modal-misc(){}
|
|
1487
|
-
@mixin hook-nav-sub(){}
|
|
1488
|
-
@mixin hook-nav-header(){}
|
|
1489
|
-
@mixin hook-nav-divider(){}
|
|
1490
|
-
@mixin hook-nav-default(){}
|
|
1491
|
-
@mixin hook-nav-default-item(){}
|
|
1492
|
-
@mixin hook-nav-default-item-hover(){}
|
|
1493
|
-
@mixin hook-nav-default-item-active(){}
|
|
1494
|
-
@mixin hook-nav-default-subtitle(){}
|
|
1495
|
-
@mixin hook-nav-default-header(){}
|
|
1496
|
-
@mixin hook-nav-default-divider(){}
|
|
1497
|
-
@mixin hook-nav-primary(){}
|
|
1498
|
-
@mixin hook-nav-primary-item(){}
|
|
1499
|
-
@mixin hook-nav-primary-item-hover(){}
|
|
1500
|
-
@mixin hook-nav-primary-item-active(){}
|
|
1501
|
-
@mixin hook-nav-primary-subtitle(){}
|
|
1502
|
-
@mixin hook-nav-primary-header(){}
|
|
1503
|
-
@mixin hook-nav-primary-divider(){}
|
|
1504
|
-
@mixin hook-nav-secondary(){}
|
|
1505
|
-
@mixin hook-nav-secondary-item(){}
|
|
1506
|
-
@mixin hook-nav-secondary-item-hover(){}
|
|
1507
|
-
@mixin hook-nav-secondary-item-active(){}
|
|
1508
|
-
@mixin hook-nav-secondary-subtitle(){}
|
|
1509
|
-
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
1510
|
-
@mixin hook-nav-secondary-subtitle-active(){}
|
|
1511
|
-
@mixin hook-nav-secondary-header(){}
|
|
1512
|
-
@mixin hook-nav-secondary-divider(){}
|
|
1513
|
-
@mixin hook-nav-dividers(){}
|
|
1514
|
-
@mixin hook-nav-misc(){}
|
|
1515
|
-
@mixin hook-inverse-nav-default-item(){}
|
|
1516
|
-
@mixin hook-inverse-nav-default-item-hover(){}
|
|
1517
|
-
@mixin hook-inverse-nav-default-item-active(){}
|
|
1518
|
-
@mixin hook-inverse-nav-default-header(){}
|
|
1519
|
-
@mixin hook-inverse-nav-default-divider(){}
|
|
1520
|
-
@mixin hook-inverse-nav-primary-item(){}
|
|
1521
|
-
@mixin hook-inverse-nav-primary-item-hover(){}
|
|
1522
|
-
@mixin hook-inverse-nav-primary-item-active(){}
|
|
1523
|
-
@mixin hook-inverse-nav-primary-header(){}
|
|
1524
|
-
@mixin hook-inverse-nav-primary-divider(){}
|
|
1525
|
-
@mixin hook-inverse-nav-secondary-item(){}
|
|
1526
|
-
@mixin hook-inverse-nav-secondary-item-hover(){}
|
|
1527
|
-
@mixin hook-inverse-nav-secondary-item-active(){}
|
|
1528
|
-
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
1529
|
-
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
1530
|
-
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
1531
|
-
@mixin hook-inverse-nav-secondary-header(){}
|
|
1532
|
-
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1533
|
-
@mixin hook-inverse-nav-dividers(){}
|
|
1534
|
-
@mixin hook-navbar(){}
|
|
1535
|
-
@mixin hook-navbar-container(){}
|
|
1536
|
-
@mixin hook-navbar-nav-item(){}
|
|
1537
|
-
@mixin hook-navbar-nav-item-hover(){}
|
|
1538
|
-
@mixin hook-navbar-nav-item-onclick(){}
|
|
1539
|
-
@mixin hook-navbar-nav-item-active(){}
|
|
1540
|
-
@mixin hook-navbar-item(){}
|
|
1541
|
-
@mixin hook-navbar-toggle(){}
|
|
1542
|
-
@mixin hook-navbar-toggle-hover(){}
|
|
1543
|
-
@mixin hook-navbar-toggle-icon(){}
|
|
1544
|
-
@mixin hook-navbar-toggle-icon-hover(){}
|
|
1545
|
-
@mixin hook-navbar-subtitle(){}
|
|
1546
|
-
@mixin hook-navbar-primary(){}
|
|
1547
|
-
@mixin hook-navbar-transparent(){}
|
|
1548
|
-
@mixin hook-navbar-sticky(){}
|
|
1549
|
-
@mixin hook-navbar-dropdown(){}
|
|
1550
|
-
@mixin hook-navbar-dropdown-large(){}
|
|
1551
|
-
@mixin hook-navbar-dropdown-dropbar(){}
|
|
1552
|
-
@mixin hook-navbar-dropdown-dropbar-large(){}
|
|
1553
|
-
@mixin hook-navbar-dropdown-nav(){}
|
|
1554
|
-
@mixin hook-navbar-dropdown-nav-item(){}
|
|
1555
|
-
@mixin hook-navbar-dropdown-nav-item-hover(){}
|
|
1556
|
-
@mixin hook-navbar-dropdown-nav-item-active(){}
|
|
1557
|
-
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
1558
|
-
@mixin hook-navbar-dropdown-nav-header(){}
|
|
1559
|
-
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
1560
|
-
@mixin hook-navbar-dropbar(){}
|
|
1561
|
-
@mixin hook-navbar-misc(){}
|
|
1562
|
-
@mixin hook-inverse-navbar-nav-item(){}
|
|
1563
|
-
@mixin hook-inverse-navbar-nav-item-hover(){}
|
|
1564
|
-
@mixin hook-inverse-navbar-nav-item-onclick(){}
|
|
1565
|
-
@mixin hook-inverse-navbar-nav-item-active(){}
|
|
1566
|
-
@mixin hook-inverse-navbar-item(){}
|
|
1567
|
-
@mixin hook-inverse-navbar-toggle(){}
|
|
1568
|
-
@mixin hook-inverse-navbar-toggle-hover(){}
|
|
1569
1285
|
@mixin hook-notification(){}
|
|
1570
1286
|
@mixin hook-notification-message(){}
|
|
1571
1287
|
@mixin hook-notification-close(){}
|
|
@@ -1594,6 +1310,29 @@
|
|
|
1594
1310
|
@mixin hook-inverse-pagination-item-hover(){}
|
|
1595
1311
|
@mixin hook-inverse-pagination-item-active(){}
|
|
1596
1312
|
@mixin hook-inverse-pagination-item-disabled(){}
|
|
1313
|
+
@mixin hook-inverse-component-pagination(){
|
|
1314
|
+
|
|
1315
|
+
.uk-pagination > * > * {
|
|
1316
|
+
color: $inverse-pagination-item-color;
|
|
1317
|
+
@if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.uk-pagination > * > :hover {
|
|
1321
|
+
color: $inverse-pagination-item-hover-color;
|
|
1322
|
+
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.uk-pagination > .uk-active > * {
|
|
1326
|
+
color: $inverse-pagination-item-active-color;
|
|
1327
|
+
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.uk-pagination > .uk-disabled > * {
|
|
1331
|
+
color: $inverse-pagination-item-disabled-color;
|
|
1332
|
+
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
}
|
|
1597
1336
|
@mixin hook-placeholder(){}
|
|
1598
1337
|
@mixin hook-placeholder-misc(){}
|
|
1599
1338
|
@mixin hook-position-misc(){}
|
|
@@ -1620,6 +1359,70 @@
|
|
|
1620
1359
|
@mixin hook-inverse-search-large-input-focus(){}
|
|
1621
1360
|
@mixin hook-inverse-search-toggle(){}
|
|
1622
1361
|
@mixin hook-inverse-search-toggle-hover(){}
|
|
1362
|
+
@mixin hook-inverse-component-search(){
|
|
1363
|
+
|
|
1364
|
+
//
|
|
1365
|
+
// Input
|
|
1366
|
+
//
|
|
1367
|
+
|
|
1368
|
+
.uk-search-input { color: $inverse-search-color; }
|
|
1369
|
+
|
|
1370
|
+
.uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
|
|
1371
|
+
|
|
1372
|
+
//
|
|
1373
|
+
// Icon
|
|
1374
|
+
//
|
|
1375
|
+
|
|
1376
|
+
.uk-search .uk-search-icon { color: $inverse-search-icon-color; }
|
|
1377
|
+
.uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
|
|
1378
|
+
|
|
1379
|
+
//
|
|
1380
|
+
// Style modifier
|
|
1381
|
+
//
|
|
1382
|
+
|
|
1383
|
+
.uk-search-default .uk-search-input {
|
|
1384
|
+
background-color: $inverse-search-default-background;
|
|
1385
|
+
@if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.uk-search-default .uk-search-input:focus {
|
|
1389
|
+
background-color: $inverse-search-default-focus-background;
|
|
1390
|
+
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.uk-search-navbar .uk-search-input {
|
|
1394
|
+
background-color: $inverse-search-navbar-background;
|
|
1395
|
+
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
.uk-search-navbar .uk-search-input:focus {
|
|
1399
|
+
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.uk-search-large .uk-search-input {
|
|
1403
|
+
background-color: $inverse-search-large-background;
|
|
1404
|
+
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
.uk-search-large .uk-search-input:focus {
|
|
1408
|
+
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
//
|
|
1412
|
+
// Toggle
|
|
1413
|
+
//
|
|
1414
|
+
|
|
1415
|
+
.uk-search-toggle {
|
|
1416
|
+
color: $inverse-search-toggle-color;
|
|
1417
|
+
@if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
.uk-search-toggle:hover {
|
|
1421
|
+
color: $inverse-search-toggle-hover-color;
|
|
1422
|
+
@if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
}
|
|
1623
1426
|
@mixin hook-section(){}
|
|
1624
1427
|
@mixin hook-section-default(){}
|
|
1625
1428
|
@mixin hook-section-muted(){}
|
|
@@ -1638,6 +1441,24 @@
|
|
|
1638
1441
|
@mixin hook-inverse-slidenav(){}
|
|
1639
1442
|
@mixin hook-inverse-slidenav-hover(){}
|
|
1640
1443
|
@mixin hook-inverse-slidenav-active(){}
|
|
1444
|
+
@mixin hook-inverse-component-slidenav(){
|
|
1445
|
+
|
|
1446
|
+
.uk-slidenav {
|
|
1447
|
+
color: $inverse-slidenav-color;
|
|
1448
|
+
@if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
.uk-slidenav:hover {
|
|
1452
|
+
color: $inverse-slidenav-hover-color;
|
|
1453
|
+
@if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.uk-slidenav:active {
|
|
1457
|
+
color: $inverse-slidenav-active-color;
|
|
1458
|
+
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
}
|
|
1641
1462
|
@mixin hook-slider(){}
|
|
1642
1463
|
@mixin hook-slider-misc(){}
|
|
1643
1464
|
@mixin hook-slideshow(){}
|
|
@@ -1670,6 +1491,70 @@
|
|
|
1670
1491
|
@mixin hook-inverse-subnav-pill-item-onclick(){}
|
|
1671
1492
|
@mixin hook-inverse-subnav-pill-item-active(){}
|
|
1672
1493
|
@mixin hook-inverse-subnav-item-disabled(){}
|
|
1494
|
+
@mixin hook-inverse-component-subnav(){
|
|
1495
|
+
|
|
1496
|
+
.uk-subnav > * > :first-child {
|
|
1497
|
+
color: $inverse-subnav-item-color;
|
|
1498
|
+
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.uk-subnav > * > a:hover {
|
|
1502
|
+
color: $inverse-subnav-item-hover-color;
|
|
1503
|
+
@if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.uk-subnav > .uk-active > a {
|
|
1507
|
+
color: $inverse-subnav-item-active-color;
|
|
1508
|
+
@if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
//
|
|
1512
|
+
// Divider
|
|
1513
|
+
//
|
|
1514
|
+
|
|
1515
|
+
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
|
|
1516
|
+
border-left-color: $inverse-subnav-divider-border;
|
|
1517
|
+
@if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
//
|
|
1521
|
+
// Pill
|
|
1522
|
+
//
|
|
1523
|
+
|
|
1524
|
+
.uk-subnav-pill > * > :first-child {
|
|
1525
|
+
background-color: $inverse-subnav-pill-item-background;
|
|
1526
|
+
color: $inverse-subnav-pill-item-color;
|
|
1527
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
.uk-subnav-pill > * > a:hover {
|
|
1531
|
+
background-color: $inverse-subnav-pill-item-hover-background;
|
|
1532
|
+
color: $inverse-subnav-pill-item-hover-color;
|
|
1533
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.uk-subnav-pill > * > a:active {
|
|
1537
|
+
background-color: $inverse-subnav-pill-item-onclick-background;
|
|
1538
|
+
color: $inverse-subnav-pill-item-onclick-color;
|
|
1539
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
.uk-subnav-pill > .uk-active > a {
|
|
1543
|
+
background-color: $inverse-subnav-pill-item-active-background;
|
|
1544
|
+
color: $inverse-subnav-pill-item-active-color;
|
|
1545
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
//
|
|
1549
|
+
// Disabled
|
|
1550
|
+
//
|
|
1551
|
+
|
|
1552
|
+
.uk-subnav > .uk-disabled > a {
|
|
1553
|
+
color: $inverse-subnav-item-disabled-color;
|
|
1554
|
+
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
}
|
|
1673
1558
|
@mixin hook-svg-misc(){}
|
|
1674
1559
|
@mixin hook-switcher-misc(){}
|
|
1675
1560
|
@mixin hook-tab(){}
|
|
@@ -1689,6 +1574,33 @@
|
|
|
1689
1574
|
@mixin hook-inverse-tab-item-hover(){}
|
|
1690
1575
|
@mixin hook-inverse-tab-item-active(){}
|
|
1691
1576
|
@mixin hook-inverse-tab-item-disabled(){}
|
|
1577
|
+
@mixin hook-inverse-component-tab(){
|
|
1578
|
+
|
|
1579
|
+
.uk-tab {
|
|
1580
|
+
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.uk-tab > * > a {
|
|
1584
|
+
color: $inverse-tab-item-color;
|
|
1585
|
+
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.uk-tab > * > a:hover {
|
|
1589
|
+
color: $inverse-tab-item-hover-color;
|
|
1590
|
+
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.uk-tab > .uk-active > a {
|
|
1594
|
+
color: $inverse-tab-item-active-color;
|
|
1595
|
+
@if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
.uk-tab > .uk-disabled > a {
|
|
1599
|
+
color: $inverse-tab-item-disabled-color;
|
|
1600
|
+
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
}
|
|
1692
1604
|
@mixin hook-table(){}
|
|
1693
1605
|
@mixin hook-table-header-cell(){}
|
|
1694
1606
|
@mixin hook-table-cell(){}
|
|
@@ -1753,6 +1665,24 @@
|
|
|
1753
1665
|
@mixin hook-text-misc(){}
|
|
1754
1666
|
@mixin hook-inverse-text-lead(){}
|
|
1755
1667
|
@mixin hook-inverse-text-meta(){}
|
|
1668
|
+
@mixin hook-inverse-component-text(){
|
|
1669
|
+
|
|
1670
|
+
.uk-text-lead {
|
|
1671
|
+
color: $inverse-text-lead-color;
|
|
1672
|
+
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
.uk-text-meta {
|
|
1676
|
+
color: $inverse-text-meta-color;
|
|
1677
|
+
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.uk-text-muted { color: $inverse-text-muted-color !important; }
|
|
1681
|
+
.uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
|
|
1682
|
+
.uk-text-primary { color: $inverse-text-primary-color !important; }
|
|
1683
|
+
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
1684
|
+
|
|
1685
|
+
}
|
|
1756
1686
|
@mixin hook-thumbnav(){}
|
|
1757
1687
|
@mixin hook-thumbnav-item(){}
|
|
1758
1688
|
@mixin hook-thumbnav-item-hover(){}
|
|
@@ -1795,6 +1725,24 @@
|
|
|
1795
1725
|
@mixin hook-inverse-totop(){}
|
|
1796
1726
|
@mixin hook-inverse-totop-hover(){}
|
|
1797
1727
|
@mixin hook-inverse-totop-active(){}
|
|
1728
|
+
@mixin hook-inverse-component-totop(){
|
|
1729
|
+
|
|
1730
|
+
.uk-totop {
|
|
1731
|
+
color: $inverse-totop-color;
|
|
1732
|
+
@if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.uk-totop:hover {
|
|
1736
|
+
color: $inverse-totop-hover-color;
|
|
1737
|
+
@if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
.uk-totop:active {
|
|
1741
|
+
color: $inverse-totop-active-color;
|
|
1742
|
+
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
}
|
|
1798
1746
|
@mixin hook-transition-misc(){}
|
|
1799
1747
|
@mixin hook-panel-scrollable(){}
|
|
1800
1748
|
@mixin hook-box-shadow-bottom(){}
|
|
@@ -1805,5 +1753,65 @@
|
|
|
1805
1753
|
@mixin hook-inverse-dropcap(){}
|
|
1806
1754
|
@mixin hook-inverse-logo(){}
|
|
1807
1755
|
@mixin hook-inverse-logo-hover(){}
|
|
1756
|
+
@mixin hook-inverse-component-utility(){
|
|
1757
|
+
|
|
1758
|
+
.uk-dropcap::first-letter,
|
|
1759
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
1760
|
+
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.uk-logo {
|
|
1764
|
+
color: $inverse-logo-color;
|
|
1765
|
+
@if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.uk-logo:hover {
|
|
1769
|
+
color: $inverse-logo-hover-color;
|
|
1770
|
+
@if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
.uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
1774
|
+
.uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
|
|
1775
|
+
.uk-logo-inverse { display: block; }
|
|
1776
|
+
|
|
1777
|
+
}
|
|
1808
1778
|
@mixin hook-visibility-misc(){}
|
|
1809
|
-
@mixin hook-width-misc(){}
|
|
1779
|
+
@mixin hook-width-misc(){}
|
|
1780
|
+
@mixin hook-inverse() {
|
|
1781
|
+
@include hook-inverse-component-accordion();
|
|
1782
|
+
@include hook-inverse-component-article();
|
|
1783
|
+
@include hook-inverse-component-badge();
|
|
1784
|
+
@include hook-inverse-component-base();
|
|
1785
|
+
@include hook-inverse-component-breadcrumb();
|
|
1786
|
+
@include hook-inverse-component-button();
|
|
1787
|
+
@include hook-inverse-component-card();
|
|
1788
|
+
@include hook-inverse-component-close();
|
|
1789
|
+
@include hook-inverse-component-column();
|
|
1790
|
+
@include hook-inverse-component-countdown();
|
|
1791
|
+
@include hook-inverse-component-divider();
|
|
1792
|
+
@include hook-inverse-component-dotnav();
|
|
1793
|
+
@include hook-inverse-component-form();
|
|
1794
|
+
@include hook-inverse-component-grid();
|
|
1795
|
+
@include hook-inverse-component-heading();
|
|
1796
|
+
@include hook-inverse-component-icon();
|
|
1797
|
+
@include hook-inverse-component-iconnav();
|
|
1798
|
+
@include hook-inverse-component-label();
|
|
1799
|
+
@include hook-inverse-component-leader();
|
|
1800
|
+
@include hook-inverse-component-link();
|
|
1801
|
+
@include hook-inverse-component-list();
|
|
1802
|
+
@include hook-inverse-component-marker();
|
|
1803
|
+
@include hook-inverse-component-nav();
|
|
1804
|
+
@include hook-inverse-component-navbar();
|
|
1805
|
+
@include hook-inverse-component-pagination();
|
|
1806
|
+
@include hook-inverse-component-search();
|
|
1807
|
+
@include hook-inverse-component-slidenav();
|
|
1808
|
+
@include hook-inverse-component-subnav();
|
|
1809
|
+
@include hook-inverse-component-tab();
|
|
1810
|
+
@include hook-inverse-component-table();
|
|
1811
|
+
@include hook-inverse-component-text();
|
|
1812
|
+
@include hook-inverse-component-thumbnav();
|
|
1813
|
+
@include hook-inverse-component-totop();
|
|
1814
|
+
@include hook-inverse-component-utility();
|
|
1815
|
+
@include hook-inverse-component-accordion();
|
|
1816
|
+
@include hook-inverse-component-table();
|
|
1817
|
+
}
|