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