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
|
@@ -1,545 +1,351 @@
|
|
|
1
|
-
@mixin hook-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
@mixin hook-dropcap(){
|
|
2
|
+
// Prevent line wrap
|
|
3
|
+
margin-bottom: -2px;
|
|
4
|
+
}
|
|
5
|
+
@mixin hook-totop(){ transition: color 0.1s ease-in-out; }
|
|
6
|
+
@mixin hook-thumbnav-item(){
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
position: relative;
|
|
6
9
|
|
|
7
|
-
&::
|
|
10
|
+
&::after {
|
|
8
11
|
content: "";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
background-
|
|
15
|
-
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 0;
|
|
14
|
+
bottom: 0;
|
|
15
|
+
left: 0;
|
|
16
|
+
right: 0;
|
|
17
|
+
background-image: $thumbnav-item-gradient;
|
|
18
|
+
transition: opacity 0.1s ease-in-out;
|
|
16
19
|
}
|
|
17
20
|
|
|
18
|
-
.uk-open > &::before { @include svg-fill($internal-accordion-open-image, "#000", $accordion-icon-color); }
|
|
19
|
-
|
|
20
21
|
}
|
|
21
|
-
@mixin hook-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
@mixin hook-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
@mixin hook-inverse-
|
|
22
|
+
@mixin hook-thumbnav-item-hover(){
|
|
23
|
+
&::after { opacity: $thumbnav-item-hover-opacity; }
|
|
24
|
+
}
|
|
25
|
+
@mixin hook-thumbnav-item-active(){
|
|
26
|
+
&::after { opacity: $thumbnav-item-active-opacity; }
|
|
27
|
+
}
|
|
28
|
+
@mixin hook-inverse-thumbnav-item(){
|
|
29
|
+
&::after { background-image: $inverse-thumbnav-item-gradient; }
|
|
30
|
+
}
|
|
31
|
+
@mixin hook-text-meta(){
|
|
28
32
|
|
|
29
|
-
|
|
33
|
+
> a { color: $text-meta-link-color; }
|
|
30
34
|
|
|
31
|
-
|
|
35
|
+
> a:hover {
|
|
36
|
+
color: $text-meta-link-hover-color;
|
|
37
|
+
text-decoration: none;
|
|
38
|
+
}
|
|
32
39
|
|
|
33
40
|
}
|
|
34
|
-
@mixin hook-
|
|
35
|
-
@mixin hook-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
@mixin hook-alert-close-hover(){
|
|
40
|
-
color: inherit;
|
|
41
|
-
opacity: $alert-close-hover-opacity;
|
|
41
|
+
@mixin hook-text-background(){ background-image: $internal-text-background-color-gradient; }
|
|
42
|
+
@mixin hook-table-striped(){
|
|
43
|
+
border-top: $table-striped-border-width solid $table-striped-border;
|
|
44
|
+
border-bottom: $table-striped-border-width solid $table-striped-border;
|
|
42
45
|
}
|
|
43
|
-
@mixin hook-
|
|
44
|
-
@mixin hook-alert-success(){}
|
|
45
|
-
@mixin hook-alert-warning(){}
|
|
46
|
-
@mixin hook-alert-danger(){}
|
|
47
|
-
@mixin hook-alert-misc(){
|
|
46
|
+
@mixin hook-table-misc(){
|
|
48
47
|
|
|
49
|
-
|
|
50
|
-
* Content
|
|
51
|
-
*/
|
|
48
|
+
.uk-table tbody tr { transition: background-color 0.1s linear; }
|
|
52
49
|
|
|
53
|
-
.uk-
|
|
54
|
-
.uk-
|
|
55
|
-
.uk-alert h3,
|
|
56
|
-
.uk-alert h4,
|
|
57
|
-
.uk-alert h5,
|
|
58
|
-
.uk-alert h6 { color: inherit; }
|
|
50
|
+
.uk-table-striped > tr:nth-of-type(even):last-child,
|
|
51
|
+
.uk-table-striped tbody tr:nth-of-type(even):last-child { border-bottom: $table-striped-border-width solid $table-striped-border; }
|
|
59
52
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
53
|
+
}
|
|
54
|
+
@mixin hook-inverse-table-striped(){
|
|
55
|
+
border-top-color: $inverse-global-border;
|
|
56
|
+
border-bottom-color: $inverse-global-border;
|
|
57
|
+
}
|
|
58
|
+
@mixin hook-inverse-component-table(){
|
|
64
59
|
|
|
65
|
-
.uk-
|
|
66
|
-
color:
|
|
67
|
-
|
|
60
|
+
.uk-table th {
|
|
61
|
+
color: $inverse-table-header-cell-color;
|
|
62
|
+
@if(mixin-exists(hook-inverse-table-header-cell)) {@include hook-inverse-table-header-cell();}
|
|
68
63
|
}
|
|
69
64
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
@mixin hook-
|
|
73
|
-
|
|
74
|
-
@mixin hook-article-adjacent(){}
|
|
75
|
-
@mixin hook-article-title(){}
|
|
76
|
-
@mixin hook-article-meta(){
|
|
77
|
-
|
|
78
|
-
a { color: $article-meta-link-color; }
|
|
65
|
+
.uk-table caption {
|
|
66
|
+
color: $inverse-table-caption-color;
|
|
67
|
+
@if(mixin-exists(hook-inverse-table-caption)) {@include hook-inverse-table-caption();}
|
|
68
|
+
}
|
|
79
69
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
70
|
+
.uk-table > tr.uk-active,
|
|
71
|
+
.uk-table tbody tr.uk-active {
|
|
72
|
+
background: $inverse-table-row-active-background;
|
|
73
|
+
@if(mixin-exists(hook-inverse-table-row-active)) {@include hook-inverse-table-row-active();}
|
|
83
74
|
}
|
|
84
75
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
@mixin hook-inverse-
|
|
76
|
+
.uk-table-divider > tr:not(:first-child),
|
|
77
|
+
.uk-table-divider > :not(:first-child) > tr,
|
|
78
|
+
.uk-table-divider > :first-child > tr:not(:first-child) {
|
|
79
|
+
border-top-color: $inverse-table-divider-border;
|
|
80
|
+
@if(mixin-exists(hook-inverse-table-divider)) {@include hook-inverse-table-divider();}
|
|
81
|
+
}
|
|
90
82
|
|
|
91
|
-
.uk-
|
|
92
|
-
|
|
83
|
+
.uk-table-striped > tr:nth-of-type(odd),
|
|
84
|
+
.uk-table-striped tbody tr:nth-of-type(odd) {
|
|
85
|
+
background: $inverse-table-striped-row-background;
|
|
86
|
+
@if(mixin-exists(hook-inverse-table-striped)) {@include hook-inverse-table-striped();}
|
|
93
87
|
}
|
|
94
88
|
|
|
95
|
-
.uk-
|
|
96
|
-
|
|
97
|
-
|
|
89
|
+
.uk-table-hover > tr:hover,
|
|
90
|
+
.uk-table-hover tbody tr:hover {
|
|
91
|
+
background: $inverse-table-hover-row-background;
|
|
92
|
+
@if(mixin-exists(hook-inverse-table-hover)) {@include hook-inverse-table-hover();}
|
|
98
93
|
}
|
|
99
94
|
|
|
100
95
|
}
|
|
101
|
-
@mixin hook-
|
|
102
|
-
@mixin hook-
|
|
103
|
-
@mixin hook-badge-hover(){}
|
|
104
|
-
@mixin hook-badge-misc(){}
|
|
105
|
-
@mixin hook-inverse-badge(){}
|
|
106
|
-
@mixin hook-inverse-badge-hover(){}
|
|
107
|
-
@mixin hook-inverse-component-badge(){
|
|
96
|
+
@mixin hook-table-header-cell(){ text-transform: uppercase; }
|
|
97
|
+
@mixin hook-tab(){
|
|
108
98
|
|
|
109
|
-
|
|
110
|
-
background-color: $inverse-badge-background;
|
|
111
|
-
color: $inverse-badge-color !important;
|
|
112
|
-
@if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
|
|
113
|
-
}
|
|
99
|
+
position: relative;
|
|
114
100
|
|
|
115
|
-
|
|
116
|
-
|
|
101
|
+
&::before {
|
|
102
|
+
content: "";
|
|
103
|
+
position: absolute;
|
|
104
|
+
bottom: 0;
|
|
105
|
+
left: $tab-margin-horizontal;
|
|
106
|
+
right: 0;
|
|
107
|
+
border-bottom: $tab-border-width solid $tab-border;
|
|
117
108
|
}
|
|
118
109
|
|
|
119
110
|
}
|
|
120
|
-
@mixin hook-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
background: $base-code-background;
|
|
126
|
-
}
|
|
127
|
-
@mixin hook-base-heading(){}
|
|
128
|
-
@mixin hook-base-h1(){}
|
|
129
|
-
@mixin hook-base-h2(){}
|
|
130
|
-
@mixin hook-base-h3(){}
|
|
131
|
-
@mixin hook-base-h4(){}
|
|
132
|
-
@mixin hook-base-h5(){}
|
|
133
|
-
@mixin hook-base-h6(){}
|
|
134
|
-
@mixin hook-base-hr(){}
|
|
135
|
-
@mixin hook-base-blockquote(){
|
|
136
|
-
color: $base-blockquote-color;
|
|
111
|
+
@mixin hook-tab-item(){
|
|
112
|
+
border-bottom: $tab-item-border-width solid transparent;
|
|
113
|
+
font-size: $tab-item-font-size;
|
|
114
|
+
text-transform: $tab-item-text-transform;
|
|
115
|
+
transition: color 0.1s ease-in-out;
|
|
137
116
|
}
|
|
138
|
-
@mixin hook-
|
|
139
|
-
|
|
140
|
-
color: $base-blockquote-footer-color;
|
|
117
|
+
@mixin hook-tab-bottom(){
|
|
141
118
|
|
|
142
|
-
&::before {
|
|
119
|
+
&::before {
|
|
120
|
+
top: 0;
|
|
121
|
+
bottom: auto;
|
|
122
|
+
}
|
|
143
123
|
|
|
144
124
|
}
|
|
145
|
-
@mixin hook-
|
|
146
|
-
|
|
147
|
-
border:
|
|
148
|
-
border-radius: $base-pre-border-radius;
|
|
149
|
-
background: $base-pre-background;
|
|
150
|
-
}
|
|
151
|
-
@mixin hook-base-misc(){}
|
|
152
|
-
@mixin hook-inverse-base-link(){}
|
|
153
|
-
@mixin hook-inverse-base-link-hover(){}
|
|
154
|
-
@mixin hook-inverse-base-code(){
|
|
155
|
-
background-color: $inverse-global-muted-background;
|
|
125
|
+
@mixin hook-tab-bottom-item(){
|
|
126
|
+
border-top: $tab-item-border-width solid transparent;
|
|
127
|
+
border-bottom: none;
|
|
156
128
|
}
|
|
157
|
-
@mixin hook-
|
|
158
|
-
@mixin hook-inverse-base-h1(){}
|
|
159
|
-
@mixin hook-inverse-base-h2(){}
|
|
160
|
-
@mixin hook-inverse-base-h3(){}
|
|
161
|
-
@mixin hook-inverse-base-h4(){}
|
|
162
|
-
@mixin hook-inverse-base-h5(){}
|
|
163
|
-
@mixin hook-inverse-base-h6(){}
|
|
164
|
-
@mixin hook-inverse-base-blockquote(){ color: $inverse-base-blockquote-color; }
|
|
165
|
-
@mixin hook-inverse-base-blockquote-footer(){ color: $inverse-base-blockquote-footer-color; }
|
|
166
|
-
@mixin hook-inverse-base-hr(){}
|
|
167
|
-
@mixin hook-inverse-component-base(){
|
|
168
|
-
|
|
169
|
-
color: $inverse-base-color;
|
|
129
|
+
@mixin hook-tab-left(){
|
|
170
130
|
|
|
171
|
-
|
|
172
|
-
|
|
131
|
+
&::before {
|
|
132
|
+
top: 0;
|
|
133
|
+
bottom: 0;
|
|
134
|
+
left: auto;
|
|
135
|
+
right: 0;
|
|
136
|
+
border-left: $tab-border-width solid $tab-border;
|
|
137
|
+
border-bottom: none;
|
|
138
|
+
}
|
|
173
139
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
140
|
+
}
|
|
141
|
+
@mixin hook-tab-left-item(){
|
|
142
|
+
border-right: $tab-item-border-width solid transparent;
|
|
143
|
+
border-bottom: none;
|
|
144
|
+
}
|
|
145
|
+
@mixin hook-tab-right(){
|
|
177
146
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
147
|
+
&::before {
|
|
148
|
+
top: 0;
|
|
149
|
+
bottom: 0;
|
|
150
|
+
left: 0;
|
|
151
|
+
right: auto;
|
|
152
|
+
border-left: $tab-border-width solid $tab-border;
|
|
153
|
+
border-bottom: none;
|
|
182
154
|
}
|
|
183
155
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
156
|
+
}
|
|
157
|
+
@mixin hook-tab-right-item(){
|
|
158
|
+
border-left: $tab-item-border-width solid transparent;
|
|
159
|
+
border-bottom: none;
|
|
160
|
+
}
|
|
161
|
+
@mixin hook-tab-misc(){
|
|
190
162
|
|
|
191
|
-
|
|
192
|
-
// Code
|
|
193
|
-
//
|
|
163
|
+
.uk-tab .uk-dropdown { margin-left: ($tab-margin-horizontal + $tab-item-padding-horizontal) }
|
|
194
164
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
:not(pre) > samp {
|
|
198
|
-
color: $inverse-base-code-color;
|
|
199
|
-
@if(mixin-exists(hook-inverse-base-code)) {@include hook-inverse-base-code();}
|
|
200
|
-
}
|
|
165
|
+
}
|
|
166
|
+
@mixin hook-inverse-tab(){
|
|
201
167
|
|
|
202
|
-
|
|
203
|
-
// Emphasize
|
|
204
|
-
//
|
|
205
|
-
|
|
206
|
-
em { color: $inverse-base-em-color; }
|
|
168
|
+
&::before { border-color: $inverse-tab-border; }
|
|
207
169
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
170
|
+
}
|
|
171
|
+
@mixin hook-tab-item-active(){ border-color: $tab-item-active-border; }
|
|
172
|
+
@mixin hook-inverse-tab-item-active(){ border-color: $inverse-global-primary-background; }
|
|
173
|
+
@mixin hook-subnav-item(){
|
|
174
|
+
font-size: $subnav-item-font-size;
|
|
175
|
+
text-transform: $subnav-item-text-transform;
|
|
176
|
+
transition: 0.1s ease-in-out;
|
|
177
|
+
transition-property: color, background-color;
|
|
178
|
+
}
|
|
179
|
+
@mixin hook-slidenav(){ transition: color 0.1s ease-in-out; }
|
|
180
|
+
@mixin hook-search-default-input(){ border: $search-default-border-width solid $search-default-border; }
|
|
181
|
+
@mixin hook-search-default-input-focus(){ border-color: $search-default-focus-border; }
|
|
182
|
+
@mixin hook-inverse-search-default-input(){ border-color: $inverse-global-border; }
|
|
183
|
+
@mixin hook-progress(){
|
|
184
|
+
border-radius: $progress-border-radius;
|
|
185
|
+
overflow: hidden;
|
|
186
|
+
}
|
|
187
|
+
@mixin hook-placeholder(){ border: $placeholder-border-width dashed $placeholder-border; }
|
|
188
|
+
@mixin hook-pagination-item(){ transition: color 0.1s ease-in-out; }
|
|
189
|
+
@mixin hook-navbar-nav-item(){
|
|
190
|
+
text-transform: $navbar-nav-item-text-transform;
|
|
191
|
+
transition: 0.1s ease-in-out;
|
|
192
|
+
transition-property: color, background-color;
|
|
193
|
+
}
|
|
194
|
+
@mixin hook-navbar-misc(){
|
|
211
195
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
h3, .uk-h3,
|
|
215
|
-
h4, .uk-h4,
|
|
216
|
-
h5, .uk-h5,
|
|
217
|
-
h6, .uk-h6,
|
|
218
|
-
.uk-heading-small,
|
|
219
|
-
.uk-heading-medium,
|
|
220
|
-
.uk-heading-large,
|
|
221
|
-
.uk-heading-xlarge,
|
|
222
|
-
.uk-heading-2xlarge {
|
|
223
|
-
color: $inverse-base-heading-color;
|
|
224
|
-
@if(mixin-exists(hook-inverse-base-heading)) {@include hook-inverse-base-heading();}
|
|
225
|
-
}
|
|
196
|
+
/* Tablet landscape and bigger */
|
|
197
|
+
@media (min-width: $breakpoint-medium) {
|
|
226
198
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
199
|
+
.uk-navbar-left,
|
|
200
|
+
.uk-navbar-right,
|
|
201
|
+
[class*='uk-navbar-center'] { gap: $navbar-gap-m; }
|
|
230
202
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
203
|
+
.uk-navbar-center-left { right: unquote('calc(100% + #{$navbar-gap-m})'); }
|
|
204
|
+
.uk-navbar-center-right { left: unquote('calc(100% + #{$navbar-gap-m})'); }
|
|
234
205
|
|
|
235
|
-
h3, .uk-h3 {
|
|
236
|
-
@if(mixin-exists(hook-inverse-base-h3)) {@include hook-inverse-base-h3();}
|
|
237
206
|
}
|
|
238
207
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
}
|
|
208
|
+
/* Tablet landscape and bigger */
|
|
209
|
+
@media (min-width: $breakpoint-medium) {
|
|
242
210
|
|
|
243
|
-
|
|
244
|
-
@if(mixin-exists(hook-inverse-base-h5)) {@include hook-inverse-base-h5();}
|
|
245
|
-
}
|
|
211
|
+
.uk-navbar-nav { gap: $navbar-nav-gap-m; }
|
|
246
212
|
|
|
247
|
-
h6, .uk-h6 {
|
|
248
|
-
@if(mixin-exists(hook-inverse-base-h6)) {@include hook-inverse-base-h6();}
|
|
249
213
|
}
|
|
250
214
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
215
|
+
}
|
|
216
|
+
@mixin hook-navbar-dropdown(){ box-shadow: $navbar-dropdown-box-shadow; }
|
|
217
|
+
@mixin hook-navbar-dropdown-dropbar(){ box-shadow: none; }
|
|
218
|
+
@mixin hook-navbar-dropdown-nav(){ font-size: $navbar-dropdown-nav-font-size; }
|
|
219
|
+
@mixin hook-nav-secondary(){
|
|
220
|
+
> :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { margin-top: $nav-background-margin-top; }
|
|
221
|
+
}
|
|
222
|
+
@mixin hook-nav-secondary-item(){ padding: $nav-background-item-padding-vertical $nav-background-item-padding-horizontal; }
|
|
223
|
+
@mixin hook-nav-secondary-item-hover(){ background-color: $nav-background-item-hover-background; }
|
|
224
|
+
@mixin hook-nav-secondary-item-active(){ background-color: $nav-background-item-active-background; }
|
|
225
|
+
@mixin hook-inverse-nav-secondary-item-hover(){ background-color: $inverse-nav-background-item-hover-background; }
|
|
226
|
+
@mixin hook-inverse-nav-secondary-item-active(){ background-color: $inverse-nav-background-item-active-background; }
|
|
227
|
+
@mixin hook-modal-close-full(){
|
|
228
|
+
top: 0;
|
|
229
|
+
right: 0;
|
|
230
|
+
padding: $modal-close-full-padding;
|
|
231
|
+
background: $modal-close-full-background;
|
|
232
|
+
}
|
|
233
|
+
@mixin hook-modal-misc(){
|
|
258
234
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
}
|
|
235
|
+
/* Tablet landscape and bigger */
|
|
236
|
+
@media (min-width: $breakpoint-medium) {
|
|
262
237
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
238
|
+
.uk-modal-close-full {
|
|
239
|
+
padding: $modal-close-full-padding-m;
|
|
240
|
+
}
|
|
266
241
|
|
|
267
|
-
hr, .uk-hr {
|
|
268
|
-
border-top-color: $inverse-base-hr-border;
|
|
269
|
-
@if(mixin-exists(hook-inverse-base-hr)) {@include hook-inverse-base-hr();}
|
|
270
242
|
}
|
|
271
243
|
|
|
272
|
-
//
|
|
273
|
-
// Focus
|
|
274
|
-
//
|
|
275
|
-
|
|
276
|
-
:focus { outline-color: $inverse-base-focus-outline; }
|
|
277
|
-
:focus-visible { outline-color: $inverse-base-focus-outline; }
|
|
278
|
-
|
|
279
244
|
}
|
|
280
|
-
@mixin hook-
|
|
281
|
-
@mixin hook-
|
|
282
|
-
@mixin hook-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
@mixin hook-
|
|
286
|
-
@mixin hook-breadcrumb-misc(){}
|
|
287
|
-
@mixin hook-inverse-breadcrumb-item(){}
|
|
288
|
-
@mixin hook-inverse-breadcrumb-item-hover(){}
|
|
289
|
-
@mixin hook-inverse-breadcrumb-item-disabled(){}
|
|
290
|
-
@mixin hook-inverse-breadcrumb-item-active(){}
|
|
291
|
-
@mixin hook-inverse-breadcrumb-divider(){}
|
|
292
|
-
@mixin hook-inverse-component-breadcrumb(){
|
|
293
|
-
|
|
294
|
-
.uk-breadcrumb > * > * {
|
|
295
|
-
color: $inverse-breadcrumb-item-color;
|
|
296
|
-
@if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.uk-breadcrumb > * > :hover {
|
|
300
|
-
color: $inverse-breadcrumb-item-hover-color;
|
|
301
|
-
@if(mixin-exists(hook-inverse-breadcrumb-item-hover)) {@include hook-inverse-breadcrumb-item-hover();}
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
.uk-breadcrumb > .uk-disabled > * {
|
|
306
|
-
@if(mixin-exists(hook-inverse-breadcrumb-item-disabled)) {@include hook-inverse-breadcrumb-item-disabled();}
|
|
307
|
-
}
|
|
245
|
+
@mixin hook-modal-header(){ border-bottom: $modal-header-border-width solid $modal-header-border; }
|
|
246
|
+
@mixin hook-modal-footer(){ border-top: $modal-footer-border-width solid $modal-footer-border; }
|
|
247
|
+
@mixin hook-marker(){
|
|
248
|
+
border-radius: 500px;
|
|
249
|
+
}
|
|
250
|
+
@mixin hook-list-striped(){
|
|
308
251
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
252
|
+
&:nth-of-type(odd) {
|
|
253
|
+
border-top: $list-striped-border-width solid $list-striped-border;
|
|
254
|
+
border-bottom: $list-striped-border-width solid $list-striped-border;
|
|
312
255
|
}
|
|
313
256
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
//
|
|
257
|
+
}
|
|
258
|
+
@mixin hook-inverse-list-striped(){
|
|
317
259
|
|
|
318
|
-
|
|
319
|
-
color: $inverse-
|
|
320
|
-
|
|
260
|
+
&:nth-of-type(odd) {
|
|
261
|
+
border-top-color: $inverse-global-border;
|
|
262
|
+
border-bottom-color: $inverse-global-border;
|
|
321
263
|
}
|
|
322
264
|
|
|
323
265
|
}
|
|
324
|
-
@mixin hook-
|
|
325
|
-
|
|
266
|
+
@mixin hook-label(){
|
|
267
|
+
border-radius: $label-border-radius;
|
|
268
|
+
text-transform: $label-text-transform;
|
|
269
|
+
}
|
|
270
|
+
@mixin hook-iconnav-item(){
|
|
271
|
+
font-size: $subnav-item-font-size;
|
|
326
272
|
transition: 0.1s ease-in-out;
|
|
327
|
-
transition-property: color, background-color
|
|
273
|
+
transition-property: color, background-color;
|
|
328
274
|
}
|
|
329
|
-
@mixin hook-button
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
@mixin hook-button-default-hover(){ border-color: $button-default-hover-border; }
|
|
333
|
-
@mixin hook-button-default-active(){ border-color: $button-default-active-border; }
|
|
334
|
-
@mixin hook-button-primary(){ border: $button-border-width solid transparent; }
|
|
335
|
-
@mixin hook-button-primary-hover(){}
|
|
336
|
-
@mixin hook-button-primary-active(){}
|
|
337
|
-
@mixin hook-button-secondary(){ border: $button-border-width solid transparent; }
|
|
338
|
-
@mixin hook-button-secondary-hover(){}
|
|
339
|
-
@mixin hook-button-secondary-active(){}
|
|
340
|
-
@mixin hook-button-danger(){ border: $button-border-width solid transparent; }
|
|
341
|
-
@mixin hook-button-danger-hover(){}
|
|
342
|
-
@mixin hook-button-danger-active(){}
|
|
343
|
-
@mixin hook-button-disabled(){ border-color: $button-disabled-border; }
|
|
344
|
-
@mixin hook-button-small(){}
|
|
345
|
-
@mixin hook-button-large(){}
|
|
346
|
-
@mixin hook-button-text(){
|
|
347
|
-
|
|
348
|
-
position: relative;
|
|
349
|
-
|
|
350
|
-
&::before {
|
|
351
|
-
content: "";
|
|
352
|
-
position: absolute;
|
|
353
|
-
bottom: 0;
|
|
354
|
-
left: 0;
|
|
355
|
-
right: 100%;
|
|
356
|
-
border-bottom: $button-text-border-width solid $button-text-border;
|
|
357
|
-
transition: right 0.3s ease-out;
|
|
358
|
-
}
|
|
359
|
-
|
|
275
|
+
@mixin hook-icon-button(){
|
|
276
|
+
transition: 0.1s ease-in-out;
|
|
277
|
+
transition-property: color, background-color;
|
|
360
278
|
}
|
|
361
|
-
@mixin hook-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
279
|
+
@mixin hook-form(){
|
|
280
|
+
border: $form-border-width solid $form-border;
|
|
281
|
+
transition: 0.2s ease-in-out;
|
|
282
|
+
transition-property: color, background-color, border;
|
|
365
283
|
}
|
|
366
|
-
@mixin hook-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
284
|
+
@mixin hook-form-blank-focus(){
|
|
285
|
+
border-color: $form-blank-focus-border;
|
|
286
|
+
border-style: $form-blank-focus-border-style;
|
|
370
287
|
}
|
|
371
|
-
@mixin hook-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
========================================================================== */
|
|
376
|
-
|
|
377
|
-
/*
|
|
378
|
-
* Collapse border
|
|
379
|
-
*/
|
|
380
|
-
|
|
381
|
-
.uk-button-group > .uk-button:nth-child(n+2),
|
|
382
|
-
.uk-button-group > div:nth-child(n+2) .uk-button { margin-left: (-$button-border-width); }
|
|
383
|
-
|
|
384
|
-
/*
|
|
385
|
-
* Create position context to superimpose the successor elements border
|
|
386
|
-
* Known issue: If you use an `a` element as button and an icon inside,
|
|
387
|
-
* the active state will not work if you click the icon inside the button
|
|
388
|
-
* Workaround: Just use a `button` or `input` element as button
|
|
389
|
-
*/
|
|
390
|
-
|
|
391
|
-
.uk-button-group .uk-button:hover,
|
|
392
|
-
.uk-button-group .uk-button:focus,
|
|
393
|
-
.uk-button-group .uk-button:active,
|
|
394
|
-
.uk-button-group .uk-button.uk-active {
|
|
395
|
-
position: relative;
|
|
396
|
-
z-index: 1;
|
|
397
|
-
}
|
|
398
|
-
|
|
288
|
+
@mixin hook-form-radio(){
|
|
289
|
+
border: $form-radio-border-width solid $form-radio-border;
|
|
290
|
+
transition: 0.2s ease-in-out;
|
|
291
|
+
transition-property: background-color, border;
|
|
399
292
|
}
|
|
400
|
-
@mixin hook-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
@mixin hook-inverse-button-primary(){}
|
|
404
|
-
@mixin hook-inverse-button-primary-hover(){}
|
|
405
|
-
@mixin hook-inverse-button-primary-active(){}
|
|
406
|
-
@mixin hook-inverse-button-secondary(){}
|
|
407
|
-
@mixin hook-inverse-button-secondary-hover(){}
|
|
408
|
-
@mixin hook-inverse-button-secondary-active(){}
|
|
409
|
-
@mixin hook-inverse-button-text(){
|
|
410
|
-
&::before { border-bottom-color: $inverse-global-emphasis-color; }
|
|
293
|
+
@mixin hook-form-label(){
|
|
294
|
+
color: $form-label-color;
|
|
295
|
+
font-size: $form-label-font-size;
|
|
411
296
|
}
|
|
412
|
-
@mixin hook-
|
|
413
|
-
@mixin hook-
|
|
414
|
-
@mixin hook-
|
|
415
|
-
@mixin hook-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
.
|
|
458
|
-
|
|
459
|
-
color: $inverse-button-primary-active-color;
|
|
460
|
-
@if(mixin-exists(hook-inverse-button-primary-active)) {@include hook-inverse-button-primary-active();}
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
//
|
|
464
|
-
// Secondary
|
|
465
|
-
//
|
|
466
|
-
|
|
467
|
-
.uk-button-secondary {
|
|
468
|
-
background-color: $inverse-button-secondary-background;
|
|
469
|
-
color: $inverse-button-secondary-color;
|
|
470
|
-
@if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.uk-button-secondary:hover {
|
|
474
|
-
background-color: $inverse-button-secondary-hover-background;
|
|
475
|
-
color: $inverse-button-secondary-hover-color;
|
|
476
|
-
@if(mixin-exists(hook-inverse-button-secondary-hover)) {@include hook-inverse-button-secondary-hover();}
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
.uk-button-secondary:active,
|
|
480
|
-
.uk-button-secondary.uk-active {
|
|
481
|
-
background-color: $inverse-button-secondary-active-background;
|
|
482
|
-
color: $inverse-button-secondary-active-color;
|
|
483
|
-
@if(mixin-exists(hook-inverse-button-secondary-active)) {@include hook-inverse-button-secondary-active();}
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
//
|
|
487
|
-
// Text
|
|
488
|
-
//
|
|
489
|
-
|
|
490
|
-
.uk-button-text {
|
|
491
|
-
color: $inverse-button-text-color;
|
|
492
|
-
@if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.uk-button-text:hover {
|
|
496
|
-
color: $inverse-button-text-hover-color;
|
|
497
|
-
@if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.uk-button-text:disabled {
|
|
501
|
-
color: $inverse-button-text-disabled-color;
|
|
502
|
-
@if(mixin-exists(hook-inverse-button-text-disabled)) {@include hook-inverse-button-text-disabled();}
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
//
|
|
506
|
-
// Link
|
|
507
|
-
//
|
|
508
|
-
|
|
509
|
-
.uk-button-link {
|
|
510
|
-
color: $inverse-button-link-color;
|
|
511
|
-
@if(mixin-exists(hook-inverse-button-link)) {@include hook-inverse-button-link();}
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
.uk-button-link:hover { color: $inverse-button-link-hover-color; }
|
|
515
|
-
|
|
297
|
+
@mixin hook-form-focus(){ border-color: $form-focus-border; }
|
|
298
|
+
@mixin hook-form-disabled(){ border-color: $form-disabled-border; }
|
|
299
|
+
@mixin hook-form-danger(){ border-color: $form-danger-border; }
|
|
300
|
+
@mixin hook-form-success(){ border-color: $form-success-border; }
|
|
301
|
+
@mixin hook-form-blank(){ border-color: transparent; }
|
|
302
|
+
@mixin hook-form-radio-focus(){ border-color: $form-radio-focus-border; }
|
|
303
|
+
@mixin hook-form-radio-checked(){ border-color: $form-radio-checked-border; }
|
|
304
|
+
@mixin hook-form-radio-disabled(){ border-color: $form-radio-disabled-border; }
|
|
305
|
+
@mixin hook-inverse-form(){ border-color: $inverse-global-border; }
|
|
306
|
+
@mixin hook-inverse-form-focus(){ border-color: $inverse-global-color; }
|
|
307
|
+
@mixin hook-inverse-form-radio(){ border-color: $inverse-global-border; }
|
|
308
|
+
@mixin hook-inverse-form-radio-focus(){ border-color: $inverse-global-color; }
|
|
309
|
+
@mixin hook-inverse-form-radio-checked(){ border-color: $inverse-global-primary-background; }
|
|
310
|
+
@mixin hook-inverse-form-label(){ color: $inverse-form-label-color; }
|
|
311
|
+
@mixin hook-form-range-thumb(){ border: $form-range-thumb-border-width solid $form-range-thumb-border; }
|
|
312
|
+
@mixin hook-form-range-track(){ border-radius: $form-range-track-border-radius; }
|
|
313
|
+
@mixin hook-dropdown(){ box-shadow: $dropdown-box-shadow; }
|
|
314
|
+
@mixin hook-dropdown-dropbar(){ box-shadow: none; }
|
|
315
|
+
@mixin hook-dropdown-nav(){ font-size: $dropdown-nav-font-size; }
|
|
316
|
+
@mixin hook-dropbar-top(){ box-shadow: $dropbar-top-box-shadow; }
|
|
317
|
+
@mixin hook-dropbar-bottom(){ box-shadow: $dropbar-bottom-box-shadow; }
|
|
318
|
+
@mixin hook-dropbar-left(){ box-shadow: $dropbar-left-box-shadow; }
|
|
319
|
+
@mixin hook-dropbar-right(){ box-shadow: $dropbar-right-box-shadow; }
|
|
320
|
+
@mixin hook-dotnav-item(){
|
|
321
|
+
border: $dotnav-item-border-width solid $dotnav-item-border;
|
|
322
|
+
transition: 0.2s ease-in-out;
|
|
323
|
+
transition-property: background-color, border-color;
|
|
324
|
+
}
|
|
325
|
+
@mixin hook-dotnav-item-hover(){ border-color: $dotnav-item-hover-border; }
|
|
326
|
+
@mixin hook-dotnav-item-onclick(){ border-color: $dotnav-item-onclick-border; }
|
|
327
|
+
@mixin hook-dotnav-item-active(){ border-color: $dotnav-item-active-border; }
|
|
328
|
+
@mixin hook-inverse-dotnav-item(){ border-color: rgba($inverse-global-color, 0.9); }
|
|
329
|
+
@mixin hook-inverse-dotnav-item-hover(){ border-color: transparent; }
|
|
330
|
+
@mixin hook-inverse-dotnav-item-onclick(){ border-color: transparent; }
|
|
331
|
+
@mixin hook-inverse-dotnav-item-active(){ border-color: transparent; }
|
|
332
|
+
@mixin hook-description-list-term(){
|
|
333
|
+
font-size: $description-list-term-font-size;
|
|
334
|
+
font-weight: $description-list-term-font-weight;
|
|
335
|
+
text-transform: $description-list-term-text-transform;
|
|
336
|
+
}
|
|
337
|
+
@mixin hook-comment-primary(){
|
|
338
|
+
padding: $comment-primary-padding;
|
|
339
|
+
background-color: $comment-primary-background;
|
|
340
|
+
}
|
|
341
|
+
@mixin hook-close(){
|
|
342
|
+
transition: 0.1s ease-in-out;
|
|
343
|
+
transition-property: color, opacity;
|
|
516
344
|
}
|
|
517
|
-
@mixin hook-card(){ transition: box-shadow 0.1s ease-in-out; }
|
|
518
|
-
@mixin hook-card-body(){}
|
|
519
|
-
@mixin hook-card-header(){}
|
|
520
|
-
@mixin hook-card-footer(){}
|
|
521
|
-
@mixin hook-card-media(){}
|
|
522
|
-
@mixin hook-card-media-top(){}
|
|
523
|
-
@mixin hook-card-media-bottom(){}
|
|
524
|
-
@mixin hook-card-media-left(){}
|
|
525
|
-
@mixin hook-card-media-right(){}
|
|
526
|
-
@mixin hook-card-title(){}
|
|
527
345
|
@mixin hook-card-badge(){
|
|
528
346
|
border-radius: $card-badge-border-radius;
|
|
529
347
|
text-transform: $card-badge-text-transform;
|
|
530
348
|
}
|
|
531
|
-
@mixin hook-card-hover(){ box-shadow: $card-hover-box-shadow; }
|
|
532
|
-
@mixin hook-card-default(){ box-shadow: $card-default-box-shadow; }
|
|
533
|
-
@mixin hook-card-default-title(){}
|
|
534
|
-
@mixin hook-card-default-hover(){ box-shadow: $card-default-hover-box-shadow; }
|
|
535
|
-
@mixin hook-card-default-header(){ border-bottom: $card-default-header-border-width solid $card-default-header-border; }
|
|
536
|
-
@mixin hook-card-default-footer(){ border-top: $card-default-footer-border-width solid $card-default-footer-border; }
|
|
537
|
-
@mixin hook-card-primary(){ box-shadow: $card-primary-box-shadow; }
|
|
538
|
-
@mixin hook-card-primary-title(){}
|
|
539
|
-
@mixin hook-card-primary-hover(){ box-shadow: $card-primary-hover-box-shadow; }
|
|
540
|
-
@mixin hook-card-secondary(){ box-shadow: $card-secondary-box-shadow; }
|
|
541
|
-
@mixin hook-card-secondary-title(){}
|
|
542
|
-
@mixin hook-card-secondary-hover(){ box-shadow: $card-secondary-hover-box-shadow; }
|
|
543
349
|
@mixin hook-card-misc(){
|
|
544
350
|
|
|
545
351
|
/*
|
|
@@ -632,97 +438,154 @@
|
|
|
632
438
|
}
|
|
633
439
|
|
|
634
440
|
}
|
|
635
|
-
@mixin hook-
|
|
636
|
-
@mixin hook-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
}
|
|
645
|
-
@mixin hook-
|
|
441
|
+
@mixin hook-card(){ transition: box-shadow 0.1s ease-in-out; }
|
|
442
|
+
@mixin hook-card-hover(){ box-shadow: $card-hover-box-shadow; }
|
|
443
|
+
@mixin hook-card-default(){ box-shadow: $card-default-box-shadow; }
|
|
444
|
+
@mixin hook-card-default-hover(){ box-shadow: $card-default-hover-box-shadow; }
|
|
445
|
+
@mixin hook-card-default-header(){ border-bottom: $card-default-header-border-width solid $card-default-header-border; }
|
|
446
|
+
@mixin hook-card-default-footer(){ border-top: $card-default-footer-border-width solid $card-default-footer-border; }
|
|
447
|
+
@mixin hook-card-primary(){ box-shadow: $card-primary-box-shadow; }
|
|
448
|
+
@mixin hook-card-primary-hover(){ box-shadow: $card-primary-hover-box-shadow; }
|
|
449
|
+
@mixin hook-card-secondary(){ box-shadow: $card-secondary-box-shadow; }
|
|
450
|
+
@mixin hook-card-secondary-hover(){ box-shadow: $card-secondary-hover-box-shadow; }
|
|
451
|
+
@mixin hook-button(){
|
|
452
|
+
text-transform: $button-text-transform;
|
|
646
453
|
transition: 0.1s ease-in-out;
|
|
647
|
-
transition-property: color,
|
|
454
|
+
transition-property: color, background-color, border-color;
|
|
648
455
|
}
|
|
649
|
-
@mixin hook-
|
|
650
|
-
@mixin hook-close-misc(){}
|
|
651
|
-
@mixin hook-inverse-close(){}
|
|
652
|
-
@mixin hook-inverse-close-hover(){}
|
|
653
|
-
@mixin hook-inverse-component-close(){
|
|
456
|
+
@mixin hook-button-text(){
|
|
654
457
|
|
|
655
|
-
|
|
656
|
-
color: $inverse-close-color;
|
|
657
|
-
@if(mixin-exists(hook-inverse-close)) {@include hook-inverse-close();}
|
|
658
|
-
}
|
|
458
|
+
position: relative;
|
|
659
459
|
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
460
|
+
&::before {
|
|
461
|
+
content: "";
|
|
462
|
+
position: absolute;
|
|
463
|
+
bottom: 0;
|
|
464
|
+
left: 0;
|
|
465
|
+
right: 100%;
|
|
466
|
+
border-bottom: $button-text-border-width solid $button-text-border;
|
|
467
|
+
transition: right 0.3s ease-out;
|
|
663
468
|
}
|
|
664
469
|
|
|
665
470
|
}
|
|
666
|
-
@mixin hook-
|
|
667
|
-
@mixin hook-inverse-component-column(){
|
|
471
|
+
@mixin hook-button-text-hover(){
|
|
668
472
|
|
|
669
|
-
|
|
473
|
+
&::before { right: 0; }
|
|
670
474
|
|
|
671
475
|
}
|
|
672
|
-
@mixin hook-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
@mixin hook-comment-meta(){}
|
|
677
|
-
@mixin hook-comment-avatar(){}
|
|
678
|
-
@mixin hook-comment-list-adjacent(){}
|
|
679
|
-
@mixin hook-comment-list-sub(){}
|
|
680
|
-
@mixin hook-comment-list-sub-adjacent(){}
|
|
681
|
-
@mixin hook-comment-primary(){
|
|
682
|
-
padding: $comment-primary-padding;
|
|
683
|
-
background-color: $comment-primary-background;
|
|
476
|
+
@mixin hook-button-text-disabled(){
|
|
477
|
+
|
|
478
|
+
&::before { display: none; }
|
|
479
|
+
|
|
684
480
|
}
|
|
685
|
-
@mixin hook-
|
|
686
|
-
@mixin hook-container-misc(){}
|
|
687
|
-
@mixin hook-countdown(){}
|
|
688
|
-
@mixin hook-countdown-item(){}
|
|
689
|
-
@mixin hook-countdown-number(){}
|
|
690
|
-
@mixin hook-countdown-separator(){}
|
|
691
|
-
@mixin hook-countdown-label(){}
|
|
692
|
-
@mixin hook-countdown-misc(){}
|
|
693
|
-
@mixin hook-inverse-countdown-item(){}
|
|
694
|
-
@mixin hook-inverse-countdown-number(){}
|
|
695
|
-
@mixin hook-inverse-countdown-separator(){}
|
|
696
|
-
@mixin hook-inverse-countdown-label(){}
|
|
697
|
-
@mixin hook-inverse-component-countdown(){
|
|
481
|
+
@mixin hook-button-misc(){
|
|
698
482
|
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
483
|
+
/* Group
|
|
484
|
+
========================================================================== */
|
|
485
|
+
|
|
486
|
+
/*
|
|
487
|
+
* Collapse border
|
|
488
|
+
*/
|
|
489
|
+
|
|
490
|
+
.uk-button-group > .uk-button:nth-child(n+2),
|
|
491
|
+
.uk-button-group > div:nth-child(n+2) .uk-button { margin-left: (-$button-border-width); }
|
|
492
|
+
|
|
493
|
+
/*
|
|
494
|
+
* Create position context to superimpose the successor elements border
|
|
495
|
+
* Known issue: If you use an `a` element as button and an icon inside,
|
|
496
|
+
* the active state will not work if you click the icon inside the button
|
|
497
|
+
* Workaround: Just use a `button` or `input` element as button
|
|
498
|
+
*/
|
|
499
|
+
|
|
500
|
+
.uk-button-group .uk-button:hover,
|
|
501
|
+
.uk-button-group .uk-button:focus,
|
|
502
|
+
.uk-button-group .uk-button:active,
|
|
503
|
+
.uk-button-group .uk-button.uk-active {
|
|
504
|
+
position: relative;
|
|
505
|
+
z-index: 1;
|
|
702
506
|
}
|
|
703
507
|
|
|
704
|
-
|
|
705
|
-
|
|
508
|
+
}
|
|
509
|
+
@mixin hook-inverse-button-text(){
|
|
510
|
+
&::before { border-bottom-color: $inverse-global-emphasis-color; }
|
|
511
|
+
}
|
|
512
|
+
@mixin hook-button-default(){ border: $button-border-width solid $button-default-border; }
|
|
513
|
+
@mixin hook-button-default-hover(){ border-color: $button-default-hover-border; }
|
|
514
|
+
@mixin hook-button-default-active(){ border-color: $button-default-active-border; }
|
|
515
|
+
@mixin hook-button-primary(){ border: $button-border-width solid transparent; }
|
|
516
|
+
@mixin hook-button-secondary(){ border: $button-border-width solid transparent; }
|
|
517
|
+
@mixin hook-button-danger(){ border: $button-border-width solid transparent; }
|
|
518
|
+
@mixin hook-button-disabled(){ border-color: $button-disabled-border; }
|
|
519
|
+
@mixin hook-inverse-button-default(){ border-color: $inverse-global-color; }
|
|
520
|
+
@mixin hook-inverse-button-default-hover(){ border-color: $inverse-global-emphasis-color; }
|
|
521
|
+
@mixin hook-inverse-button-default-active(){ border-color: $inverse-global-emphasis-color; }
|
|
522
|
+
@mixin hook-base-code(){
|
|
523
|
+
padding: $base-code-padding-vertical $base-code-padding-horizontal;
|
|
524
|
+
background: $base-code-background;
|
|
525
|
+
}
|
|
526
|
+
@mixin hook-base-blockquote(){
|
|
527
|
+
color: $base-blockquote-color;
|
|
528
|
+
}
|
|
529
|
+
@mixin hook-base-blockquote-footer(){
|
|
530
|
+
|
|
531
|
+
color: $base-blockquote-footer-color;
|
|
532
|
+
|
|
533
|
+
&::before { content: "— "; }
|
|
534
|
+
|
|
535
|
+
}
|
|
536
|
+
@mixin hook-base-pre(){
|
|
537
|
+
padding: $base-pre-padding;
|
|
538
|
+
border: $base-pre-border-width solid $base-pre-border;
|
|
539
|
+
border-radius: $base-pre-border-radius;
|
|
540
|
+
background: $base-pre-background;
|
|
541
|
+
}
|
|
542
|
+
@mixin hook-inverse-base-code(){
|
|
543
|
+
background-color: $inverse-global-muted-background;
|
|
544
|
+
}
|
|
545
|
+
@mixin hook-inverse-base-blockquote(){ color: $inverse-base-blockquote-color; }
|
|
546
|
+
@mixin hook-inverse-base-blockquote-footer(){ color: $inverse-base-blockquote-footer-color; }
|
|
547
|
+
@mixin hook-article-meta(){
|
|
548
|
+
|
|
549
|
+
a { color: $article-meta-link-color; }
|
|
550
|
+
|
|
551
|
+
a:hover {
|
|
552
|
+
color: $article-meta-link-hover-color;
|
|
553
|
+
text-decoration: none;
|
|
706
554
|
}
|
|
707
555
|
|
|
708
|
-
|
|
709
|
-
|
|
556
|
+
}
|
|
557
|
+
@mixin hook-alert-close(){
|
|
558
|
+
color: inherit;
|
|
559
|
+
opacity: $alert-close-opacity;
|
|
560
|
+
}
|
|
561
|
+
@mixin hook-alert-close-hover(){
|
|
562
|
+
color: inherit;
|
|
563
|
+
opacity: $alert-close-hover-opacity;
|
|
564
|
+
}
|
|
565
|
+
@mixin hook-alert-misc(){
|
|
566
|
+
|
|
567
|
+
/*
|
|
568
|
+
* Content
|
|
569
|
+
*/
|
|
570
|
+
|
|
571
|
+
.uk-alert h1,
|
|
572
|
+
.uk-alert h2,
|
|
573
|
+
.uk-alert h3,
|
|
574
|
+
.uk-alert h4,
|
|
575
|
+
.uk-alert h5,
|
|
576
|
+
.uk-alert h6 { color: inherit; }
|
|
577
|
+
|
|
578
|
+
.uk-alert a:not([class]) {
|
|
579
|
+
color: inherit;
|
|
580
|
+
text-decoration: underline;
|
|
710
581
|
}
|
|
711
582
|
|
|
712
|
-
.uk-
|
|
713
|
-
|
|
583
|
+
.uk-alert a:not([class]):hover {
|
|
584
|
+
color: inherit;
|
|
585
|
+
text-decoration: underline;
|
|
714
586
|
}
|
|
715
587
|
|
|
716
588
|
}
|
|
717
|
-
@mixin hook-cover-misc(){}
|
|
718
|
-
@mixin hook-description-list-term(){
|
|
719
|
-
font-size: $description-list-term-font-size;
|
|
720
|
-
font-weight: $description-list-term-font-weight;
|
|
721
|
-
text-transform: $description-list-term-text-transform;
|
|
722
|
-
}
|
|
723
|
-
@mixin hook-description-list-description(){}
|
|
724
|
-
@mixin hook-description-list-divider-term(){}
|
|
725
|
-
@mixin hook-description-list-misc(){}
|
|
726
589
|
@mixin svg-fill($src, $color-default, $color-new, $property: background-image){
|
|
727
590
|
|
|
728
591
|
$escape-color-default: escape($color-default) !default;
|
|
@@ -733,551 +596,589 @@
|
|
|
733
596
|
|
|
734
597
|
#{$property}: unquote($replace-src);
|
|
735
598
|
}
|
|
736
|
-
@mixin hook-
|
|
737
|
-
@mixin hook-divider-icon-line(){}
|
|
738
|
-
@mixin hook-divider-icon-line-left(){}
|
|
739
|
-
@mixin hook-divider-icon-line-right(){}
|
|
740
|
-
@mixin hook-divider-small(){}
|
|
741
|
-
@mixin hook-divider-vertical(){}
|
|
742
|
-
@mixin hook-divider-misc(){}
|
|
743
|
-
@mixin hook-inverse-divider-icon(){}
|
|
744
|
-
@mixin hook-inverse-divider-icon-line(){}
|
|
745
|
-
@mixin hook-inverse-divider-small(){}
|
|
746
|
-
@mixin hook-inverse-divider-vertical(){}
|
|
747
|
-
@mixin hook-inverse-component-divider(){
|
|
599
|
+
@mixin hook-accordion-title(){
|
|
748
600
|
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
601
|
+
overflow: hidden;
|
|
602
|
+
|
|
603
|
+
&::before {
|
|
604
|
+
content: "";
|
|
605
|
+
width: ($accordion-title-line-height * 1em);
|
|
606
|
+
height: ($accordion-title-line-height * 1em);
|
|
607
|
+
margin-left: $accordion-icon-margin-left;
|
|
608
|
+
float: right;
|
|
609
|
+
@include svg-fill($internal-accordion-close-image, "#000", $accordion-icon-color);
|
|
610
|
+
background-repeat: no-repeat;
|
|
611
|
+
background-position: 50% 50%;
|
|
752
612
|
}
|
|
753
613
|
|
|
754
|
-
.uk-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
614
|
+
.uk-open > &::before { @include svg-fill($internal-accordion-open-image, "#000", $accordion-icon-color); }
|
|
615
|
+
|
|
616
|
+
}
|
|
617
|
+
@mixin hook-inverse-component-accordion(){
|
|
618
|
+
|
|
619
|
+
.uk-accordion > :nth-child(n+2) {
|
|
620
|
+
@if(mixin-exists(hook-inverse-accordion-item)) {@include hook-inverse-accordion-item();}
|
|
758
621
|
}
|
|
759
622
|
|
|
760
|
-
.uk-
|
|
761
|
-
|
|
762
|
-
@if(mixin-exists(hook-inverse-
|
|
623
|
+
.uk-accordion-title {
|
|
624
|
+
color: $inverse-accordion-title-color;
|
|
625
|
+
@if(mixin-exists(hook-inverse-accordion-title)) {@include hook-inverse-accordion-title();}
|
|
763
626
|
}
|
|
764
627
|
|
|
765
|
-
.uk-
|
|
766
|
-
|
|
767
|
-
@if(mixin-exists(hook-inverse-
|
|
628
|
+
.uk-accordion-title:hover {
|
|
629
|
+
color: $inverse-accordion-title-hover-color;
|
|
630
|
+
@if(mixin-exists(hook-inverse-accordion-title-hover)) {@include hook-inverse-accordion-title-hover();}
|
|
768
631
|
}
|
|
769
632
|
|
|
770
633
|
}
|
|
771
|
-
@mixin hook-
|
|
772
|
-
@mixin hook-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
}
|
|
777
|
-
@mixin hook-
|
|
778
|
-
@mixin hook-
|
|
779
|
-
@mixin hook-
|
|
780
|
-
@mixin hook-
|
|
781
|
-
@mixin hook-inverse-
|
|
782
|
-
@mixin hook-inverse-dotnav-item-hover(){ border-color: transparent; }
|
|
783
|
-
@mixin hook-inverse-dotnav-item-onclick(){ border-color: transparent; }
|
|
784
|
-
@mixin hook-inverse-dotnav-item-active(){ border-color: transparent; }
|
|
785
|
-
@mixin hook-inverse-component-dotnav(){
|
|
634
|
+
@mixin hook-width-misc(){}
|
|
635
|
+
@mixin hook-visibility-misc(){}
|
|
636
|
+
@mixin hook-panel-scrollable(){}
|
|
637
|
+
@mixin hook-box-shadow-bottom(){}
|
|
638
|
+
@mixin hook-logo(){}
|
|
639
|
+
@mixin hook-logo-hover(){}
|
|
640
|
+
@mixin hook-utility-misc(){}
|
|
641
|
+
@mixin hook-inverse-dropcap(){}
|
|
642
|
+
@mixin hook-inverse-logo(){}
|
|
643
|
+
@mixin hook-inverse-logo-hover(){}
|
|
644
|
+
@mixin hook-inverse-component-utility(){
|
|
786
645
|
|
|
787
|
-
.uk-
|
|
788
|
-
|
|
789
|
-
@if(mixin-exists(hook-inverse-
|
|
646
|
+
.uk-dropcap::first-letter,
|
|
647
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
648
|
+
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
790
649
|
}
|
|
791
650
|
|
|
792
|
-
.uk-
|
|
793
|
-
|
|
794
|
-
@if(mixin-exists(hook-inverse-
|
|
651
|
+
.uk-logo {
|
|
652
|
+
color: $inverse-logo-color;
|
|
653
|
+
@if(mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
795
654
|
}
|
|
796
655
|
|
|
797
|
-
.uk-
|
|
798
|
-
|
|
799
|
-
@if(mixin-exists(hook-inverse-
|
|
656
|
+
.uk-logo:hover {
|
|
657
|
+
color: $inverse-logo-hover-color;
|
|
658
|
+
@if(mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
800
659
|
}
|
|
801
660
|
|
|
802
|
-
.uk-
|
|
803
|
-
|
|
804
|
-
|
|
661
|
+
.uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
662
|
+
.uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) { display: none; }
|
|
663
|
+
.uk-logo-inverse { display: block; }
|
|
664
|
+
|
|
665
|
+
}
|
|
666
|
+
@mixin hook-transition-misc(){}
|
|
667
|
+
@mixin hook-totop-hover(){}
|
|
668
|
+
@mixin hook-totop-active(){}
|
|
669
|
+
@mixin hook-totop-misc(){}
|
|
670
|
+
@mixin hook-inverse-totop(){}
|
|
671
|
+
@mixin hook-inverse-totop-hover(){}
|
|
672
|
+
@mixin hook-inverse-totop-active(){}
|
|
673
|
+
@mixin hook-inverse-component-totop(){
|
|
674
|
+
|
|
675
|
+
.uk-totop {
|
|
676
|
+
color: $inverse-totop-color;
|
|
677
|
+
@if(mixin-exists(hook-inverse-totop)) {@include hook-inverse-totop();}
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.uk-totop:hover {
|
|
681
|
+
color: $inverse-totop-hover-color;
|
|
682
|
+
@if(mixin-exists(hook-inverse-totop-hover)) {@include hook-inverse-totop-hover();}
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.uk-totop:active {
|
|
686
|
+
color: $inverse-totop-active-color;
|
|
687
|
+
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
|
|
805
688
|
}
|
|
806
689
|
|
|
807
690
|
}
|
|
808
|
-
@mixin hook-
|
|
809
|
-
@mixin hook-
|
|
810
|
-
@mixin hook-
|
|
811
|
-
@mixin hook-
|
|
812
|
-
@mixin hook-
|
|
813
|
-
@mixin hook-
|
|
814
|
-
@mixin hook-
|
|
815
|
-
@mixin hook-
|
|
816
|
-
@mixin hook-
|
|
817
|
-
@mixin hook-
|
|
818
|
-
@mixin hook-
|
|
819
|
-
@mixin hook-
|
|
820
|
-
@mixin hook-
|
|
821
|
-
@mixin hook-
|
|
822
|
-
@mixin hook-
|
|
823
|
-
@mixin hook-
|
|
824
|
-
@mixin hook-
|
|
825
|
-
@mixin hook-dropnav-misc(){}
|
|
826
|
-
@mixin hook-flex-misc(){}
|
|
827
|
-
@mixin hook-form-range(){}
|
|
828
|
-
@mixin hook-form-range-track(){ border-radius: $form-range-track-border-radius; }
|
|
829
|
-
@mixin hook-form-range-track-focus(){}
|
|
830
|
-
@mixin hook-form-range-thumb(){ border: $form-range-thumb-border-width solid $form-range-thumb-border; }
|
|
831
|
-
@mixin hook-form-range-misc(){}
|
|
832
|
-
@mixin hook-form(){
|
|
833
|
-
border: $form-border-width solid $form-border;
|
|
834
|
-
transition: 0.2s ease-in-out;
|
|
835
|
-
transition-property: color, background-color, border;
|
|
836
|
-
}
|
|
837
|
-
@mixin hook-form-single-line(){}
|
|
838
|
-
@mixin hook-form-multi-line(){}
|
|
839
|
-
@mixin hook-form-focus(){ border-color: $form-focus-border; }
|
|
840
|
-
@mixin hook-form-disabled(){ border-color: $form-disabled-border; }
|
|
841
|
-
@mixin hook-form-danger(){ border-color: $form-danger-border; }
|
|
842
|
-
@mixin hook-form-success(){ border-color: $form-success-border; }
|
|
843
|
-
@mixin hook-form-blank(){ border-color: transparent; }
|
|
844
|
-
@mixin hook-form-blank-focus(){
|
|
845
|
-
border-color: $form-blank-focus-border;
|
|
846
|
-
border-style: $form-blank-focus-border-style;
|
|
847
|
-
}
|
|
848
|
-
@mixin hook-form-radio(){
|
|
849
|
-
border: $form-radio-border-width solid $form-radio-border;
|
|
850
|
-
transition: 0.2s ease-in-out;
|
|
851
|
-
transition-property: background-color, border;
|
|
852
|
-
}
|
|
853
|
-
@mixin hook-form-radio-focus(){ border-color: $form-radio-focus-border; }
|
|
854
|
-
@mixin hook-form-radio-checked(){ border-color: $form-radio-checked-border; }
|
|
855
|
-
@mixin hook-form-radio-checked-focus(){}
|
|
856
|
-
@mixin hook-form-radio-disabled(){ border-color: $form-radio-disabled-border; }
|
|
857
|
-
@mixin hook-form-legend(){}
|
|
858
|
-
@mixin hook-form-label(){
|
|
859
|
-
color: $form-label-color;
|
|
860
|
-
font-size: $form-label-font-size;
|
|
861
|
-
}
|
|
862
|
-
@mixin hook-form-stacked-label(){}
|
|
863
|
-
@mixin hook-form-horizontal-label(){}
|
|
864
|
-
@mixin hook-form-icon(){}
|
|
865
|
-
@mixin hook-form-misc(){}
|
|
866
|
-
@mixin hook-inverse-form(){ border-color: $inverse-global-border; }
|
|
867
|
-
@mixin hook-inverse-form-focus(){ border-color: $inverse-global-color; }
|
|
868
|
-
@mixin hook-inverse-form-radio(){ border-color: $inverse-global-border; }
|
|
869
|
-
@mixin hook-inverse-form-radio-focus(){ border-color: $inverse-global-color; }
|
|
870
|
-
@mixin hook-inverse-form-radio-checked(){ border-color: $inverse-global-primary-background; }
|
|
871
|
-
@mixin hook-inverse-form-radio-checked-focus(){}
|
|
872
|
-
@mixin hook-inverse-form-label(){ color: $inverse-form-label-color; }
|
|
873
|
-
@mixin hook-inverse-form-icon(){}
|
|
874
|
-
@mixin hook-inverse-component-form(){
|
|
875
|
-
|
|
876
|
-
.uk-input,
|
|
877
|
-
.uk-select,
|
|
878
|
-
.uk-textarea {
|
|
879
|
-
background-color: $inverse-form-background;
|
|
880
|
-
color: $inverse-form-color;
|
|
881
|
-
background-clip: padding-box;
|
|
882
|
-
@if(mixin-exists(hook-inverse-form)) {@include hook-inverse-form();}
|
|
691
|
+
@mixin hook-tooltip(){}
|
|
692
|
+
@mixin hook-tooltip-misc(){}
|
|
693
|
+
@mixin hook-tile(){}
|
|
694
|
+
@mixin hook-tile-default(){}
|
|
695
|
+
@mixin hook-tile-default-hover(){}
|
|
696
|
+
@mixin hook-tile-muted(){}
|
|
697
|
+
@mixin hook-tile-muted-hover(){}
|
|
698
|
+
@mixin hook-tile-primary(){}
|
|
699
|
+
@mixin hook-tile-primary-hover(){}
|
|
700
|
+
@mixin hook-tile-secondary(){}
|
|
701
|
+
@mixin hook-tile-secondary-hover(){}
|
|
702
|
+
@mixin hook-tile-misc(){}
|
|
703
|
+
@mixin hook-thumbnav(){}
|
|
704
|
+
@mixin hook-thumbnav-misc(){}
|
|
705
|
+
@mixin hook-inverse-thumbnav-item-hover(){}
|
|
706
|
+
@mixin hook-inverse-thumbnav-item-active(){}
|
|
707
|
+
@mixin hook-inverse-component-thumbnav(){
|
|
883
708
|
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
color: $inverse-form-focus-color;
|
|
887
|
-
@if(mixin-exists(hook-inverse-form-focus)) {@include hook-inverse-form-focus();}
|
|
888
|
-
}
|
|
709
|
+
.uk-thumbnav > * > * {
|
|
710
|
+
@if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
|
|
889
711
|
}
|
|
890
712
|
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
713
|
+
.uk-thumbnav > * > :hover {
|
|
714
|
+
@if(mixin-exists(hook-inverse-thumbnav-item-hover)) {@include hook-inverse-thumbnav-item-hover();}
|
|
715
|
+
}
|
|
894
716
|
|
|
895
|
-
.uk-
|
|
717
|
+
.uk-thumbnav > .uk-active > * {
|
|
718
|
+
@if(mixin-exists(hook-inverse-thumbnav-item-active)) {@include hook-inverse-thumbnav-item-active();}
|
|
719
|
+
}
|
|
896
720
|
|
|
897
|
-
|
|
721
|
+
}
|
|
722
|
+
@mixin hook-text-lead(){}
|
|
723
|
+
@mixin hook-text-small(){}
|
|
724
|
+
@mixin hook-text-large(){}
|
|
725
|
+
@mixin hook-text-misc(){}
|
|
726
|
+
@mixin hook-inverse-text-lead(){}
|
|
727
|
+
@mixin hook-inverse-text-meta(){}
|
|
728
|
+
@mixin hook-inverse-component-text(){
|
|
898
729
|
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
730
|
+
.uk-text-lead {
|
|
731
|
+
color: $inverse-text-lead-color;
|
|
732
|
+
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
733
|
+
}
|
|
902
734
|
|
|
903
|
-
.uk-
|
|
735
|
+
.uk-text-meta {
|
|
736
|
+
color: $inverse-text-meta-color;
|
|
737
|
+
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
738
|
+
}
|
|
904
739
|
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
740
|
+
.uk-text-muted { color: $inverse-text-muted-color !important; }
|
|
741
|
+
.uk-text-emphasis { color: $inverse-text-emphasis-color !important; }
|
|
742
|
+
.uk-text-primary { color: $inverse-text-primary-color !important; }
|
|
743
|
+
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
908
744
|
|
|
909
|
-
|
|
910
|
-
|
|
745
|
+
}
|
|
746
|
+
@mixin hook-table(){}
|
|
747
|
+
@mixin hook-table-cell(){}
|
|
748
|
+
@mixin hook-table-footer(){}
|
|
749
|
+
@mixin hook-table-caption(){}
|
|
750
|
+
@mixin hook-table-divider(){}
|
|
751
|
+
@mixin hook-table-hover(){}
|
|
752
|
+
@mixin hook-table-row-active(){}
|
|
753
|
+
@mixin hook-table-small(){}
|
|
754
|
+
@mixin hook-table-large(){}
|
|
755
|
+
@mixin hook-inverse-table-header-cell(){}
|
|
756
|
+
@mixin hook-inverse-table-caption(){}
|
|
757
|
+
@mixin hook-inverse-table-row-active(){}
|
|
758
|
+
@mixin hook-inverse-table-divider(){}
|
|
759
|
+
@mixin hook-inverse-table-hover(){}
|
|
760
|
+
@mixin hook-tab-item-hover(){}
|
|
761
|
+
@mixin hook-tab-item-disabled(){}
|
|
762
|
+
@mixin hook-inverse-tab-item(){}
|
|
763
|
+
@mixin hook-inverse-tab-item-hover(){}
|
|
764
|
+
@mixin hook-inverse-tab-item-disabled(){}
|
|
765
|
+
@mixin hook-inverse-component-tab(){
|
|
911
766
|
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
767
|
+
.uk-tab {
|
|
768
|
+
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
769
|
+
}
|
|
915
770
|
|
|
916
|
-
.uk-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
@if(mixin-exists(hook-inverse-form-radio)) {@include hook-inverse-form-radio();}
|
|
771
|
+
.uk-tab > * > a {
|
|
772
|
+
color: $inverse-tab-item-color;
|
|
773
|
+
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
920
774
|
}
|
|
921
775
|
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
background-color: $inverse-form-radio-focus-background;
|
|
926
|
-
@if(mixin-exists(hook-inverse-form-radio-focus)) {@include hook-inverse-form-radio-focus();}
|
|
776
|
+
.uk-tab > * > a:hover {
|
|
777
|
+
color: $inverse-tab-item-hover-color;
|
|
778
|
+
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
927
779
|
}
|
|
928
780
|
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
.uk-checkbox:indeterminate {
|
|
933
|
-
background-color: $inverse-form-radio-checked-background;
|
|
934
|
-
@if(mixin-exists(hook-inverse-form-radio-checked)) {@include hook-inverse-form-radio-checked();}
|
|
781
|
+
.uk-tab > .uk-active > a {
|
|
782
|
+
color: $inverse-tab-item-active-color;
|
|
783
|
+
@if(mixin-exists(hook-inverse-tab-item-active)) {@include hook-inverse-tab-item-active();}
|
|
935
784
|
}
|
|
936
785
|
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
.uk-checkbox:indeterminate:focus {
|
|
941
|
-
background-color: $inverse-form-radio-checked-focus-background;
|
|
942
|
-
@if(mixin-exists(hook-inverse-form-radio-checked-focus)) {@include hook-inverse-form-radio-checked-focus();}
|
|
786
|
+
.uk-tab > .uk-disabled > a {
|
|
787
|
+
color: $inverse-tab-item-disabled-color;
|
|
788
|
+
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
943
789
|
}
|
|
944
790
|
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
791
|
+
}
|
|
792
|
+
@mixin hook-switcher-misc(){}
|
|
793
|
+
@mixin hook-svg-misc(){}
|
|
794
|
+
@mixin hook-subnav(){}
|
|
795
|
+
@mixin hook-subnav-item-hover(){}
|
|
796
|
+
@mixin hook-subnav-item-active(){}
|
|
797
|
+
@mixin hook-subnav-divider(){}
|
|
798
|
+
@mixin hook-subnav-pill-item(){}
|
|
799
|
+
@mixin hook-subnav-pill-item-hover(){}
|
|
800
|
+
@mixin hook-subnav-pill-item-onclick(){}
|
|
801
|
+
@mixin hook-subnav-pill-item-active(){}
|
|
802
|
+
@mixin hook-subnav-item-disabled(){}
|
|
803
|
+
@mixin hook-subnav-misc(){}
|
|
804
|
+
@mixin hook-inverse-subnav-item(){}
|
|
805
|
+
@mixin hook-inverse-subnav-item-hover(){}
|
|
806
|
+
@mixin hook-inverse-subnav-item-active(){}
|
|
807
|
+
@mixin hook-inverse-subnav-divider(){}
|
|
808
|
+
@mixin hook-inverse-subnav-pill-item(){}
|
|
809
|
+
@mixin hook-inverse-subnav-pill-item-hover(){}
|
|
810
|
+
@mixin hook-inverse-subnav-pill-item-onclick(){}
|
|
811
|
+
@mixin hook-inverse-subnav-pill-item-active(){}
|
|
812
|
+
@mixin hook-inverse-subnav-item-disabled(){}
|
|
813
|
+
@mixin hook-inverse-component-subnav(){
|
|
949
814
|
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
@if(mixin-exists(hook-inverse-
|
|
815
|
+
.uk-subnav > * > :first-child {
|
|
816
|
+
color: $inverse-subnav-item-color;
|
|
817
|
+
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
953
818
|
}
|
|
954
819
|
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
@if(mixin-exists(hook-inverse-form-icon)) {@include hook-inverse-form-icon();}
|
|
820
|
+
.uk-subnav > * > a:hover {
|
|
821
|
+
color: $inverse-subnav-item-hover-color;
|
|
822
|
+
@if(mixin-exists(hook-inverse-subnav-item-hover)) {@include hook-inverse-subnav-item-hover();}
|
|
959
823
|
}
|
|
960
|
-
.uk-form-icon:hover { color: $inverse-form-icon-hover-color; }
|
|
961
|
-
|
|
962
|
-
}
|
|
963
|
-
@mixin hook-grid-divider-horizontal(){}
|
|
964
|
-
@mixin hook-grid-divider-vertical(){}
|
|
965
|
-
@mixin hook-grid-misc(){}
|
|
966
|
-
@mixin hook-inverse-grid-divider-horizontal(){}
|
|
967
|
-
@mixin hook-inverse-grid-divider-vertical(){}
|
|
968
|
-
@mixin hook-inverse-component-grid(){
|
|
969
824
|
|
|
970
|
-
.uk-
|
|
971
|
-
|
|
972
|
-
@if(mixin-exists(hook-inverse-
|
|
825
|
+
.uk-subnav > .uk-active > a {
|
|
826
|
+
color: $inverse-subnav-item-active-color;
|
|
827
|
+
@if(mixin-exists(hook-inverse-subnav-item-active)) {@include hook-inverse-subnav-item-active();}
|
|
973
828
|
}
|
|
974
829
|
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
830
|
+
//
|
|
831
|
+
// Divider
|
|
832
|
+
//
|
|
833
|
+
|
|
834
|
+
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
|
|
835
|
+
border-left-color: $inverse-subnav-divider-border;
|
|
836
|
+
@if(mixin-exists(hook-inverse-subnav-divider)) {@include hook-inverse-subnav-divider();}
|
|
978
837
|
}
|
|
979
838
|
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
@mixin hook-heading-large(){}
|
|
984
|
-
@mixin hook-heading-xlarge(){}
|
|
985
|
-
@mixin hook-heading-2xlarge(){}
|
|
986
|
-
@mixin hook-heading-primary(){}
|
|
987
|
-
@mixin hook-heading-hero(){}
|
|
988
|
-
@mixin hook-heading-divider(){}
|
|
989
|
-
@mixin hook-heading-bullet(){}
|
|
990
|
-
@mixin hook-heading-line(){}
|
|
991
|
-
@mixin hook-heading-misc(){}
|
|
992
|
-
@mixin hook-inverse-heading-small(){}
|
|
993
|
-
@mixin hook-inverse-heading-medium(){}
|
|
994
|
-
@mixin hook-inverse-heading-large(){}
|
|
995
|
-
@mixin hook-inverse-heading-xlarge(){}
|
|
996
|
-
@mixin hook-inverse-heading-2xlarge(){}
|
|
997
|
-
@mixin hook-inverse-heading-primary(){}
|
|
998
|
-
@mixin hook-inverse-heading-hero(){}
|
|
999
|
-
@mixin hook-inverse-heading-divider(){}
|
|
1000
|
-
@mixin hook-inverse-heading-bullet(){}
|
|
1001
|
-
@mixin hook-inverse-heading-line(){}
|
|
1002
|
-
@mixin hook-inverse-component-heading(){
|
|
839
|
+
//
|
|
840
|
+
// Pill
|
|
841
|
+
//
|
|
1003
842
|
|
|
1004
|
-
.uk-
|
|
1005
|
-
|
|
843
|
+
.uk-subnav-pill > * > :first-child {
|
|
844
|
+
background-color: $inverse-subnav-pill-item-background;
|
|
845
|
+
color: $inverse-subnav-pill-item-color;
|
|
846
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item)) {@include hook-inverse-subnav-pill-item();}
|
|
1006
847
|
}
|
|
1007
848
|
|
|
1008
|
-
.uk-
|
|
1009
|
-
|
|
849
|
+
.uk-subnav-pill > * > a:hover {
|
|
850
|
+
background-color: $inverse-subnav-pill-item-hover-background;
|
|
851
|
+
color: $inverse-subnav-pill-item-hover-color;
|
|
852
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-hover)) {@include hook-inverse-subnav-pill-item-hover();}
|
|
1010
853
|
}
|
|
1011
854
|
|
|
1012
|
-
.uk-
|
|
1013
|
-
|
|
855
|
+
.uk-subnav-pill > * > a:active {
|
|
856
|
+
background-color: $inverse-subnav-pill-item-onclick-background;
|
|
857
|
+
color: $inverse-subnav-pill-item-onclick-color;
|
|
858
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1014
859
|
}
|
|
1015
860
|
|
|
1016
|
-
.uk-
|
|
1017
|
-
|
|
861
|
+
.uk-subnav-pill > .uk-active > a {
|
|
862
|
+
background-color: $inverse-subnav-pill-item-active-background;
|
|
863
|
+
color: $inverse-subnav-pill-item-active-color;
|
|
864
|
+
@if(mixin-exists(hook-inverse-subnav-pill-item-active)) {@include hook-inverse-subnav-pill-item-active();}
|
|
1018
865
|
}
|
|
1019
866
|
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
867
|
+
//
|
|
868
|
+
// Disabled
|
|
869
|
+
//
|
|
1023
870
|
|
|
1024
|
-
|
|
871
|
+
.uk-subnav > .uk-disabled > a {
|
|
872
|
+
color: $inverse-subnav-item-disabled-color;
|
|
873
|
+
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
874
|
+
}
|
|
1025
875
|
|
|
1026
|
-
|
|
876
|
+
}
|
|
877
|
+
@mixin hook-sticky-misc(){}
|
|
878
|
+
@mixin hook-spinner(){}
|
|
879
|
+
@mixin hook-spinner-misc(){}
|
|
880
|
+
@mixin hook-sortable(){}
|
|
881
|
+
@mixin hook-sortable-drag(){}
|
|
882
|
+
@mixin hook-sortable-placeholder(){}
|
|
883
|
+
@mixin hook-sortable-empty(){}
|
|
884
|
+
@mixin hook-sortable-misc(){}
|
|
885
|
+
@mixin hook-slideshow(){}
|
|
886
|
+
@mixin hook-slideshow-misc(){}
|
|
887
|
+
@mixin hook-slider(){}
|
|
888
|
+
@mixin hook-slider-misc(){}
|
|
889
|
+
@mixin hook-slidenav-hover(){}
|
|
890
|
+
@mixin hook-slidenav-active(){}
|
|
891
|
+
@mixin hook-slidenav-previous(){}
|
|
892
|
+
@mixin hook-slidenav-next(){}
|
|
893
|
+
@mixin hook-slidenav-large(){}
|
|
894
|
+
@mixin hook-slidenav-container(){}
|
|
895
|
+
@mixin hook-slidenav-misc(){}
|
|
896
|
+
@mixin hook-inverse-slidenav(){}
|
|
897
|
+
@mixin hook-inverse-slidenav-hover(){}
|
|
898
|
+
@mixin hook-inverse-slidenav-active(){}
|
|
899
|
+
@mixin hook-inverse-component-slidenav(){
|
|
1027
900
|
|
|
1028
|
-
.uk-
|
|
1029
|
-
|
|
1030
|
-
@if(mixin-exists(hook-inverse-
|
|
901
|
+
.uk-slidenav {
|
|
902
|
+
color: $inverse-slidenav-color;
|
|
903
|
+
@if(mixin-exists(hook-inverse-slidenav)) {@include hook-inverse-slidenav();}
|
|
1031
904
|
}
|
|
1032
905
|
|
|
1033
|
-
.uk-
|
|
1034
|
-
|
|
1035
|
-
@if(mixin-exists(hook-inverse-
|
|
906
|
+
.uk-slidenav:hover {
|
|
907
|
+
color: $inverse-slidenav-hover-color;
|
|
908
|
+
@if(mixin-exists(hook-inverse-slidenav-hover)) {@include hook-inverse-slidenav-hover();}
|
|
1036
909
|
}
|
|
1037
910
|
|
|
1038
|
-
.uk-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
@if(mixin-exists(hook-inverse-heading-line)) {@include hook-inverse-heading-line();}
|
|
911
|
+
.uk-slidenav:active {
|
|
912
|
+
color: $inverse-slidenav-active-color;
|
|
913
|
+
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
1042
914
|
}
|
|
1043
915
|
|
|
1044
916
|
}
|
|
1045
|
-
@mixin hook-
|
|
1046
|
-
@mixin hook-
|
|
1047
|
-
@mixin hook-
|
|
1048
|
-
@mixin hook-
|
|
1049
|
-
@mixin hook-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
}
|
|
1053
|
-
@mixin hook-icon
|
|
1054
|
-
@mixin hook-
|
|
1055
|
-
@mixin hook-
|
|
1056
|
-
@mixin hook-
|
|
1057
|
-
@mixin hook-
|
|
1058
|
-
@mixin hook-
|
|
1059
|
-
@mixin hook-
|
|
1060
|
-
@mixin hook-
|
|
1061
|
-
@mixin hook-inverse-
|
|
1062
|
-
@mixin hook-inverse-
|
|
917
|
+
@mixin hook-section(){}
|
|
918
|
+
@mixin hook-section-default(){}
|
|
919
|
+
@mixin hook-section-muted(){}
|
|
920
|
+
@mixin hook-section-primary(){}
|
|
921
|
+
@mixin hook-section-secondary(){}
|
|
922
|
+
@mixin hook-section-overlap(){}
|
|
923
|
+
@mixin hook-section-misc(){}
|
|
924
|
+
@mixin hook-search-input(){}
|
|
925
|
+
@mixin hook-search-icon(){}
|
|
926
|
+
@mixin hook-search-navbar-input(){}
|
|
927
|
+
@mixin hook-search-navbar-input-focus(){}
|
|
928
|
+
@mixin hook-search-large-input(){}
|
|
929
|
+
@mixin hook-search-large-input-focus(){}
|
|
930
|
+
@mixin hook-search-toggle(){}
|
|
931
|
+
@mixin hook-search-toggle-hover(){}
|
|
932
|
+
@mixin hook-search-misc(){}
|
|
933
|
+
@mixin hook-inverse-search-default-input-focus(){}
|
|
934
|
+
@mixin hook-inverse-search-navbar-input(){}
|
|
935
|
+
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
936
|
+
@mixin hook-inverse-search-large-input(){}
|
|
937
|
+
@mixin hook-inverse-search-large-input-focus(){}
|
|
938
|
+
@mixin hook-inverse-search-toggle(){}
|
|
939
|
+
@mixin hook-inverse-search-toggle-hover(){}
|
|
940
|
+
@mixin hook-inverse-component-search(){
|
|
1063
941
|
|
|
1064
942
|
//
|
|
1065
|
-
//
|
|
943
|
+
// Input
|
|
1066
944
|
//
|
|
1067
945
|
|
|
1068
|
-
.uk-
|
|
1069
|
-
color: $inverse-icon-link-color;
|
|
1070
|
-
@if(mixin-exists(hook-inverse-icon-link)) {@include hook-inverse-icon-link();}
|
|
1071
|
-
}
|
|
946
|
+
.uk-search-input { color: $inverse-search-color; }
|
|
1072
947
|
|
|
1073
|
-
.uk-
|
|
1074
|
-
color: $inverse-icon-link-hover-color;
|
|
1075
|
-
@if(mixin-exists(hook-inverse-icon-link-hover)) {@include hook-inverse-icon-link-hover();}
|
|
1076
|
-
}
|
|
948
|
+
.uk-search-input::placeholder { color: $inverse-search-placeholder-color; }
|
|
1077
949
|
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
}
|
|
950
|
+
//
|
|
951
|
+
// Icon
|
|
952
|
+
//
|
|
953
|
+
|
|
954
|
+
.uk-search .uk-search-icon { color: $inverse-search-icon-color; }
|
|
955
|
+
.uk-search .uk-search-icon:hover { color: $inverse-search-icon-color; }
|
|
1083
956
|
|
|
1084
957
|
//
|
|
1085
|
-
//
|
|
958
|
+
// Style modifier
|
|
1086
959
|
//
|
|
1087
960
|
|
|
1088
|
-
.uk-
|
|
1089
|
-
background-color: $inverse-
|
|
1090
|
-
|
|
1091
|
-
@if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
|
|
961
|
+
.uk-search-default .uk-search-input {
|
|
962
|
+
background-color: $inverse-search-default-background;
|
|
963
|
+
@if(mixin-exists(hook-inverse-search-default-input)) {@include hook-inverse-search-default-input();}
|
|
1092
964
|
}
|
|
1093
965
|
|
|
1094
|
-
.uk-
|
|
1095
|
-
background-color: $inverse-
|
|
1096
|
-
|
|
1097
|
-
@if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
|
|
966
|
+
.uk-search-default .uk-search-input:focus {
|
|
967
|
+
background-color: $inverse-search-default-focus-background;
|
|
968
|
+
@if(mixin-exists(hook-inverse-search-default-input-focus)) {@include hook-inverse-search-default-input-focus();}
|
|
1098
969
|
}
|
|
1099
970
|
|
|
1100
|
-
.uk-
|
|
1101
|
-
background-color: $inverse-
|
|
1102
|
-
|
|
1103
|
-
@if(mixin-exists(hook-inverse-icon-button-active)) {@include hook-inverse-icon-button-active();}
|
|
971
|
+
.uk-search-navbar .uk-search-input {
|
|
972
|
+
background-color: $inverse-search-navbar-background;
|
|
973
|
+
@if(mixin-exists(hook-inverse-search-navbar-input)) {@include hook-inverse-search-navbar-input();}
|
|
1104
974
|
}
|
|
1105
975
|
|
|
1106
|
-
|
|
1107
|
-
@mixin hook-
|
|
1108
|
-
@mixin hook-iconnav-item(){
|
|
1109
|
-
font-size: $subnav-item-font-size;
|
|
1110
|
-
transition: 0.1s ease-in-out;
|
|
1111
|
-
transition-property: color, background-color;
|
|
1112
|
-
}
|
|
1113
|
-
@mixin hook-iconnav-item-hover(){}
|
|
1114
|
-
@mixin hook-iconnav-item-active(){}
|
|
1115
|
-
@mixin hook-iconnav-misc(){}
|
|
1116
|
-
@mixin hook-inverse-iconnav-item(){}
|
|
1117
|
-
@mixin hook-inverse-iconnav-item-hover(){}
|
|
1118
|
-
@mixin hook-inverse-iconnav-item-active(){}
|
|
1119
|
-
@mixin hook-inverse-component-iconnav(){
|
|
1120
|
-
|
|
1121
|
-
.uk-iconnav > * > a {
|
|
1122
|
-
color: $inverse-iconnav-item-color;
|
|
1123
|
-
@if(mixin-exists(hook-inverse-iconnav-item)) {@include hook-inverse-iconnav-item();}
|
|
976
|
+
.uk-search-navbar .uk-search-input:focus {
|
|
977
|
+
@if(mixin-exists(hook-inverse-search-navbar-input-focus)) {@include hook-inverse-search-navbar-input-focus();}
|
|
1124
978
|
}
|
|
1125
979
|
|
|
1126
|
-
.uk-
|
|
1127
|
-
color: $inverse-
|
|
1128
|
-
@if(mixin-exists(hook-inverse-
|
|
980
|
+
.uk-search-large .uk-search-input {
|
|
981
|
+
background-color: $inverse-search-large-background;
|
|
982
|
+
@if(mixin-exists(hook-inverse-search-large-input)) {@include hook-inverse-search-large-input();}
|
|
1129
983
|
}
|
|
1130
984
|
|
|
1131
|
-
.uk-
|
|
1132
|
-
|
|
1133
|
-
@if(mixin-exists(hook-inverse-iconnav-item-active)) {@include hook-inverse-iconnav-item-active();}
|
|
985
|
+
.uk-search-large .uk-search-input:focus {
|
|
986
|
+
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1134
987
|
}
|
|
1135
988
|
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
a.uk-link-muted,
|
|
1140
|
-
.uk-link-muted a {
|
|
1141
|
-
color: $inverse-link-muted-color;
|
|
1142
|
-
@if(mixin-exists(hook-inverse-link-muted)) {@include hook-inverse-link-muted();}
|
|
1143
|
-
}
|
|
989
|
+
//
|
|
990
|
+
// Toggle
|
|
991
|
+
//
|
|
1144
992
|
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
color: $inverse-link-muted-hover-color;
|
|
1149
|
-
@if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
|
|
993
|
+
.uk-search-toggle {
|
|
994
|
+
color: $inverse-search-toggle-color;
|
|
995
|
+
@if(mixin-exists(hook-inverse-search-toggle)) {@include hook-inverse-search-toggle();}
|
|
1150
996
|
}
|
|
1151
997
|
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
color: $inverse-link-text-hover-color;
|
|
1156
|
-
@if(mixin-exists(hook-inverse-link-text-hover)) {@include hook-inverse-link-text-hover();}
|
|
998
|
+
.uk-search-toggle:hover {
|
|
999
|
+
color: $inverse-search-toggle-hover-color;
|
|
1000
|
+
@if(mixin-exists(hook-inverse-search-toggle-hover)) {@include hook-inverse-search-toggle-hover();}
|
|
1157
1001
|
}
|
|
1158
1002
|
|
|
1159
|
-
a.uk-link-heading:hover,
|
|
1160
|
-
.uk-link-heading a:hover,
|
|
1161
|
-
.uk-link-toggle:hover .uk-link-heading {
|
|
1162
|
-
color: $inverse-link-heading-hover-color;
|
|
1163
|
-
@if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
}
|
|
1167
|
-
@mixin hook-inverse-component-list(){
|
|
1168
|
-
|
|
1169
|
-
.uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
|
|
1170
|
-
.uk-list-emphasis > ::before { color: $inverse-list-emphasis-color !important; }
|
|
1171
|
-
.uk-list-primary > ::before { color: $inverse-list-primary-color !important; }
|
|
1172
|
-
.uk-list-secondary > ::before { color: $inverse-list-secondary-color !important; }
|
|
1173
|
-
|
|
1174
|
-
.uk-list-bullet > ::before {
|
|
1175
|
-
@include svg-fill($internal-list-bullet-image, "#000", $inverse-list-bullet-icon-color);
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
.uk-list-divider > :nth-child(n+2) {
|
|
1179
|
-
border-top-color: $inverse-list-divider-border;
|
|
1180
|
-
@if(mixin-exists(hook-inverse-list-divider)) {@include hook-inverse-list-divider();}
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
.uk-list-striped > * {
|
|
1184
|
-
@if(mixin-exists(hook-inverse-list-striped)) {@include hook-inverse-list-striped();}
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1188
|
-
|
|
1189
1003
|
}
|
|
1190
|
-
@mixin hook-
|
|
1004
|
+
@mixin hook-progress-bar(){}
|
|
1005
|
+
@mixin hook-progress-misc(){}
|
|
1006
|
+
@mixin hook-print(){}
|
|
1007
|
+
@mixin hook-position-misc(){}
|
|
1008
|
+
@mixin hook-placeholder-misc(){}
|
|
1009
|
+
@mixin hook-pagination(){}
|
|
1010
|
+
@mixin hook-pagination-item-hover(){}
|
|
1011
|
+
@mixin hook-pagination-item-active(){}
|
|
1012
|
+
@mixin hook-pagination-item-disabled(){}
|
|
1013
|
+
@mixin hook-pagination-misc(){}
|
|
1014
|
+
@mixin hook-inverse-pagination-item(){}
|
|
1015
|
+
@mixin hook-inverse-pagination-item-hover(){}
|
|
1016
|
+
@mixin hook-inverse-pagination-item-active(){}
|
|
1017
|
+
@mixin hook-inverse-pagination-item-disabled(){}
|
|
1018
|
+
@mixin hook-inverse-component-pagination(){
|
|
1191
1019
|
|
|
1192
|
-
.uk-
|
|
1193
|
-
color: $inverse-
|
|
1194
|
-
@if(mixin-exists(hook-inverse-
|
|
1020
|
+
.uk-pagination > * > * {
|
|
1021
|
+
color: $inverse-pagination-item-color;
|
|
1022
|
+
@if(mixin-exists(hook-inverse-pagination-item)) {@include hook-inverse-pagination-item();}
|
|
1195
1023
|
}
|
|
1196
1024
|
|
|
1197
|
-
.uk-
|
|
1198
|
-
color: $inverse-
|
|
1199
|
-
@if(mixin-exists(hook-inverse-
|
|
1025
|
+
.uk-pagination > * > :hover {
|
|
1026
|
+
color: $inverse-pagination-item-hover-color;
|
|
1027
|
+
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
1200
1028
|
}
|
|
1201
1029
|
|
|
1202
|
-
.uk-
|
|
1203
|
-
color: $inverse-
|
|
1204
|
-
@if(mixin-exists(hook-inverse-
|
|
1030
|
+
.uk-pagination > .uk-active > * {
|
|
1031
|
+
color: $inverse-pagination-item-active-color;
|
|
1032
|
+
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
1205
1033
|
}
|
|
1206
1034
|
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
.uk-label {
|
|
1211
|
-
background-color: $inverse-label-background;
|
|
1212
|
-
color: $inverse-label-color;
|
|
1213
|
-
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
|
|
1035
|
+
.uk-pagination > .uk-disabled > * {
|
|
1036
|
+
color: $inverse-pagination-item-disabled-color;
|
|
1037
|
+
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
1214
1038
|
}
|
|
1215
1039
|
|
|
1216
1040
|
}
|
|
1217
|
-
@mixin hook-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1041
|
+
@mixin hook-padding-misc(){}
|
|
1042
|
+
@mixin hook-overlay(){}
|
|
1043
|
+
@mixin hook-overlay-icon(){}
|
|
1044
|
+
@mixin hook-overlay-default(){}
|
|
1045
|
+
@mixin hook-overlay-primary(){}
|
|
1046
|
+
@mixin hook-overlay-misc(){}
|
|
1047
|
+
@mixin hook-offcanvas-bar(){}
|
|
1048
|
+
@mixin hook-offcanvas-close(){}
|
|
1049
|
+
@mixin hook-offcanvas-overlay(){}
|
|
1050
|
+
@mixin hook-offcanvas-misc(){}
|
|
1051
|
+
@mixin hook-notification(){}
|
|
1052
|
+
@mixin hook-notification-message(){}
|
|
1053
|
+
@mixin hook-notification-close(){}
|
|
1054
|
+
@mixin hook-notification-message-primary(){}
|
|
1055
|
+
@mixin hook-notification-message-success(){}
|
|
1056
|
+
@mixin hook-notification-message-warning(){}
|
|
1057
|
+
@mixin hook-notification-message-danger(){}
|
|
1058
|
+
@mixin hook-notification-misc(){}
|
|
1059
|
+
@mixin hook-navbar(){}
|
|
1060
|
+
@mixin hook-navbar-container(){}
|
|
1061
|
+
@mixin hook-navbar-nav-item-hover(){}
|
|
1062
|
+
@mixin hook-navbar-nav-item-onclick(){}
|
|
1063
|
+
@mixin hook-navbar-nav-item-active(){}
|
|
1064
|
+
@mixin hook-navbar-item(){}
|
|
1065
|
+
@mixin hook-navbar-toggle(){}
|
|
1066
|
+
@mixin hook-navbar-toggle-hover(){}
|
|
1067
|
+
@mixin hook-navbar-toggle-icon(){}
|
|
1068
|
+
@mixin hook-navbar-toggle-icon-hover(){}
|
|
1069
|
+
@mixin hook-navbar-subtitle(){}
|
|
1070
|
+
@mixin hook-navbar-primary(){}
|
|
1071
|
+
@mixin hook-navbar-transparent(){}
|
|
1072
|
+
@mixin hook-navbar-sticky(){}
|
|
1073
|
+
@mixin hook-navbar-dropdown-large(){}
|
|
1074
|
+
@mixin hook-navbar-dropdown-dropbar-large(){}
|
|
1075
|
+
@mixin hook-navbar-dropdown-nav-item(){}
|
|
1076
|
+
@mixin hook-navbar-dropdown-nav-item-hover(){}
|
|
1077
|
+
@mixin hook-navbar-dropdown-nav-item-active(){}
|
|
1078
|
+
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
1079
|
+
@mixin hook-navbar-dropdown-nav-header(){}
|
|
1080
|
+
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
1081
|
+
@mixin hook-navbar-dropbar(){}
|
|
1082
|
+
@mixin hook-inverse-navbar-nav-item(){}
|
|
1083
|
+
@mixin hook-inverse-navbar-nav-item-hover(){}
|
|
1084
|
+
@mixin hook-inverse-navbar-nav-item-onclick(){}
|
|
1085
|
+
@mixin hook-inverse-navbar-nav-item-active(){}
|
|
1086
|
+
@mixin hook-inverse-navbar-item(){}
|
|
1087
|
+
@mixin hook-inverse-navbar-toggle(){}
|
|
1088
|
+
@mixin hook-inverse-navbar-toggle-hover(){}
|
|
1089
|
+
@mixin hook-inverse-component-navbar(){
|
|
1233
1090
|
|
|
1234
1091
|
//
|
|
1235
|
-
//
|
|
1092
|
+
// Nav Item
|
|
1236
1093
|
//
|
|
1237
1094
|
|
|
1238
|
-
.uk-
|
|
1239
|
-
|
|
1240
|
-
@if(mixin-exists(hook-inverse-
|
|
1095
|
+
.uk-navbar-nav > li > a {
|
|
1096
|
+
color: $inverse-navbar-nav-item-color;
|
|
1097
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item)) {@include hook-inverse-navbar-nav-item();}
|
|
1241
1098
|
}
|
|
1242
1099
|
|
|
1243
|
-
.uk-
|
|
1244
|
-
|
|
1245
|
-
|
|
1100
|
+
.uk-navbar-nav > li:hover > a,
|
|
1101
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] {
|
|
1102
|
+
color: $inverse-navbar-nav-item-hover-color;
|
|
1103
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
|
|
1246
1104
|
}
|
|
1247
1105
|
|
|
1248
|
-
.uk-
|
|
1249
|
-
|
|
1250
|
-
@if(mixin-exists(hook-inverse-
|
|
1106
|
+
.uk-navbar-nav > li > a:active {
|
|
1107
|
+
color: $inverse-navbar-nav-item-onclick-color;
|
|
1108
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-onclick)) {@include hook-inverse-navbar-nav-item-onclick();}
|
|
1251
1109
|
}
|
|
1252
1110
|
|
|
1253
|
-
.uk-
|
|
1254
|
-
|
|
1111
|
+
.uk-navbar-nav > li.uk-active > a {
|
|
1112
|
+
color: $inverse-navbar-nav-item-active-color;
|
|
1113
|
+
@if(mixin-exists(hook-inverse-navbar-nav-item-active)) {@include hook-inverse-navbar-nav-item-active();}
|
|
1255
1114
|
}
|
|
1256
1115
|
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
}
|
|
1116
|
+
//
|
|
1117
|
+
// Item
|
|
1118
|
+
//
|
|
1261
1119
|
|
|
1262
|
-
.uk-
|
|
1263
|
-
|
|
1120
|
+
.uk-navbar-item {
|
|
1121
|
+
color: $inverse-navbar-item-color;
|
|
1122
|
+
@if(mixin-exists(hook-inverse-navbar-item)) {@include hook-inverse-navbar-item();}
|
|
1264
1123
|
}
|
|
1265
1124
|
|
|
1266
1125
|
//
|
|
1267
1126
|
// Toggle
|
|
1268
1127
|
//
|
|
1269
1128
|
|
|
1270
|
-
.uk-
|
|
1271
|
-
color: $inverse-
|
|
1272
|
-
@if(mixin-exists(hook-inverse-
|
|
1129
|
+
.uk-navbar-toggle {
|
|
1130
|
+
color: $inverse-navbar-toggle-color;
|
|
1131
|
+
@if(mixin-exists(hook-inverse-navbar-toggle)) {@include hook-inverse-navbar-toggle();}
|
|
1273
1132
|
}
|
|
1274
1133
|
|
|
1275
|
-
.uk-
|
|
1276
|
-
|
|
1277
|
-
|
|
1134
|
+
.uk-navbar-toggle:hover,
|
|
1135
|
+
.uk-navbar-toggle[aria-expanded="true"] {
|
|
1136
|
+
color: $inverse-navbar-toggle-hover-color;
|
|
1137
|
+
@if(mixin-exists(hook-inverse-navbar-toggle-hover)) {@include hook-inverse-navbar-toggle-hover();}
|
|
1278
1138
|
}
|
|
1279
1139
|
|
|
1280
1140
|
}
|
|
1141
|
+
@mixin hook-nav-sub(){}
|
|
1142
|
+
@mixin hook-nav-header(){}
|
|
1143
|
+
@mixin hook-nav-divider(){}
|
|
1144
|
+
@mixin hook-nav-default(){}
|
|
1145
|
+
@mixin hook-nav-default-item(){}
|
|
1146
|
+
@mixin hook-nav-default-item-hover(){}
|
|
1147
|
+
@mixin hook-nav-default-item-active(){}
|
|
1148
|
+
@mixin hook-nav-default-subtitle(){}
|
|
1149
|
+
@mixin hook-nav-default-header(){}
|
|
1150
|
+
@mixin hook-nav-default-divider(){}
|
|
1151
|
+
@mixin hook-nav-primary(){}
|
|
1152
|
+
@mixin hook-nav-primary-item(){}
|
|
1153
|
+
@mixin hook-nav-primary-item-hover(){}
|
|
1154
|
+
@mixin hook-nav-primary-item-active(){}
|
|
1155
|
+
@mixin hook-nav-primary-subtitle(){}
|
|
1156
|
+
@mixin hook-nav-primary-header(){}
|
|
1157
|
+
@mixin hook-nav-primary-divider(){}
|
|
1158
|
+
@mixin hook-nav-secondary-subtitle(){}
|
|
1159
|
+
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
1160
|
+
@mixin hook-nav-secondary-subtitle-active(){}
|
|
1161
|
+
@mixin hook-nav-secondary-header(){}
|
|
1162
|
+
@mixin hook-nav-secondary-divider(){}
|
|
1163
|
+
@mixin hook-nav-dividers(){}
|
|
1164
|
+
@mixin hook-nav-misc(){}
|
|
1165
|
+
@mixin hook-inverse-nav-default-item(){}
|
|
1166
|
+
@mixin hook-inverse-nav-default-item-hover(){}
|
|
1167
|
+
@mixin hook-inverse-nav-default-item-active(){}
|
|
1168
|
+
@mixin hook-inverse-nav-default-header(){}
|
|
1169
|
+
@mixin hook-inverse-nav-default-divider(){}
|
|
1170
|
+
@mixin hook-inverse-nav-primary-item(){}
|
|
1171
|
+
@mixin hook-inverse-nav-primary-item-hover(){}
|
|
1172
|
+
@mixin hook-inverse-nav-primary-item-active(){}
|
|
1173
|
+
@mixin hook-inverse-nav-primary-header(){}
|
|
1174
|
+
@mixin hook-inverse-nav-primary-divider(){}
|
|
1175
|
+
@mixin hook-inverse-nav-secondary-item(){}
|
|
1176
|
+
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
1177
|
+
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
1178
|
+
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
1179
|
+
@mixin hook-inverse-nav-secondary-header(){}
|
|
1180
|
+
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1181
|
+
@mixin hook-inverse-nav-dividers(){}
|
|
1281
1182
|
@mixin hook-inverse-component-nav(){
|
|
1282
1183
|
|
|
1283
1184
|
//
|
|
@@ -1410,804 +1311,947 @@
|
|
|
1410
1311
|
}
|
|
1411
1312
|
|
|
1412
1313
|
}
|
|
1413
|
-
@mixin hook-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1314
|
+
@mixin hook-modal(){}
|
|
1315
|
+
@mixin hook-modal-dialog(){}
|
|
1316
|
+
@mixin hook-modal-full(){}
|
|
1317
|
+
@mixin hook-modal-body(){}
|
|
1318
|
+
@mixin hook-modal-title(){}
|
|
1319
|
+
@mixin hook-modal-close(){}
|
|
1320
|
+
@mixin hook-modal-close-hover(){}
|
|
1321
|
+
@mixin hook-modal-close-default(){}
|
|
1322
|
+
@mixin hook-modal-close-default-hover(){}
|
|
1323
|
+
@mixin hook-modal-close-outside(){}
|
|
1324
|
+
@mixin hook-modal-close-outside-hover(){}
|
|
1325
|
+
@mixin hook-modal-close-full-hover(){}
|
|
1326
|
+
@mixin hook-marker-hover(){}
|
|
1327
|
+
@mixin hook-marker-misc(){}
|
|
1328
|
+
@mixin hook-inverse-marker(){}
|
|
1329
|
+
@mixin hook-inverse-marker-hover(){}
|
|
1330
|
+
@mixin hook-inverse-component-marker(){
|
|
1418
1331
|
|
|
1419
|
-
.uk-
|
|
1420
|
-
|
|
1421
|
-
|
|
1332
|
+
.uk-marker {
|
|
1333
|
+
background: $inverse-marker-background;
|
|
1334
|
+
color: $inverse-marker-color;
|
|
1335
|
+
@if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
|
|
1422
1336
|
}
|
|
1423
1337
|
|
|
1424
|
-
.uk-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
@if(mixin-exists(hook-inverse-navbar-nav-item-hover)) {@include hook-inverse-navbar-nav-item-hover();}
|
|
1338
|
+
.uk-marker:hover {
|
|
1339
|
+
color: $inverse-marker-hover-color;
|
|
1340
|
+
@if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
|
|
1428
1341
|
}
|
|
1429
1342
|
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1343
|
+
}
|
|
1344
|
+
@mixin hook-margin-misc(){}
|
|
1345
|
+
@mixin hook-list-divider(){}
|
|
1346
|
+
@mixin hook-list-misc(){}
|
|
1347
|
+
@mixin hook-inverse-list-divider(){}
|
|
1348
|
+
@mixin hook-inverse-component-list(){
|
|
1349
|
+
|
|
1350
|
+
.uk-list-muted > ::before { color: $inverse-list-muted-color !important; }
|
|
1351
|
+
.uk-list-emphasis > ::before { color: $inverse-list-emphasis-color !important; }
|
|
1352
|
+
.uk-list-primary > ::before { color: $inverse-list-primary-color !important; }
|
|
1353
|
+
.uk-list-secondary > ::before { color: $inverse-list-secondary-color !important; }
|
|
1354
|
+
|
|
1355
|
+
.uk-list-bullet > ::before {
|
|
1356
|
+
@include svg-fill($internal-list-bullet-image, "#000", $inverse-list-bullet-icon-color);
|
|
1433
1357
|
}
|
|
1434
1358
|
|
|
1435
|
-
.uk-
|
|
1436
|
-
color: $inverse-
|
|
1437
|
-
@if(mixin-exists(hook-inverse-
|
|
1359
|
+
.uk-list-divider > :nth-child(n+2) {
|
|
1360
|
+
border-top-color: $inverse-list-divider-border;
|
|
1361
|
+
@if(mixin-exists(hook-inverse-list-divider)) {@include hook-inverse-list-divider();}
|
|
1438
1362
|
}
|
|
1439
1363
|
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1364
|
+
.uk-list-striped > * {
|
|
1365
|
+
@if(mixin-exists(hook-inverse-list-striped)) {@include hook-inverse-list-striped();}
|
|
1366
|
+
}
|
|
1443
1367
|
|
|
1444
|
-
.uk-
|
|
1445
|
-
|
|
1446
|
-
|
|
1368
|
+
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1369
|
+
|
|
1370
|
+
}
|
|
1371
|
+
@mixin hook-link-muted(){}
|
|
1372
|
+
@mixin hook-link-muted-hover(){}
|
|
1373
|
+
@mixin hook-link-text(){}
|
|
1374
|
+
@mixin hook-link-text-hover(){}
|
|
1375
|
+
@mixin hook-link-heading(){}
|
|
1376
|
+
@mixin hook-link-heading-hover(){}
|
|
1377
|
+
@mixin hook-link-reset(){}
|
|
1378
|
+
@mixin hook-link-misc(){}
|
|
1379
|
+
@mixin hook-inverse-link-muted(){}
|
|
1380
|
+
@mixin hook-inverse-link-muted-hover(){}
|
|
1381
|
+
@mixin hook-inverse-link-text-hover(){}
|
|
1382
|
+
@mixin hook-inverse-link-heading-hover(){}
|
|
1383
|
+
@mixin hook-inverse-component-link(){
|
|
1384
|
+
|
|
1385
|
+
a.uk-link-muted,
|
|
1386
|
+
.uk-link-muted a {
|
|
1387
|
+
color: $inverse-link-muted-color;
|
|
1388
|
+
@if(mixin-exists(hook-inverse-link-muted)) {@include hook-inverse-link-muted();}
|
|
1447
1389
|
}
|
|
1448
1390
|
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1391
|
+
a.uk-link-muted:hover,
|
|
1392
|
+
.uk-link-muted a:hover,
|
|
1393
|
+
.uk-link-toggle:hover .uk-link-muted {
|
|
1394
|
+
color: $inverse-link-muted-hover-color;
|
|
1395
|
+
@if(mixin-exists(hook-inverse-link-muted-hover)) {@include hook-inverse-link-muted-hover();}
|
|
1396
|
+
}
|
|
1452
1397
|
|
|
1453
|
-
.uk-
|
|
1454
|
-
|
|
1455
|
-
|
|
1398
|
+
a.uk-link-text:hover,
|
|
1399
|
+
.uk-link-text a:hover,
|
|
1400
|
+
.uk-link-toggle:hover .uk-link-text {
|
|
1401
|
+
color: $inverse-link-text-hover-color;
|
|
1402
|
+
@if(mixin-exists(hook-inverse-link-text-hover)) {@include hook-inverse-link-text-hover();}
|
|
1456
1403
|
}
|
|
1457
1404
|
|
|
1458
|
-
.uk-
|
|
1459
|
-
.uk-
|
|
1460
|
-
|
|
1461
|
-
|
|
1405
|
+
a.uk-link-heading:hover,
|
|
1406
|
+
.uk-link-heading a:hover,
|
|
1407
|
+
.uk-link-toggle:hover .uk-link-heading {
|
|
1408
|
+
color: $inverse-link-heading-hover-color;
|
|
1409
|
+
@if(mixin-exists(hook-inverse-link-heading-hover)) {@include hook-inverse-link-heading-hover();}
|
|
1462
1410
|
}
|
|
1463
1411
|
|
|
1464
1412
|
}
|
|
1465
|
-
@mixin hook-
|
|
1413
|
+
@mixin hook-lightbox(){}
|
|
1414
|
+
@mixin hook-lightbox-item(){}
|
|
1415
|
+
@mixin hook-lightbox-toolbar(){}
|
|
1416
|
+
@mixin hook-lightbox-toolbar-icon(){}
|
|
1417
|
+
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
1418
|
+
@mixin hook-lightbox-button(){}
|
|
1419
|
+
@mixin hook-lightbox-button-hover(){}
|
|
1420
|
+
@mixin hook-lightbox-button-active(){}
|
|
1421
|
+
@mixin hook-lightbox-misc(){}
|
|
1422
|
+
@mixin hook-leader(){}
|
|
1423
|
+
@mixin hook-leader-misc(){}
|
|
1424
|
+
@mixin hook-inverse-leader(){}
|
|
1425
|
+
@mixin hook-inverse-component-leader(){
|
|
1466
1426
|
|
|
1467
|
-
.uk-
|
|
1468
|
-
|
|
1469
|
-
@if(mixin-exists(hook-inverse-subnav-item)) {@include hook-inverse-subnav-item();}
|
|
1427
|
+
.uk-leader-fill::after {
|
|
1428
|
+
@if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
|
|
1470
1429
|
}
|
|
1471
1430
|
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1431
|
+
}
|
|
1432
|
+
@mixin hook-label-success(){}
|
|
1433
|
+
@mixin hook-label-warning(){}
|
|
1434
|
+
@mixin hook-label-danger(){}
|
|
1435
|
+
@mixin hook-label-misc(){}
|
|
1436
|
+
@mixin hook-inverse-label(){}
|
|
1437
|
+
@mixin hook-inverse-component-label(){
|
|
1476
1438
|
|
|
1477
|
-
.uk-
|
|
1478
|
-
color: $inverse-
|
|
1479
|
-
|
|
1439
|
+
.uk-label {
|
|
1440
|
+
background-color: $inverse-label-background;
|
|
1441
|
+
color: $inverse-label-color;
|
|
1442
|
+
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
|
|
1480
1443
|
}
|
|
1481
1444
|
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
//
|
|
1445
|
+
}
|
|
1446
|
+
@mixin hook-inverse-component-base(){
|
|
1485
1447
|
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1448
|
+
color: $inverse-base-color;
|
|
1449
|
+
|
|
1450
|
+
// Base
|
|
1451
|
+
// ========================================================================
|
|
1490
1452
|
|
|
1491
1453
|
//
|
|
1492
|
-
//
|
|
1454
|
+
// Link
|
|
1493
1455
|
//
|
|
1494
1456
|
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
color: $inverse-
|
|
1498
|
-
@if(mixin-exists(hook-inverse-
|
|
1457
|
+
a,
|
|
1458
|
+
.uk-link {
|
|
1459
|
+
color: $inverse-base-link-color;
|
|
1460
|
+
@if(mixin-exists(hook-inverse-base-link)) {@include hook-inverse-base-link();}
|
|
1499
1461
|
}
|
|
1500
1462
|
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1463
|
+
a:hover,
|
|
1464
|
+
.uk-link:hover,
|
|
1465
|
+
.uk-link-toggle:hover .uk-link {
|
|
1466
|
+
color: $inverse-base-link-hover-color;
|
|
1467
|
+
@if(mixin-exists(hook-inverse-base-link-hover)) {@include hook-inverse-base-link-hover();}
|
|
1505
1468
|
}
|
|
1506
1469
|
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
@if(mixin-exists(hook-inverse-subnav-pill-item-onclick)) {@include hook-inverse-subnav-pill-item-onclick();}
|
|
1511
|
-
}
|
|
1470
|
+
//
|
|
1471
|
+
// Code
|
|
1472
|
+
//
|
|
1512
1473
|
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1474
|
+
:not(pre) > code,
|
|
1475
|
+
:not(pre) > kbd,
|
|
1476
|
+
:not(pre) > samp {
|
|
1477
|
+
color: $inverse-base-code-color;
|
|
1478
|
+
@if(mixin-exists(hook-inverse-base-code)) {@include hook-inverse-base-code();}
|
|
1517
1479
|
}
|
|
1518
1480
|
|
|
1519
1481
|
//
|
|
1520
|
-
//
|
|
1482
|
+
// Emphasize
|
|
1521
1483
|
//
|
|
1522
1484
|
|
|
1523
|
-
|
|
1524
|
-
color: $inverse-subnav-item-disabled-color;
|
|
1525
|
-
@if(mixin-exists(hook-inverse-subnav-item-disabled)) {@include hook-inverse-subnav-item-disabled();}
|
|
1526
|
-
}
|
|
1485
|
+
em { color: $inverse-base-em-color; }
|
|
1527
1486
|
|
|
1528
|
-
|
|
1529
|
-
|
|
1487
|
+
//
|
|
1488
|
+
// Headings
|
|
1489
|
+
//
|
|
1530
1490
|
|
|
1531
|
-
.uk-
|
|
1532
|
-
|
|
1533
|
-
|
|
1491
|
+
h1, .uk-h1,
|
|
1492
|
+
h2, .uk-h2,
|
|
1493
|
+
h3, .uk-h3,
|
|
1494
|
+
h4, .uk-h4,
|
|
1495
|
+
h5, .uk-h5,
|
|
1496
|
+
h6, .uk-h6,
|
|
1497
|
+
.uk-heading-small,
|
|
1498
|
+
.uk-heading-medium,
|
|
1499
|
+
.uk-heading-large,
|
|
1500
|
+
.uk-heading-xlarge,
|
|
1501
|
+
.uk-heading-2xlarge {
|
|
1502
|
+
color: $inverse-base-heading-color;
|
|
1503
|
+
@if(mixin-exists(hook-inverse-base-heading)) {@include hook-inverse-base-heading();}
|
|
1534
1504
|
}
|
|
1535
1505
|
|
|
1536
|
-
.uk-
|
|
1537
|
-
|
|
1538
|
-
@if(mixin-exists(hook-inverse-pagination-item-hover)) {@include hook-inverse-pagination-item-hover();}
|
|
1506
|
+
h1, .uk-h1 {
|
|
1507
|
+
@if(mixin-exists(hook-inverse-base-h1)) {@include hook-inverse-base-h1();}
|
|
1539
1508
|
}
|
|
1540
1509
|
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
@if(mixin-exists(hook-inverse-pagination-item-active)) {@include hook-inverse-pagination-item-active();}
|
|
1510
|
+
h2, .uk-h2 {
|
|
1511
|
+
@if(mixin-exists(hook-inverse-base-h2)) {@include hook-inverse-base-h2();}
|
|
1544
1512
|
}
|
|
1545
1513
|
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
@if(mixin-exists(hook-inverse-pagination-item-disabled)) {@include hook-inverse-pagination-item-disabled();}
|
|
1514
|
+
h3, .uk-h3 {
|
|
1515
|
+
@if(mixin-exists(hook-inverse-base-h3)) {@include hook-inverse-base-h3();}
|
|
1549
1516
|
}
|
|
1550
1517
|
|
|
1551
|
-
|
|
1552
|
-
@mixin hook-inverse-
|
|
1553
|
-
|
|
1554
|
-
.uk-tab {
|
|
1555
|
-
@if(mixin-exists(hook-inverse-tab)) {@include hook-inverse-tab();}
|
|
1518
|
+
h4, .uk-h4 {
|
|
1519
|
+
@if(mixin-exists(hook-inverse-base-h4)) {@include hook-inverse-base-h4();}
|
|
1556
1520
|
}
|
|
1557
1521
|
|
|
1558
|
-
.uk-
|
|
1559
|
-
|
|
1560
|
-
@if(mixin-exists(hook-inverse-tab-item)) {@include hook-inverse-tab-item();}
|
|
1522
|
+
h5, .uk-h5 {
|
|
1523
|
+
@if(mixin-exists(hook-inverse-base-h5)) {@include hook-inverse-base-h5();}
|
|
1561
1524
|
}
|
|
1562
1525
|
|
|
1563
|
-
.uk-
|
|
1564
|
-
|
|
1565
|
-
@if(mixin-exists(hook-inverse-tab-item-hover)) {@include hook-inverse-tab-item-hover();}
|
|
1526
|
+
h6, .uk-h6 {
|
|
1527
|
+
@if(mixin-exists(hook-inverse-base-h6)) {@include hook-inverse-base-h6();}
|
|
1566
1528
|
}
|
|
1567
1529
|
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1530
|
+
//
|
|
1531
|
+
// Blockquotes
|
|
1532
|
+
//
|
|
1533
|
+
|
|
1534
|
+
blockquote {
|
|
1535
|
+
@if(mixin-exists(hook-inverse-base-blockquote)) {@include hook-inverse-base-blockquote();}
|
|
1571
1536
|
}
|
|
1572
1537
|
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
@if(mixin-exists(hook-inverse-tab-item-disabled)) {@include hook-inverse-tab-item-disabled();}
|
|
1538
|
+
blockquote footer {
|
|
1539
|
+
@if(mixin-exists(hook-inverse-base-blockquote-footer)) {@include hook-inverse-base-blockquote-footer();}
|
|
1576
1540
|
}
|
|
1577
1541
|
|
|
1578
|
-
|
|
1579
|
-
|
|
1542
|
+
//
|
|
1543
|
+
// Horizontal rules
|
|
1544
|
+
//
|
|
1580
1545
|
|
|
1581
|
-
.uk-
|
|
1582
|
-
color: $inverse-
|
|
1583
|
-
@if(mixin-exists(hook-inverse-
|
|
1546
|
+
hr, .uk-hr {
|
|
1547
|
+
border-top-color: $inverse-base-hr-border;
|
|
1548
|
+
@if(mixin-exists(hook-inverse-base-hr)) {@include hook-inverse-base-hr();}
|
|
1584
1549
|
}
|
|
1585
1550
|
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
}
|
|
1551
|
+
//
|
|
1552
|
+
// Focus
|
|
1553
|
+
//
|
|
1590
1554
|
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
@if(mixin-exists(hook-inverse-slidenav-active)) {@include hook-inverse-slidenav-active();}
|
|
1594
|
-
}
|
|
1555
|
+
:focus { outline-color: $inverse-base-focus-outline; }
|
|
1556
|
+
:focus-visible { outline-color: $inverse-base-focus-outline; }
|
|
1595
1557
|
|
|
1596
1558
|
}
|
|
1597
|
-
@mixin hook-inverse-component-
|
|
1559
|
+
@mixin hook-inverse-component-heading(){
|
|
1598
1560
|
|
|
1599
|
-
.uk-
|
|
1600
|
-
|
|
1601
|
-
@if(mixin-exists(hook-inverse-text-lead)) {@include hook-inverse-text-lead();}
|
|
1561
|
+
.uk-heading-small {
|
|
1562
|
+
@if(mixin-exists(hook-inverse-heading-small)) {@include hook-inverse-heading-small();}
|
|
1602
1563
|
}
|
|
1603
1564
|
|
|
1604
|
-
.uk-
|
|
1605
|
-
|
|
1606
|
-
@if(mixin-exists(hook-inverse-text-meta)) {@include hook-inverse-text-meta();}
|
|
1565
|
+
.uk-heading-medium {
|
|
1566
|
+
@if(mixin-exists(hook-inverse-heading-medium)) {@include hook-inverse-heading-medium();}
|
|
1607
1567
|
}
|
|
1608
1568
|
|
|
1609
|
-
.uk-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
.uk-text-secondary { color: $inverse-text-secondary-color !important; }
|
|
1569
|
+
.uk-heading-large {
|
|
1570
|
+
@if(mixin-exists(hook-inverse-heading-large)) {@include hook-inverse-heading-large();}
|
|
1571
|
+
}
|
|
1613
1572
|
|
|
1614
|
-
|
|
1615
|
-
@mixin hook-inverse-
|
|
1573
|
+
.uk-heading-xlarge {
|
|
1574
|
+
@if(mixin-exists(hook-inverse-heading-xlarge)) {@include hook-inverse-heading-xlarge();}
|
|
1575
|
+
}
|
|
1616
1576
|
|
|
1617
|
-
.uk-
|
|
1618
|
-
|
|
1619
|
-
@if(mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
1577
|
+
.uk-heading-2xlarge {
|
|
1578
|
+
@if(mixin-exists(hook-inverse-heading-2xlarge)) {@include hook-inverse-heading-2xlarge();}
|
|
1620
1579
|
}
|
|
1621
1580
|
|
|
1622
|
-
.uk-
|
|
1623
|
-
|
|
1624
|
-
|
|
1581
|
+
@if ($deprecated == true) { .uk-heading-primary { @if (mixin-exists(hook-inverse-heading-primary)) {@include hook-inverse-heading-primary();}}}
|
|
1582
|
+
|
|
1583
|
+
@if ($deprecated == true) { .uk-heading-hero { @if (mixin-exists(hook-inverse-heading-hero)) {@include hook-inverse-heading-hero();}}}
|
|
1584
|
+
|
|
1585
|
+
.uk-heading-divider {
|
|
1586
|
+
border-bottom-color: $inverse-heading-divider-border;
|
|
1587
|
+
@if(mixin-exists(hook-inverse-heading-divider)) {@include hook-inverse-heading-divider();}
|
|
1625
1588
|
}
|
|
1626
1589
|
|
|
1627
|
-
.uk-
|
|
1628
|
-
color: $inverse-
|
|
1629
|
-
@if(mixin-exists(hook-inverse-
|
|
1590
|
+
.uk-heading-bullet::before {
|
|
1591
|
+
border-left-color: $inverse-heading-bullet-border;
|
|
1592
|
+
@if(mixin-exists(hook-inverse-heading-bullet)) {@include hook-inverse-heading-bullet();}
|
|
1630
1593
|
}
|
|
1631
1594
|
|
|
1632
|
-
.uk-
|
|
1633
|
-
.uk-
|
|
1634
|
-
|
|
1595
|
+
.uk-heading-line > ::before,
|
|
1596
|
+
.uk-heading-line > ::after {
|
|
1597
|
+
border-bottom-color: $inverse-heading-line-border;
|
|
1598
|
+
@if(mixin-exists(hook-inverse-heading-line)) {@include hook-inverse-heading-line();}
|
|
1599
|
+
}
|
|
1635
1600
|
|
|
1636
1601
|
}
|
|
1637
|
-
@mixin hook-inverse(){
|
|
1638
|
-
@include hook-inverse-component-base();
|
|
1639
|
-
@include hook-inverse-component-link();
|
|
1640
|
-
@include hook-inverse-component-heading();
|
|
1641
|
-
@include hook-inverse-component-divider();
|
|
1642
|
-
@include hook-inverse-component-list();
|
|
1643
|
-
@include hook-inverse-component-icon();
|
|
1644
|
-
@include hook-inverse-component-form();
|
|
1645
|
-
@include hook-inverse-component-button();
|
|
1646
|
-
@include hook-inverse-component-grid();
|
|
1647
|
-
@include hook-inverse-component-close();
|
|
1648
|
-
@include hook-inverse-component-totop();
|
|
1649
|
-
@include hook-inverse-component-badge();
|
|
1650
|
-
@include hook-inverse-component-label();
|
|
1651
|
-
@include hook-inverse-component-article();
|
|
1652
|
-
@include hook-inverse-component-search();
|
|
1653
|
-
@include hook-inverse-component-nav();
|
|
1654
|
-
@include hook-inverse-component-navbar();
|
|
1655
|
-
@include hook-inverse-component-subnav();
|
|
1656
|
-
@include hook-inverse-component-breadcrumb();
|
|
1657
|
-
@include hook-inverse-component-pagination();
|
|
1658
|
-
@include hook-inverse-component-tab();
|
|
1659
|
-
@include hook-inverse-component-slidenav();
|
|
1660
|
-
@include hook-inverse-component-dotnav();
|
|
1661
|
-
@include hook-inverse-component-accordion();
|
|
1662
|
-
@include hook-inverse-component-iconnav();
|
|
1663
|
-
@include hook-inverse-component-text();
|
|
1664
|
-
@include hook-inverse-component-column();
|
|
1665
|
-
@include hook-inverse-component-utility();
|
|
1666
|
-
}
|
|
1667
|
-
@mixin hook-label(){
|
|
1668
|
-
border-radius: $label-border-radius;
|
|
1669
|
-
text-transform: $label-text-transform;
|
|
1670
|
-
}
|
|
1671
|
-
@mixin hook-label-success(){}
|
|
1672
|
-
@mixin hook-label-warning(){}
|
|
1673
|
-
@mixin hook-label-danger(){}
|
|
1674
|
-
@mixin hook-label-misc(){}
|
|
1675
|
-
@mixin hook-inverse-label(){}
|
|
1676
|
-
@mixin hook-leader(){}
|
|
1677
|
-
@mixin hook-leader-misc(){}
|
|
1678
|
-
@mixin hook-inverse-leader(){}
|
|
1679
|
-
@mixin hook-inverse-component-leader(){
|
|
1602
|
+
@mixin hook-inverse-component-divider(){
|
|
1680
1603
|
|
|
1681
|
-
.uk-
|
|
1682
|
-
@
|
|
1604
|
+
.uk-divider-icon {
|
|
1605
|
+
@include svg-fill($internal-divider-icon-image, "#000", $inverse-divider-icon-color);
|
|
1606
|
+
@if(mixin-exists(hook-inverse-divider-icon)) {@include hook-inverse-divider-icon();}
|
|
1683
1607
|
}
|
|
1684
1608
|
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
@mixin hook-
|
|
1689
|
-
|
|
1690
|
-
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
1691
|
-
@mixin hook-lightbox-button(){}
|
|
1692
|
-
@mixin hook-lightbox-button-hover(){}
|
|
1693
|
-
@mixin hook-lightbox-button-active(){}
|
|
1694
|
-
@mixin hook-lightbox-misc(){}
|
|
1695
|
-
@mixin hook-link-muted(){}
|
|
1696
|
-
@mixin hook-link-muted-hover(){}
|
|
1697
|
-
@mixin hook-link-text(){}
|
|
1698
|
-
@mixin hook-link-text-hover(){}
|
|
1699
|
-
@mixin hook-link-heading(){}
|
|
1700
|
-
@mixin hook-link-heading-hover(){}
|
|
1701
|
-
@mixin hook-link-reset(){}
|
|
1702
|
-
@mixin hook-link-misc(){}
|
|
1703
|
-
@mixin hook-inverse-link-muted(){}
|
|
1704
|
-
@mixin hook-inverse-link-muted-hover(){}
|
|
1705
|
-
@mixin hook-inverse-link-text-hover(){}
|
|
1706
|
-
@mixin hook-inverse-link-heading-hover(){}
|
|
1707
|
-
@mixin hook-list-divider(){}
|
|
1708
|
-
@mixin hook-list-striped(){
|
|
1609
|
+
.uk-divider-icon::before,
|
|
1610
|
+
.uk-divider-icon::after {
|
|
1611
|
+
border-bottom-color: $inverse-divider-icon-line-border;
|
|
1612
|
+
@if(mixin-exists(hook-inverse-divider-icon-line)) {@include hook-inverse-divider-icon-line();}
|
|
1613
|
+
}
|
|
1709
1614
|
|
|
1710
|
-
|
|
1711
|
-
border-top: $
|
|
1712
|
-
|
|
1615
|
+
.uk-divider-small::after {
|
|
1616
|
+
border-top-color: $inverse-divider-small-border;
|
|
1617
|
+
@if(mixin-exists(hook-inverse-divider-small)) {@include hook-inverse-divider-small();}
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
.uk-divider-vertical {
|
|
1621
|
+
border-left-color: $inverse-divider-vertical-border;
|
|
1622
|
+
@if(mixin-exists(hook-inverse-divider-vertical)) {@include hook-inverse-divider-vertical();}
|
|
1713
1623
|
}
|
|
1714
1624
|
|
|
1715
1625
|
}
|
|
1716
|
-
@mixin hook-
|
|
1717
|
-
@mixin hook-inverse-list-divider(){}
|
|
1718
|
-
@mixin hook-inverse-list-striped(){
|
|
1626
|
+
@mixin hook-inverse-component-icon(){
|
|
1719
1627
|
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1628
|
+
//
|
|
1629
|
+
// Link
|
|
1630
|
+
//
|
|
1631
|
+
|
|
1632
|
+
.uk-icon-link {
|
|
1633
|
+
color: $inverse-icon-link-color;
|
|
1634
|
+
@if(mixin-exists(hook-inverse-icon-link)) {@include hook-inverse-icon-link();}
|
|
1723
1635
|
}
|
|
1724
1636
|
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
@mixin hook-
|
|
1728
|
-
|
|
1729
|
-
}
|
|
1730
|
-
@mixin hook-marker-hover(){}
|
|
1731
|
-
@mixin hook-marker-misc(){}
|
|
1732
|
-
@mixin hook-inverse-marker(){}
|
|
1733
|
-
@mixin hook-inverse-marker-hover(){}
|
|
1734
|
-
@mixin hook-inverse-component-marker(){
|
|
1637
|
+
.uk-icon-link:hover {
|
|
1638
|
+
color: $inverse-icon-link-hover-color;
|
|
1639
|
+
@if(mixin-exists(hook-inverse-icon-link-hover)) {@include hook-inverse-icon-link-hover();}
|
|
1640
|
+
}
|
|
1735
1641
|
|
|
1736
|
-
.uk-
|
|
1737
|
-
|
|
1738
|
-
color: $inverse-
|
|
1739
|
-
@if(mixin-exists(hook-inverse-
|
|
1642
|
+
.uk-icon-link:active,
|
|
1643
|
+
.uk-active > .uk-icon-link {
|
|
1644
|
+
color: $inverse-icon-link-active-color;
|
|
1645
|
+
@if(mixin-exists(hook-inverse-icon-link-active)) {@include hook-inverse-icon-link-active();}
|
|
1740
1646
|
}
|
|
1741
1647
|
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1648
|
+
//
|
|
1649
|
+
// Button
|
|
1650
|
+
//
|
|
1651
|
+
|
|
1652
|
+
.uk-icon-button {
|
|
1653
|
+
background-color: $inverse-icon-button-background;
|
|
1654
|
+
color: $inverse-icon-button-color;
|
|
1655
|
+
@if(mixin-exists(hook-inverse-icon-button)) {@include hook-inverse-icon-button();}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
.uk-icon-button:hover {
|
|
1659
|
+
background-color: $inverse-icon-button-hover-background;
|
|
1660
|
+
color: $inverse-icon-button-hover-color;
|
|
1661
|
+
@if(mixin-exists(hook-inverse-icon-button-hover)) {@include hook-inverse-icon-button-hover();}
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
.uk-icon-button:active {
|
|
1665
|
+
background-color: $inverse-icon-button-active-background;
|
|
1666
|
+
color: $inverse-icon-button-active-color;
|
|
1667
|
+
@if(mixin-exists(hook-inverse-icon-button-active)) {@include hook-inverse-icon-button-active();}
|
|
1745
1668
|
}
|
|
1746
1669
|
|
|
1747
1670
|
}
|
|
1748
|
-
@mixin hook-
|
|
1749
|
-
@mixin hook-modal-dialog(){}
|
|
1750
|
-
@mixin hook-modal-full(){}
|
|
1751
|
-
@mixin hook-modal-body(){}
|
|
1752
|
-
@mixin hook-modal-header(){ border-bottom: $modal-header-border-width solid $modal-header-border; }
|
|
1753
|
-
@mixin hook-modal-footer(){ border-top: $modal-footer-border-width solid $modal-footer-border; }
|
|
1754
|
-
@mixin hook-modal-title(){}
|
|
1755
|
-
@mixin hook-modal-close(){}
|
|
1756
|
-
@mixin hook-modal-close-hover(){}
|
|
1757
|
-
@mixin hook-modal-close-default(){}
|
|
1758
|
-
@mixin hook-modal-close-default-hover(){}
|
|
1759
|
-
@mixin hook-modal-close-outside(){}
|
|
1760
|
-
@mixin hook-modal-close-outside-hover(){}
|
|
1761
|
-
@mixin hook-modal-close-full(){
|
|
1762
|
-
top: 0;
|
|
1763
|
-
right: 0;
|
|
1764
|
-
padding: $modal-close-full-padding;
|
|
1765
|
-
background: $modal-close-full-background;
|
|
1766
|
-
}
|
|
1767
|
-
@mixin hook-modal-close-full-hover(){}
|
|
1768
|
-
@mixin hook-modal-misc(){
|
|
1671
|
+
@mixin hook-inverse-component-form(){
|
|
1769
1672
|
|
|
1770
|
-
|
|
1771
|
-
|
|
1673
|
+
.uk-input,
|
|
1674
|
+
.uk-select,
|
|
1675
|
+
.uk-textarea {
|
|
1676
|
+
background-color: $inverse-form-background;
|
|
1677
|
+
color: $inverse-form-color;
|
|
1678
|
+
background-clip: padding-box;
|
|
1679
|
+
@if(mixin-exists(hook-inverse-form)) {@include hook-inverse-form();}
|
|
1772
1680
|
|
|
1773
|
-
|
|
1774
|
-
|
|
1681
|
+
&:focus {
|
|
1682
|
+
background-color: $inverse-form-focus-background;
|
|
1683
|
+
color: $inverse-form-focus-color;
|
|
1684
|
+
@if(mixin-exists(hook-inverse-form-focus)) {@include hook-inverse-form-focus();}
|
|
1775
1685
|
}
|
|
1776
|
-
|
|
1777
1686
|
}
|
|
1778
1687
|
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
@mixin hook-nav-divider(){}
|
|
1783
|
-
@mixin hook-nav-default(){}
|
|
1784
|
-
@mixin hook-nav-default-item(){}
|
|
1785
|
-
@mixin hook-nav-default-item-hover(){}
|
|
1786
|
-
@mixin hook-nav-default-item-active(){}
|
|
1787
|
-
@mixin hook-nav-default-subtitle(){}
|
|
1788
|
-
@mixin hook-nav-default-header(){}
|
|
1789
|
-
@mixin hook-nav-default-divider(){}
|
|
1790
|
-
@mixin hook-nav-primary(){}
|
|
1791
|
-
@mixin hook-nav-primary-item(){}
|
|
1792
|
-
@mixin hook-nav-primary-item-hover(){}
|
|
1793
|
-
@mixin hook-nav-primary-item-active(){}
|
|
1794
|
-
@mixin hook-nav-primary-subtitle(){}
|
|
1795
|
-
@mixin hook-nav-primary-header(){}
|
|
1796
|
-
@mixin hook-nav-primary-divider(){}
|
|
1797
|
-
@mixin hook-nav-secondary(){
|
|
1798
|
-
> :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) { margin-top: $nav-background-margin-top; }
|
|
1799
|
-
}
|
|
1800
|
-
@mixin hook-nav-secondary-item(){ padding: $nav-background-item-padding-vertical $nav-background-item-padding-horizontal; }
|
|
1801
|
-
@mixin hook-nav-secondary-item-hover(){ background-color: $nav-background-item-hover-background; }
|
|
1802
|
-
@mixin hook-nav-secondary-item-active(){ background-color: $nav-background-item-active-background; }
|
|
1803
|
-
@mixin hook-nav-secondary-subtitle(){}
|
|
1804
|
-
@mixin hook-nav-secondary-subtitle-hover(){}
|
|
1805
|
-
@mixin hook-nav-secondary-subtitle-active(){}
|
|
1806
|
-
@mixin hook-nav-secondary-header(){}
|
|
1807
|
-
@mixin hook-nav-secondary-divider(){}
|
|
1808
|
-
@mixin hook-nav-dividers(){}
|
|
1809
|
-
@mixin hook-nav-misc(){}
|
|
1810
|
-
@mixin hook-inverse-nav-default-item(){}
|
|
1811
|
-
@mixin hook-inverse-nav-default-item-hover(){}
|
|
1812
|
-
@mixin hook-inverse-nav-default-item-active(){}
|
|
1813
|
-
@mixin hook-inverse-nav-default-header(){}
|
|
1814
|
-
@mixin hook-inverse-nav-default-divider(){}
|
|
1815
|
-
@mixin hook-inverse-nav-primary-item(){}
|
|
1816
|
-
@mixin hook-inverse-nav-primary-item-hover(){}
|
|
1817
|
-
@mixin hook-inverse-nav-primary-item-active(){}
|
|
1818
|
-
@mixin hook-inverse-nav-primary-header(){}
|
|
1819
|
-
@mixin hook-inverse-nav-primary-divider(){}
|
|
1820
|
-
@mixin hook-inverse-nav-secondary-item(){}
|
|
1821
|
-
@mixin hook-inverse-nav-secondary-item-hover(){ background-color: $inverse-nav-background-item-hover-background; }
|
|
1822
|
-
@mixin hook-inverse-nav-secondary-item-active(){ background-color: $inverse-nav-background-item-active-background; }
|
|
1823
|
-
@mixin hook-inverse-nav-secondary-subtitle(){}
|
|
1824
|
-
@mixin hook-inverse-nav-secondary-subtitle-hover(){}
|
|
1825
|
-
@mixin hook-inverse-nav-secondary-subtitle-active(){}
|
|
1826
|
-
@mixin hook-inverse-nav-secondary-header(){}
|
|
1827
|
-
@mixin hook-inverse-nav-secondary-divider(){}
|
|
1828
|
-
@mixin hook-inverse-nav-dividers(){}
|
|
1829
|
-
@mixin hook-navbar(){}
|
|
1830
|
-
@mixin hook-navbar-container(){}
|
|
1831
|
-
@mixin hook-navbar-nav-item(){
|
|
1832
|
-
text-transform: $navbar-nav-item-text-transform;
|
|
1833
|
-
transition: 0.1s ease-in-out;
|
|
1834
|
-
transition-property: color, background-color;
|
|
1835
|
-
}
|
|
1836
|
-
@mixin hook-navbar-nav-item-hover(){}
|
|
1837
|
-
@mixin hook-navbar-nav-item-onclick(){}
|
|
1838
|
-
@mixin hook-navbar-nav-item-active(){}
|
|
1839
|
-
@mixin hook-navbar-item(){}
|
|
1840
|
-
@mixin hook-navbar-toggle(){}
|
|
1841
|
-
@mixin hook-navbar-toggle-hover(){}
|
|
1842
|
-
@mixin hook-navbar-toggle-icon(){}
|
|
1843
|
-
@mixin hook-navbar-toggle-icon-hover(){}
|
|
1844
|
-
@mixin hook-navbar-subtitle(){}
|
|
1845
|
-
@mixin hook-navbar-primary(){}
|
|
1846
|
-
@mixin hook-navbar-transparent(){}
|
|
1847
|
-
@mixin hook-navbar-sticky(){}
|
|
1848
|
-
@mixin hook-navbar-dropdown(){ box-shadow: $navbar-dropdown-box-shadow; }
|
|
1849
|
-
@mixin hook-navbar-dropdown-large(){}
|
|
1850
|
-
@mixin hook-navbar-dropdown-dropbar(){ box-shadow: none; }
|
|
1851
|
-
@mixin hook-navbar-dropdown-dropbar-large(){}
|
|
1852
|
-
@mixin hook-navbar-dropdown-nav(){ font-size: $navbar-dropdown-nav-font-size; }
|
|
1853
|
-
@mixin hook-navbar-dropdown-nav-item(){}
|
|
1854
|
-
@mixin hook-navbar-dropdown-nav-item-hover(){}
|
|
1855
|
-
@mixin hook-navbar-dropdown-nav-item-active(){}
|
|
1856
|
-
@mixin hook-navbar-dropdown-nav-subtitle(){}
|
|
1857
|
-
@mixin hook-navbar-dropdown-nav-header(){}
|
|
1858
|
-
@mixin hook-navbar-dropdown-nav-divider(){}
|
|
1859
|
-
@mixin hook-navbar-dropbar(){}
|
|
1860
|
-
@mixin hook-navbar-misc(){
|
|
1688
|
+
//
|
|
1689
|
+
// Placeholder
|
|
1690
|
+
//
|
|
1861
1691
|
|
|
1862
|
-
|
|
1863
|
-
@media (min-width: $breakpoint-medium) {
|
|
1692
|
+
.uk-input::placeholder { color: $inverse-form-placeholder-color; }
|
|
1864
1693
|
|
|
1865
|
-
|
|
1866
|
-
.uk-navbar-right,
|
|
1867
|
-
[class*='uk-navbar-center'] { gap: $navbar-gap-m; }
|
|
1694
|
+
.uk-textarea::placeholder { color: $inverse-form-placeholder-color; }
|
|
1868
1695
|
|
|
1869
|
-
|
|
1870
|
-
|
|
1696
|
+
//
|
|
1697
|
+
// Select
|
|
1698
|
+
//
|
|
1871
1699
|
|
|
1700
|
+
.uk-select:not([multiple]):not([size]) { @include svg-fill($internal-form-select-image, "#000", $inverse-form-select-icon-color); }
|
|
1701
|
+
|
|
1702
|
+
//
|
|
1703
|
+
// Datalist
|
|
1704
|
+
//
|
|
1705
|
+
|
|
1706
|
+
.uk-input[list]:hover,
|
|
1707
|
+
.uk-input[list]:focus { @include svg-fill($internal-form-datalist-image, "#000", $inverse-form-datalist-icon-color); }
|
|
1708
|
+
|
|
1709
|
+
//
|
|
1710
|
+
// Radio and checkbox
|
|
1711
|
+
//
|
|
1712
|
+
|
|
1713
|
+
.uk-radio,
|
|
1714
|
+
.uk-checkbox {
|
|
1715
|
+
background-color: $inverse-form-radio-background;
|
|
1716
|
+
@if(mixin-exists(hook-inverse-form-radio)) {@include hook-inverse-form-radio();}
|
|
1872
1717
|
}
|
|
1873
1718
|
|
|
1874
|
-
|
|
1875
|
-
|
|
1719
|
+
// Focus
|
|
1720
|
+
.uk-radio:focus,
|
|
1721
|
+
.uk-checkbox:focus {
|
|
1722
|
+
background-color: $inverse-form-radio-focus-background;
|
|
1723
|
+
@if(mixin-exists(hook-inverse-form-radio-focus)) {@include hook-inverse-form-radio-focus();}
|
|
1724
|
+
}
|
|
1876
1725
|
|
|
1877
|
-
|
|
1726
|
+
// Checked
|
|
1727
|
+
.uk-radio:checked,
|
|
1728
|
+
.uk-checkbox:checked,
|
|
1729
|
+
.uk-checkbox:indeterminate {
|
|
1730
|
+
background-color: $inverse-form-radio-checked-background;
|
|
1731
|
+
@if(mixin-exists(hook-inverse-form-radio-checked)) {@include hook-inverse-form-radio-checked();}
|
|
1732
|
+
}
|
|
1878
1733
|
|
|
1734
|
+
// Focus
|
|
1735
|
+
.uk-radio:checked:focus,
|
|
1736
|
+
.uk-checkbox:checked:focus,
|
|
1737
|
+
.uk-checkbox:indeterminate:focus {
|
|
1738
|
+
background-color: $inverse-form-radio-checked-focus-background;
|
|
1739
|
+
@if(mixin-exists(hook-inverse-form-radio-checked-focus)) {@include hook-inverse-form-radio-checked-focus();}
|
|
1879
1740
|
}
|
|
1880
1741
|
|
|
1742
|
+
// Icon
|
|
1743
|
+
.uk-radio:checked { @include svg-fill($internal-form-radio-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
1744
|
+
.uk-checkbox:checked { @include svg-fill($internal-form-checkbox-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
1745
|
+
.uk-checkbox:indeterminate { @include svg-fill($internal-form-checkbox-indeterminate-image, "#000", $inverse-form-radio-checked-icon-color); }
|
|
1746
|
+
|
|
1747
|
+
// Label
|
|
1748
|
+
.uk-form-label {
|
|
1749
|
+
@if(mixin-exists(hook-inverse-form-label)) {@include hook-inverse-form-label();}
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
// Icon
|
|
1753
|
+
.uk-form-icon {
|
|
1754
|
+
color: $inverse-form-icon-color;
|
|
1755
|
+
@if(mixin-exists(hook-inverse-form-icon)) {@include hook-inverse-form-icon();}
|
|
1756
|
+
}
|
|
1757
|
+
.uk-form-icon:hover { color: $inverse-form-icon-hover-color; }
|
|
1758
|
+
|
|
1881
1759
|
}
|
|
1882
|
-
@mixin hook-inverse-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
@mixin hook-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
@mixin hook-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
@mixin hook-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
@mixin hook-inverse-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
@mixin hook-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
@mixin hook-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
@mixin hook-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
@mixin hook-inverse-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
@mixin hook-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
@mixin hook-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
@mixin hook-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
@mixin hook-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1760
|
+
@mixin hook-inverse-component-button(){
|
|
1761
|
+
|
|
1762
|
+
//
|
|
1763
|
+
// Default
|
|
1764
|
+
//
|
|
1765
|
+
|
|
1766
|
+
.uk-button-default {
|
|
1767
|
+
background-color: $inverse-button-default-background;
|
|
1768
|
+
color: $inverse-button-default-color;
|
|
1769
|
+
@if(mixin-exists(hook-inverse-button-default)) {@include hook-inverse-button-default();}
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.uk-button-default:hover {
|
|
1773
|
+
background-color: $inverse-button-default-hover-background;
|
|
1774
|
+
color: $inverse-button-default-hover-color;
|
|
1775
|
+
@if(mixin-exists(hook-inverse-button-default-hover)) {@include hook-inverse-button-default-hover();}
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.uk-button-default:active,
|
|
1779
|
+
.uk-button-default.uk-active {
|
|
1780
|
+
background-color: $inverse-button-default-active-background;
|
|
1781
|
+
color: $inverse-button-default-active-color;
|
|
1782
|
+
@if(mixin-exists(hook-inverse-button-default-active)) {@include hook-inverse-button-default-active();}
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
//
|
|
1786
|
+
// Primary
|
|
1787
|
+
//
|
|
1788
|
+
|
|
1789
|
+
.uk-button-primary {
|
|
1790
|
+
background-color: $inverse-button-primary-background;
|
|
1791
|
+
color: $inverse-button-primary-color;
|
|
1792
|
+
@if(mixin-exists(hook-inverse-button-primary)) {@include hook-inverse-button-primary();}
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.uk-button-primary:hover {
|
|
1796
|
+
background-color: $inverse-button-primary-hover-background;
|
|
1797
|
+
color: $inverse-button-primary-hover-color;
|
|
1798
|
+
@if(mixin-exists(hook-inverse-button-primary-hover)) {@include hook-inverse-button-primary-hover();}
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.uk-button-primary:active,
|
|
1802
|
+
.uk-button-primary.uk-active {
|
|
1803
|
+
background-color: $inverse-button-primary-active-background;
|
|
1804
|
+
color: $inverse-button-primary-active-color;
|
|
1805
|
+
@if(mixin-exists(hook-inverse-button-primary-active)) {@include hook-inverse-button-primary-active();}
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
//
|
|
1809
|
+
// Secondary
|
|
1810
|
+
//
|
|
1811
|
+
|
|
1812
|
+
.uk-button-secondary {
|
|
1813
|
+
background-color: $inverse-button-secondary-background;
|
|
1814
|
+
color: $inverse-button-secondary-color;
|
|
1815
|
+
@if(mixin-exists(hook-inverse-button-secondary)) {@include hook-inverse-button-secondary();}
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.uk-button-secondary:hover {
|
|
1819
|
+
background-color: $inverse-button-secondary-hover-background;
|
|
1820
|
+
color: $inverse-button-secondary-hover-color;
|
|
1821
|
+
@if(mixin-exists(hook-inverse-button-secondary-hover)) {@include hook-inverse-button-secondary-hover();}
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.uk-button-secondary:active,
|
|
1825
|
+
.uk-button-secondary.uk-active {
|
|
1826
|
+
background-color: $inverse-button-secondary-active-background;
|
|
1827
|
+
color: $inverse-button-secondary-active-color;
|
|
1828
|
+
@if(mixin-exists(hook-inverse-button-secondary-active)) {@include hook-inverse-button-secondary-active();}
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
//
|
|
1832
|
+
// Text
|
|
1833
|
+
//
|
|
1834
|
+
|
|
1835
|
+
.uk-button-text {
|
|
1836
|
+
color: $inverse-button-text-color;
|
|
1837
|
+
@if(mixin-exists(hook-inverse-button-text)) {@include hook-inverse-button-text();}
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.uk-button-text:hover {
|
|
1841
|
+
color: $inverse-button-text-hover-color;
|
|
1842
|
+
@if(mixin-exists(hook-inverse-button-text-hover)) {@include hook-inverse-button-text-hover();}
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
.uk-button-text:disabled {
|
|
1846
|
+
color: $inverse-button-text-disabled-color;
|
|
1847
|
+
@if(mixin-exists(hook-inverse-button-text-disabled)) {@include hook-inverse-button-text-disabled();}
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
//
|
|
1851
|
+
// Link
|
|
1852
|
+
//
|
|
1853
|
+
|
|
1854
|
+
.uk-button-link {
|
|
1855
|
+
color: $inverse-button-link-color;
|
|
1856
|
+
@if(mixin-exists(hook-inverse-button-link)) {@include hook-inverse-button-link();}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.uk-button-link:hover { color: $inverse-button-link-hover-color; }
|
|
1860
|
+
|
|
1982
1861
|
}
|
|
1983
|
-
@mixin hook-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
@mixin hook-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
@mixin hook-inverse-
|
|
1993
|
-
|
|
1994
|
-
@mixin hook-inverse-subnav-item-active(){}
|
|
1995
|
-
@mixin hook-inverse-subnav-divider(){}
|
|
1996
|
-
@mixin hook-inverse-subnav-pill-item(){}
|
|
1997
|
-
@mixin hook-inverse-subnav-pill-item-hover(){}
|
|
1998
|
-
@mixin hook-inverse-subnav-pill-item-onclick(){}
|
|
1999
|
-
@mixin hook-inverse-subnav-pill-item-active(){}
|
|
2000
|
-
@mixin hook-inverse-subnav-item-disabled(){}
|
|
2001
|
-
@mixin hook-svg-misc(){}
|
|
2002
|
-
@mixin hook-switcher-misc(){}
|
|
2003
|
-
@mixin hook-tab(){
|
|
1862
|
+
@mixin hook-inverse-component-grid(){
|
|
1863
|
+
|
|
1864
|
+
.uk-grid-divider > :not(.uk-first-column)::before {
|
|
1865
|
+
border-left-color: $inverse-grid-divider-border;
|
|
1866
|
+
@if(mixin-exists(hook-inverse-grid-divider-horizontal)) {@include hook-inverse-grid-divider-horizontal();}
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
1870
|
+
border-top-color: $inverse-grid-divider-border;
|
|
1871
|
+
@if(mixin-exists(hook-inverse-grid-divider-vertical)) {@include hook-inverse-grid-divider-vertical();}
|
|
1872
|
+
}
|
|
2004
1873
|
|
|
2005
|
-
|
|
1874
|
+
}
|
|
1875
|
+
@mixin hook-inverse-component-close(){
|
|
2006
1876
|
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
1877
|
+
.uk-close {
|
|
1878
|
+
color: $inverse-close-color;
|
|
1879
|
+
@if(mixin-exists(hook-inverse-close)) {@include hook-inverse-close();}
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.uk-close:hover {
|
|
1883
|
+
color: $inverse-close-hover-color;
|
|
1884
|
+
@if(mixin-exists(hook-inverse-close-hover)) {@include hook-inverse-close-hover();}
|
|
2014
1885
|
}
|
|
2015
1886
|
|
|
2016
1887
|
}
|
|
2017
|
-
@mixin hook-
|
|
2018
|
-
border-bottom: $tab-item-border-width solid transparent;
|
|
2019
|
-
font-size: $tab-item-font-size;
|
|
2020
|
-
text-transform: $tab-item-text-transform;
|
|
2021
|
-
transition: color 0.1s ease-in-out;
|
|
2022
|
-
}
|
|
2023
|
-
@mixin hook-tab-item-hover(){}
|
|
2024
|
-
@mixin hook-tab-item-active(){ border-color: $tab-item-active-border; }
|
|
2025
|
-
@mixin hook-tab-item-disabled(){}
|
|
2026
|
-
@mixin hook-tab-bottom(){
|
|
1888
|
+
@mixin hook-inverse-component-badge(){
|
|
2027
1889
|
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
1890
|
+
.uk-badge {
|
|
1891
|
+
background-color: $inverse-badge-background;
|
|
1892
|
+
color: $inverse-badge-color !important;
|
|
1893
|
+
@if(mixin-exists(hook-inverse-badge)) {@include hook-inverse-badge();}
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
.uk-badge:hover {
|
|
1897
|
+
@if(mixin-exists(hook-inverse-badge-hover)) {@include hook-inverse-badge-hover();}
|
|
2031
1898
|
}
|
|
2032
1899
|
|
|
2033
1900
|
}
|
|
2034
|
-
@mixin hook-
|
|
2035
|
-
border-top: $tab-item-border-width solid transparent;
|
|
2036
|
-
border-bottom: none;
|
|
2037
|
-
}
|
|
2038
|
-
@mixin hook-tab-left(){
|
|
1901
|
+
@mixin hook-inverse-component-article(){
|
|
2039
1902
|
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
1903
|
+
.uk-article-title {
|
|
1904
|
+
@if(mixin-exists(hook-inverse-article-title)) {@include hook-inverse-article-title();}
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.uk-article-meta {
|
|
1908
|
+
color: $inverse-article-meta-color;
|
|
1909
|
+
@if(mixin-exists(hook-inverse-article-meta)) {@include hook-inverse-article-meta();}
|
|
2047
1910
|
}
|
|
2048
1911
|
|
|
2049
1912
|
}
|
|
2050
|
-
@mixin hook-
|
|
1913
|
+
@mixin hook-inverse-component-breadcrumb(){
|
|
2051
1914
|
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
left: 0;
|
|
2056
|
-
right: auto;
|
|
2057
|
-
border-left: $tab-border-width solid $tab-border;
|
|
2058
|
-
border-bottom: none;
|
|
1915
|
+
.uk-breadcrumb > * > * {
|
|
1916
|
+
color: $inverse-breadcrumb-item-color;
|
|
1917
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item)) {@include hook-inverse-breadcrumb-item();}
|
|
2059
1918
|
}
|
|
2060
1919
|
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
}
|
|
2066
|
-
@mixin hook-tab-right-item(){
|
|
2067
|
-
border-left: $tab-item-border-width solid transparent;
|
|
2068
|
-
border-bottom: none;
|
|
2069
|
-
}
|
|
2070
|
-
@mixin hook-tab-misc(){
|
|
1920
|
+
.uk-breadcrumb > * > :hover {
|
|
1921
|
+
color: $inverse-breadcrumb-item-hover-color;
|
|
1922
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item-hover)) {@include hook-inverse-breadcrumb-item-hover();}
|
|
1923
|
+
}
|
|
2071
1924
|
|
|
2072
|
-
.uk-tab .uk-dropdown { margin-left: ($tab-margin-horizontal + $tab-item-padding-horizontal) }
|
|
2073
1925
|
|
|
2074
|
-
|
|
2075
|
-
@mixin hook-inverse-
|
|
1926
|
+
.uk-breadcrumb > .uk-disabled > * {
|
|
1927
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item-disabled)) {@include hook-inverse-breadcrumb-item-disabled();}
|
|
1928
|
+
}
|
|
2076
1929
|
|
|
2077
|
-
|
|
1930
|
+
.uk-breadcrumb > :last-child > * {
|
|
1931
|
+
color: $inverse-breadcrumb-item-active-color;
|
|
1932
|
+
@if(mixin-exists(hook-inverse-breadcrumb-item-active)) {@include hook-inverse-breadcrumb-item-active();}
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
//
|
|
1936
|
+
// Divider
|
|
1937
|
+
//
|
|
1938
|
+
|
|
1939
|
+
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
|
|
1940
|
+
color: $inverse-breadcrumb-divider-color;
|
|
1941
|
+
@if(mixin-exists(hook-inverse-breadcrumb-divider)) {@include hook-inverse-breadcrumb-divider();}
|
|
1942
|
+
}
|
|
2078
1943
|
|
|
2079
1944
|
}
|
|
2080
|
-
@mixin hook-inverse-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
@mixin hook-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
@mixin hook-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
1945
|
+
@mixin hook-inverse-component-dotnav(){
|
|
1946
|
+
|
|
1947
|
+
.uk-dotnav > * > * {
|
|
1948
|
+
background-color: $inverse-dotnav-item-background;
|
|
1949
|
+
@if(mixin-exists(hook-inverse-dotnav-item)) {@include hook-inverse-dotnav-item();}
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.uk-dotnav > * > :hover {
|
|
1953
|
+
background-color: $inverse-dotnav-item-hover-background;
|
|
1954
|
+
@if(mixin-exists(hook-inverse-dotnav-item-hover)) {@include hook-inverse-dotnav-item-hover();}
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.uk-dotnav > * > :active {
|
|
1958
|
+
background-color: $inverse-dotnav-item-onclick-background;
|
|
1959
|
+
@if(mixin-exists(hook-inverse-dotnav-item-onclick)) {@include hook-inverse-dotnav-item-onclick();}
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
.uk-dotnav > .uk-active > * {
|
|
1963
|
+
background-color: $inverse-dotnav-item-active-background;
|
|
1964
|
+
@if(mixin-exists(hook-inverse-dotnav-item-active)) {@include hook-inverse-dotnav-item-active();}
|
|
1965
|
+
}
|
|
1966
|
+
|
|
2093
1967
|
}
|
|
2094
|
-
@mixin hook-
|
|
2095
|
-
@mixin hook-table-row-active(){}
|
|
2096
|
-
@mixin hook-table-small(){}
|
|
2097
|
-
@mixin hook-table-large(){}
|
|
2098
|
-
@mixin hook-table-misc(){
|
|
1968
|
+
@mixin hook-inverse-component-iconnav(){
|
|
2099
1969
|
|
|
2100
|
-
.uk-
|
|
1970
|
+
.uk-iconnav > * > a {
|
|
1971
|
+
color: $inverse-iconnav-item-color;
|
|
1972
|
+
@if(mixin-exists(hook-inverse-iconnav-item)) {@include hook-inverse-iconnav-item();}
|
|
1973
|
+
}
|
|
2101
1974
|
|
|
2102
|
-
.uk-
|
|
2103
|
-
|
|
1975
|
+
.uk-iconnav > * > a:hover {
|
|
1976
|
+
color: $inverse-iconnav-item-hover-color;
|
|
1977
|
+
@if(mixin-exists(hook-inverse-iconnav-item-hover)) {@include hook-inverse-iconnav-item-hover();}
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.uk-iconnav > .uk-active > a {
|
|
1981
|
+
color: $inverse-iconnav-item-active-color;
|
|
1982
|
+
@if(mixin-exists(hook-inverse-iconnav-item-active)) {@include hook-inverse-iconnav-item-active();}
|
|
1983
|
+
}
|
|
2104
1984
|
|
|
2105
1985
|
}
|
|
2106
|
-
@mixin hook-inverse-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
@mixin hook-inverse-table-striped(){
|
|
2111
|
-
border-top-color: $inverse-global-border;
|
|
2112
|
-
border-bottom-color: $inverse-global-border;
|
|
1986
|
+
@mixin hook-inverse-component-column(){
|
|
1987
|
+
|
|
1988
|
+
.uk-column-divider { column-rule-color: $inverse-column-divider-rule-color; }
|
|
1989
|
+
|
|
2113
1990
|
}
|
|
2114
|
-
@mixin hook-inverse
|
|
2115
|
-
@
|
|
2116
|
-
|
|
2117
|
-
|
|
1991
|
+
@mixin hook-inverse(){
|
|
1992
|
+
@include hook-inverse-component-base();
|
|
1993
|
+
@include hook-inverse-component-link();
|
|
1994
|
+
@include hook-inverse-component-heading();
|
|
1995
|
+
@include hook-inverse-component-divider();
|
|
1996
|
+
@include hook-inverse-component-list();
|
|
1997
|
+
@include hook-inverse-component-icon();
|
|
1998
|
+
@include hook-inverse-component-form();
|
|
1999
|
+
@include hook-inverse-component-button();
|
|
2000
|
+
@include hook-inverse-component-grid();
|
|
2001
|
+
@include hook-inverse-component-close();
|
|
2002
|
+
@include hook-inverse-component-totop();
|
|
2003
|
+
@include hook-inverse-component-badge();
|
|
2004
|
+
@include hook-inverse-component-label();
|
|
2005
|
+
@include hook-inverse-component-article();
|
|
2006
|
+
@include hook-inverse-component-search();
|
|
2007
|
+
@include hook-inverse-component-nav();
|
|
2008
|
+
@include hook-inverse-component-navbar();
|
|
2009
|
+
@include hook-inverse-component-subnav();
|
|
2010
|
+
@include hook-inverse-component-breadcrumb();
|
|
2011
|
+
@include hook-inverse-component-pagination();
|
|
2012
|
+
@include hook-inverse-component-tab();
|
|
2013
|
+
@include hook-inverse-component-slidenav();
|
|
2014
|
+
@include hook-inverse-component-dotnav();
|
|
2015
|
+
@include hook-inverse-component-accordion();
|
|
2016
|
+
@include hook-inverse-component-iconnav();
|
|
2017
|
+
@include hook-inverse-component-text();
|
|
2018
|
+
@include hook-inverse-component-column();
|
|
2019
|
+
@include hook-inverse-component-utility();
|
|
2118
2020
|
}
|
|
2119
|
-
@mixin hook-
|
|
2120
|
-
@mixin hook-
|
|
2121
|
-
|
|
2122
|
-
|
|
2021
|
+
@mixin hook-iconnav(){}
|
|
2022
|
+
@mixin hook-iconnav-item-hover(){}
|
|
2023
|
+
@mixin hook-iconnav-item-active(){}
|
|
2024
|
+
@mixin hook-iconnav-misc(){}
|
|
2025
|
+
@mixin hook-inverse-iconnav-item(){}
|
|
2026
|
+
@mixin hook-inverse-iconnav-item-hover(){}
|
|
2027
|
+
@mixin hook-inverse-iconnav-item-active(){}
|
|
2028
|
+
@mixin hook-icon-link(){}
|
|
2029
|
+
@mixin hook-icon-link-hover(){}
|
|
2030
|
+
@mixin hook-icon-link-active(){}
|
|
2031
|
+
@mixin hook-icon-button-hover(){}
|
|
2032
|
+
@mixin hook-icon-button-active(){}
|
|
2033
|
+
@mixin hook-icon-misc(){}
|
|
2034
|
+
@mixin hook-inverse-icon-link(){}
|
|
2035
|
+
@mixin hook-inverse-icon-link-hover(){}
|
|
2036
|
+
@mixin hook-inverse-icon-link-active(){}
|
|
2037
|
+
@mixin hook-inverse-icon-button(){}
|
|
2038
|
+
@mixin hook-inverse-icon-button-hover(){}
|
|
2039
|
+
@mixin hook-inverse-icon-button-active(){}
|
|
2040
|
+
@mixin hook-height-misc(){}
|
|
2041
|
+
@mixin hook-heading-small(){}
|
|
2042
|
+
@mixin hook-heading-medium(){}
|
|
2043
|
+
@mixin hook-heading-large(){}
|
|
2044
|
+
@mixin hook-heading-xlarge(){}
|
|
2045
|
+
@mixin hook-heading-2xlarge(){}
|
|
2046
|
+
@mixin hook-heading-primary(){}
|
|
2047
|
+
@mixin hook-heading-hero(){}
|
|
2048
|
+
@mixin hook-heading-divider(){}
|
|
2049
|
+
@mixin hook-heading-bullet(){}
|
|
2050
|
+
@mixin hook-heading-line(){}
|
|
2051
|
+
@mixin hook-heading-misc(){}
|
|
2052
|
+
@mixin hook-inverse-heading-small(){}
|
|
2053
|
+
@mixin hook-inverse-heading-medium(){}
|
|
2054
|
+
@mixin hook-inverse-heading-large(){}
|
|
2055
|
+
@mixin hook-inverse-heading-xlarge(){}
|
|
2056
|
+
@mixin hook-inverse-heading-2xlarge(){}
|
|
2057
|
+
@mixin hook-inverse-heading-primary(){}
|
|
2058
|
+
@mixin hook-inverse-heading-hero(){}
|
|
2059
|
+
@mixin hook-inverse-heading-divider(){}
|
|
2060
|
+
@mixin hook-inverse-heading-bullet(){}
|
|
2061
|
+
@mixin hook-inverse-heading-line(){}
|
|
2062
|
+
@mixin hook-grid-divider-horizontal(){}
|
|
2063
|
+
@mixin hook-grid-divider-vertical(){}
|
|
2064
|
+
@mixin hook-grid-misc(){}
|
|
2065
|
+
@mixin hook-inverse-grid-divider-horizontal(){}
|
|
2066
|
+
@mixin hook-inverse-grid-divider-vertical(){}
|
|
2067
|
+
@mixin hook-form-single-line(){}
|
|
2068
|
+
@mixin hook-form-multi-line(){}
|
|
2069
|
+
@mixin hook-form-radio-checked-focus(){}
|
|
2070
|
+
@mixin hook-form-legend(){}
|
|
2071
|
+
@mixin hook-form-stacked-label(){}
|
|
2072
|
+
@mixin hook-form-horizontal-label(){}
|
|
2073
|
+
@mixin hook-form-icon(){}
|
|
2074
|
+
@mixin hook-form-misc(){}
|
|
2075
|
+
@mixin hook-inverse-form-radio-checked-focus(){}
|
|
2076
|
+
@mixin hook-inverse-form-icon(){}
|
|
2077
|
+
@mixin hook-form-range(){}
|
|
2078
|
+
@mixin hook-form-range-track-focus(){}
|
|
2079
|
+
@mixin hook-form-range-misc(){}
|
|
2080
|
+
@mixin hook-flex-misc(){}
|
|
2081
|
+
@mixin hook-dropnav-misc(){}
|
|
2082
|
+
@mixin hook-dropdown-dropbar-large(){}
|
|
2083
|
+
@mixin hook-dropdown-nav-item(){}
|
|
2084
|
+
@mixin hook-dropdown-nav-item-hover(){}
|
|
2085
|
+
@mixin hook-dropdown-nav-subtitle(){}
|
|
2086
|
+
@mixin hook-dropdown-nav-header(){}
|
|
2087
|
+
@mixin hook-dropdown-nav-divider(){}
|
|
2088
|
+
@mixin hook-dropdown-misc(){}
|
|
2089
|
+
@mixin hook-dropbar(){}
|
|
2090
|
+
@mixin hook-dropbar-misc(){}
|
|
2091
|
+
@mixin hook-drop-misc(){}
|
|
2092
|
+
@mixin hook-dotnav(){}
|
|
2093
|
+
@mixin hook-dotnav-misc(){}
|
|
2094
|
+
@mixin hook-divider-icon(){}
|
|
2095
|
+
@mixin hook-divider-icon-line(){}
|
|
2096
|
+
@mixin hook-divider-icon-line-left(){}
|
|
2097
|
+
@mixin hook-divider-icon-line-right(){}
|
|
2098
|
+
@mixin hook-divider-small(){}
|
|
2099
|
+
@mixin hook-divider-vertical(){}
|
|
2100
|
+
@mixin hook-divider-misc(){}
|
|
2101
|
+
@mixin hook-inverse-divider-icon(){}
|
|
2102
|
+
@mixin hook-inverse-divider-icon-line(){}
|
|
2103
|
+
@mixin hook-inverse-divider-small(){}
|
|
2104
|
+
@mixin hook-inverse-divider-vertical(){}
|
|
2105
|
+
@mixin hook-description-list-description(){}
|
|
2106
|
+
@mixin hook-description-list-divider-term(){}
|
|
2107
|
+
@mixin hook-description-list-misc(){}
|
|
2108
|
+
@mixin hook-cover-misc(){}
|
|
2109
|
+
@mixin hook-countdown(){}
|
|
2110
|
+
@mixin hook-countdown-item(){}
|
|
2111
|
+
@mixin hook-countdown-number(){}
|
|
2112
|
+
@mixin hook-countdown-separator(){}
|
|
2113
|
+
@mixin hook-countdown-label(){}
|
|
2114
|
+
@mixin hook-countdown-misc(){}
|
|
2115
|
+
@mixin hook-inverse-countdown-item(){}
|
|
2116
|
+
@mixin hook-inverse-countdown-number(){}
|
|
2117
|
+
@mixin hook-inverse-countdown-separator(){}
|
|
2118
|
+
@mixin hook-inverse-countdown-label(){}
|
|
2119
|
+
@mixin hook-inverse-component-countdown(){
|
|
2123
2120
|
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2121
|
+
.uk-countdown-number,
|
|
2122
|
+
.uk-countdown-separator {
|
|
2123
|
+
@if(mixin-exists(hook-inverse-countdown-item)) {@include hook-inverse-countdown-item();}
|
|
2127
2124
|
}
|
|
2128
2125
|
|
|
2129
|
-
|
|
2130
|
-
@mixin hook-
|
|
2131
|
-
@mixin hook-text-large(){}
|
|
2132
|
-
@mixin hook-text-background(){ background-image: $internal-text-background-color-gradient; }
|
|
2133
|
-
@mixin hook-text-misc(){}
|
|
2134
|
-
@mixin hook-inverse-text-lead(){}
|
|
2135
|
-
@mixin hook-inverse-text-meta(){}
|
|
2136
|
-
@mixin hook-thumbnav(){}
|
|
2137
|
-
@mixin hook-thumbnav-item(){
|
|
2138
|
-
|
|
2139
|
-
position: relative;
|
|
2140
|
-
|
|
2141
|
-
&::after {
|
|
2142
|
-
content: "";
|
|
2143
|
-
position: absolute;
|
|
2144
|
-
top: 0;
|
|
2145
|
-
bottom: 0;
|
|
2146
|
-
left: 0;
|
|
2147
|
-
right: 0;
|
|
2148
|
-
background-image: $thumbnav-item-gradient;
|
|
2149
|
-
transition: opacity 0.1s ease-in-out;
|
|
2126
|
+
.uk-countdown-number {
|
|
2127
|
+
@if(mixin-exists(hook-inverse-countdown-number)) {@include hook-inverse-countdown-number();}
|
|
2150
2128
|
}
|
|
2151
2129
|
|
|
2152
|
-
|
|
2153
|
-
@mixin hook-
|
|
2154
|
-
&::after { opacity: $thumbnav-item-hover-opacity; }
|
|
2155
|
-
}
|
|
2156
|
-
@mixin hook-thumbnav-item-active(){
|
|
2157
|
-
&::after { opacity: $thumbnav-item-active-opacity; }
|
|
2158
|
-
}
|
|
2159
|
-
@mixin hook-thumbnav-misc(){}
|
|
2160
|
-
@mixin hook-inverse-thumbnav-item(){
|
|
2161
|
-
&::after { background-image: $inverse-thumbnav-item-gradient; }
|
|
2162
|
-
}
|
|
2163
|
-
@mixin hook-inverse-thumbnav-item-hover(){}
|
|
2164
|
-
@mixin hook-inverse-thumbnav-item-active(){}
|
|
2165
|
-
@mixin hook-inverse-component-thumbnav(){
|
|
2166
|
-
|
|
2167
|
-
.uk-thumbnav > * > * {
|
|
2168
|
-
@if(mixin-exists(hook-inverse-thumbnav-item)) {@include hook-inverse-thumbnav-item();}
|
|
2130
|
+
.uk-countdown-separator {
|
|
2131
|
+
@if(mixin-exists(hook-inverse-countdown-separator)) {@include hook-inverse-countdown-separator();}
|
|
2169
2132
|
}
|
|
2170
2133
|
|
|
2171
|
-
.uk-
|
|
2172
|
-
@if(mixin-exists(hook-inverse-
|
|
2134
|
+
.uk-countdown-label {
|
|
2135
|
+
@if(mixin-exists(hook-inverse-countdown-label)) {@include hook-inverse-countdown-label();}
|
|
2173
2136
|
}
|
|
2174
2137
|
|
|
2175
|
-
|
|
2176
|
-
|
|
2138
|
+
}
|
|
2139
|
+
@mixin hook-container-misc(){}
|
|
2140
|
+
@mixin hook-comment(){}
|
|
2141
|
+
@mixin hook-comment-body(){}
|
|
2142
|
+
@mixin hook-comment-header(){}
|
|
2143
|
+
@mixin hook-comment-title(){}
|
|
2144
|
+
@mixin hook-comment-meta(){}
|
|
2145
|
+
@mixin hook-comment-avatar(){}
|
|
2146
|
+
@mixin hook-comment-list-adjacent(){}
|
|
2147
|
+
@mixin hook-comment-list-sub(){}
|
|
2148
|
+
@mixin hook-comment-list-sub-adjacent(){}
|
|
2149
|
+
@mixin hook-comment-misc(){}
|
|
2150
|
+
@mixin hook-column-misc(){}
|
|
2151
|
+
@mixin hook-close-hover(){}
|
|
2152
|
+
@mixin hook-close-misc(){}
|
|
2153
|
+
@mixin hook-inverse-close(){}
|
|
2154
|
+
@mixin hook-inverse-close-hover(){}
|
|
2155
|
+
@mixin hook-card-body(){}
|
|
2156
|
+
@mixin hook-card-header(){}
|
|
2157
|
+
@mixin hook-card-footer(){}
|
|
2158
|
+
@mixin hook-card-media(){}
|
|
2159
|
+
@mixin hook-card-media-top(){}
|
|
2160
|
+
@mixin hook-card-media-bottom(){}
|
|
2161
|
+
@mixin hook-card-media-left(){}
|
|
2162
|
+
@mixin hook-card-media-right(){}
|
|
2163
|
+
@mixin hook-card-title(){}
|
|
2164
|
+
@mixin hook-card-default-title(){}
|
|
2165
|
+
@mixin hook-card-primary-title(){}
|
|
2166
|
+
@mixin hook-card-secondary-title(){}
|
|
2167
|
+
@mixin hook-inverse-card-badge(){}
|
|
2168
|
+
@mixin hook-inverse-component-card(){
|
|
2169
|
+
|
|
2170
|
+
&.uk-card-badge {
|
|
2171
|
+
background-color: $inverse-card-badge-background;
|
|
2172
|
+
color: $inverse-card-badge-color;
|
|
2173
|
+
@if(mixin-exists(hook-inverse-card-badge)) {@include hook-inverse-card-badge();}
|
|
2177
2174
|
}
|
|
2178
2175
|
|
|
2179
2176
|
}
|
|
2180
|
-
@mixin hook-
|
|
2181
|
-
@mixin hook-
|
|
2182
|
-
@mixin hook-
|
|
2183
|
-
@mixin hook-
|
|
2184
|
-
@mixin hook-
|
|
2185
|
-
@mixin hook-
|
|
2186
|
-
@mixin hook-
|
|
2187
|
-
@mixin hook-
|
|
2188
|
-
@mixin hook-
|
|
2189
|
-
@mixin hook-
|
|
2190
|
-
@mixin hook-
|
|
2191
|
-
@mixin hook-
|
|
2192
|
-
@mixin hook-
|
|
2193
|
-
@mixin hook-
|
|
2194
|
-
@mixin hook-
|
|
2195
|
-
@mixin hook-
|
|
2196
|
-
@mixin hook-inverse-
|
|
2197
|
-
@mixin hook-inverse-
|
|
2198
|
-
@mixin hook-inverse-
|
|
2199
|
-
@mixin hook-
|
|
2200
|
-
@mixin hook-
|
|
2201
|
-
@mixin hook-
|
|
2202
|
-
@mixin hook-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
}
|
|
2206
|
-
@mixin hook-
|
|
2207
|
-
@mixin hook-
|
|
2208
|
-
@mixin hook-
|
|
2209
|
-
@mixin hook-inverse-
|
|
2210
|
-
@mixin hook-inverse-
|
|
2211
|
-
@mixin hook-inverse-
|
|
2212
|
-
@mixin hook-
|
|
2213
|
-
@mixin hook-
|
|
2177
|
+
@mixin hook-button-hover(){}
|
|
2178
|
+
@mixin hook-button-active(){}
|
|
2179
|
+
@mixin hook-button-primary-hover(){}
|
|
2180
|
+
@mixin hook-button-primary-active(){}
|
|
2181
|
+
@mixin hook-button-secondary-hover(){}
|
|
2182
|
+
@mixin hook-button-secondary-active(){}
|
|
2183
|
+
@mixin hook-button-danger-hover(){}
|
|
2184
|
+
@mixin hook-button-danger-active(){}
|
|
2185
|
+
@mixin hook-button-small(){}
|
|
2186
|
+
@mixin hook-button-large(){}
|
|
2187
|
+
@mixin hook-button-link(){}
|
|
2188
|
+
@mixin hook-inverse-button-primary(){}
|
|
2189
|
+
@mixin hook-inverse-button-primary-hover(){}
|
|
2190
|
+
@mixin hook-inverse-button-primary-active(){}
|
|
2191
|
+
@mixin hook-inverse-button-secondary(){}
|
|
2192
|
+
@mixin hook-inverse-button-secondary-hover(){}
|
|
2193
|
+
@mixin hook-inverse-button-secondary-active(){}
|
|
2194
|
+
@mixin hook-inverse-button-text-hover(){}
|
|
2195
|
+
@mixin hook-inverse-button-text-disabled(){}
|
|
2196
|
+
@mixin hook-inverse-button-link(){}
|
|
2197
|
+
@mixin hook-breadcrumb(){}
|
|
2198
|
+
@mixin hook-breadcrumb-item(){}
|
|
2199
|
+
@mixin hook-breadcrumb-item-hover(){}
|
|
2200
|
+
@mixin hook-breadcrumb-item-disabled(){}
|
|
2201
|
+
@mixin hook-breadcrumb-item-active(){}
|
|
2202
|
+
@mixin hook-breadcrumb-divider(){}
|
|
2203
|
+
@mixin hook-breadcrumb-misc(){}
|
|
2204
|
+
@mixin hook-inverse-breadcrumb-item(){}
|
|
2205
|
+
@mixin hook-inverse-breadcrumb-item-hover(){}
|
|
2206
|
+
@mixin hook-inverse-breadcrumb-item-disabled(){}
|
|
2207
|
+
@mixin hook-inverse-breadcrumb-item-active(){}
|
|
2208
|
+
@mixin hook-inverse-breadcrumb-divider(){}
|
|
2209
|
+
@mixin hook-base-body(){}
|
|
2210
|
+
@mixin hook-base-link(){}
|
|
2211
|
+
@mixin hook-base-link-hover(){}
|
|
2212
|
+
@mixin hook-base-heading(){}
|
|
2213
|
+
@mixin hook-base-h1(){}
|
|
2214
|
+
@mixin hook-base-h2(){}
|
|
2215
|
+
@mixin hook-base-h3(){}
|
|
2216
|
+
@mixin hook-base-h4(){}
|
|
2217
|
+
@mixin hook-base-h5(){}
|
|
2218
|
+
@mixin hook-base-h6(){}
|
|
2219
|
+
@mixin hook-base-hr(){}
|
|
2220
|
+
@mixin hook-base-misc(){}
|
|
2221
|
+
@mixin hook-inverse-base-link(){}
|
|
2222
|
+
@mixin hook-inverse-base-link-hover(){}
|
|
2223
|
+
@mixin hook-inverse-base-heading(){}
|
|
2224
|
+
@mixin hook-inverse-base-h1(){}
|
|
2225
|
+
@mixin hook-inverse-base-h2(){}
|
|
2226
|
+
@mixin hook-inverse-base-h3(){}
|
|
2227
|
+
@mixin hook-inverse-base-h4(){}
|
|
2228
|
+
@mixin hook-inverse-base-h5(){}
|
|
2229
|
+
@mixin hook-inverse-base-h6(){}
|
|
2230
|
+
@mixin hook-inverse-base-hr(){}
|
|
2231
|
+
@mixin hook-badge(){}
|
|
2232
|
+
@mixin hook-badge-hover(){}
|
|
2233
|
+
@mixin hook-badge-misc(){}
|
|
2234
|
+
@mixin hook-inverse-badge(){}
|
|
2235
|
+
@mixin hook-inverse-badge-hover(){}
|
|
2236
|
+
@mixin hook-background-misc(){}
|
|
2237
|
+
@mixin hook-article(){}
|
|
2238
|
+
@mixin hook-article-adjacent(){}
|
|
2239
|
+
@mixin hook-article-title(){}
|
|
2240
|
+
@mixin hook-article-misc(){}
|
|
2241
|
+
@mixin hook-inverse-article-title(){}
|
|
2242
|
+
@mixin hook-inverse-article-meta(){}
|
|
2243
|
+
@mixin hook-animation-misc(){}
|
|
2244
|
+
@mixin hook-align-misc(){}
|
|
2245
|
+
@mixin hook-alert(){}
|
|
2246
|
+
@mixin hook-alert-primary(){}
|
|
2247
|
+
@mixin hook-alert-success(){}
|
|
2248
|
+
@mixin hook-alert-warning(){}
|
|
2249
|
+
@mixin hook-alert-danger(){}
|
|
2250
|
+
@mixin hook-accordion(){}
|
|
2251
|
+
@mixin hook-accordion-item(){}
|
|
2252
|
+
@mixin hook-accordion-title-hover(){}
|
|
2253
|
+
@mixin hook-accordion-content(){}
|
|
2254
|
+
@mixin hook-accordion-misc(){}
|
|
2255
|
+
@mixin hook-inverse-accordion-item(){}
|
|
2256
|
+
@mixin hook-inverse-accordion-title(){}
|
|
2257
|
+
@mixin hook-inverse-accordion-title-hover(){}
|