uikit 3.16.4-dev.fd2458e3b → 3.16.5-dev.dda1f1b31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +1 -0
- package/CHANGELOG.md +9 -1
- package/build/build.js +5 -4
- package/build/icons.js +2 -1
- package/build/less.js +2 -11
- package/build/prefix.js +2 -1
- package/build/release.js +4 -3
- package/build/scope.js +2 -1
- package/build/scss.js +2 -1
- package/build/util.js +3 -3
- package/dist/css/uikit-core-rtl.css +1 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +1 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +1 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +1 -1
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +12 -14
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +506 -22
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +2601 -310
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +2612 -323
- 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 +466 -43
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +184 -2
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +2345 -49
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +184 -2
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +2339 -49
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +472 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +2298 -11
- 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 +951 -931
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +153 -152
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +979 -954
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/images/icons/mastodon.svg +3 -0
- package/src/js/api/app.js +12 -0
- package/src/js/api/boot.js +64 -43
- package/src/js/api/component.js +60 -61
- package/src/js/api/computed.js +39 -0
- package/src/js/api/events.js +45 -0
- package/src/js/api/global.js +58 -56
- package/src/js/api/hooks.js +35 -114
- package/src/js/api/index.js +8 -24
- package/src/js/api/instance.js +55 -55
- package/src/js/api/log.js +10 -0
- package/src/js/api/observables.js +125 -0
- package/src/js/api/observer.js +76 -0
- package/src/js/{util → api}/options.js +38 -1
- package/src/js/api/props.js +102 -0
- package/src/js/api/state.js +26 -280
- package/src/js/api/update.js +77 -0
- package/src/js/api/watch.js +34 -0
- package/src/js/components/countdown.js +14 -16
- package/src/js/components/filter.js +18 -24
- package/src/js/components/internal/slider-preload.js +5 -6
- package/src/js/components/lightbox-panel.js +1 -1
- package/src/js/components/lightbox.js +11 -23
- package/src/js/components/parallax.js +8 -6
- package/src/js/components/slider.js +10 -0
- package/src/js/components/tooltip.js +2 -1
- package/src/js/core/accordion.js +5 -6
- package/src/js/core/cover.js +9 -9
- package/src/js/core/drop.js +13 -6
- package/src/js/core/dropnav.js +1 -1
- package/src/js/core/grid.js +2 -5
- package/src/js/core/height-match.js +9 -16
- package/src/js/core/height-viewport.js +5 -7
- package/src/js/core/img.js +12 -19
- package/src/js/core/leader.js +4 -2
- package/src/js/core/margin.js +11 -21
- package/src/js/core/modal.js +1 -1
- package/src/js/core/offcanvas.js +6 -2
- package/src/js/core/overflow-auto.js +5 -5
- package/src/js/core/responsive.js +5 -7
- package/src/js/core/scroll.js +19 -10
- package/src/js/core/scrollspy-nav.js +6 -5
- package/src/js/core/scrollspy.js +27 -36
- package/src/js/core/sticky.js +12 -10
- package/src/js/core/svg.js +4 -2
- package/src/js/core/switcher.js +11 -9
- package/src/js/core/toggle.js +4 -4
- package/src/js/core/video.js +6 -14
- package/src/js/mixin/modal.js +2 -1
- package/src/js/mixin/parallax.js +1 -1
- package/src/js/mixin/slider-nav.js +2 -1
- package/src/js/mixin/slider.js +9 -3
- package/src/js/util/filter.js +13 -0
- package/src/js/util/index.js +0 -1
- package/src/js/util/keys.js +11 -0
- package/src/js/util/lang.js +7 -7
- package/src/js/util/observer.js +4 -2
- package/src/js/util/scroll.js +42 -0
- package/src/js/util/svg.js +16 -0
- package/src/js/util/viewport.js +1 -1
- package/src/scss/mixins-theme.scss +1640 -1596
- package/src/scss/mixins.scss +1370 -1370
- package/src/scss/variables-theme.scss +1255 -1255
- package/src/scss/variables.scss +1113 -1113
- package/src/js/mixin/lazyload.js +0 -27
- package/src/js/mixin/resize.js +0 -11
- package/src/js/mixin/scroll.js +0 -32
- package/src/js/mixin/swipe.js +0 -72
- package/src/js/mixin/utils.js +0 -91
package/src/scss/mixins.scss
CHANGED
|
@@ -1,922 +1,815 @@
|
|
|
1
|
-
@mixin
|
|
2
|
-
@mixin hook-accordion-item(){}
|
|
3
|
-
@mixin hook-accordion-title(){}
|
|
4
|
-
@mixin hook-accordion-title-hover(){}
|
|
5
|
-
@mixin hook-accordion-content(){}
|
|
6
|
-
@mixin hook-accordion-misc(){}
|
|
7
|
-
@mixin hook-inverse-accordion-item(){}
|
|
8
|
-
@mixin hook-inverse-accordion-title(){}
|
|
9
|
-
@mixin hook-inverse-accordion-title-hover(){}
|
|
10
|
-
@mixin hook-inverse-component-accordion(){
|
|
11
|
-
|
|
12
|
-
.uk-accordion > :nth-child(n+2) {
|
|
13
|
-
@if(mixin-exists(hook-inverse-accordion-item)) {@include hook-inverse-accordion-item();}
|
|
14
|
-
}
|
|
1
|
+
@mixin svg-fill($src, $color-default, $color-new, $property: background-image){
|
|
15
2
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
@if(mixin-exists(hook-inverse-accordion-title)) {@include hook-inverse-accordion-title();}
|
|
19
|
-
}
|
|
3
|
+
$escape-color-default: escape($color-default) !default;
|
|
4
|
+
$escape-color-new: escape("#{$color-new}") !default;
|
|
20
5
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
@if(mixin-exists(hook-inverse-accordion-title-hover)) {@include hook-inverse-accordion-title-hover();}
|
|
24
|
-
}
|
|
6
|
+
$data-uri: data-uri('image/svg+xml;charset=UTF-8', "#{$src}") !default;
|
|
7
|
+
$replace-src: replace("#{$data-uri}", "#{$escape-color-default}", "#{$escape-color-new}", "g") !default;
|
|
25
8
|
|
|
9
|
+
#{$property}: unquote($replace-src);
|
|
26
10
|
}
|
|
27
|
-
@mixin hook-
|
|
28
|
-
@mixin hook-
|
|
29
|
-
@mixin hook-
|
|
30
|
-
@mixin hook-
|
|
31
|
-
@mixin hook-
|
|
32
|
-
@mixin hook-
|
|
33
|
-
@mixin hook-
|
|
34
|
-
@mixin hook-
|
|
35
|
-
@mixin hook-
|
|
36
|
-
@mixin hook-
|
|
37
|
-
@mixin hook-
|
|
38
|
-
@mixin hook-
|
|
39
|
-
@mixin hook-article-title(){}
|
|
40
|
-
@mixin hook-article-meta(){}
|
|
41
|
-
@mixin hook-article-misc(){}
|
|
42
|
-
@mixin hook-inverse-article-title(){}
|
|
43
|
-
@mixin hook-inverse-article-meta(){}
|
|
44
|
-
@mixin hook-inverse-component-article(){
|
|
11
|
+
@mixin hook-width-misc(){}
|
|
12
|
+
@mixin hook-visibility-misc(){}
|
|
13
|
+
@mixin hook-panel-scrollable(){}
|
|
14
|
+
@mixin hook-box-shadow-bottom(){}
|
|
15
|
+
@mixin hook-dropcap(){}
|
|
16
|
+
@mixin hook-logo(){}
|
|
17
|
+
@mixin hook-logo-hover(){}
|
|
18
|
+
@mixin hook-utility-misc(){}
|
|
19
|
+
@mixin hook-inverse-dropcap(){}
|
|
20
|
+
@mixin hook-inverse-logo(){}
|
|
21
|
+
@mixin hook-inverse-logo-hover(){}
|
|
22
|
+
@mixin hook-inverse-component-utility(){
|
|
45
23
|
|
|
46
|
-
.uk-
|
|
47
|
-
|
|
24
|
+
.uk-dropcap::first-letter,
|
|
25
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
26
|
+
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
48
27
|
}
|
|
49
28
|
|
|
50
|
-
.uk-
|
|
51
|
-
color: $inverse-
|
|
52
|
-
@if(mixin-exists(hook-inverse-
|
|
29
|
+
.uk-logo {
|
|
30
|
+
color: $inverse-logo-color;
|
|
31
|
+
@if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
53
32
|
}
|
|
54
33
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
@mixin hook-
|
|
58
|
-
@mixin hook-badge-hover(){}
|
|
59
|
-
@mixin hook-badge-misc(){}
|
|
60
|
-
@mixin hook-inverse-badge(){}
|
|
61
|
-
@mixin hook-inverse-badge-hover(){}
|
|
62
|
-
@mixin hook-inverse-component-badge(){
|
|
63
|
-
|
|
64
|
-
.uk-badge {
|
|
65
|
-
background-color: $inverse-badge-background;
|
|
66
|
-
color: $inverse-badge-color !important;
|
|
67
|
-
@if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
|
|
34
|
+
.uk-logo:hover {
|
|
35
|
+
color: $inverse-logo-hover-color;
|
|
36
|
+
@if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
68
37
|
}
|
|
69
38
|
|
|
70
|
-
.uk-
|
|
71
|
-
|
|
72
|
-
}
|
|
39
|
+
.uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
40
|
+
.uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
|
|
41
|
+
.uk-logo-inverse { display: block; }
|
|
73
42
|
|
|
74
43
|
}
|
|
75
|
-
@mixin hook-
|
|
76
|
-
@mixin hook-
|
|
77
|
-
@mixin hook-
|
|
78
|
-
@mixin hook-
|
|
79
|
-
@mixin hook-
|
|
80
|
-
@mixin hook-
|
|
81
|
-
@mixin hook-
|
|
82
|
-
@mixin hook-
|
|
83
|
-
@mixin hook-
|
|
84
|
-
@mixin hook-base-h5(){}
|
|
85
|
-
@mixin hook-base-h6(){}
|
|
86
|
-
@mixin hook-base-hr(){}
|
|
87
|
-
@mixin hook-base-blockquote(){}
|
|
88
|
-
@mixin hook-base-blockquote-footer(){}
|
|
89
|
-
@mixin hook-base-pre(){}
|
|
90
|
-
@mixin hook-base-misc(){}
|
|
91
|
-
@mixin hook-inverse-base-link(){}
|
|
92
|
-
@mixin hook-inverse-base-link-hover(){}
|
|
93
|
-
@mixin hook-inverse-base-code(){}
|
|
94
|
-
@mixin hook-inverse-base-heading(){}
|
|
95
|
-
@mixin hook-inverse-base-h1(){}
|
|
96
|
-
@mixin hook-inverse-base-h2(){}
|
|
97
|
-
@mixin hook-inverse-base-h3(){}
|
|
98
|
-
@mixin hook-inverse-base-h4(){}
|
|
99
|
-
@mixin hook-inverse-base-h5(){}
|
|
100
|
-
@mixin hook-inverse-base-h6(){}
|
|
101
|
-
@mixin hook-inverse-base-blockquote(){}
|
|
102
|
-
@mixin hook-inverse-base-blockquote-footer(){}
|
|
103
|
-
@mixin hook-inverse-base-hr(){}
|
|
104
|
-
@mixin hook-inverse-component-base(){
|
|
105
|
-
|
|
106
|
-
color: $inverse-base-color;
|
|
107
|
-
|
|
108
|
-
// Base
|
|
109
|
-
// ========================================================================
|
|
110
|
-
|
|
111
|
-
//
|
|
112
|
-
// Link
|
|
113
|
-
//
|
|
44
|
+
@mixin hook-transition-misc(){}
|
|
45
|
+
@mixin hook-totop(){}
|
|
46
|
+
@mixin hook-totop-hover(){}
|
|
47
|
+
@mixin hook-totop-active(){}
|
|
48
|
+
@mixin hook-totop-misc(){}
|
|
49
|
+
@mixin hook-inverse-totop(){}
|
|
50
|
+
@mixin hook-inverse-totop-hover(){}
|
|
51
|
+
@mixin hook-inverse-totop-active(){}
|
|
52
|
+
@mixin hook-inverse-component-totop(){
|
|
114
53
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
@if(mixin-exists(hook-inverse-base-link)) {@include hook-inverse-base-link();}
|
|
54
|
+
.uk-totop {
|
|
55
|
+
color: $inverse-totop-color;
|
|
56
|
+
@if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
|
|
119
57
|
}
|
|
120
58
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
color: $inverse-base-link-hover-color;
|
|
125
|
-
@if(mixin-exists(hook-inverse-base-link-hover)) {@include hook-inverse-base-link-hover();}
|
|
59
|
+
.uk-totop:hover {
|
|
60
|
+
color: $inverse-totop-hover-color;
|
|
61
|
+
@if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
|
|
126
62
|
}
|
|
127
63
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
:not(pre) > code,
|
|
133
|
-
:not(pre) > kbd,
|
|
134
|
-
:not(pre) > samp {
|
|
135
|
-
color: $inverse-base-code-color;
|
|
136
|
-
@if(mixin-exists(hook-inverse-base-code)) {@include hook-inverse-base-code();}
|
|
64
|
+
.uk-totop:active {
|
|
65
|
+
color: $inverse-totop-active-color;
|
|
66
|
+
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
|
|
137
67
|
}
|
|
138
68
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
@if(mixin-exists(hook-inverse-base-heading)) {@include hook-inverse-base-heading();}
|
|
162
|
-
}
|
|
69
|
+
}
|
|
70
|
+
@mixin hook-tooltip(){}
|
|
71
|
+
@mixin hook-tooltip-misc(){}
|
|
72
|
+
@mixin hook-tile(){}
|
|
73
|
+
@mixin hook-tile-default(){}
|
|
74
|
+
@mixin hook-tile-default-hover(){}
|
|
75
|
+
@mixin hook-tile-muted(){}
|
|
76
|
+
@mixin hook-tile-muted-hover(){}
|
|
77
|
+
@mixin hook-tile-primary(){}
|
|
78
|
+
@mixin hook-tile-primary-hover(){}
|
|
79
|
+
@mixin hook-tile-secondary(){}
|
|
80
|
+
@mixin hook-tile-secondary-hover(){}
|
|
81
|
+
@mixin hook-tile-misc(){}
|
|
82
|
+
@mixin hook-thumbnav(){}
|
|
83
|
+
@mixin hook-thumbnav-item(){}
|
|
84
|
+
@mixin hook-thumbnav-item-hover(){}
|
|
85
|
+
@mixin hook-thumbnav-item-active(){}
|
|
86
|
+
@mixin hook-thumbnav-misc(){}
|
|
87
|
+
@mixin hook-inverse-thumbnav-item(){}
|
|
88
|
+
@mixin hook-inverse-thumbnav-item-hover(){}
|
|
89
|
+
@mixin hook-inverse-thumbnav-item-active(){}
|
|
90
|
+
@mixin hook-inverse-component-thumbnav(){
|
|
163
91
|
|
|
164
|
-
|
|
165
|
-
@if(mixin-exists(hook-inverse-
|
|
92
|
+
.uk-thumbnav > * > * {
|
|
93
|
+
@if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
|
|
166
94
|
}
|
|
167
95
|
|
|
168
|
-
|
|
169
|
-
@if(mixin-exists(hook-inverse-
|
|
96
|
+
.uk-thumbnav > * > :hover {
|
|
97
|
+
@if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
|
|
170
98
|
}
|
|
171
99
|
|
|
172
|
-
|
|
173
|
-
@if(mixin-exists(hook-inverse-
|
|
100
|
+
.uk-thumbnav > .uk-active > * {
|
|
101
|
+
@if(mixin-exists(hook-inverse-thumbnav-item-active)) {@include hook-inverse-thumbnav-item-active();}
|
|
174
102
|
}
|
|
175
103
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
104
|
+
}
|
|
105
|
+
@mixin hook-text-lead(){}
|
|
106
|
+
@mixin hook-text-meta(){}
|
|
107
|
+
@mixin hook-text-small(){}
|
|
108
|
+
@mixin hook-text-large(){}
|
|
109
|
+
@mixin hook-text-background(){}
|
|
110
|
+
@mixin hook-text-misc(){}
|
|
111
|
+
@mixin hook-inverse-text-lead(){}
|
|
112
|
+
@mixin hook-inverse-text-meta(){}
|
|
113
|
+
@mixin hook-inverse-component-text(){
|
|
179
114
|
|
|
180
|
-
|
|
181
|
-
|
|
115
|
+
.uk-text-lead {
|
|
116
|
+
color: $inverse-text-lead-color;
|
|
117
|
+
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
182
118
|
}
|
|
183
119
|
|
|
184
|
-
|
|
185
|
-
|
|
120
|
+
.uk-text-meta {
|
|
121
|
+
color: $inverse-text-meta-color;
|
|
122
|
+
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
186
123
|
}
|
|
187
124
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
blockquote {
|
|
193
|
-
@if(mixin-exists(hook-inverse-base-blockquote)) {@include hook-inverse-base-blockquote();}
|
|
194
|
-
}
|
|
125
|
+
.uk-text-muted { color: $inverse-text-muted-color !important; }
|
|
126
|
+
.uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
|
|
127
|
+
.uk-text-primary { color: $inverse-text-primary-color !important; }
|
|
128
|
+
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
195
129
|
|
|
196
|
-
|
|
197
|
-
|
|
130
|
+
}
|
|
131
|
+
@mixin hook-table(){}
|
|
132
|
+
@mixin hook-table-header-cell(){}
|
|
133
|
+
@mixin hook-table-cell(){}
|
|
134
|
+
@mixin hook-table-footer(){}
|
|
135
|
+
@mixin hook-table-caption(){}
|
|
136
|
+
@mixin hook-table-divider(){}
|
|
137
|
+
@mixin hook-table-striped(){}
|
|
138
|
+
@mixin hook-table-hover(){}
|
|
139
|
+
@mixin hook-table-row-active(){}
|
|
140
|
+
@mixin hook-table-small(){}
|
|
141
|
+
@mixin hook-table-large(){}
|
|
142
|
+
@mixin hook-table-misc(){}
|
|
143
|
+
@mixin hook-inverse-table-header-cell(){}
|
|
144
|
+
@mixin hook-inverse-table-caption(){}
|
|
145
|
+
@mixin hook-inverse-table-row-active(){}
|
|
146
|
+
@mixin hook-inverse-table-divider(){}
|
|
147
|
+
@mixin hook-inverse-table-striped(){}
|
|
148
|
+
@mixin hook-inverse-table-hover(){}
|
|
149
|
+
@mixin hook-inverse-component-table(){
|
|
150
|
+
|
|
151
|
+
.uk-table th {
|
|
152
|
+
color: $inverse-table-header-cell-color;
|
|
153
|
+
@if(mixin-exists(hook-inverse-table-header-cell)) {@include hook-inverse-table-header-cell();}
|
|
198
154
|
}
|
|
199
155
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
156
|
+
.uk-table caption {
|
|
157
|
+
color: $inverse-table-caption-color;
|
|
158
|
+
@if(mixin-exists(hook-inverse-table-caption)) {@include hook-inverse-table-caption();}
|
|
159
|
+
}
|
|
203
160
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
161
|
+
.uk-table > tr.uk-active,
|
|
162
|
+
.uk-table tbody tr.uk-active {
|
|
163
|
+
background: $inverse-table-row-active-background;
|
|
164
|
+
@if(mixin-exists(hook-inverse-table-row-active)) {@include hook-inverse-table-row-active();}
|
|
207
165
|
}
|
|
208
166
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
167
|
+
.uk-table-divider > tr:not(:first-child),
|
|
168
|
+
.uk-table-divider > :not(:first-child) > tr,
|
|
169
|
+
.uk-table-divider > :first-child > tr:not(:first-child) {
|
|
170
|
+
border-top-color: $inverse-table-divider-border;
|
|
171
|
+
@if(mixin-exists(hook-inverse-table-divider)) {@include hook-inverse-table-divider();}
|
|
172
|
+
}
|
|
212
173
|
|
|
213
|
-
|
|
214
|
-
|
|
174
|
+
.uk-table-striped > tr:nth-of-type(odd),
|
|
175
|
+
.uk-table-striped tbody tr:nth-of-type(odd) {
|
|
176
|
+
background: $inverse-table-striped-row-background;
|
|
177
|
+
@if(mixin-exists(hook-inverse-table-striped)) {@include hook-inverse-table-striped();}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.uk-table-hover > tr:hover,
|
|
181
|
+
.uk-table-hover tbody tr:hover {
|
|
182
|
+
background: $inverse-table-hover-row-background;
|
|
183
|
+
@if(mixin-exists(hook-inverse-table-hover)) {@include hook-inverse-table-hover();}
|
|
184
|
+
}
|
|
215
185
|
|
|
216
186
|
}
|
|
217
|
-
@mixin hook-
|
|
218
|
-
@mixin hook-
|
|
219
|
-
@mixin hook-
|
|
220
|
-
@mixin hook-
|
|
221
|
-
@mixin hook-
|
|
222
|
-
@mixin hook-
|
|
223
|
-
@mixin hook-
|
|
224
|
-
@mixin hook-
|
|
225
|
-
@mixin hook-
|
|
226
|
-
@mixin hook-
|
|
227
|
-
@mixin hook-
|
|
228
|
-
@mixin hook-
|
|
229
|
-
@mixin hook-inverse-
|
|
187
|
+
@mixin hook-tab(){}
|
|
188
|
+
@mixin hook-tab-item(){}
|
|
189
|
+
@mixin hook-tab-item-hover(){}
|
|
190
|
+
@mixin hook-tab-item-active(){}
|
|
191
|
+
@mixin hook-tab-item-disabled(){}
|
|
192
|
+
@mixin hook-tab-bottom(){}
|
|
193
|
+
@mixin hook-tab-bottom-item(){}
|
|
194
|
+
@mixin hook-tab-left(){}
|
|
195
|
+
@mixin hook-tab-right(){}
|
|
196
|
+
@mixin hook-tab-left-item(){}
|
|
197
|
+
@mixin hook-tab-right-item(){}
|
|
198
|
+
@mixin hook-tab-misc(){}
|
|
199
|
+
@mixin hook-inverse-tab(){}
|
|
200
|
+
@mixin hook-inverse-tab-item(){}
|
|
201
|
+
@mixin hook-inverse-tab-item-hover(){}
|
|
202
|
+
@mixin hook-inverse-tab-item-active(){}
|
|
203
|
+
@mixin hook-inverse-tab-item-disabled(){}
|
|
204
|
+
@mixin hook-inverse-component-tab(){
|
|
230
205
|
|
|
231
|
-
.uk-
|
|
232
|
-
|
|
233
|
-
@if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
|
|
206
|
+
.uk-tab {
|
|
207
|
+
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
234
208
|
}
|
|
235
209
|
|
|
236
|
-
.uk-
|
|
237
|
-
color: $inverse-
|
|
238
|
-
@if(mixin-exists(hook-inverse-
|
|
210
|
+
.uk-tab > * > a {
|
|
211
|
+
color: $inverse-tab-item-color;
|
|
212
|
+
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
239
213
|
}
|
|
240
214
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
@if(mixin-exists(hook-inverse-
|
|
215
|
+
.uk-tab > * > a:hover {
|
|
216
|
+
color: $inverse-tab-item-hover-color;
|
|
217
|
+
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
244
218
|
}
|
|
245
219
|
|
|
246
|
-
.uk-
|
|
247
|
-
color: $inverse-
|
|
248
|
-
@if(mixin-exists(hook-inverse-
|
|
220
|
+
.uk-tab > .uk-active > a {
|
|
221
|
+
color: $inverse-tab-item-active-color;
|
|
222
|
+
@if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
|
|
249
223
|
}
|
|
250
224
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
|
|
256
|
-
color: $inverse-breadcrumb-divider-color;
|
|
257
|
-
@if(mixin-exists(hook-inverse-breadcrumb-divider)) {@include hook-inverse-breadcrumb-divider();}
|
|
225
|
+
.uk-tab > .uk-disabled > a {
|
|
226
|
+
color: $inverse-tab-item-disabled-color;
|
|
227
|
+
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
258
228
|
}
|
|
259
229
|
|
|
260
230
|
}
|
|
261
|
-
@mixin hook-
|
|
262
|
-
@mixin hook-
|
|
263
|
-
@mixin hook-
|
|
264
|
-
@mixin hook-
|
|
265
|
-
@mixin hook-
|
|
266
|
-
@mixin hook-
|
|
267
|
-
@mixin hook-
|
|
268
|
-
@mixin hook-
|
|
269
|
-
@mixin hook-
|
|
270
|
-
@mixin hook-
|
|
271
|
-
@mixin hook-
|
|
272
|
-
@mixin hook-
|
|
273
|
-
@mixin hook-
|
|
274
|
-
@mixin hook-
|
|
275
|
-
@mixin hook-
|
|
276
|
-
@mixin hook-
|
|
277
|
-
@mixin hook-
|
|
278
|
-
@mixin hook-
|
|
279
|
-
@mixin hook-
|
|
280
|
-
@mixin hook-
|
|
281
|
-
@mixin hook-
|
|
282
|
-
@mixin hook-
|
|
283
|
-
@mixin hook-
|
|
284
|
-
@mixin hook-inverse-button-default(){}
|
|
285
|
-
@mixin hook-inverse-button-default-hover(){}
|
|
286
|
-
@mixin hook-inverse-button-default-active(){}
|
|
287
|
-
@mixin hook-inverse-button-primary(){}
|
|
288
|
-
@mixin hook-inverse-button-primary-hover(){}
|
|
289
|
-
@mixin hook-inverse-button-primary-active(){}
|
|
290
|
-
@mixin hook-inverse-button-secondary(){}
|
|
291
|
-
@mixin hook-inverse-button-secondary-hover(){}
|
|
292
|
-
@mixin hook-inverse-button-secondary-active(){}
|
|
293
|
-
@mixin hook-inverse-button-text(){}
|
|
294
|
-
@mixin hook-inverse-button-text-hover(){}
|
|
295
|
-
@mixin hook-inverse-button-text-disabled(){}
|
|
296
|
-
@mixin hook-inverse-button-link(){}
|
|
297
|
-
@mixin hook-inverse-component-button(){
|
|
231
|
+
@mixin hook-switcher-misc(){}
|
|
232
|
+
@mixin hook-svg-misc(){}
|
|
233
|
+
@mixin hook-subnav(){}
|
|
234
|
+
@mixin hook-subnav-item(){}
|
|
235
|
+
@mixin hook-subnav-item-hover(){}
|
|
236
|
+
@mixin hook-subnav-item-active(){}
|
|
237
|
+
@mixin hook-subnav-divider(){}
|
|
238
|
+
@mixin hook-subnav-pill-item(){}
|
|
239
|
+
@mixin hook-subnav-pill-item-hover(){}
|
|
240
|
+
@mixin hook-subnav-pill-item-onclick(){}
|
|
241
|
+
@mixin hook-subnav-pill-item-active(){}
|
|
242
|
+
@mixin hook-subnav-item-disabled(){}
|
|
243
|
+
@mixin hook-subnav-misc(){}
|
|
244
|
+
@mixin hook-inverse-subnav-item(){}
|
|
245
|
+
@mixin hook-inverse-subnav-item-hover(){}
|
|
246
|
+
@mixin hook-inverse-subnav-item-active(){}
|
|
247
|
+
@mixin hook-inverse-subnav-divider(){}
|
|
248
|
+
@mixin hook-inverse-subnav-pill-item(){}
|
|
249
|
+
@mixin hook-inverse-subnav-pill-item-hover(){}
|
|
250
|
+
@mixin hook-inverse-subnav-pill-item-onclick(){}
|
|
251
|
+
@mixin hook-inverse-subnav-pill-item-active(){}
|
|
252
|
+
@mixin hook-inverse-subnav-item-disabled(){}
|
|
253
|
+
@mixin hook-inverse-component-subnav(){
|
|
298
254
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
255
|
+
.uk-subnav > * > :first-child {
|
|
256
|
+
color: $inverse-subnav-item-color;
|
|
257
|
+
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
258
|
+
}
|
|
302
259
|
|
|
303
|
-
.uk-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
@if(mixin-exists(hook-inverse-button-default)) {@include hook-inverse-button-default();}
|
|
260
|
+
.uk-subnav > * > a:hover {
|
|
261
|
+
color: $inverse-subnav-item-hover-color;
|
|
262
|
+
@if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
|
|
307
263
|
}
|
|
308
264
|
|
|
309
|
-
.uk-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
@if(mixin-exists(hook-inverse-button-default-hover)) {@include hook-inverse-button-default-hover();}
|
|
265
|
+
.uk-subnav > .uk-active > a {
|
|
266
|
+
color: $inverse-subnav-item-active-color;
|
|
267
|
+
@if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
|
|
313
268
|
}
|
|
314
269
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
270
|
+
//
|
|
271
|
+
// Divider
|
|
272
|
+
//
|
|
273
|
+
|
|
274
|
+
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
|
|
275
|
+
border-left-color: $inverse-subnav-divider-border;
|
|
276
|
+
@if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
|
|
320
277
|
}
|
|
321
278
|
|
|
322
279
|
//
|
|
323
|
-
//
|
|
280
|
+
// Pill
|
|
324
281
|
//
|
|
325
282
|
|
|
326
|
-
.uk-
|
|
327
|
-
background-color: $inverse-
|
|
328
|
-
color: $inverse-
|
|
329
|
-
@if(mixin-exists(hook-inverse-
|
|
283
|
+
.uk-subnav-pill > * > :first-child {
|
|
284
|
+
background-color: $inverse-subnav-pill-item-background;
|
|
285
|
+
color: $inverse-subnav-pill-item-color;
|
|
286
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
|
|
330
287
|
}
|
|
331
288
|
|
|
332
|
-
.uk-
|
|
333
|
-
background-color: $inverse-
|
|
334
|
-
color: $inverse-
|
|
335
|
-
@if(mixin-exists(hook-inverse-
|
|
289
|
+
.uk-subnav-pill > * > a:hover {
|
|
290
|
+
background-color: $inverse-subnav-pill-item-hover-background;
|
|
291
|
+
color: $inverse-subnav-pill-item-hover-color;
|
|
292
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
|
|
336
293
|
}
|
|
337
294
|
|
|
338
|
-
.uk-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
295
|
+
.uk-subnav-pill > * > a:active {
|
|
296
|
+
background-color: $inverse-subnav-pill-item-onclick-background;
|
|
297
|
+
color: $inverse-subnav-pill-item-onclick-color;
|
|
298
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.uk-subnav-pill > .uk-active > a {
|
|
302
|
+
background-color: $inverse-subnav-pill-item-active-background;
|
|
303
|
+
color: $inverse-subnav-pill-item-active-color;
|
|
304
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
343
305
|
}
|
|
344
306
|
|
|
345
307
|
//
|
|
346
|
-
//
|
|
308
|
+
// Disabled
|
|
347
309
|
//
|
|
348
310
|
|
|
349
|
-
.uk-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
@if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
|
|
311
|
+
.uk-subnav > .uk-disabled > a {
|
|
312
|
+
color: $inverse-subnav-item-disabled-color;
|
|
313
|
+
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
353
314
|
}
|
|
354
315
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
316
|
+
}
|
|
317
|
+
@mixin hook-sticky-misc(){}
|
|
318
|
+
@mixin hook-spinner(){}
|
|
319
|
+
@mixin hook-spinner-misc(){}
|
|
320
|
+
@mixin hook-sortable(){}
|
|
321
|
+
@mixin hook-sortable-drag(){}
|
|
322
|
+
@mixin hook-sortable-placeholder(){}
|
|
323
|
+
@mixin hook-sortable-empty(){}
|
|
324
|
+
@mixin hook-sortable-misc(){}
|
|
325
|
+
@mixin hook-slideshow(){}
|
|
326
|
+
@mixin hook-slideshow-misc(){}
|
|
327
|
+
@mixin hook-slider(){}
|
|
328
|
+
@mixin hook-slider-misc(){}
|
|
329
|
+
@mixin hook-slidenav(){}
|
|
330
|
+
@mixin hook-slidenav-hover(){}
|
|
331
|
+
@mixin hook-slidenav-active(){}
|
|
332
|
+
@mixin hook-slidenav-previous(){}
|
|
333
|
+
@mixin hook-slidenav-next(){}
|
|
334
|
+
@mixin hook-slidenav-large(){}
|
|
335
|
+
@mixin hook-slidenav-container(){}
|
|
336
|
+
@mixin hook-slidenav-misc(){}
|
|
337
|
+
@mixin hook-inverse-slidenav(){}
|
|
338
|
+
@mixin hook-inverse-slidenav-hover(){}
|
|
339
|
+
@mixin hook-inverse-slidenav-active(){}
|
|
340
|
+
@mixin hook-inverse-component-slidenav(){
|
|
341
|
+
|
|
342
|
+
.uk-slidenav {
|
|
343
|
+
color: $inverse-slidenav-color;
|
|
344
|
+
@if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
|
|
359
345
|
}
|
|
360
346
|
|
|
361
|
-
.uk-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
347
|
+
.uk-slidenav:hover {
|
|
348
|
+
color: $inverse-slidenav-hover-color;
|
|
349
|
+
@if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.uk-slidenav:active {
|
|
353
|
+
color: $inverse-slidenav-active-color;
|
|
354
|
+
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
366
355
|
}
|
|
367
356
|
|
|
357
|
+
}
|
|
358
|
+
@mixin hook-section(){}
|
|
359
|
+
@mixin hook-section-default(){}
|
|
360
|
+
@mixin hook-section-muted(){}
|
|
361
|
+
@mixin hook-section-primary(){}
|
|
362
|
+
@mixin hook-section-secondary(){}
|
|
363
|
+
@mixin hook-section-overlap(){}
|
|
364
|
+
@mixin hook-section-misc(){}
|
|
365
|
+
@mixin hook-search-input(){}
|
|
366
|
+
@mixin hook-search-icon(){}
|
|
367
|
+
@mixin hook-search-default-input(){}
|
|
368
|
+
@mixin hook-search-default-input-focus(){}
|
|
369
|
+
@mixin hook-search-navbar-input(){}
|
|
370
|
+
@mixin hook-search-navbar-input-focus(){}
|
|
371
|
+
@mixin hook-search-large-input(){}
|
|
372
|
+
@mixin hook-search-large-input-focus(){}
|
|
373
|
+
@mixin hook-search-toggle(){}
|
|
374
|
+
@mixin hook-search-toggle-hover(){}
|
|
375
|
+
@mixin hook-search-misc(){}
|
|
376
|
+
@mixin hook-inverse-search-default-input(){}
|
|
377
|
+
@mixin hook-inverse-search-default-input-focus(){}
|
|
378
|
+
@mixin hook-inverse-search-navbar-input(){}
|
|
379
|
+
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
380
|
+
@mixin hook-inverse-search-large-input(){}
|
|
381
|
+
@mixin hook-inverse-search-large-input-focus(){}
|
|
382
|
+
@mixin hook-inverse-search-toggle(){}
|
|
383
|
+
@mixin hook-inverse-search-toggle-hover(){}
|
|
384
|
+
@mixin hook-inverse-component-search(){
|
|
385
|
+
|
|
368
386
|
//
|
|
369
|
-
//
|
|
387
|
+
// Input
|
|
370
388
|
//
|
|
371
389
|
|
|
372
|
-
.uk-
|
|
373
|
-
color: $inverse-button-text-color;
|
|
374
|
-
@if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
|
|
375
|
-
}
|
|
390
|
+
.uk-search-input { color: $inverse-search-color; }
|
|
376
391
|
|
|
377
|
-
.uk-
|
|
378
|
-
color: $inverse-button-text-hover-color;
|
|
379
|
-
@if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
|
|
380
|
-
}
|
|
392
|
+
.uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
|
|
381
393
|
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
394
|
+
//
|
|
395
|
+
// Icon
|
|
396
|
+
//
|
|
397
|
+
|
|
398
|
+
.uk-search .uk-search-icon { color: $inverse-search-icon-color; }
|
|
399
|
+
.uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
|
|
386
400
|
|
|
387
401
|
//
|
|
388
|
-
//
|
|
402
|
+
// Style modifier
|
|
389
403
|
//
|
|
390
404
|
|
|
391
|
-
.uk-
|
|
392
|
-
color: $inverse-
|
|
393
|
-
@if(mixin-exists(hook-inverse-
|
|
405
|
+
.uk-search-default .uk-search-input {
|
|
406
|
+
background-color: $inverse-search-default-background;
|
|
407
|
+
@if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
|
|
394
408
|
}
|
|
395
409
|
|
|
396
|
-
.uk-
|
|
397
|
-
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
@mixin hook-card-body(){}
|
|
401
|
-
@mixin hook-card-header(){}
|
|
402
|
-
@mixin hook-card-footer(){}
|
|
403
|
-
@mixin hook-card-media(){}
|
|
404
|
-
@mixin hook-card-media-top(){}
|
|
405
|
-
@mixin hook-card-media-bottom(){}
|
|
406
|
-
@mixin hook-card-media-left(){}
|
|
407
|
-
@mixin hook-card-media-right(){}
|
|
408
|
-
@mixin hook-card-title(){}
|
|
409
|
-
@mixin hook-card-badge(){}
|
|
410
|
-
@mixin hook-card-hover(){}
|
|
411
|
-
@mixin hook-card-default(){}
|
|
412
|
-
@mixin hook-card-default-title(){}
|
|
413
|
-
@mixin hook-card-default-hover(){}
|
|
414
|
-
@mixin hook-card-default-header(){}
|
|
415
|
-
@mixin hook-card-default-footer(){}
|
|
416
|
-
@mixin hook-card-primary(){}
|
|
417
|
-
@mixin hook-card-primary-title(){}
|
|
418
|
-
@mixin hook-card-primary-hover(){}
|
|
419
|
-
@mixin hook-card-secondary(){}
|
|
420
|
-
@mixin hook-card-secondary-title(){}
|
|
421
|
-
@mixin hook-card-secondary-hover(){}
|
|
422
|
-
@mixin hook-card-misc(){}
|
|
423
|
-
@mixin hook-inverse-card-badge(){}
|
|
424
|
-
@mixin hook-inverse-component-card(){
|
|
410
|
+
.uk-search-default .uk-search-input:focus {
|
|
411
|
+
background-color: $inverse-search-default-focus-background;
|
|
412
|
+
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
413
|
+
}
|
|
425
414
|
|
|
426
|
-
|
|
427
|
-
background-color: $inverse-
|
|
428
|
-
|
|
429
|
-
@if(mixin-exists(hook-inverse-card-badge)) {@include hook-inverse-card-badge();}
|
|
415
|
+
.uk-search-navbar .uk-search-input {
|
|
416
|
+
background-color: $inverse-search-navbar-background;
|
|
417
|
+
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
430
418
|
}
|
|
431
419
|
|
|
432
|
-
|
|
433
|
-
@mixin hook-
|
|
434
|
-
|
|
435
|
-
@mixin hook-close-misc(){}
|
|
436
|
-
@mixin hook-inverse-close(){}
|
|
437
|
-
@mixin hook-inverse-close-hover(){}
|
|
438
|
-
@mixin hook-inverse-component-close(){
|
|
420
|
+
.uk-search-navbar .uk-search-input:focus {
|
|
421
|
+
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
422
|
+
}
|
|
439
423
|
|
|
440
|
-
.uk-
|
|
441
|
-
color: $inverse-
|
|
442
|
-
@if(mixin-exists(hook-inverse-
|
|
424
|
+
.uk-search-large .uk-search-input {
|
|
425
|
+
background-color: $inverse-search-large-background;
|
|
426
|
+
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
443
427
|
}
|
|
444
428
|
|
|
445
|
-
.uk-
|
|
446
|
-
|
|
447
|
-
@if(mixin-exists(hook-inverse-close-hover)) {@include hook-inverse-close-hover();}
|
|
429
|
+
.uk-search-large .uk-search-input:focus {
|
|
430
|
+
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
448
431
|
}
|
|
449
432
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
433
|
+
//
|
|
434
|
+
// Toggle
|
|
435
|
+
//
|
|
453
436
|
|
|
454
|
-
.uk-
|
|
437
|
+
.uk-search-toggle {
|
|
438
|
+
color: $inverse-search-toggle-color;
|
|
439
|
+
@if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.uk-search-toggle:hover {
|
|
443
|
+
color: $inverse-search-toggle-hover-color;
|
|
444
|
+
@if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
|
|
445
|
+
}
|
|
455
446
|
|
|
456
447
|
}
|
|
457
|
-
@mixin hook-
|
|
458
|
-
@mixin hook-
|
|
459
|
-
@mixin hook-
|
|
460
|
-
@mixin hook-
|
|
461
|
-
@mixin hook-
|
|
462
|
-
@mixin hook-
|
|
463
|
-
@mixin hook-
|
|
464
|
-
@mixin hook-
|
|
465
|
-
@mixin hook-
|
|
466
|
-
@mixin hook-
|
|
467
|
-
@mixin hook-
|
|
468
|
-
@mixin hook-
|
|
469
|
-
@mixin hook-
|
|
470
|
-
@mixin hook-
|
|
471
|
-
@mixin hook-
|
|
472
|
-
@mixin hook-
|
|
473
|
-
@mixin hook-
|
|
474
|
-
@mixin hook-
|
|
475
|
-
@mixin hook-inverse-countdown-item(){}
|
|
476
|
-
@mixin hook-inverse-countdown-number(){}
|
|
477
|
-
@mixin hook-inverse-countdown-separator(){}
|
|
478
|
-
@mixin hook-inverse-countdown-label(){}
|
|
479
|
-
@mixin hook-inverse-component-countdown(){
|
|
448
|
+
@mixin hook-progress(){}
|
|
449
|
+
@mixin hook-progress-bar(){}
|
|
450
|
+
@mixin hook-progress-misc(){}
|
|
451
|
+
@mixin hook-print(){}
|
|
452
|
+
@mixin hook-position-misc(){}
|
|
453
|
+
@mixin hook-placeholder(){}
|
|
454
|
+
@mixin hook-placeholder-misc(){}
|
|
455
|
+
@mixin hook-pagination(){}
|
|
456
|
+
@mixin hook-pagination-item(){}
|
|
457
|
+
@mixin hook-pagination-item-hover(){}
|
|
458
|
+
@mixin hook-pagination-item-active(){}
|
|
459
|
+
@mixin hook-pagination-item-disabled(){}
|
|
460
|
+
@mixin hook-pagination-misc(){}
|
|
461
|
+
@mixin hook-inverse-pagination-item(){}
|
|
462
|
+
@mixin hook-inverse-pagination-item-hover(){}
|
|
463
|
+
@mixin hook-inverse-pagination-item-active(){}
|
|
464
|
+
@mixin hook-inverse-pagination-item-disabled(){}
|
|
465
|
+
@mixin hook-inverse-component-pagination(){
|
|
480
466
|
|
|
481
|
-
.uk-
|
|
482
|
-
|
|
483
|
-
@if(mixin-exists(hook-inverse-
|
|
467
|
+
.uk-pagination > * > * {
|
|
468
|
+
color: $inverse-pagination-item-color;
|
|
469
|
+
@if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
|
|
484
470
|
}
|
|
485
471
|
|
|
486
|
-
.uk-
|
|
487
|
-
|
|
472
|
+
.uk-pagination > * > :hover {
|
|
473
|
+
color: $inverse-pagination-item-hover-color;
|
|
474
|
+
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
488
475
|
}
|
|
489
476
|
|
|
490
|
-
.uk-
|
|
491
|
-
|
|
477
|
+
.uk-pagination > .uk-active > * {
|
|
478
|
+
color: $inverse-pagination-item-active-color;
|
|
479
|
+
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
492
480
|
}
|
|
493
481
|
|
|
494
|
-
.uk-
|
|
495
|
-
|
|
482
|
+
.uk-pagination > .uk-disabled > * {
|
|
483
|
+
color: $inverse-pagination-item-disabled-color;
|
|
484
|
+
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
496
485
|
}
|
|
497
486
|
|
|
498
487
|
}
|
|
499
|
-
@mixin hook-
|
|
500
|
-
@mixin hook-
|
|
501
|
-
@mixin hook-
|
|
502
|
-
@mixin hook-
|
|
503
|
-
@mixin hook-
|
|
504
|
-
@mixin
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
}
|
|
514
|
-
@mixin hook-
|
|
515
|
-
@mixin hook-
|
|
516
|
-
@mixin hook-
|
|
517
|
-
@mixin hook-
|
|
518
|
-
@mixin hook-
|
|
519
|
-
@mixin hook-
|
|
520
|
-
@mixin hook-
|
|
521
|
-
@mixin hook-
|
|
522
|
-
@mixin hook-
|
|
523
|
-
@mixin hook-
|
|
524
|
-
@mixin hook-
|
|
525
|
-
@mixin hook-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
}
|
|
549
|
-
@mixin hook-
|
|
550
|
-
@mixin hook-
|
|
551
|
-
@mixin hook-
|
|
552
|
-
@mixin hook-
|
|
553
|
-
@mixin hook-dotnav-item-active(){}
|
|
554
|
-
@mixin hook-dotnav-misc(){}
|
|
555
|
-
@mixin hook-inverse-dotnav-item(){}
|
|
556
|
-
@mixin hook-inverse-dotnav-item-hover(){}
|
|
557
|
-
@mixin hook-inverse-dotnav-item-onclick(){}
|
|
558
|
-
@mixin hook-inverse-dotnav-item-active(){}
|
|
559
|
-
@mixin hook-inverse-component-dotnav(){
|
|
488
|
+
@mixin hook-padding-misc(){}
|
|
489
|
+
@mixin hook-overlay(){}
|
|
490
|
+
@mixin hook-overlay-icon(){}
|
|
491
|
+
@mixin hook-overlay-default(){}
|
|
492
|
+
@mixin hook-overlay-primary(){}
|
|
493
|
+
@mixin hook-overlay-misc(){}
|
|
494
|
+
@mixin hook-offcanvas-bar(){}
|
|
495
|
+
@mixin hook-offcanvas-close(){}
|
|
496
|
+
@mixin hook-offcanvas-overlay(){}
|
|
497
|
+
@mixin hook-offcanvas-misc(){}
|
|
498
|
+
@mixin hook-notification(){}
|
|
499
|
+
@mixin hook-notification-message(){}
|
|
500
|
+
@mixin hook-notification-close(){}
|
|
501
|
+
@mixin hook-notification-message-primary(){}
|
|
502
|
+
@mixin hook-notification-message-success(){}
|
|
503
|
+
@mixin hook-notification-message-warning(){}
|
|
504
|
+
@mixin hook-notification-message-danger(){}
|
|
505
|
+
@mixin hook-notification-misc(){}
|
|
506
|
+
@mixin hook-navbar(){}
|
|
507
|
+
@mixin hook-navbar-container(){}
|
|
508
|
+
@mixin hook-navbar-nav-item(){}
|
|
509
|
+
@mixin hook-navbar-nav-item-hover(){}
|
|
510
|
+
@mixin hook-navbar-nav-item-onclick(){}
|
|
511
|
+
@mixin hook-navbar-nav-item-active(){}
|
|
512
|
+
@mixin hook-navbar-item(){}
|
|
513
|
+
@mixin hook-navbar-toggle(){}
|
|
514
|
+
@mixin hook-navbar-toggle-hover(){}
|
|
515
|
+
@mixin hook-navbar-toggle-icon(){}
|
|
516
|
+
@mixin hook-navbar-toggle-icon-hover(){}
|
|
517
|
+
@mixin hook-navbar-subtitle(){}
|
|
518
|
+
@mixin hook-navbar-primary(){}
|
|
519
|
+
@mixin hook-navbar-transparent(){}
|
|
520
|
+
@mixin hook-navbar-sticky(){}
|
|
521
|
+
@mixin hook-navbar-dropdown(){}
|
|
522
|
+
@mixin hook-navbar-dropdown-large(){}
|
|
523
|
+
@mixin hook-navbar-dropdown-dropbar(){}
|
|
524
|
+
@mixin hook-navbar-dropdown-dropbar-large(){}
|
|
525
|
+
@mixin hook-navbar-dropdown-nav(){}
|
|
526
|
+
@mixin hook-navbar-dropdown-nav-item(){}
|
|
527
|
+
@mixin hook-navbar-dropdown-nav-item-hover(){}
|
|
528
|
+
@mixin hook-navbar-dropdown-nav-item-active(){}
|
|
529
|
+
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
530
|
+
@mixin hook-navbar-dropdown-nav-header(){}
|
|
531
|
+
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
532
|
+
@mixin hook-navbar-dropbar(){}
|
|
533
|
+
@mixin hook-navbar-misc(){}
|
|
534
|
+
@mixin hook-inverse-navbar-nav-item(){}
|
|
535
|
+
@mixin hook-inverse-navbar-nav-item-hover(){}
|
|
536
|
+
@mixin hook-inverse-navbar-nav-item-onclick(){}
|
|
537
|
+
@mixin hook-inverse-navbar-nav-item-active(){}
|
|
538
|
+
@mixin hook-inverse-navbar-item(){}
|
|
539
|
+
@mixin hook-inverse-navbar-toggle(){}
|
|
540
|
+
@mixin hook-inverse-navbar-toggle-hover(){}
|
|
541
|
+
@mixin hook-inverse-component-navbar(){
|
|
560
542
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
}
|
|
543
|
+
//
|
|
544
|
+
// Nav Item
|
|
545
|
+
//
|
|
565
546
|
|
|
566
|
-
.uk-
|
|
567
|
-
|
|
568
|
-
@if(mixin-exists(hook-inverse-
|
|
547
|
+
.uk-navbar-nav > li > a {
|
|
548
|
+
color: $inverse-navbar-nav-item-color;
|
|
549
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item)) {@include hook-inverse-navbar-nav-item();}
|
|
569
550
|
}
|
|
570
551
|
|
|
571
|
-
.uk-
|
|
572
|
-
|
|
573
|
-
|
|
552
|
+
.uk-navbar-nav > li:hover > a,
|
|
553
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] {
|
|
554
|
+
color: $inverse-navbar-nav-item-hover-color;
|
|
555
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
|
|
574
556
|
}
|
|
575
557
|
|
|
576
|
-
.uk-
|
|
577
|
-
|
|
578
|
-
@if(mixin-exists(hook-inverse-
|
|
558
|
+
.uk-navbar-nav > li > a:active {
|
|
559
|
+
color: $inverse-navbar-nav-item-onclick-color;
|
|
560
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-onclick)) {@include hook-inverse-navbar-nav-item-onclick();}
|
|
579
561
|
}
|
|
580
562
|
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
@mixin hook-
|
|
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(){}
|
|
589
|
-
@mixin hook-dropdown(){}
|
|
590
|
-
@mixin hook-dropdown-dropbar(){}
|
|
591
|
-
@mixin hook-dropdown-dropbar-large(){}
|
|
592
|
-
@mixin hook-dropdown-nav(){}
|
|
593
|
-
@mixin hook-dropdown-nav-item(){}
|
|
594
|
-
@mixin hook-dropdown-nav-item-hover(){}
|
|
595
|
-
@mixin hook-dropdown-nav-subtitle(){}
|
|
596
|
-
@mixin hook-dropdown-nav-header(){}
|
|
597
|
-
@mixin hook-dropdown-nav-divider(){}
|
|
598
|
-
@mixin hook-dropdown-misc(){}
|
|
599
|
-
@mixin hook-dropnav-misc(){}
|
|
600
|
-
@mixin hook-flex-misc(){}
|
|
601
|
-
@mixin hook-form-range(){}
|
|
602
|
-
@mixin hook-form-range-track(){}
|
|
603
|
-
@mixin hook-form-range-track-focus(){}
|
|
604
|
-
@mixin hook-form-range-thumb(){}
|
|
605
|
-
@mixin hook-form-range-misc(){}
|
|
606
|
-
@mixin hook-form(){}
|
|
607
|
-
@mixin hook-form-single-line(){}
|
|
608
|
-
@mixin hook-form-multi-line(){}
|
|
609
|
-
@mixin hook-form-focus(){}
|
|
610
|
-
@mixin hook-form-disabled(){}
|
|
611
|
-
@mixin hook-form-danger(){}
|
|
612
|
-
@mixin hook-form-success(){}
|
|
613
|
-
@mixin hook-form-blank(){}
|
|
614
|
-
@mixin hook-form-blank-focus(){}
|
|
615
|
-
@mixin hook-form-radio(){}
|
|
616
|
-
@mixin hook-form-radio-focus(){}
|
|
617
|
-
@mixin hook-form-radio-checked(){}
|
|
618
|
-
@mixin hook-form-radio-checked-focus(){}
|
|
619
|
-
@mixin hook-form-radio-disabled(){}
|
|
620
|
-
@mixin hook-form-legend(){}
|
|
621
|
-
@mixin hook-form-label(){}
|
|
622
|
-
@mixin hook-form-stacked-label(){}
|
|
623
|
-
@mixin hook-form-horizontal-label(){}
|
|
624
|
-
@mixin hook-form-icon(){}
|
|
625
|
-
@mixin hook-form-misc(){}
|
|
626
|
-
@mixin hook-inverse-form(){}
|
|
627
|
-
@mixin hook-inverse-form-focus(){}
|
|
628
|
-
@mixin hook-inverse-form-radio(){}
|
|
629
|
-
@mixin hook-inverse-form-radio-focus(){}
|
|
630
|
-
@mixin hook-inverse-form-radio-checked(){}
|
|
631
|
-
@mixin hook-inverse-form-radio-checked-focus(){}
|
|
632
|
-
@mixin hook-inverse-form-label(){}
|
|
633
|
-
@mixin hook-inverse-form-icon(){}
|
|
634
|
-
@mixin hook-inverse-component-form(){
|
|
635
|
-
|
|
636
|
-
.uk-input,
|
|
637
|
-
.uk-select,
|
|
638
|
-
.uk-textarea {
|
|
639
|
-
background-color: $inverse-form-background;
|
|
640
|
-
color: $inverse-form-color;
|
|
641
|
-
background-clip: padding-box;
|
|
642
|
-
@if(mixin-exists(hook-inverse-form)) {@include hook-inverse-form();}
|
|
643
|
-
|
|
644
|
-
&:focus {
|
|
645
|
-
background-color: $inverse-form-focus-background;
|
|
646
|
-
color: $inverse-form-focus-color;
|
|
647
|
-
@if(mixin-exists(hook-inverse-form-focus)) {@include hook-inverse-form-focus();}
|
|
648
|
-
}
|
|
563
|
+
.uk-navbar-nav > li.uk-active > a {
|
|
564
|
+
color: $inverse-navbar-nav-item-active-color;
|
|
565
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-active)) {@include hook-inverse-navbar-nav-item-active();}
|
|
649
566
|
}
|
|
650
567
|
|
|
651
568
|
//
|
|
652
|
-
//
|
|
653
|
-
//
|
|
654
|
-
|
|
655
|
-
.uk-input::placeholder { color: $inverse-form-placeholder-color; }
|
|
656
|
-
|
|
657
|
-
.uk-textarea::placeholder { color: $inverse-form-placeholder-color; }
|
|
658
|
-
|
|
659
|
-
//
|
|
660
|
-
// Select
|
|
661
|
-
//
|
|
662
|
-
|
|
663
|
-
.uk-select:not([multiple]):not([size]) { @include svg-fill($internal-form-select-image, "#000", $inverse-form-select-icon-color); }
|
|
664
|
-
|
|
665
|
-
//
|
|
666
|
-
// Datalist
|
|
569
|
+
// Item
|
|
667
570
|
//
|
|
668
571
|
|
|
669
|
-
.uk-
|
|
670
|
-
|
|
572
|
+
.uk-navbar-item {
|
|
573
|
+
color: $inverse-navbar-item-color;
|
|
574
|
+
@if(mixin-exists(hook-inverse-navbar-item)) {@include hook-inverse-navbar-item();}
|
|
575
|
+
}
|
|
671
576
|
|
|
672
577
|
//
|
|
673
|
-
//
|
|
578
|
+
// Toggle
|
|
674
579
|
//
|
|
675
580
|
|
|
676
|
-
.uk-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
@if(mixin-exists(hook-inverse-form-radio)) {@include hook-inverse-form-radio();}
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
// Focus
|
|
683
|
-
.uk-radio:focus,
|
|
684
|
-
.uk-checkbox:focus {
|
|
685
|
-
background-color: $inverse-form-radio-focus-background;
|
|
686
|
-
@if(mixin-exists(hook-inverse-form-radio-focus)) {@include hook-inverse-form-radio-focus();}
|
|
581
|
+
.uk-navbar-toggle {
|
|
582
|
+
color: $inverse-navbar-toggle-color;
|
|
583
|
+
@if(mixin-exists(hook-inverse-navbar-toggle)) {@include hook-inverse-navbar-toggle();}
|
|
687
584
|
}
|
|
688
585
|
|
|
689
|
-
|
|
690
|
-
.uk-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
background-color: $inverse-form-radio-checked-background;
|
|
694
|
-
@if(mixin-exists(hook-inverse-form-radio-checked)) {@include hook-inverse-form-radio-checked();}
|
|
586
|
+
.uk-navbar-toggle:hover,
|
|
587
|
+
.uk-navbar-toggle[aria-expanded="true"] {
|
|
588
|
+
color: $inverse-navbar-toggle-hover-color;
|
|
589
|
+
@if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
|
|
695
590
|
}
|
|
696
591
|
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
592
|
+
}
|
|
593
|
+
@mixin hook-nav-sub(){}
|
|
594
|
+
@mixin hook-nav-header(){}
|
|
595
|
+
@mixin hook-nav-divider(){}
|
|
596
|
+
@mixin hook-nav-default(){}
|
|
597
|
+
@mixin hook-nav-default-item(){}
|
|
598
|
+
@mixin hook-nav-default-item-hover(){}
|
|
599
|
+
@mixin hook-nav-default-item-active(){}
|
|
600
|
+
@mixin hook-nav-default-subtitle(){}
|
|
601
|
+
@mixin hook-nav-default-header(){}
|
|
602
|
+
@mixin hook-nav-default-divider(){}
|
|
603
|
+
@mixin hook-nav-primary(){}
|
|
604
|
+
@mixin hook-nav-primary-item(){}
|
|
605
|
+
@mixin hook-nav-primary-item-hover(){}
|
|
606
|
+
@mixin hook-nav-primary-item-active(){}
|
|
607
|
+
@mixin hook-nav-primary-subtitle(){}
|
|
608
|
+
@mixin hook-nav-primary-header(){}
|
|
609
|
+
@mixin hook-nav-primary-divider(){}
|
|
610
|
+
@mixin hook-nav-secondary(){}
|
|
611
|
+
@mixin hook-nav-secondary-item(){}
|
|
612
|
+
@mixin hook-nav-secondary-item-hover(){}
|
|
613
|
+
@mixin hook-nav-secondary-item-active(){}
|
|
614
|
+
@mixin hook-nav-secondary-subtitle(){}
|
|
615
|
+
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
616
|
+
@mixin hook-nav-secondary-subtitle-active(){}
|
|
617
|
+
@mixin hook-nav-secondary-header(){}
|
|
618
|
+
@mixin hook-nav-secondary-divider(){}
|
|
619
|
+
@mixin hook-nav-dividers(){}
|
|
620
|
+
@mixin hook-nav-misc(){}
|
|
621
|
+
@mixin hook-inverse-nav-default-item(){}
|
|
622
|
+
@mixin hook-inverse-nav-default-item-hover(){}
|
|
623
|
+
@mixin hook-inverse-nav-default-item-active(){}
|
|
624
|
+
@mixin hook-inverse-nav-default-header(){}
|
|
625
|
+
@mixin hook-inverse-nav-default-divider(){}
|
|
626
|
+
@mixin hook-inverse-nav-primary-item(){}
|
|
627
|
+
@mixin hook-inverse-nav-primary-item-hover(){}
|
|
628
|
+
@mixin hook-inverse-nav-primary-item-active(){}
|
|
629
|
+
@mixin hook-inverse-nav-primary-header(){}
|
|
630
|
+
@mixin hook-inverse-nav-primary-divider(){}
|
|
631
|
+
@mixin hook-inverse-nav-secondary-item(){}
|
|
632
|
+
@mixin hook-inverse-nav-secondary-item-hover(){}
|
|
633
|
+
@mixin hook-inverse-nav-secondary-item-active(){}
|
|
634
|
+
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
635
|
+
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
636
|
+
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
637
|
+
@mixin hook-inverse-nav-secondary-header(){}
|
|
638
|
+
@mixin hook-inverse-nav-secondary-divider(){}
|
|
639
|
+
@mixin hook-inverse-nav-dividers(){}
|
|
640
|
+
@mixin hook-inverse-component-nav(){
|
|
704
641
|
|
|
705
|
-
//
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
.uk-checkbox:indeterminate { @include svg-fill($internal-form-checkbox-indeterminate-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
642
|
+
//
|
|
643
|
+
// Default
|
|
644
|
+
//
|
|
709
645
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
@if(mixin-exists(hook-inverse-
|
|
646
|
+
.uk-nav-default > li > a {
|
|
647
|
+
color: $inverse-nav-default-item-color;
|
|
648
|
+
@if(mixin-exists(hook-inverse-nav-default-item)) {@include hook-inverse-nav-default-item();}
|
|
713
649
|
}
|
|
714
650
|
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
@if(mixin-exists(hook-inverse-form-icon)) {@include hook-inverse-form-icon();}
|
|
651
|
+
.uk-nav-default > li > a:hover {
|
|
652
|
+
color: $inverse-nav-default-item-hover-color;
|
|
653
|
+
@if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
|
|
719
654
|
}
|
|
720
|
-
.uk-form-icon:hover { color: $inverse-form-icon-hover-color; }
|
|
721
655
|
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
@mixin hook-
|
|
725
|
-
|
|
726
|
-
@mixin hook-inverse-grid-divider-horizontal(){}
|
|
727
|
-
@mixin hook-inverse-grid-divider-vertical(){}
|
|
728
|
-
@mixin hook-inverse-component-grid(){
|
|
656
|
+
.uk-nav-default > li.uk-active > a {
|
|
657
|
+
color: $inverse-nav-default-item-active-color;
|
|
658
|
+
@if(mixin-exists(hook-inverse-nav-default-item-active)) {@include hook-inverse-nav-default-item-active();}
|
|
659
|
+
}
|
|
729
660
|
|
|
730
|
-
.uk-
|
|
731
|
-
|
|
732
|
-
@if(mixin-exists(hook-inverse-
|
|
661
|
+
.uk-nav-default .uk-nav-header {
|
|
662
|
+
color: $inverse-nav-default-header-color;
|
|
663
|
+
@if(mixin-exists(hook-inverse-nav-default-header)) {@include hook-inverse-nav-default-header();}
|
|
733
664
|
}
|
|
734
665
|
|
|
735
|
-
.uk-
|
|
736
|
-
border-top-color: $inverse-
|
|
737
|
-
@if(mixin-exists(hook-inverse-
|
|
666
|
+
.uk-nav-default .uk-nav-divider {
|
|
667
|
+
border-top-color: $inverse-nav-default-divider-border;
|
|
668
|
+
@if(mixin-exists(hook-inverse-nav-default-divider)) {@include hook-inverse-nav-default-divider();}
|
|
738
669
|
}
|
|
739
670
|
|
|
740
|
-
}
|
|
741
|
-
@mixin hook-heading-small(){}
|
|
742
|
-
@mixin hook-heading-medium(){}
|
|
743
|
-
@mixin hook-heading-large(){}
|
|
744
|
-
@mixin hook-heading-xlarge(){}
|
|
745
|
-
@mixin hook-heading-2xlarge(){}
|
|
746
|
-
@mixin hook-heading-primary(){}
|
|
747
|
-
@mixin hook-heading-hero(){}
|
|
748
|
-
@mixin hook-heading-divider(){}
|
|
749
|
-
@mixin hook-heading-bullet(){}
|
|
750
|
-
@mixin hook-heading-line(){}
|
|
751
|
-
@mixin hook-heading-misc(){}
|
|
752
|
-
@mixin hook-inverse-heading-small(){}
|
|
753
|
-
@mixin hook-inverse-heading-medium(){}
|
|
754
|
-
@mixin hook-inverse-heading-large(){}
|
|
755
|
-
@mixin hook-inverse-heading-xlarge(){}
|
|
756
|
-
@mixin hook-inverse-heading-2xlarge(){}
|
|
757
|
-
@mixin hook-inverse-heading-primary(){}
|
|
758
|
-
@mixin hook-inverse-heading-hero(){}
|
|
759
|
-
@mixin hook-inverse-heading-divider(){}
|
|
760
|
-
@mixin hook-inverse-heading-bullet(){}
|
|
761
|
-
@mixin hook-inverse-heading-line(){}
|
|
762
|
-
@mixin hook-inverse-component-heading(){
|
|
671
|
+
.uk-nav-default .uk-nav-sub a { color: $inverse-nav-default-sublist-item-color; }
|
|
763
672
|
|
|
764
|
-
.uk-
|
|
765
|
-
@if(mixin-exists(hook-inverse-heading-small)) {@include hook-inverse-heading-small();}
|
|
766
|
-
}
|
|
673
|
+
.uk-nav-default .uk-nav-sub a:hover { color: $inverse-nav-default-sublist-item-hover-color; }
|
|
767
674
|
|
|
768
|
-
.uk-
|
|
769
|
-
@if(mixin-exists(hook-inverse-heading-medium)) {@include hook-inverse-heading-medium();}
|
|
770
|
-
}
|
|
675
|
+
.uk-nav-default .uk-nav-sub li.uk-active > a { color: $inverse-nav-default-sublist-item-active-color; }
|
|
771
676
|
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
677
|
+
//
|
|
678
|
+
// Primary
|
|
679
|
+
//
|
|
775
680
|
|
|
776
|
-
.uk-
|
|
777
|
-
|
|
681
|
+
.uk-nav-primary > li > a {
|
|
682
|
+
color: $inverse-nav-primary-item-color;
|
|
683
|
+
@if(mixin-exists(hook-inverse-nav-primary-item)) {@include hook-inverse-nav-primary-item();}
|
|
778
684
|
}
|
|
779
685
|
|
|
780
|
-
.uk-
|
|
781
|
-
|
|
686
|
+
.uk-nav-primary > li > a:hover {
|
|
687
|
+
color: $inverse-nav-primary-item-hover-color;
|
|
688
|
+
@if(mixin-exists(hook-inverse-nav-primary-item-hover)) {@include hook-inverse-nav-primary-item-hover();}
|
|
782
689
|
}
|
|
783
690
|
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
.uk-heading-divider {
|
|
789
|
-
border-bottom-color: $inverse-heading-divider-border;
|
|
790
|
-
@if(mixin-exists(hook-inverse-heading-divider)) {@include hook-inverse-heading-divider();}
|
|
691
|
+
.uk-nav-primary > li.uk-active > a {
|
|
692
|
+
color: $inverse-nav-primary-item-active-color;
|
|
693
|
+
@if(mixin-exists(hook-inverse-nav-primary-item-active)) {@include hook-inverse-nav-primary-item-active();}
|
|
791
694
|
}
|
|
792
695
|
|
|
793
|
-
.uk-
|
|
794
|
-
|
|
795
|
-
@if(mixin-exists(hook-inverse-
|
|
696
|
+
.uk-nav-primary .uk-nav-header {
|
|
697
|
+
color: $inverse-nav-primary-header-color;
|
|
698
|
+
@if(mixin-exists(hook-inverse-nav-primary-header)) {@include hook-inverse-nav-primary-header();}
|
|
796
699
|
}
|
|
797
700
|
|
|
798
|
-
.uk-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
@if(mixin-exists(hook-inverse-heading-line)) {@include hook-inverse-heading-line();}
|
|
701
|
+
.uk-nav-primary .uk-nav-divider {
|
|
702
|
+
border-top-color: $inverse-nav-primary-divider-border;
|
|
703
|
+
@if(mixin-exists(hook-inverse-nav-primary-divider)) {@include hook-inverse-nav-primary-divider();}
|
|
802
704
|
}
|
|
803
705
|
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
@mixin hook-icon-button(){}
|
|
810
|
-
@mixin hook-icon-button-hover(){}
|
|
811
|
-
@mixin hook-icon-button-active(){}
|
|
812
|
-
@mixin hook-icon-misc(){}
|
|
813
|
-
@mixin hook-inverse-icon-link(){}
|
|
814
|
-
@mixin hook-inverse-icon-link-hover(){}
|
|
815
|
-
@mixin hook-inverse-icon-link-active(){}
|
|
816
|
-
@mixin hook-inverse-icon-button(){}
|
|
817
|
-
@mixin hook-inverse-icon-button-hover(){}
|
|
818
|
-
@mixin hook-inverse-icon-button-active(){}
|
|
819
|
-
@mixin hook-inverse-component-icon(){
|
|
706
|
+
.uk-nav-primary .uk-nav-sub a { color: $inverse-nav-primary-sublist-item-color; }
|
|
707
|
+
|
|
708
|
+
.uk-nav-primary .uk-nav-sub a:hover { color: $inverse-nav-primary-sublist-item-hover-color; }
|
|
709
|
+
|
|
710
|
+
.uk-nav-primary .uk-nav-sub li.uk-active > a { color: $inverse-nav-primary-sublist-item-active-color; }
|
|
820
711
|
|
|
821
712
|
//
|
|
822
|
-
//
|
|
713
|
+
// Secondary
|
|
823
714
|
//
|
|
824
715
|
|
|
825
|
-
.uk-
|
|
826
|
-
color: $inverse-
|
|
827
|
-
@if(mixin-exists(hook-inverse-
|
|
716
|
+
.uk-nav-secondary > li > a {
|
|
717
|
+
color: $inverse-nav-secondary-item-color;
|
|
718
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item)) {@include hook-inverse-nav-secondary-item();}
|
|
828
719
|
}
|
|
829
720
|
|
|
830
|
-
.uk-
|
|
831
|
-
color: $inverse-
|
|
832
|
-
@if(mixin-exists(hook-inverse-
|
|
721
|
+
.uk-nav-secondary > li > a:hover {
|
|
722
|
+
color: $inverse-nav-secondary-item-hover-color;
|
|
723
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-hover)) {@include hook-inverse-nav-secondary-item-hover();}
|
|
833
724
|
}
|
|
834
725
|
|
|
835
|
-
.uk-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
@if(mixin-exists(hook-inverse-icon-link-active)) {@include hook-inverse-icon-link-active();}
|
|
726
|
+
.uk-nav-secondary > li.uk-active > a {
|
|
727
|
+
color: $inverse-nav-secondary-item-active-color;
|
|
728
|
+
@if(mixin-exists(hook-inverse-nav-secondary-item-active)) {@include hook-inverse-nav-secondary-item-active();}
|
|
839
729
|
}
|
|
840
730
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
.uk-icon-button {
|
|
846
|
-
background-color: $inverse-icon-button-background;
|
|
847
|
-
color: $inverse-icon-button-color;
|
|
848
|
-
@if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
|
|
731
|
+
.uk-nav-secondary .uk-nav-subtitle {
|
|
732
|
+
color: $inverse-nav-secondary-subtitle-color;
|
|
733
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle)) {@include hook-inverse-nav-secondary-subtitle();}
|
|
849
734
|
}
|
|
850
735
|
|
|
851
|
-
.uk-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
@if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
|
|
736
|
+
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
737
|
+
color: $inverse-nav-secondary-subtitle-hover-color;
|
|
738
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-hover)) {@include hook-inverse-nav-secondary-subtitle-hover();}
|
|
855
739
|
}
|
|
856
740
|
|
|
857
|
-
.uk-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
@if(mixin-exists(hook-inverse-icon-button-active)) {@include hook-inverse-icon-button-active();}
|
|
741
|
+
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
742
|
+
color: $inverse-nav-secondary-subtitle-active-color;
|
|
743
|
+
@if(mixin-exists(hook-inverse-nav-secondary-subtitle-active)) {@include hook-inverse-nav-secondary-subtitle-active();}
|
|
861
744
|
}
|
|
862
745
|
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
@mixin hook-
|
|
866
|
-
|
|
867
|
-
@mixin hook-iconnav-item-active(){}
|
|
868
|
-
@mixin hook-iconnav-misc(){}
|
|
869
|
-
@mixin hook-inverse-iconnav-item(){}
|
|
870
|
-
@mixin hook-inverse-iconnav-item-hover(){}
|
|
871
|
-
@mixin hook-inverse-iconnav-item-active(){}
|
|
872
|
-
@mixin hook-inverse-component-iconnav(){
|
|
746
|
+
.uk-nav-secondary .uk-nav-header {
|
|
747
|
+
color: $inverse-nav-secondary-header-color;
|
|
748
|
+
@if(mixin-exists(hook-inverse-nav-secondary-header)) {@include hook-inverse-nav-secondary-header();}
|
|
749
|
+
}
|
|
873
750
|
|
|
874
|
-
.uk-
|
|
875
|
-
color: $inverse-
|
|
876
|
-
@if(mixin-exists(hook-inverse-
|
|
751
|
+
.uk-nav-secondary .uk-nav-divider {
|
|
752
|
+
border-top-color: $inverse-nav-secondary-divider-border;
|
|
753
|
+
@if(mixin-exists(hook-inverse-nav-secondary-divider)) {@include hook-inverse-nav-secondary-divider();}
|
|
877
754
|
}
|
|
878
755
|
|
|
879
|
-
.uk-
|
|
880
|
-
color: $inverse-iconnav-item-hover-color;
|
|
881
|
-
@if(mixin-exists(hook-inverse-iconnav-item-hover)) {@include hook-inverse-iconnav-item-hover();}
|
|
882
|
-
}
|
|
756
|
+
.uk-nav-secondary .uk-nav-sub a { color: $inverse-nav-secondary-sublist-item-color; }
|
|
883
757
|
|
|
884
|
-
.uk-
|
|
885
|
-
color: $inverse-iconnav-item-active-color;
|
|
886
|
-
@if(mixin-exists(hook-inverse-iconnav-item-active)) {@include hook-inverse-iconnav-item-active();}
|
|
887
|
-
}
|
|
758
|
+
.uk-nav-secondary .uk-nav-sub a:hover { color: $inverse-nav-secondary-sublist-item-hover-color; }
|
|
888
759
|
|
|
889
|
-
}
|
|
890
|
-
@mixin hook-inverse-component-link(){
|
|
760
|
+
.uk-nav-secondary .uk-nav-sub li.uk-active > a { color: $inverse-nav-secondary-sublist-item-active-color; }
|
|
891
761
|
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
@if(mixin-exists(hook-inverse-link-muted)) {@include hook-inverse-link-muted();}
|
|
896
|
-
}
|
|
762
|
+
//
|
|
763
|
+
// Dividers
|
|
764
|
+
//
|
|
897
765
|
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
color: $inverse-link-muted-hover-color;
|
|
902
|
-
@if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
|
|
766
|
+
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
767
|
+
border-top-color: $inverse-nav-dividers-border;
|
|
768
|
+
@if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
|
|
903
769
|
}
|
|
904
770
|
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
771
|
+
}
|
|
772
|
+
@mixin hook-modal(){}
|
|
773
|
+
@mixin hook-modal-dialog(){}
|
|
774
|
+
@mixin hook-modal-full(){}
|
|
775
|
+
@mixin hook-modal-body(){}
|
|
776
|
+
@mixin hook-modal-header(){}
|
|
777
|
+
@mixin hook-modal-footer(){}
|
|
778
|
+
@mixin hook-modal-title(){}
|
|
779
|
+
@mixin hook-modal-close(){}
|
|
780
|
+
@mixin hook-modal-close-hover(){}
|
|
781
|
+
@mixin hook-modal-close-default(){}
|
|
782
|
+
@mixin hook-modal-close-default-hover(){}
|
|
783
|
+
@mixin hook-modal-close-outside(){}
|
|
784
|
+
@mixin hook-modal-close-outside-hover(){}
|
|
785
|
+
@mixin hook-modal-close-full(){}
|
|
786
|
+
@mixin hook-modal-close-full-hover(){}
|
|
787
|
+
@mixin hook-modal-misc(){}
|
|
788
|
+
@mixin hook-marker(){}
|
|
789
|
+
@mixin hook-marker-hover(){}
|
|
790
|
+
@mixin hook-marker-misc(){}
|
|
791
|
+
@mixin hook-inverse-marker(){}
|
|
792
|
+
@mixin hook-inverse-marker-hover(){}
|
|
793
|
+
@mixin hook-inverse-component-marker(){
|
|
794
|
+
|
|
795
|
+
.uk-marker {
|
|
796
|
+
background: $inverse-marker-background;
|
|
797
|
+
color: $inverse-marker-color;
|
|
798
|
+
@if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
|
|
910
799
|
}
|
|
911
800
|
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
color: $inverse-link-heading-hover-color;
|
|
916
|
-
@if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
|
|
801
|
+
.uk-marker:hover {
|
|
802
|
+
color: $inverse-marker-hover-color;
|
|
803
|
+
@if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
|
|
917
804
|
}
|
|
918
805
|
|
|
919
806
|
}
|
|
807
|
+
@mixin hook-margin-misc(){}
|
|
808
|
+
@mixin hook-list-divider(){}
|
|
809
|
+
@mixin hook-list-striped(){}
|
|
810
|
+
@mixin hook-list-misc(){}
|
|
811
|
+
@mixin hook-inverse-list-divider(){}
|
|
812
|
+
@mixin hook-inverse-list-striped(){}
|
|
920
813
|
@mixin hook-inverse-component-list(){
|
|
921
814
|
|
|
922
815
|
.uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
|
|
@@ -940,24 +833,73 @@
|
|
|
940
833
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
941
834
|
|
|
942
835
|
}
|
|
943
|
-
@mixin hook-
|
|
836
|
+
@mixin hook-link-muted(){}
|
|
837
|
+
@mixin hook-link-muted-hover(){}
|
|
838
|
+
@mixin hook-link-text(){}
|
|
839
|
+
@mixin hook-link-text-hover(){}
|
|
840
|
+
@mixin hook-link-heading(){}
|
|
841
|
+
@mixin hook-link-heading-hover(){}
|
|
842
|
+
@mixin hook-link-reset(){}
|
|
843
|
+
@mixin hook-link-misc(){}
|
|
844
|
+
@mixin hook-inverse-link-muted(){}
|
|
845
|
+
@mixin hook-inverse-link-muted-hover(){}
|
|
846
|
+
@mixin hook-inverse-link-text-hover(){}
|
|
847
|
+
@mixin hook-inverse-link-heading-hover(){}
|
|
848
|
+
@mixin hook-inverse-component-link(){
|
|
944
849
|
|
|
945
|
-
.uk-
|
|
946
|
-
|
|
947
|
-
|
|
850
|
+
a.uk-link-muted,
|
|
851
|
+
.uk-link-muted a {
|
|
852
|
+
color: $inverse-link-muted-color;
|
|
853
|
+
@if(mixin-exists(hook-inverse-link-muted)) {@include hook-inverse-link-muted();}
|
|
948
854
|
}
|
|
949
855
|
|
|
950
|
-
.uk-
|
|
951
|
-
|
|
952
|
-
|
|
856
|
+
a.uk-link-muted:hover,
|
|
857
|
+
.uk-link-muted a:hover,
|
|
858
|
+
.uk-link-toggle:hover .uk-link-muted {
|
|
859
|
+
color: $inverse-link-muted-hover-color;
|
|
860
|
+
@if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
|
|
953
861
|
}
|
|
954
862
|
|
|
955
|
-
.uk-
|
|
956
|
-
|
|
957
|
-
|
|
863
|
+
a.uk-link-text:hover,
|
|
864
|
+
.uk-link-text a:hover,
|
|
865
|
+
.uk-link-toggle:hover .uk-link-text {
|
|
866
|
+
color: $inverse-link-text-hover-color;
|
|
867
|
+
@if(mixin-exists(hook-inverse-link-text-hover)) {@include hook-inverse-link-text-hover();}
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
a.uk-link-heading:hover,
|
|
871
|
+
.uk-link-heading a:hover,
|
|
872
|
+
.uk-link-toggle:hover .uk-link-heading {
|
|
873
|
+
color: $inverse-link-heading-hover-color;
|
|
874
|
+
@if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
}
|
|
878
|
+
@mixin hook-lightbox(){}
|
|
879
|
+
@mixin hook-lightbox-item(){}
|
|
880
|
+
@mixin hook-lightbox-toolbar(){}
|
|
881
|
+
@mixin hook-lightbox-toolbar-icon(){}
|
|
882
|
+
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
883
|
+
@mixin hook-lightbox-button(){}
|
|
884
|
+
@mixin hook-lightbox-button-hover(){}
|
|
885
|
+
@mixin hook-lightbox-button-active(){}
|
|
886
|
+
@mixin hook-lightbox-misc(){}
|
|
887
|
+
@mixin hook-leader(){}
|
|
888
|
+
@mixin hook-leader-misc(){}
|
|
889
|
+
@mixin hook-inverse-leader(){}
|
|
890
|
+
@mixin hook-inverse-component-leader(){
|
|
891
|
+
|
|
892
|
+
.uk-leader-fill::after {
|
|
893
|
+
@if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
|
|
958
894
|
}
|
|
959
895
|
|
|
960
896
|
}
|
|
897
|
+
@mixin hook-label(){}
|
|
898
|
+
@mixin hook-label-success(){}
|
|
899
|
+
@mixin hook-label-warning(){}
|
|
900
|
+
@mixin hook-label-danger(){}
|
|
901
|
+
@mixin hook-label-misc(){}
|
|
902
|
+
@mixin hook-inverse-label(){}
|
|
961
903
|
@mixin hook-inverse-component-label(){
|
|
962
904
|
|
|
963
905
|
.uk-label {
|
|
@@ -967,424 +909,566 @@
|
|
|
967
909
|
}
|
|
968
910
|
|
|
969
911
|
}
|
|
970
|
-
@mixin hook-inverse-component-
|
|
912
|
+
@mixin hook-inverse-component-base(){
|
|
913
|
+
|
|
914
|
+
color: $inverse-base-color;
|
|
915
|
+
|
|
916
|
+
// Base
|
|
917
|
+
// ========================================================================
|
|
971
918
|
|
|
972
919
|
//
|
|
973
|
-
//
|
|
920
|
+
// Link
|
|
974
921
|
//
|
|
975
922
|
|
|
976
|
-
|
|
923
|
+
a,
|
|
924
|
+
.uk-link {
|
|
925
|
+
color: $inverse-base-link-color;
|
|
926
|
+
@if(mixin-exists(hook-inverse-base-link)) {@include hook-inverse-base-link();}
|
|
927
|
+
}
|
|
977
928
|
|
|
978
|
-
|
|
929
|
+
a:hover,
|
|
930
|
+
.uk-link:hover,
|
|
931
|
+
.uk-link-toggle:hover .uk-link {
|
|
932
|
+
color: $inverse-base-link-hover-color;
|
|
933
|
+
@if(mixin-exists(hook-inverse-base-link-hover)) {@include hook-inverse-base-link-hover();}
|
|
934
|
+
}
|
|
979
935
|
|
|
980
936
|
//
|
|
981
|
-
//
|
|
937
|
+
// Code
|
|
982
938
|
//
|
|
983
939
|
|
|
984
|
-
|
|
985
|
-
|
|
940
|
+
:not(pre) > code,
|
|
941
|
+
:not(pre) > kbd,
|
|
942
|
+
:not(pre) > samp {
|
|
943
|
+
color: $inverse-base-code-color;
|
|
944
|
+
@if(mixin-exists(hook-inverse-base-code)) {@include hook-inverse-base-code();}
|
|
945
|
+
}
|
|
986
946
|
|
|
987
947
|
//
|
|
988
|
-
//
|
|
948
|
+
// Emphasize
|
|
989
949
|
//
|
|
990
950
|
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
951
|
+
em { color: $inverse-base-em-color; }
|
|
952
|
+
|
|
953
|
+
//
|
|
954
|
+
// Headings
|
|
955
|
+
//
|
|
956
|
+
|
|
957
|
+
h1, .uk-h1,
|
|
958
|
+
h2, .uk-h2,
|
|
959
|
+
h3, .uk-h3,
|
|
960
|
+
h4, .uk-h4,
|
|
961
|
+
h5, .uk-h5,
|
|
962
|
+
h6, .uk-h6,
|
|
963
|
+
.uk-heading-small,
|
|
964
|
+
.uk-heading-medium,
|
|
965
|
+
.uk-heading-large,
|
|
966
|
+
.uk-heading-xlarge,
|
|
967
|
+
.uk-heading-2xlarge {
|
|
968
|
+
color: $inverse-base-heading-color;
|
|
969
|
+
@if(mixin-exists(hook-inverse-base-heading)) {@include hook-inverse-base-heading();}
|
|
994
970
|
}
|
|
995
971
|
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
972
|
+
h1, .uk-h1 {
|
|
973
|
+
@if(mixin-exists(hook-inverse-base-h1)) {@include hook-inverse-base-h1();}
|
|
999
974
|
}
|
|
1000
975
|
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
976
|
+
h2, .uk-h2 {
|
|
977
|
+
@if(mixin-exists(hook-inverse-base-h2)) {@include hook-inverse-base-h2();}
|
|
1004
978
|
}
|
|
1005
979
|
|
|
1006
|
-
|
|
1007
|
-
@if(mixin-exists(hook-inverse-
|
|
980
|
+
h3, .uk-h3 {
|
|
981
|
+
@if(mixin-exists(hook-inverse-base-h3)) {@include hook-inverse-base-h3();}
|
|
1008
982
|
}
|
|
1009
983
|
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
984
|
+
h4, .uk-h4 {
|
|
985
|
+
@if(mixin-exists(hook-inverse-base-h4)) {@include hook-inverse-base-h4();}
|
|
1013
986
|
}
|
|
1014
987
|
|
|
1015
|
-
|
|
1016
|
-
@if(mixin-exists(hook-inverse-
|
|
988
|
+
h5, .uk-h5 {
|
|
989
|
+
@if(mixin-exists(hook-inverse-base-h5)) {@include hook-inverse-base-h5();}
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
h6, .uk-h6 {
|
|
993
|
+
@if(mixin-exists(hook-inverse-base-h6)) {@include hook-inverse-base-h6();}
|
|
1017
994
|
}
|
|
1018
995
|
|
|
1019
996
|
//
|
|
1020
|
-
//
|
|
997
|
+
// Blockquotes
|
|
1021
998
|
//
|
|
1022
999
|
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
@if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
|
|
1000
|
+
blockquote {
|
|
1001
|
+
@if(mixin-exists(hook-inverse-base-blockquote)) {@include hook-inverse-base-blockquote();}
|
|
1026
1002
|
}
|
|
1027
1003
|
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
@if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
|
|
1004
|
+
blockquote footer {
|
|
1005
|
+
@if(mixin-exists(hook-inverse-base-blockquote-footer)) {@include hook-inverse-base-blockquote-footer();}
|
|
1031
1006
|
}
|
|
1032
1007
|
|
|
1033
|
-
}
|
|
1034
|
-
@mixin hook-inverse-component-nav(){
|
|
1035
|
-
|
|
1036
1008
|
//
|
|
1037
|
-
//
|
|
1009
|
+
// Horizontal rules
|
|
1038
1010
|
//
|
|
1039
1011
|
|
|
1040
|
-
.uk-
|
|
1041
|
-
color: $inverse-
|
|
1042
|
-
@if(mixin-exists(hook-inverse-
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
.uk-nav-default > li > a:hover {
|
|
1046
|
-
color: $inverse-nav-default-item-hover-color;
|
|
1047
|
-
@if(mixin-exists(hook-inverse-nav-default-item-hover)) {@include hook-inverse-nav-default-item-hover();}
|
|
1012
|
+
hr, .uk-hr {
|
|
1013
|
+
border-top-color: $inverse-base-hr-border;
|
|
1014
|
+
@if(mixin-exists(hook-inverse-base-hr)) {@include hook-inverse-base-hr();}
|
|
1048
1015
|
}
|
|
1049
1016
|
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1017
|
+
//
|
|
1018
|
+
// Focus
|
|
1019
|
+
//
|
|
1020
|
+
|
|
1021
|
+
:focus { outline-color: $inverse-base-focus-outline; }
|
|
1022
|
+
:focus-visible { outline-color: $inverse-base-focus-outline; }
|
|
1023
|
+
|
|
1024
|
+
}
|
|
1025
|
+
@mixin hook-inverse-component-heading(){
|
|
1026
|
+
|
|
1027
|
+
.uk-heading-small {
|
|
1028
|
+
@if(mixin-exists(hook-inverse-heading-small)) {@include hook-inverse-heading-small();}
|
|
1053
1029
|
}
|
|
1054
1030
|
|
|
1055
|
-
.uk-
|
|
1056
|
-
|
|
1057
|
-
@if(mixin-exists(hook-inverse-nav-default-header)) {@include hook-inverse-nav-default-header();}
|
|
1031
|
+
.uk-heading-medium {
|
|
1032
|
+
@if(mixin-exists(hook-inverse-heading-medium)) {@include hook-inverse-heading-medium();}
|
|
1058
1033
|
}
|
|
1059
1034
|
|
|
1060
|
-
.uk-
|
|
1061
|
-
|
|
1062
|
-
@if(mixin-exists(hook-inverse-nav-default-divider)) {@include hook-inverse-nav-default-divider();}
|
|
1035
|
+
.uk-heading-large {
|
|
1036
|
+
@if(mixin-exists(hook-inverse-heading-large)) {@include hook-inverse-heading-large();}
|
|
1063
1037
|
}
|
|
1064
1038
|
|
|
1065
|
-
.uk-
|
|
1039
|
+
.uk-heading-xlarge {
|
|
1040
|
+
@if(mixin-exists(hook-inverse-heading-xlarge)) {@include hook-inverse-heading-xlarge();}
|
|
1041
|
+
}
|
|
1066
1042
|
|
|
1067
|
-
.uk-
|
|
1043
|
+
.uk-heading-2xlarge {
|
|
1044
|
+
@if(mixin-exists(hook-inverse-heading-2xlarge)) {@include hook-inverse-heading-2xlarge();}
|
|
1045
|
+
}
|
|
1068
1046
|
|
|
1069
|
-
|
|
1047
|
+
@if ($deprecated == true) { .uk-heading-primary { @if (mixin-exists(hook-inverse-heading-primary)) {@include hook-inverse-heading-primary();}}}
|
|
1070
1048
|
|
|
1071
|
-
|
|
1072
|
-
// Primary
|
|
1073
|
-
//
|
|
1049
|
+
@if ($deprecated == true) { .uk-heading-hero { @if (mixin-exists(hook-inverse-heading-hero)) {@include hook-inverse-heading-hero();}}}
|
|
1074
1050
|
|
|
1075
|
-
.uk-
|
|
1076
|
-
color: $inverse-
|
|
1077
|
-
@if(mixin-exists(hook-inverse-
|
|
1051
|
+
.uk-heading-divider {
|
|
1052
|
+
border-bottom-color: $inverse-heading-divider-border;
|
|
1053
|
+
@if(mixin-exists(hook-inverse-heading-divider)) {@include hook-inverse-heading-divider();}
|
|
1078
1054
|
}
|
|
1079
1055
|
|
|
1080
|
-
.uk-
|
|
1081
|
-
color: $inverse-
|
|
1082
|
-
@if(mixin-exists(hook-inverse-
|
|
1056
|
+
.uk-heading-bullet::before {
|
|
1057
|
+
border-left-color: $inverse-heading-bullet-border;
|
|
1058
|
+
@if(mixin-exists(hook-inverse-heading-bullet)) {@include hook-inverse-heading-bullet();}
|
|
1083
1059
|
}
|
|
1084
1060
|
|
|
1085
|
-
.uk-
|
|
1086
|
-
|
|
1087
|
-
|
|
1061
|
+
.uk-heading-line > ::before,
|
|
1062
|
+
.uk-heading-line > ::after {
|
|
1063
|
+
border-bottom-color: $inverse-heading-line-border;
|
|
1064
|
+
@if(mixin-exists(hook-inverse-heading-line)) {@include hook-inverse-heading-line();}
|
|
1088
1065
|
}
|
|
1089
1066
|
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1067
|
+
}
|
|
1068
|
+
@mixin hook-inverse-component-divider(){
|
|
1069
|
+
|
|
1070
|
+
.uk-divider-icon {
|
|
1071
|
+
@include svg-fill($internal-divider-icon-image, "#000", $inverse-divider-icon-color);
|
|
1072
|
+
@if(mixin-exists(hook-inverse-divider-icon)) {@include hook-inverse-divider-icon();}
|
|
1093
1073
|
}
|
|
1094
1074
|
|
|
1095
|
-
.uk-
|
|
1096
|
-
|
|
1097
|
-
|
|
1075
|
+
.uk-divider-icon::before,
|
|
1076
|
+
.uk-divider-icon::after {
|
|
1077
|
+
border-bottom-color: $inverse-divider-icon-line-border;
|
|
1078
|
+
@if(mixin-exists(hook-inverse-divider-icon-line)) {@include hook-inverse-divider-icon-line();}
|
|
1098
1079
|
}
|
|
1099
1080
|
|
|
1100
|
-
.uk-
|
|
1081
|
+
.uk-divider-small::after {
|
|
1082
|
+
border-top-color: $inverse-divider-small-border;
|
|
1083
|
+
@if(mixin-exists(hook-inverse-divider-small)) {@include hook-inverse-divider-small();}
|
|
1084
|
+
}
|
|
1101
1085
|
|
|
1102
|
-
.uk-
|
|
1086
|
+
.uk-divider-vertical {
|
|
1087
|
+
border-left-color: $inverse-divider-vertical-border;
|
|
1088
|
+
@if(mixin-exists(hook-inverse-divider-vertical)) {@include hook-inverse-divider-vertical();}
|
|
1089
|
+
}
|
|
1103
1090
|
|
|
1104
|
-
|
|
1091
|
+
}
|
|
1092
|
+
@mixin hook-inverse-component-icon(){
|
|
1105
1093
|
|
|
1106
1094
|
//
|
|
1107
|
-
//
|
|
1095
|
+
// Link
|
|
1108
1096
|
//
|
|
1109
1097
|
|
|
1110
|
-
.uk-
|
|
1111
|
-
color: $inverse-
|
|
1112
|
-
@if(mixin-exists(hook-inverse-
|
|
1098
|
+
.uk-icon-link {
|
|
1099
|
+
color: $inverse-icon-link-color;
|
|
1100
|
+
@if(mixin-exists(hook-inverse-icon-link)) {@include hook-inverse-icon-link();}
|
|
1113
1101
|
}
|
|
1114
1102
|
|
|
1115
|
-
.uk-
|
|
1116
|
-
color: $inverse-
|
|
1117
|
-
@if(mixin-exists(hook-inverse-
|
|
1103
|
+
.uk-icon-link:hover {
|
|
1104
|
+
color: $inverse-icon-link-hover-color;
|
|
1105
|
+
@if(mixin-exists(hook-inverse-icon-link-hover)) {@include hook-inverse-icon-link-hover();}
|
|
1118
1106
|
}
|
|
1119
1107
|
|
|
1120
|
-
.uk-
|
|
1121
|
-
|
|
1122
|
-
|
|
1108
|
+
.uk-icon-link:active,
|
|
1109
|
+
.uk-active > .uk-icon-link {
|
|
1110
|
+
color: $inverse-icon-link-active-color;
|
|
1111
|
+
@if(mixin-exists(hook-inverse-icon-link-active)) {@include hook-inverse-icon-link-active();}
|
|
1123
1112
|
}
|
|
1124
1113
|
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
}
|
|
1114
|
+
//
|
|
1115
|
+
// Button
|
|
1116
|
+
//
|
|
1129
1117
|
|
|
1130
|
-
.uk-
|
|
1131
|
-
color: $inverse-
|
|
1132
|
-
|
|
1118
|
+
.uk-icon-button {
|
|
1119
|
+
background-color: $inverse-icon-button-background;
|
|
1120
|
+
color: $inverse-icon-button-color;
|
|
1121
|
+
@if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
|
|
1133
1122
|
}
|
|
1134
1123
|
|
|
1135
|
-
.uk-
|
|
1136
|
-
color: $inverse-
|
|
1137
|
-
|
|
1124
|
+
.uk-icon-button:hover {
|
|
1125
|
+
background-color: $inverse-icon-button-hover-background;
|
|
1126
|
+
color: $inverse-icon-button-hover-color;
|
|
1127
|
+
@if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
|
|
1138
1128
|
}
|
|
1139
1129
|
|
|
1140
|
-
.uk-
|
|
1141
|
-
color: $inverse-
|
|
1142
|
-
|
|
1130
|
+
.uk-icon-button:active {
|
|
1131
|
+
background-color: $inverse-icon-button-active-background;
|
|
1132
|
+
color: $inverse-icon-button-active-color;
|
|
1133
|
+
@if(mixin-exists(hook-inverse-icon-button-active)) {@include hook-inverse-icon-button-active();}
|
|
1143
1134
|
}
|
|
1144
1135
|
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1136
|
+
}
|
|
1137
|
+
@mixin hook-inverse-component-form(){
|
|
1138
|
+
|
|
1139
|
+
.uk-input,
|
|
1140
|
+
.uk-select,
|
|
1141
|
+
.uk-textarea {
|
|
1142
|
+
background-color: $inverse-form-background;
|
|
1143
|
+
color: $inverse-form-color;
|
|
1144
|
+
background-clip: padding-box;
|
|
1145
|
+
@if(mixin-exists(hook-inverse-form)) {@include hook-inverse-form();}
|
|
1146
|
+
|
|
1147
|
+
&:focus {
|
|
1148
|
+
background-color: $inverse-form-focus-background;
|
|
1149
|
+
color: $inverse-form-focus-color;
|
|
1150
|
+
@if(mixin-exists(hook-inverse-form-focus)) {@include hook-inverse-form-focus();}
|
|
1151
|
+
}
|
|
1148
1152
|
}
|
|
1149
1153
|
|
|
1150
|
-
|
|
1154
|
+
//
|
|
1155
|
+
// Placeholder
|
|
1156
|
+
//
|
|
1151
1157
|
|
|
1152
|
-
.uk-
|
|
1158
|
+
.uk-input::placeholder { color: $inverse-form-placeholder-color; }
|
|
1153
1159
|
|
|
1154
|
-
.uk-
|
|
1160
|
+
.uk-textarea::placeholder { color: $inverse-form-placeholder-color; }
|
|
1155
1161
|
|
|
1156
1162
|
//
|
|
1157
|
-
//
|
|
1163
|
+
// Select
|
|
1158
1164
|
//
|
|
1159
1165
|
|
|
1160
|
-
.uk-
|
|
1161
|
-
border-top-color: $inverse-nav-dividers-border;
|
|
1162
|
-
@if(mixin-exists(hook-inverse-nav-dividers)) {@include hook-inverse-nav-dividers();}
|
|
1163
|
-
}
|
|
1166
|
+
.uk-select:not([multiple]):not([size]) { @include svg-fill($internal-form-select-image, "#000", $inverse-form-select-icon-color); }
|
|
1164
1167
|
|
|
1165
|
-
|
|
1166
|
-
|
|
1168
|
+
//
|
|
1169
|
+
// Datalist
|
|
1170
|
+
//
|
|
1171
|
+
|
|
1172
|
+
.uk-input[list]:hover,
|
|
1173
|
+
.uk-input[list]:focus { @include svg-fill($internal-form-datalist-image, "#000", $inverse-form-datalist-icon-color); }
|
|
1167
1174
|
|
|
1168
1175
|
//
|
|
1169
|
-
//
|
|
1176
|
+
// Radio and checkbox
|
|
1170
1177
|
//
|
|
1171
1178
|
|
|
1172
|
-
.uk-
|
|
1173
|
-
|
|
1174
|
-
|
|
1179
|
+
.uk-radio,
|
|
1180
|
+
.uk-checkbox {
|
|
1181
|
+
background-color: $inverse-form-radio-background;
|
|
1182
|
+
@if(mixin-exists(hook-inverse-form-radio)) {@include hook-inverse-form-radio();}
|
|
1175
1183
|
}
|
|
1176
1184
|
|
|
1177
|
-
|
|
1178
|
-
.uk-
|
|
1179
|
-
|
|
1180
|
-
|
|
1185
|
+
// Focus
|
|
1186
|
+
.uk-radio:focus,
|
|
1187
|
+
.uk-checkbox:focus {
|
|
1188
|
+
background-color: $inverse-form-radio-focus-background;
|
|
1189
|
+
@if(mixin-exists(hook-inverse-form-radio-focus)) {@include hook-inverse-form-radio-focus();}
|
|
1181
1190
|
}
|
|
1182
1191
|
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1192
|
+
// Checked
|
|
1193
|
+
.uk-radio:checked,
|
|
1194
|
+
.uk-checkbox:checked,
|
|
1195
|
+
.uk-checkbox:indeterminate {
|
|
1196
|
+
background-color: $inverse-form-radio-checked-background;
|
|
1197
|
+
@if(mixin-exists(hook-inverse-form-radio-checked)) {@include hook-inverse-form-radio-checked();}
|
|
1186
1198
|
}
|
|
1187
1199
|
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1200
|
+
// Focus
|
|
1201
|
+
.uk-radio:checked:focus,
|
|
1202
|
+
.uk-checkbox:checked:focus,
|
|
1203
|
+
.uk-checkbox:indeterminate:focus {
|
|
1204
|
+
background-color: $inverse-form-radio-checked-focus-background;
|
|
1205
|
+
@if(mixin-exists(hook-inverse-form-radio-checked-focus)) {@include hook-inverse-form-radio-checked-focus();}
|
|
1191
1206
|
}
|
|
1192
1207
|
|
|
1193
|
-
//
|
|
1194
|
-
|
|
1195
|
-
|
|
1208
|
+
// Icon
|
|
1209
|
+
.uk-radio:checked { @include svg-fill($internal-form-radio-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
1210
|
+
.uk-checkbox:checked { @include svg-fill($internal-form-checkbox-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
1211
|
+
.uk-checkbox:indeterminate { @include svg-fill($internal-form-checkbox-indeterminate-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
1196
1212
|
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
@if(mixin-exists(hook-inverse-
|
|
1213
|
+
// Label
|
|
1214
|
+
.uk-form-label {
|
|
1215
|
+
@if(mixin-exists(hook-inverse-form-label)) {@include hook-inverse-form-label();}
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
// Icon
|
|
1219
|
+
.uk-form-icon {
|
|
1220
|
+
color: $inverse-form-icon-color;
|
|
1221
|
+
@if(mixin-exists(hook-inverse-form-icon)) {@include hook-inverse-form-icon();}
|
|
1200
1222
|
}
|
|
1223
|
+
.uk-form-icon:hover { color: $inverse-form-icon-hover-color; }
|
|
1224
|
+
|
|
1225
|
+
}
|
|
1226
|
+
@mixin hook-inverse-component-button(){
|
|
1201
1227
|
|
|
1202
1228
|
//
|
|
1203
|
-
//
|
|
1229
|
+
// Default
|
|
1204
1230
|
//
|
|
1205
1231
|
|
|
1206
|
-
.uk-
|
|
1207
|
-
color: $inverse-
|
|
1208
|
-
|
|
1232
|
+
.uk-button-default {
|
|
1233
|
+
background-color: $inverse-button-default-background;
|
|
1234
|
+
color: $inverse-button-default-color;
|
|
1235
|
+
@if(mixin-exists(hook-inverse-button-default)) {@include hook-inverse-button-default();}
|
|
1209
1236
|
}
|
|
1210
1237
|
|
|
1211
|
-
.uk-
|
|
1212
|
-
|
|
1213
|
-
color: $inverse-
|
|
1214
|
-
@if(mixin-exists(hook-inverse-
|
|
1238
|
+
.uk-button-default:hover {
|
|
1239
|
+
background-color: $inverse-button-default-hover-background;
|
|
1240
|
+
color: $inverse-button-default-hover-color;
|
|
1241
|
+
@if(mixin-exists(hook-inverse-button-default-hover)) {@include hook-inverse-button-default-hover();}
|
|
1215
1242
|
}
|
|
1216
1243
|
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
1244
|
+
.uk-button-default:active,
|
|
1245
|
+
.uk-button-default.uk-active {
|
|
1246
|
+
background-color: $inverse-button-default-active-background;
|
|
1247
|
+
color: $inverse-button-default-active-color;
|
|
1248
|
+
@if(mixin-exists(hook-inverse-button-default-active)) {@include hook-inverse-button-default-active();}
|
|
1223
1249
|
}
|
|
1224
1250
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1251
|
+
//
|
|
1252
|
+
// Primary
|
|
1253
|
+
//
|
|
1254
|
+
|
|
1255
|
+
.uk-button-primary {
|
|
1256
|
+
background-color: $inverse-button-primary-background;
|
|
1257
|
+
color: $inverse-button-primary-color;
|
|
1258
|
+
@if(mixin-exists(hook-inverse-button-primary)) {@include hook-inverse-button-primary();}
|
|
1228
1259
|
}
|
|
1229
1260
|
|
|
1230
|
-
.uk-
|
|
1231
|
-
color: $inverse-
|
|
1232
|
-
|
|
1261
|
+
.uk-button-primary:hover {
|
|
1262
|
+
background-color: $inverse-button-primary-hover-background;
|
|
1263
|
+
color: $inverse-button-primary-hover-color;
|
|
1264
|
+
@if(mixin-exists(hook-inverse-button-primary-hover)) {@include hook-inverse-button-primary-hover();}
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.uk-button-primary:active,
|
|
1268
|
+
.uk-button-primary.uk-active {
|
|
1269
|
+
background-color: $inverse-button-primary-active-background;
|
|
1270
|
+
color: $inverse-button-primary-active-color;
|
|
1271
|
+
@if(mixin-exists(hook-inverse-button-primary-active)) {@include hook-inverse-button-primary-active();}
|
|
1233
1272
|
}
|
|
1234
1273
|
|
|
1235
1274
|
//
|
|
1236
|
-
//
|
|
1275
|
+
// Secondary
|
|
1237
1276
|
//
|
|
1238
1277
|
|
|
1239
|
-
.uk-
|
|
1240
|
-
|
|
1241
|
-
|
|
1278
|
+
.uk-button-secondary {
|
|
1279
|
+
background-color: $inverse-button-secondary-background;
|
|
1280
|
+
color: $inverse-button-secondary-color;
|
|
1281
|
+
@if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
|
|
1242
1282
|
}
|
|
1243
1283
|
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1284
|
+
.uk-button-secondary:hover {
|
|
1285
|
+
background-color: $inverse-button-secondary-hover-background;
|
|
1286
|
+
color: $inverse-button-secondary-hover-color;
|
|
1287
|
+
@if(mixin-exists(hook-inverse-button-secondary-hover)) {@include hook-inverse-button-secondary-hover();}
|
|
1288
|
+
}
|
|
1247
1289
|
|
|
1248
|
-
.uk-
|
|
1249
|
-
|
|
1250
|
-
color: $inverse-
|
|
1251
|
-
|
|
1290
|
+
.uk-button-secondary:active,
|
|
1291
|
+
.uk-button-secondary.uk-active {
|
|
1292
|
+
background-color: $inverse-button-secondary-active-background;
|
|
1293
|
+
color: $inverse-button-secondary-active-color;
|
|
1294
|
+
@if(mixin-exists(hook-inverse-button-secondary-active)) {@include hook-inverse-button-secondary-active();}
|
|
1252
1295
|
}
|
|
1253
1296
|
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1297
|
+
//
|
|
1298
|
+
// Text
|
|
1299
|
+
//
|
|
1300
|
+
|
|
1301
|
+
.uk-button-text {
|
|
1302
|
+
color: $inverse-button-text-color;
|
|
1303
|
+
@if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
|
|
1258
1304
|
}
|
|
1259
1305
|
|
|
1260
|
-
.uk-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1306
|
+
.uk-button-text:hover {
|
|
1307
|
+
color: $inverse-button-text-hover-color;
|
|
1308
|
+
@if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
|
|
1264
1309
|
}
|
|
1265
1310
|
|
|
1266
|
-
.uk-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
1311
|
+
.uk-button-text:disabled {
|
|
1312
|
+
color: $inverse-button-text-disabled-color;
|
|
1313
|
+
@if(mixin-exists(hook-inverse-button-text-disabled)) {@include hook-inverse-button-text-disabled();}
|
|
1270
1314
|
}
|
|
1271
1315
|
|
|
1272
1316
|
//
|
|
1273
|
-
//
|
|
1317
|
+
// Link
|
|
1274
1318
|
//
|
|
1275
1319
|
|
|
1276
|
-
.uk-
|
|
1277
|
-
color: $inverse-
|
|
1278
|
-
@if(mixin-exists(hook-inverse-
|
|
1320
|
+
.uk-button-link {
|
|
1321
|
+
color: $inverse-button-link-color;
|
|
1322
|
+
@if(mixin-exists(hook-inverse-button-link)) {@include hook-inverse-button-link();}
|
|
1279
1323
|
}
|
|
1280
1324
|
|
|
1325
|
+
.uk-button-link:hover { color: $inverse-button-link-hover-color; }
|
|
1326
|
+
|
|
1281
1327
|
}
|
|
1282
|
-
@mixin hook-inverse-component-
|
|
1328
|
+
@mixin hook-inverse-component-grid(){
|
|
1283
1329
|
|
|
1284
|
-
.uk-
|
|
1285
|
-
color: $inverse-
|
|
1286
|
-
@if(mixin-exists(hook-inverse-
|
|
1330
|
+
.uk-grid-divider > :not(.uk-first-column)::before {
|
|
1331
|
+
border-left-color: $inverse-grid-divider-border;
|
|
1332
|
+
@if(mixin-exists(hook-inverse-grid-divider-horizontal)) {@include hook-inverse-grid-divider-horizontal();}
|
|
1287
1333
|
}
|
|
1288
1334
|
|
|
1289
|
-
.uk-
|
|
1290
|
-
color: $inverse-
|
|
1291
|
-
@if(mixin-exists(hook-inverse-
|
|
1335
|
+
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
1336
|
+
border-top-color: $inverse-grid-divider-border;
|
|
1337
|
+
@if(mixin-exists(hook-inverse-grid-divider-vertical)) {@include hook-inverse-grid-divider-vertical();}
|
|
1292
1338
|
}
|
|
1293
1339
|
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1340
|
+
}
|
|
1341
|
+
@mixin hook-inverse-component-close(){
|
|
1342
|
+
|
|
1343
|
+
.uk-close {
|
|
1344
|
+
color: $inverse-close-color;
|
|
1345
|
+
@if(mixin-exists(hook-inverse-close)) {@include hook-inverse-close();}
|
|
1297
1346
|
}
|
|
1298
1347
|
|
|
1299
|
-
.uk-
|
|
1300
|
-
color: $inverse-
|
|
1301
|
-
@if(mixin-exists(hook-inverse-
|
|
1348
|
+
.uk-close:hover {
|
|
1349
|
+
color: $inverse-close-hover-color;
|
|
1350
|
+
@if(mixin-exists(hook-inverse-close-hover)) {@include hook-inverse-close-hover();}
|
|
1302
1351
|
}
|
|
1303
1352
|
|
|
1304
1353
|
}
|
|
1305
|
-
@mixin hook-inverse-component-
|
|
1354
|
+
@mixin hook-inverse-component-badge(){
|
|
1306
1355
|
|
|
1307
|
-
.uk-
|
|
1308
|
-
|
|
1356
|
+
.uk-badge {
|
|
1357
|
+
background-color: $inverse-badge-background;
|
|
1358
|
+
color: $inverse-badge-color !important;
|
|
1359
|
+
@if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
|
|
1309
1360
|
}
|
|
1310
1361
|
|
|
1311
|
-
.uk-
|
|
1312
|
-
|
|
1313
|
-
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
1362
|
+
.uk-badge:hover {
|
|
1363
|
+
@if(mixin-exists(hook-inverse-badge-hover)) {@include hook-inverse-badge-hover();}
|
|
1314
1364
|
}
|
|
1315
1365
|
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1366
|
+
}
|
|
1367
|
+
@mixin hook-inverse-component-article(){
|
|
1368
|
+
|
|
1369
|
+
.uk-article-title {
|
|
1370
|
+
@if(mixin-exists(hook-inverse-article-title)) {@include hook-inverse-article-title();}
|
|
1319
1371
|
}
|
|
1320
1372
|
|
|
1321
|
-
.uk-
|
|
1322
|
-
color: $inverse-
|
|
1323
|
-
@if(mixin-exists(hook-inverse-
|
|
1373
|
+
.uk-article-meta {
|
|
1374
|
+
color: $inverse-article-meta-color;
|
|
1375
|
+
@if(mixin-exists(hook-inverse-article-meta)) {@include hook-inverse-article-meta();}
|
|
1324
1376
|
}
|
|
1325
1377
|
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1378
|
+
}
|
|
1379
|
+
@mixin hook-inverse-component-breadcrumb(){
|
|
1380
|
+
|
|
1381
|
+
.uk-breadcrumb > * > * {
|
|
1382
|
+
color: $inverse-breadcrumb-item-color;
|
|
1383
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.uk-breadcrumb > * > :hover {
|
|
1387
|
+
color: $inverse-breadcrumb-item-hover-color;
|
|
1388
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item-hover)) {@include hook-inverse-breadcrumb-item-hover();}
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
.uk-breadcrumb > .uk-disabled > * {
|
|
1393
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item-disabled)) {@include hook-inverse-breadcrumb-item-disabled();}
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.uk-breadcrumb > :last-child > * {
|
|
1397
|
+
color: $inverse-breadcrumb-item-active-color;
|
|
1398
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item-active)) {@include hook-inverse-breadcrumb-item-active();}
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
//
|
|
1402
|
+
// Divider
|
|
1403
|
+
//
|
|
1404
|
+
|
|
1405
|
+
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
|
|
1406
|
+
color: $inverse-breadcrumb-divider-color;
|
|
1407
|
+
@if(mixin-exists(hook-inverse-breadcrumb-divider)) {@include hook-inverse-breadcrumb-divider();}
|
|
1329
1408
|
}
|
|
1330
1409
|
|
|
1331
1410
|
}
|
|
1332
|
-
@mixin hook-inverse-component-
|
|
1411
|
+
@mixin hook-inverse-component-dotnav(){
|
|
1333
1412
|
|
|
1334
|
-
.uk-
|
|
1335
|
-
color: $inverse-
|
|
1336
|
-
@if(mixin-exists(hook-inverse-
|
|
1413
|
+
.uk-dotnav > * > * {
|
|
1414
|
+
background-color: $inverse-dotnav-item-background;
|
|
1415
|
+
@if(mixin-exists(hook-inverse-dotnav-item)) {@include hook-inverse-dotnav-item();}
|
|
1337
1416
|
}
|
|
1338
1417
|
|
|
1339
|
-
.uk-
|
|
1340
|
-
color: $inverse-
|
|
1341
|
-
@if(mixin-exists(hook-inverse-
|
|
1418
|
+
.uk-dotnav > * > :hover {
|
|
1419
|
+
background-color: $inverse-dotnav-item-hover-background;
|
|
1420
|
+
@if(mixin-exists(hook-inverse-dotnav-item-hover)) {@include hook-inverse-dotnav-item-hover();}
|
|
1342
1421
|
}
|
|
1343
1422
|
|
|
1344
|
-
.uk-
|
|
1345
|
-
color: $inverse-
|
|
1346
|
-
@if(mixin-exists(hook-inverse-
|
|
1423
|
+
.uk-dotnav > * > :active {
|
|
1424
|
+
background-color: $inverse-dotnav-item-onclick-background;
|
|
1425
|
+
@if(mixin-exists(hook-inverse-dotnav-item-onclick)) {@include hook-inverse-dotnav-item-onclick();}
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.uk-dotnav > .uk-active > * {
|
|
1429
|
+
background-color: $inverse-dotnav-item-active-background;
|
|
1430
|
+
@if(mixin-exists(hook-inverse-dotnav-item-active)) {@include hook-inverse-dotnav-item-active();}
|
|
1347
1431
|
}
|
|
1348
1432
|
|
|
1349
1433
|
}
|
|
1350
|
-
@mixin hook-inverse-component-
|
|
1434
|
+
@mixin hook-inverse-component-accordion(){
|
|
1351
1435
|
|
|
1352
|
-
.uk-
|
|
1353
|
-
|
|
1354
|
-
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
1436
|
+
.uk-accordion > :nth-child(n+2) {
|
|
1437
|
+
@if(mixin-exists(hook-inverse-accordion-item)) {@include hook-inverse-accordion-item();}
|
|
1355
1438
|
}
|
|
1356
1439
|
|
|
1357
|
-
.uk-
|
|
1358
|
-
color: $inverse-
|
|
1359
|
-
@if(mixin-exists(hook-inverse-
|
|
1440
|
+
.uk-accordion-title {
|
|
1441
|
+
color: $inverse-accordion-title-color;
|
|
1442
|
+
@if(mixin-exists(hook-inverse-accordion-title)) {@include hook-inverse-accordion-title();}
|
|
1360
1443
|
}
|
|
1361
1444
|
|
|
1362
|
-
.uk-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1445
|
+
.uk-accordion-title:hover {
|
|
1446
|
+
color: $inverse-accordion-title-hover-color;
|
|
1447
|
+
@if(mixin-exists(hook-inverse-accordion-title-hover)) {@include hook-inverse-accordion-title-hover();}
|
|
1448
|
+
}
|
|
1366
1449
|
|
|
1367
1450
|
}
|
|
1368
|
-
@mixin hook-inverse-component-
|
|
1451
|
+
@mixin hook-inverse-component-iconnav(){
|
|
1369
1452
|
|
|
1370
|
-
.uk-
|
|
1371
|
-
|
|
1372
|
-
@if(mixin-exists(hook-inverse-
|
|
1453
|
+
.uk-iconnav > * > a {
|
|
1454
|
+
color: $inverse-iconnav-item-color;
|
|
1455
|
+
@if(mixin-exists(hook-inverse-iconnav-item)) {@include hook-inverse-iconnav-item();}
|
|
1373
1456
|
}
|
|
1374
1457
|
|
|
1375
|
-
.uk-
|
|
1376
|
-
color: $inverse-
|
|
1377
|
-
@if(mixin-exists(hook-inverse-
|
|
1458
|
+
.uk-iconnav > * > a:hover {
|
|
1459
|
+
color: $inverse-iconnav-item-hover-color;
|
|
1460
|
+
@if(mixin-exists(hook-inverse-iconnav-item-hover)) {@include hook-inverse-iconnav-item-hover();}
|
|
1378
1461
|
}
|
|
1379
1462
|
|
|
1380
|
-
.uk-
|
|
1381
|
-
color: $inverse-
|
|
1382
|
-
@if(mixin-exists(hook-inverse-
|
|
1463
|
+
.uk-iconnav > .uk-active > a {
|
|
1464
|
+
color: $inverse-iconnav-item-active-color;
|
|
1465
|
+
@if(mixin-exists(hook-inverse-iconnav-item-active)) {@include hook-inverse-iconnav-item-active();}
|
|
1383
1466
|
}
|
|
1384
1467
|
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1468
|
+
}
|
|
1469
|
+
@mixin hook-inverse-component-column(){
|
|
1470
|
+
|
|
1471
|
+
.uk-column-divider { column-rule-color: $inverse-column-divider-rule-color; }
|
|
1388
1472
|
|
|
1389
1473
|
}
|
|
1390
1474
|
@mixin hook-inverse(){
|
|
@@ -1417,404 +1501,320 @@
|
|
|
1417
1501
|
@include hook-inverse-component-column();
|
|
1418
1502
|
@include hook-inverse-component-utility();
|
|
1419
1503
|
}
|
|
1420
|
-
@mixin hook-
|
|
1421
|
-
@mixin hook-
|
|
1422
|
-
@mixin hook-
|
|
1423
|
-
@mixin hook-
|
|
1424
|
-
@mixin hook-
|
|
1425
|
-
@mixin hook-inverse-
|
|
1426
|
-
@mixin hook-
|
|
1427
|
-
@mixin hook-
|
|
1428
|
-
@mixin hook-
|
|
1429
|
-
@mixin hook-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
}
|
|
1436
|
-
@mixin hook-
|
|
1437
|
-
@mixin hook-
|
|
1438
|
-
@mixin hook-
|
|
1439
|
-
@mixin hook-
|
|
1440
|
-
@mixin hook-
|
|
1441
|
-
@mixin hook-
|
|
1442
|
-
@mixin hook-
|
|
1443
|
-
@mixin hook-
|
|
1444
|
-
@mixin hook-
|
|
1445
|
-
@mixin hook-
|
|
1446
|
-
@mixin hook-
|
|
1447
|
-
@mixin hook-
|
|
1448
|
-
@mixin hook-
|
|
1449
|
-
@mixin hook-
|
|
1450
|
-
@mixin hook-
|
|
1451
|
-
@mixin hook-
|
|
1452
|
-
@mixin hook-
|
|
1453
|
-
@mixin hook-inverse-
|
|
1454
|
-
@mixin hook-inverse-
|
|
1455
|
-
@mixin hook-inverse-
|
|
1456
|
-
@mixin hook-inverse-
|
|
1457
|
-
@mixin hook-
|
|
1458
|
-
@mixin hook-
|
|
1459
|
-
@mixin hook-
|
|
1460
|
-
@mixin hook-inverse-
|
|
1461
|
-
@mixin hook-inverse-
|
|
1462
|
-
@mixin hook-
|
|
1463
|
-
@mixin hook-
|
|
1464
|
-
@mixin hook-
|
|
1465
|
-
@mixin hook-
|
|
1466
|
-
@mixin hook-inverse-
|
|
1467
|
-
@mixin hook-inverse-
|
|
1468
|
-
@mixin hook-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
}
|
|
1482
|
-
@mixin hook-
|
|
1483
|
-
@mixin hook-
|
|
1484
|
-
@mixin hook-
|
|
1485
|
-
@mixin hook-
|
|
1486
|
-
@mixin hook-
|
|
1487
|
-
@mixin hook-
|
|
1488
|
-
@mixin hook-
|
|
1489
|
-
@mixin hook-
|
|
1490
|
-
@mixin hook-
|
|
1491
|
-
@mixin hook-
|
|
1492
|
-
@mixin hook-
|
|
1493
|
-
@mixin hook-
|
|
1494
|
-
@mixin hook-
|
|
1495
|
-
@mixin hook-
|
|
1496
|
-
@mixin hook-
|
|
1497
|
-
@mixin hook-
|
|
1498
|
-
@mixin hook-
|
|
1499
|
-
@mixin hook-
|
|
1500
|
-
@mixin hook-
|
|
1501
|
-
@mixin hook-
|
|
1502
|
-
@mixin hook-
|
|
1503
|
-
@mixin hook-
|
|
1504
|
-
@mixin hook-
|
|
1505
|
-
@mixin hook-
|
|
1506
|
-
@mixin hook-nav
|
|
1507
|
-
@mixin hook-nav-
|
|
1508
|
-
@mixin hook-nav-
|
|
1509
|
-
@mixin hook-nav-
|
|
1510
|
-
@mixin hook-nav-
|
|
1511
|
-
@mixin hook-nav-
|
|
1512
|
-
@mixin hook-
|
|
1513
|
-
@mixin hook-
|
|
1514
|
-
@mixin hook-
|
|
1515
|
-
@mixin hook-
|
|
1516
|
-
@mixin hook-
|
|
1517
|
-
@mixin hook-
|
|
1518
|
-
@mixin hook-
|
|
1519
|
-
@mixin hook-
|
|
1520
|
-
@mixin hook-
|
|
1521
|
-
@mixin hook-
|
|
1522
|
-
@mixin hook-
|
|
1523
|
-
@mixin hook-
|
|
1524
|
-
@mixin hook-
|
|
1525
|
-
@mixin hook-
|
|
1526
|
-
@mixin hook-inverse-
|
|
1527
|
-
@mixin hook-inverse-
|
|
1528
|
-
@mixin hook-inverse-
|
|
1529
|
-
@mixin hook-inverse-
|
|
1530
|
-
@mixin hook-
|
|
1531
|
-
@mixin hook-
|
|
1532
|
-
@mixin hook-
|
|
1533
|
-
@mixin hook-
|
|
1534
|
-
@mixin hook-
|
|
1535
|
-
@mixin hook-
|
|
1536
|
-
@mixin hook-
|
|
1537
|
-
@mixin hook-inverse-
|
|
1538
|
-
@mixin hook-inverse-
|
|
1539
|
-
@mixin hook-inverse-
|
|
1540
|
-
@mixin hook-inverse-
|
|
1541
|
-
@mixin hook-
|
|
1542
|
-
@mixin hook-
|
|
1543
|
-
@mixin hook-
|
|
1544
|
-
@mixin hook-
|
|
1545
|
-
@mixin hook-
|
|
1546
|
-
@mixin hook-
|
|
1547
|
-
@mixin hook-
|
|
1548
|
-
@mixin hook-
|
|
1549
|
-
@mixin hook-
|
|
1550
|
-
@mixin hook-
|
|
1551
|
-
@mixin hook-
|
|
1552
|
-
@mixin hook-
|
|
1553
|
-
@mixin hook-
|
|
1554
|
-
@mixin hook-
|
|
1555
|
-
@mixin hook-
|
|
1556
|
-
@mixin hook-
|
|
1557
|
-
@mixin hook-navbar-primary(){}
|
|
1558
|
-
@mixin hook-navbar-transparent(){}
|
|
1559
|
-
@mixin hook-navbar-sticky(){}
|
|
1560
|
-
@mixin hook-navbar-dropdown(){}
|
|
1561
|
-
@mixin hook-navbar-dropdown-large(){}
|
|
1562
|
-
@mixin hook-navbar-dropdown-dropbar(){}
|
|
1563
|
-
@mixin hook-navbar-dropdown-dropbar-large(){}
|
|
1564
|
-
@mixin hook-navbar-dropdown-nav(){}
|
|
1565
|
-
@mixin hook-navbar-dropdown-nav-item(){}
|
|
1566
|
-
@mixin hook-navbar-dropdown-nav-item-hover(){}
|
|
1567
|
-
@mixin hook-navbar-dropdown-nav-item-active(){}
|
|
1568
|
-
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
1569
|
-
@mixin hook-navbar-dropdown-nav-header(){}
|
|
1570
|
-
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
1571
|
-
@mixin hook-navbar-dropbar(){}
|
|
1572
|
-
@mixin hook-navbar-misc(){}
|
|
1573
|
-
@mixin hook-inverse-navbar-nav-item(){}
|
|
1574
|
-
@mixin hook-inverse-navbar-nav-item-hover(){}
|
|
1575
|
-
@mixin hook-inverse-navbar-nav-item-onclick(){}
|
|
1576
|
-
@mixin hook-inverse-navbar-nav-item-active(){}
|
|
1577
|
-
@mixin hook-inverse-navbar-item(){}
|
|
1578
|
-
@mixin hook-inverse-navbar-toggle(){}
|
|
1579
|
-
@mixin hook-inverse-navbar-toggle-hover(){}
|
|
1580
|
-
@mixin hook-notification(){}
|
|
1581
|
-
@mixin hook-notification-message(){}
|
|
1582
|
-
@mixin hook-notification-close(){}
|
|
1583
|
-
@mixin hook-notification-message-primary(){}
|
|
1584
|
-
@mixin hook-notification-message-success(){}
|
|
1585
|
-
@mixin hook-notification-message-warning(){}
|
|
1586
|
-
@mixin hook-notification-message-danger(){}
|
|
1587
|
-
@mixin hook-notification-misc(){}
|
|
1588
|
-
@mixin hook-offcanvas-bar(){}
|
|
1589
|
-
@mixin hook-offcanvas-close(){}
|
|
1590
|
-
@mixin hook-offcanvas-overlay(){}
|
|
1591
|
-
@mixin hook-offcanvas-misc(){}
|
|
1592
|
-
@mixin hook-overlay(){}
|
|
1593
|
-
@mixin hook-overlay-icon(){}
|
|
1594
|
-
@mixin hook-overlay-default(){}
|
|
1595
|
-
@mixin hook-overlay-primary(){}
|
|
1596
|
-
@mixin hook-overlay-misc(){}
|
|
1597
|
-
@mixin hook-padding-misc(){}
|
|
1598
|
-
@mixin hook-pagination(){}
|
|
1599
|
-
@mixin hook-pagination-item(){}
|
|
1600
|
-
@mixin hook-pagination-item-hover(){}
|
|
1601
|
-
@mixin hook-pagination-item-active(){}
|
|
1602
|
-
@mixin hook-pagination-item-disabled(){}
|
|
1603
|
-
@mixin hook-pagination-misc(){}
|
|
1604
|
-
@mixin hook-inverse-pagination-item(){}
|
|
1605
|
-
@mixin hook-inverse-pagination-item-hover(){}
|
|
1606
|
-
@mixin hook-inverse-pagination-item-active(){}
|
|
1607
|
-
@mixin hook-inverse-pagination-item-disabled(){}
|
|
1608
|
-
@mixin hook-placeholder(){}
|
|
1609
|
-
@mixin hook-placeholder-misc(){}
|
|
1610
|
-
@mixin hook-position-misc(){}
|
|
1611
|
-
@mixin hook-print(){}
|
|
1612
|
-
@mixin hook-progress(){}
|
|
1613
|
-
@mixin hook-progress-bar(){}
|
|
1614
|
-
@mixin hook-progress-misc(){}
|
|
1615
|
-
@mixin hook-search-input(){}
|
|
1616
|
-
@mixin hook-search-icon(){}
|
|
1617
|
-
@mixin hook-search-default-input(){}
|
|
1618
|
-
@mixin hook-search-default-input-focus(){}
|
|
1619
|
-
@mixin hook-search-navbar-input(){}
|
|
1620
|
-
@mixin hook-search-navbar-input-focus(){}
|
|
1621
|
-
@mixin hook-search-large-input(){}
|
|
1622
|
-
@mixin hook-search-large-input-focus(){}
|
|
1623
|
-
@mixin hook-search-toggle(){}
|
|
1624
|
-
@mixin hook-search-toggle-hover(){}
|
|
1625
|
-
@mixin hook-search-misc(){}
|
|
1626
|
-
@mixin hook-inverse-search-default-input(){}
|
|
1627
|
-
@mixin hook-inverse-search-default-input-focus(){}
|
|
1628
|
-
@mixin hook-inverse-search-navbar-input(){}
|
|
1629
|
-
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
1630
|
-
@mixin hook-inverse-search-large-input(){}
|
|
1631
|
-
@mixin hook-inverse-search-large-input-focus(){}
|
|
1632
|
-
@mixin hook-inverse-search-toggle(){}
|
|
1633
|
-
@mixin hook-inverse-search-toggle-hover(){}
|
|
1634
|
-
@mixin hook-section(){}
|
|
1635
|
-
@mixin hook-section-default(){}
|
|
1636
|
-
@mixin hook-section-muted(){}
|
|
1637
|
-
@mixin hook-section-primary(){}
|
|
1638
|
-
@mixin hook-section-secondary(){}
|
|
1639
|
-
@mixin hook-section-overlap(){}
|
|
1640
|
-
@mixin hook-section-misc(){}
|
|
1641
|
-
@mixin hook-slidenav(){}
|
|
1642
|
-
@mixin hook-slidenav-hover(){}
|
|
1643
|
-
@mixin hook-slidenav-active(){}
|
|
1644
|
-
@mixin hook-slidenav-previous(){}
|
|
1645
|
-
@mixin hook-slidenav-next(){}
|
|
1646
|
-
@mixin hook-slidenav-large(){}
|
|
1647
|
-
@mixin hook-slidenav-container(){}
|
|
1648
|
-
@mixin hook-slidenav-misc(){}
|
|
1649
|
-
@mixin hook-inverse-slidenav(){}
|
|
1650
|
-
@mixin hook-inverse-slidenav-hover(){}
|
|
1651
|
-
@mixin hook-inverse-slidenav-active(){}
|
|
1652
|
-
@mixin hook-slider(){}
|
|
1653
|
-
@mixin hook-slider-misc(){}
|
|
1654
|
-
@mixin hook-slideshow(){}
|
|
1655
|
-
@mixin hook-slideshow-misc(){}
|
|
1656
|
-
@mixin hook-sortable(){}
|
|
1657
|
-
@mixin hook-sortable-drag(){}
|
|
1658
|
-
@mixin hook-sortable-placeholder(){}
|
|
1659
|
-
@mixin hook-sortable-empty(){}
|
|
1660
|
-
@mixin hook-sortable-misc(){}
|
|
1661
|
-
@mixin hook-spinner(){}
|
|
1662
|
-
@mixin hook-spinner-misc(){}
|
|
1663
|
-
@mixin hook-sticky-misc(){}
|
|
1664
|
-
@mixin hook-subnav(){}
|
|
1665
|
-
@mixin hook-subnav-item(){}
|
|
1666
|
-
@mixin hook-subnav-item-hover(){}
|
|
1667
|
-
@mixin hook-subnav-item-active(){}
|
|
1668
|
-
@mixin hook-subnav-divider(){}
|
|
1669
|
-
@mixin hook-subnav-pill-item(){}
|
|
1670
|
-
@mixin hook-subnav-pill-item-hover(){}
|
|
1671
|
-
@mixin hook-subnav-pill-item-onclick(){}
|
|
1672
|
-
@mixin hook-subnav-pill-item-active(){}
|
|
1673
|
-
@mixin hook-subnav-item-disabled(){}
|
|
1674
|
-
@mixin hook-subnav-misc(){}
|
|
1675
|
-
@mixin hook-inverse-subnav-item(){}
|
|
1676
|
-
@mixin hook-inverse-subnav-item-hover(){}
|
|
1677
|
-
@mixin hook-inverse-subnav-item-active(){}
|
|
1678
|
-
@mixin hook-inverse-subnav-divider(){}
|
|
1679
|
-
@mixin hook-inverse-subnav-pill-item(){}
|
|
1680
|
-
@mixin hook-inverse-subnav-pill-item-hover(){}
|
|
1681
|
-
@mixin hook-inverse-subnav-pill-item-onclick(){}
|
|
1682
|
-
@mixin hook-inverse-subnav-pill-item-active(){}
|
|
1683
|
-
@mixin hook-inverse-subnav-item-disabled(){}
|
|
1684
|
-
@mixin hook-svg-misc(){}
|
|
1685
|
-
@mixin hook-switcher-misc(){}
|
|
1686
|
-
@mixin hook-tab(){}
|
|
1687
|
-
@mixin hook-tab-item(){}
|
|
1688
|
-
@mixin hook-tab-item-hover(){}
|
|
1689
|
-
@mixin hook-tab-item-active(){}
|
|
1690
|
-
@mixin hook-tab-item-disabled(){}
|
|
1691
|
-
@mixin hook-tab-bottom(){}
|
|
1692
|
-
@mixin hook-tab-bottom-item(){}
|
|
1693
|
-
@mixin hook-tab-left(){}
|
|
1694
|
-
@mixin hook-tab-right(){}
|
|
1695
|
-
@mixin hook-tab-left-item(){}
|
|
1696
|
-
@mixin hook-tab-right-item(){}
|
|
1697
|
-
@mixin hook-tab-misc(){}
|
|
1698
|
-
@mixin hook-inverse-tab(){}
|
|
1699
|
-
@mixin hook-inverse-tab-item(){}
|
|
1700
|
-
@mixin hook-inverse-tab-item-hover(){}
|
|
1701
|
-
@mixin hook-inverse-tab-item-active(){}
|
|
1702
|
-
@mixin hook-inverse-tab-item-disabled(){}
|
|
1703
|
-
@mixin hook-table(){}
|
|
1704
|
-
@mixin hook-table-header-cell(){}
|
|
1705
|
-
@mixin hook-table-cell(){}
|
|
1706
|
-
@mixin hook-table-footer(){}
|
|
1707
|
-
@mixin hook-table-caption(){}
|
|
1708
|
-
@mixin hook-table-divider(){}
|
|
1709
|
-
@mixin hook-table-striped(){}
|
|
1710
|
-
@mixin hook-table-hover(){}
|
|
1711
|
-
@mixin hook-table-row-active(){}
|
|
1712
|
-
@mixin hook-table-small(){}
|
|
1713
|
-
@mixin hook-table-large(){}
|
|
1714
|
-
@mixin hook-table-misc(){}
|
|
1715
|
-
@mixin hook-inverse-table-header-cell(){}
|
|
1716
|
-
@mixin hook-inverse-table-caption(){}
|
|
1717
|
-
@mixin hook-inverse-table-row-active(){}
|
|
1718
|
-
@mixin hook-inverse-table-divider(){}
|
|
1719
|
-
@mixin hook-inverse-table-striped(){}
|
|
1720
|
-
@mixin hook-inverse-table-hover(){}
|
|
1721
|
-
@mixin hook-inverse-component-table(){
|
|
1722
|
-
|
|
1723
|
-
.uk-table th {
|
|
1724
|
-
color: $inverse-table-header-cell-color;
|
|
1725
|
-
@if(mixin-exists(hook-inverse-table-header-cell)) {@include hook-inverse-table-header-cell();}
|
|
1726
|
-
}
|
|
1727
|
-
|
|
1728
|
-
.uk-table caption {
|
|
1729
|
-
color: $inverse-table-caption-color;
|
|
1730
|
-
@if(mixin-exists(hook-inverse-table-caption)) {@include hook-inverse-table-caption();}
|
|
1731
|
-
}
|
|
1504
|
+
@mixin hook-iconnav(){}
|
|
1505
|
+
@mixin hook-iconnav-item(){}
|
|
1506
|
+
@mixin hook-iconnav-item-hover(){}
|
|
1507
|
+
@mixin hook-iconnav-item-active(){}
|
|
1508
|
+
@mixin hook-iconnav-misc(){}
|
|
1509
|
+
@mixin hook-inverse-iconnav-item(){}
|
|
1510
|
+
@mixin hook-inverse-iconnav-item-hover(){}
|
|
1511
|
+
@mixin hook-inverse-iconnav-item-active(){}
|
|
1512
|
+
@mixin hook-icon-link(){}
|
|
1513
|
+
@mixin hook-icon-link-hover(){}
|
|
1514
|
+
@mixin hook-icon-link-active(){}
|
|
1515
|
+
@mixin hook-icon-button(){}
|
|
1516
|
+
@mixin hook-icon-button-hover(){}
|
|
1517
|
+
@mixin hook-icon-button-active(){}
|
|
1518
|
+
@mixin hook-icon-misc(){}
|
|
1519
|
+
@mixin hook-inverse-icon-link(){}
|
|
1520
|
+
@mixin hook-inverse-icon-link-hover(){}
|
|
1521
|
+
@mixin hook-inverse-icon-link-active(){}
|
|
1522
|
+
@mixin hook-inverse-icon-button(){}
|
|
1523
|
+
@mixin hook-inverse-icon-button-hover(){}
|
|
1524
|
+
@mixin hook-inverse-icon-button-active(){}
|
|
1525
|
+
@mixin hook-height-misc(){}
|
|
1526
|
+
@mixin hook-heading-small(){}
|
|
1527
|
+
@mixin hook-heading-medium(){}
|
|
1528
|
+
@mixin hook-heading-large(){}
|
|
1529
|
+
@mixin hook-heading-xlarge(){}
|
|
1530
|
+
@mixin hook-heading-2xlarge(){}
|
|
1531
|
+
@mixin hook-heading-primary(){}
|
|
1532
|
+
@mixin hook-heading-hero(){}
|
|
1533
|
+
@mixin hook-heading-divider(){}
|
|
1534
|
+
@mixin hook-heading-bullet(){}
|
|
1535
|
+
@mixin hook-heading-line(){}
|
|
1536
|
+
@mixin hook-heading-misc(){}
|
|
1537
|
+
@mixin hook-inverse-heading-small(){}
|
|
1538
|
+
@mixin hook-inverse-heading-medium(){}
|
|
1539
|
+
@mixin hook-inverse-heading-large(){}
|
|
1540
|
+
@mixin hook-inverse-heading-xlarge(){}
|
|
1541
|
+
@mixin hook-inverse-heading-2xlarge(){}
|
|
1542
|
+
@mixin hook-inverse-heading-primary(){}
|
|
1543
|
+
@mixin hook-inverse-heading-hero(){}
|
|
1544
|
+
@mixin hook-inverse-heading-divider(){}
|
|
1545
|
+
@mixin hook-inverse-heading-bullet(){}
|
|
1546
|
+
@mixin hook-inverse-heading-line(){}
|
|
1547
|
+
@mixin hook-grid-divider-horizontal(){}
|
|
1548
|
+
@mixin hook-grid-divider-vertical(){}
|
|
1549
|
+
@mixin hook-grid-misc(){}
|
|
1550
|
+
@mixin hook-inverse-grid-divider-horizontal(){}
|
|
1551
|
+
@mixin hook-inverse-grid-divider-vertical(){}
|
|
1552
|
+
@mixin hook-form(){}
|
|
1553
|
+
@mixin hook-form-single-line(){}
|
|
1554
|
+
@mixin hook-form-multi-line(){}
|
|
1555
|
+
@mixin hook-form-focus(){}
|
|
1556
|
+
@mixin hook-form-disabled(){}
|
|
1557
|
+
@mixin hook-form-danger(){}
|
|
1558
|
+
@mixin hook-form-success(){}
|
|
1559
|
+
@mixin hook-form-blank(){}
|
|
1560
|
+
@mixin hook-form-blank-focus(){}
|
|
1561
|
+
@mixin hook-form-radio(){}
|
|
1562
|
+
@mixin hook-form-radio-focus(){}
|
|
1563
|
+
@mixin hook-form-radio-checked(){}
|
|
1564
|
+
@mixin hook-form-radio-checked-focus(){}
|
|
1565
|
+
@mixin hook-form-radio-disabled(){}
|
|
1566
|
+
@mixin hook-form-legend(){}
|
|
1567
|
+
@mixin hook-form-label(){}
|
|
1568
|
+
@mixin hook-form-stacked-label(){}
|
|
1569
|
+
@mixin hook-form-horizontal-label(){}
|
|
1570
|
+
@mixin hook-form-icon(){}
|
|
1571
|
+
@mixin hook-form-misc(){}
|
|
1572
|
+
@mixin hook-inverse-form(){}
|
|
1573
|
+
@mixin hook-inverse-form-focus(){}
|
|
1574
|
+
@mixin hook-inverse-form-radio(){}
|
|
1575
|
+
@mixin hook-inverse-form-radio-focus(){}
|
|
1576
|
+
@mixin hook-inverse-form-radio-checked(){}
|
|
1577
|
+
@mixin hook-inverse-form-radio-checked-focus(){}
|
|
1578
|
+
@mixin hook-inverse-form-label(){}
|
|
1579
|
+
@mixin hook-inverse-form-icon(){}
|
|
1580
|
+
@mixin hook-form-range(){}
|
|
1581
|
+
@mixin hook-form-range-track(){}
|
|
1582
|
+
@mixin hook-form-range-track-focus(){}
|
|
1583
|
+
@mixin hook-form-range-thumb(){}
|
|
1584
|
+
@mixin hook-form-range-misc(){}
|
|
1585
|
+
@mixin hook-flex-misc(){}
|
|
1586
|
+
@mixin hook-dropnav-misc(){}
|
|
1587
|
+
@mixin hook-dropdown(){}
|
|
1588
|
+
@mixin hook-dropdown-dropbar(){}
|
|
1589
|
+
@mixin hook-dropdown-dropbar-large(){}
|
|
1590
|
+
@mixin hook-dropdown-nav(){}
|
|
1591
|
+
@mixin hook-dropdown-nav-item(){}
|
|
1592
|
+
@mixin hook-dropdown-nav-item-hover(){}
|
|
1593
|
+
@mixin hook-dropdown-nav-subtitle(){}
|
|
1594
|
+
@mixin hook-dropdown-nav-header(){}
|
|
1595
|
+
@mixin hook-dropdown-nav-divider(){}
|
|
1596
|
+
@mixin hook-dropdown-misc(){}
|
|
1597
|
+
@mixin hook-dropbar(){}
|
|
1598
|
+
@mixin hook-dropbar-top(){}
|
|
1599
|
+
@mixin hook-dropbar-bottom(){}
|
|
1600
|
+
@mixin hook-dropbar-left(){}
|
|
1601
|
+
@mixin hook-dropbar-right(){}
|
|
1602
|
+
@mixin hook-dropbar-misc(){}
|
|
1603
|
+
@mixin hook-drop-misc(){}
|
|
1604
|
+
@mixin hook-dotnav(){}
|
|
1605
|
+
@mixin hook-dotnav-item(){}
|
|
1606
|
+
@mixin hook-dotnav-item-hover(){}
|
|
1607
|
+
@mixin hook-dotnav-item-onclick(){}
|
|
1608
|
+
@mixin hook-dotnav-item-active(){}
|
|
1609
|
+
@mixin hook-dotnav-misc(){}
|
|
1610
|
+
@mixin hook-inverse-dotnav-item(){}
|
|
1611
|
+
@mixin hook-inverse-dotnav-item-hover(){}
|
|
1612
|
+
@mixin hook-inverse-dotnav-item-onclick(){}
|
|
1613
|
+
@mixin hook-inverse-dotnav-item-active(){}
|
|
1614
|
+
@mixin hook-divider-icon(){}
|
|
1615
|
+
@mixin hook-divider-icon-line(){}
|
|
1616
|
+
@mixin hook-divider-icon-line-left(){}
|
|
1617
|
+
@mixin hook-divider-icon-line-right(){}
|
|
1618
|
+
@mixin hook-divider-small(){}
|
|
1619
|
+
@mixin hook-divider-vertical(){}
|
|
1620
|
+
@mixin hook-divider-misc(){}
|
|
1621
|
+
@mixin hook-inverse-divider-icon(){}
|
|
1622
|
+
@mixin hook-inverse-divider-icon-line(){}
|
|
1623
|
+
@mixin hook-inverse-divider-small(){}
|
|
1624
|
+
@mixin hook-inverse-divider-vertical(){}
|
|
1625
|
+
@mixin hook-description-list-term(){}
|
|
1626
|
+
@mixin hook-description-list-description(){}
|
|
1627
|
+
@mixin hook-description-list-divider-term(){}
|
|
1628
|
+
@mixin hook-description-list-misc(){}
|
|
1629
|
+
@mixin hook-cover-misc(){}
|
|
1630
|
+
@mixin hook-countdown(){}
|
|
1631
|
+
@mixin hook-countdown-item(){}
|
|
1632
|
+
@mixin hook-countdown-number(){}
|
|
1633
|
+
@mixin hook-countdown-separator(){}
|
|
1634
|
+
@mixin hook-countdown-label(){}
|
|
1635
|
+
@mixin hook-countdown-misc(){}
|
|
1636
|
+
@mixin hook-inverse-countdown-item(){}
|
|
1637
|
+
@mixin hook-inverse-countdown-number(){}
|
|
1638
|
+
@mixin hook-inverse-countdown-separator(){}
|
|
1639
|
+
@mixin hook-inverse-countdown-label(){}
|
|
1640
|
+
@mixin hook-inverse-component-countdown(){
|
|
1732
1641
|
|
|
1733
|
-
.uk-
|
|
1734
|
-
.uk-
|
|
1735
|
-
|
|
1736
|
-
@if(mixin-exists(hook-inverse-table-row-active)) {@include hook-inverse-table-row-active();}
|
|
1642
|
+
.uk-countdown-number,
|
|
1643
|
+
.uk-countdown-separator {
|
|
1644
|
+
@if(mixin-exists(hook-inverse-countdown-item)) {@include hook-inverse-countdown-item();}
|
|
1737
1645
|
}
|
|
1738
1646
|
|
|
1739
|
-
.uk-
|
|
1740
|
-
|
|
1741
|
-
.uk-table-divider > :first-child > tr:not(:first-child) {
|
|
1742
|
-
border-top-color: $inverse-table-divider-border;
|
|
1743
|
-
@if(mixin-exists(hook-inverse-table-divider)) {@include hook-inverse-table-divider();}
|
|
1647
|
+
.uk-countdown-number {
|
|
1648
|
+
@if(mixin-exists(hook-inverse-countdown-number)) {@include hook-inverse-countdown-number();}
|
|
1744
1649
|
}
|
|
1745
1650
|
|
|
1746
|
-
.uk-
|
|
1747
|
-
|
|
1748
|
-
background: $inverse-table-striped-row-background;
|
|
1749
|
-
@if(mixin-exists(hook-inverse-table-striped)) {@include hook-inverse-table-striped();}
|
|
1651
|
+
.uk-countdown-separator {
|
|
1652
|
+
@if(mixin-exists(hook-inverse-countdown-separator)) {@include hook-inverse-countdown-separator();}
|
|
1750
1653
|
}
|
|
1751
1654
|
|
|
1752
|
-
.uk-
|
|
1753
|
-
|
|
1754
|
-
background: $inverse-table-hover-row-background;
|
|
1755
|
-
@if(mixin-exists(hook-inverse-table-hover)) {@include hook-inverse-table-hover();}
|
|
1655
|
+
.uk-countdown-label {
|
|
1656
|
+
@if(mixin-exists(hook-inverse-countdown-label)) {@include hook-inverse-countdown-label();}
|
|
1756
1657
|
}
|
|
1757
1658
|
|
|
1758
1659
|
}
|
|
1759
|
-
@mixin hook-
|
|
1760
|
-
@mixin hook-
|
|
1761
|
-
@mixin hook-
|
|
1762
|
-
@mixin hook-
|
|
1763
|
-
@mixin hook-
|
|
1764
|
-
@mixin hook-
|
|
1765
|
-
@mixin hook-
|
|
1766
|
-
@mixin hook-
|
|
1767
|
-
@mixin hook-
|
|
1768
|
-
@mixin hook-
|
|
1769
|
-
@mixin hook-
|
|
1770
|
-
@mixin hook-
|
|
1771
|
-
@mixin hook-
|
|
1772
|
-
@mixin hook-
|
|
1773
|
-
@mixin hook-
|
|
1774
|
-
@mixin hook-
|
|
1775
|
-
@mixin hook-inverse-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1660
|
+
@mixin hook-container-misc(){}
|
|
1661
|
+
@mixin hook-comment(){}
|
|
1662
|
+
@mixin hook-comment-body(){}
|
|
1663
|
+
@mixin hook-comment-header(){}
|
|
1664
|
+
@mixin hook-comment-title(){}
|
|
1665
|
+
@mixin hook-comment-meta(){}
|
|
1666
|
+
@mixin hook-comment-avatar(){}
|
|
1667
|
+
@mixin hook-comment-list-adjacent(){}
|
|
1668
|
+
@mixin hook-comment-list-sub(){}
|
|
1669
|
+
@mixin hook-comment-list-sub-adjacent(){}
|
|
1670
|
+
@mixin hook-comment-primary(){}
|
|
1671
|
+
@mixin hook-comment-misc(){}
|
|
1672
|
+
@mixin hook-column-misc(){}
|
|
1673
|
+
@mixin hook-close(){}
|
|
1674
|
+
@mixin hook-close-hover(){}
|
|
1675
|
+
@mixin hook-close-misc(){}
|
|
1676
|
+
@mixin hook-inverse-close(){}
|
|
1677
|
+
@mixin hook-inverse-close-hover(){}
|
|
1678
|
+
@mixin hook-card(){}
|
|
1679
|
+
@mixin hook-card-body(){}
|
|
1680
|
+
@mixin hook-card-header(){}
|
|
1681
|
+
@mixin hook-card-footer(){}
|
|
1682
|
+
@mixin hook-card-media(){}
|
|
1683
|
+
@mixin hook-card-media-top(){}
|
|
1684
|
+
@mixin hook-card-media-bottom(){}
|
|
1685
|
+
@mixin hook-card-media-left(){}
|
|
1686
|
+
@mixin hook-card-media-right(){}
|
|
1687
|
+
@mixin hook-card-title(){}
|
|
1688
|
+
@mixin hook-card-badge(){}
|
|
1689
|
+
@mixin hook-card-hover(){}
|
|
1690
|
+
@mixin hook-card-default(){}
|
|
1691
|
+
@mixin hook-card-default-title(){}
|
|
1692
|
+
@mixin hook-card-default-hover(){}
|
|
1693
|
+
@mixin hook-card-default-header(){}
|
|
1694
|
+
@mixin hook-card-default-footer(){}
|
|
1695
|
+
@mixin hook-card-primary(){}
|
|
1696
|
+
@mixin hook-card-primary-title(){}
|
|
1697
|
+
@mixin hook-card-primary-hover(){}
|
|
1698
|
+
@mixin hook-card-secondary(){}
|
|
1699
|
+
@mixin hook-card-secondary-title(){}
|
|
1700
|
+
@mixin hook-card-secondary-hover(){}
|
|
1701
|
+
@mixin hook-card-misc(){}
|
|
1702
|
+
@mixin hook-inverse-card-badge(){}
|
|
1703
|
+
@mixin hook-inverse-component-card(){
|
|
1784
1704
|
|
|
1785
|
-
|
|
1786
|
-
|
|
1705
|
+
&.uk-card-badge {
|
|
1706
|
+
background-color: $inverse-card-badge-background;
|
|
1707
|
+
color: $inverse-card-badge-color;
|
|
1708
|
+
@if(mixin-exists(hook-inverse-card-badge)) {@include hook-inverse-card-badge();}
|
|
1787
1709
|
}
|
|
1788
1710
|
|
|
1789
1711
|
}
|
|
1790
|
-
@mixin hook-
|
|
1791
|
-
@mixin hook-
|
|
1792
|
-
@mixin hook-
|
|
1793
|
-
@mixin hook-
|
|
1794
|
-
@mixin hook-
|
|
1795
|
-
@mixin hook-
|
|
1796
|
-
@mixin hook-
|
|
1797
|
-
@mixin hook-
|
|
1798
|
-
@mixin hook-
|
|
1799
|
-
@mixin hook-
|
|
1800
|
-
@mixin hook-
|
|
1801
|
-
@mixin hook-
|
|
1802
|
-
@mixin hook-
|
|
1803
|
-
@mixin hook-
|
|
1804
|
-
@mixin hook-
|
|
1805
|
-
@mixin hook-
|
|
1806
|
-
@mixin hook-
|
|
1807
|
-
@mixin hook-
|
|
1808
|
-
@mixin hook-
|
|
1809
|
-
@mixin hook-
|
|
1810
|
-
@mixin hook-
|
|
1811
|
-
@mixin hook-
|
|
1812
|
-
@mixin hook-
|
|
1813
|
-
@mixin hook-
|
|
1814
|
-
@mixin hook-
|
|
1815
|
-
@mixin hook-
|
|
1816
|
-
@mixin hook-inverse-
|
|
1817
|
-
@mixin hook-inverse-
|
|
1818
|
-
@mixin hook-inverse-
|
|
1819
|
-
@mixin hook-
|
|
1820
|
-
@mixin hook-
|
|
1712
|
+
@mixin hook-button(){}
|
|
1713
|
+
@mixin hook-button-hover(){}
|
|
1714
|
+
@mixin hook-button-active(){}
|
|
1715
|
+
@mixin hook-button-default(){}
|
|
1716
|
+
@mixin hook-button-default-hover(){}
|
|
1717
|
+
@mixin hook-button-default-active(){}
|
|
1718
|
+
@mixin hook-button-primary(){}
|
|
1719
|
+
@mixin hook-button-primary-hover(){}
|
|
1720
|
+
@mixin hook-button-primary-active(){}
|
|
1721
|
+
@mixin hook-button-secondary(){}
|
|
1722
|
+
@mixin hook-button-secondary-hover(){}
|
|
1723
|
+
@mixin hook-button-secondary-active(){}
|
|
1724
|
+
@mixin hook-button-danger(){}
|
|
1725
|
+
@mixin hook-button-danger-hover(){}
|
|
1726
|
+
@mixin hook-button-danger-active(){}
|
|
1727
|
+
@mixin hook-button-disabled(){}
|
|
1728
|
+
@mixin hook-button-small(){}
|
|
1729
|
+
@mixin hook-button-large(){}
|
|
1730
|
+
@mixin hook-button-text(){}
|
|
1731
|
+
@mixin hook-button-text-hover(){}
|
|
1732
|
+
@mixin hook-button-text-disabled(){}
|
|
1733
|
+
@mixin hook-button-link(){}
|
|
1734
|
+
@mixin hook-button-misc(){}
|
|
1735
|
+
@mixin hook-inverse-button-default(){}
|
|
1736
|
+
@mixin hook-inverse-button-default-hover(){}
|
|
1737
|
+
@mixin hook-inverse-button-default-active(){}
|
|
1738
|
+
@mixin hook-inverse-button-primary(){}
|
|
1739
|
+
@mixin hook-inverse-button-primary-hover(){}
|
|
1740
|
+
@mixin hook-inverse-button-primary-active(){}
|
|
1741
|
+
@mixin hook-inverse-button-secondary(){}
|
|
1742
|
+
@mixin hook-inverse-button-secondary-hover(){}
|
|
1743
|
+
@mixin hook-inverse-button-secondary-active(){}
|
|
1744
|
+
@mixin hook-inverse-button-text(){}
|
|
1745
|
+
@mixin hook-inverse-button-text-hover(){}
|
|
1746
|
+
@mixin hook-inverse-button-text-disabled(){}
|
|
1747
|
+
@mixin hook-inverse-button-link(){}
|
|
1748
|
+
@mixin hook-breadcrumb(){}
|
|
1749
|
+
@mixin hook-breadcrumb-item(){}
|
|
1750
|
+
@mixin hook-breadcrumb-item-hover(){}
|
|
1751
|
+
@mixin hook-breadcrumb-item-disabled(){}
|
|
1752
|
+
@mixin hook-breadcrumb-item-active(){}
|
|
1753
|
+
@mixin hook-breadcrumb-divider(){}
|
|
1754
|
+
@mixin hook-breadcrumb-misc(){}
|
|
1755
|
+
@mixin hook-inverse-breadcrumb-item(){}
|
|
1756
|
+
@mixin hook-inverse-breadcrumb-item-hover(){}
|
|
1757
|
+
@mixin hook-inverse-breadcrumb-item-disabled(){}
|
|
1758
|
+
@mixin hook-inverse-breadcrumb-item-active(){}
|
|
1759
|
+
@mixin hook-inverse-breadcrumb-divider(){}
|
|
1760
|
+
@mixin hook-base-body(){}
|
|
1761
|
+
@mixin hook-base-link(){}
|
|
1762
|
+
@mixin hook-base-link-hover(){}
|
|
1763
|
+
@mixin hook-base-code(){}
|
|
1764
|
+
@mixin hook-base-heading(){}
|
|
1765
|
+
@mixin hook-base-h1(){}
|
|
1766
|
+
@mixin hook-base-h2(){}
|
|
1767
|
+
@mixin hook-base-h3(){}
|
|
1768
|
+
@mixin hook-base-h4(){}
|
|
1769
|
+
@mixin hook-base-h5(){}
|
|
1770
|
+
@mixin hook-base-h6(){}
|
|
1771
|
+
@mixin hook-base-hr(){}
|
|
1772
|
+
@mixin hook-base-blockquote(){}
|
|
1773
|
+
@mixin hook-base-blockquote-footer(){}
|
|
1774
|
+
@mixin hook-base-pre(){}
|
|
1775
|
+
@mixin hook-base-misc(){}
|
|
1776
|
+
@mixin hook-inverse-base-link(){}
|
|
1777
|
+
@mixin hook-inverse-base-link-hover(){}
|
|
1778
|
+
@mixin hook-inverse-base-code(){}
|
|
1779
|
+
@mixin hook-inverse-base-heading(){}
|
|
1780
|
+
@mixin hook-inverse-base-h1(){}
|
|
1781
|
+
@mixin hook-inverse-base-h2(){}
|
|
1782
|
+
@mixin hook-inverse-base-h3(){}
|
|
1783
|
+
@mixin hook-inverse-base-h4(){}
|
|
1784
|
+
@mixin hook-inverse-base-h5(){}
|
|
1785
|
+
@mixin hook-inverse-base-h6(){}
|
|
1786
|
+
@mixin hook-inverse-base-blockquote(){}
|
|
1787
|
+
@mixin hook-inverse-base-blockquote-footer(){}
|
|
1788
|
+
@mixin hook-inverse-base-hr(){}
|
|
1789
|
+
@mixin hook-badge(){}
|
|
1790
|
+
@mixin hook-badge-hover(){}
|
|
1791
|
+
@mixin hook-badge-misc(){}
|
|
1792
|
+
@mixin hook-inverse-badge(){}
|
|
1793
|
+
@mixin hook-inverse-badge-hover(){}
|
|
1794
|
+
@mixin hook-background-misc(){}
|
|
1795
|
+
@mixin hook-article(){}
|
|
1796
|
+
@mixin hook-article-adjacent(){}
|
|
1797
|
+
@mixin hook-article-title(){}
|
|
1798
|
+
@mixin hook-article-meta(){}
|
|
1799
|
+
@mixin hook-article-misc(){}
|
|
1800
|
+
@mixin hook-inverse-article-title(){}
|
|
1801
|
+
@mixin hook-inverse-article-meta(){}
|
|
1802
|
+
@mixin hook-animation-misc(){}
|
|
1803
|
+
@mixin hook-align-misc(){}
|
|
1804
|
+
@mixin hook-alert(){}
|
|
1805
|
+
@mixin hook-alert-close(){}
|
|
1806
|
+
@mixin hook-alert-close-hover(){}
|
|
1807
|
+
@mixin hook-alert-primary(){}
|
|
1808
|
+
@mixin hook-alert-success(){}
|
|
1809
|
+
@mixin hook-alert-warning(){}
|
|
1810
|
+
@mixin hook-alert-danger(){}
|
|
1811
|
+
@mixin hook-alert-misc(){}
|
|
1812
|
+
@mixin hook-accordion(){}
|
|
1813
|
+
@mixin hook-accordion-item(){}
|
|
1814
|
+
@mixin hook-accordion-title(){}
|
|
1815
|
+
@mixin hook-accordion-title-hover(){}
|
|
1816
|
+
@mixin hook-accordion-content(){}
|
|
1817
|
+
@mixin hook-accordion-misc(){}
|
|
1818
|
+
@mixin hook-inverse-accordion-item(){}
|
|
1819
|
+
@mixin hook-inverse-accordion-title(){}
|
|
1820
|
+
@mixin hook-inverse-accordion-title-hover(){}
|