uikit 3.21.14-dev.60ed95dfb → 3.21.14-dev.8b3dfa6cd
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 +35 -0
- package/dist/css/uikit-core-rtl.css +233 -85
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +233 -85
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +237 -81
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +237 -81
- 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 +2 -11
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +425 -126
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +442 -131
- 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 +2 -2
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +2 -2
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +17 -27
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +2 -2
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +22 -33
- 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 +9 -13
- 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 +212 -212
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +20 -17
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +631 -521
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/images/icons/arrow-down-arrow-up.svg +6 -0
- package/src/images/icons/arrow-down.svg +3 -3
- package/src/images/icons/arrow-left.svg +3 -3
- package/src/images/icons/arrow-right.svg +3 -3
- package/src/images/icons/arrow-up-right.svg +3 -3
- package/src/images/icons/arrow-up.svg +3 -3
- package/src/images/icons/close-circle.svg +5 -0
- package/src/images/icons/cloud-download.svg +4 -4
- package/src/images/icons/cloud-upload.svg +4 -4
- package/src/images/icons/download.svg +4 -4
- package/src/images/icons/expand.svg +5 -5
- package/src/images/icons/link-external.svg +4 -4
- package/src/images/icons/pull.svg +4 -4
- package/src/images/icons/push.svg +3 -3
- package/src/images/icons/shrink.svg +5 -5
- package/src/images/icons/sign-in.svg +4 -3
- package/src/images/icons/sign-out.svg +4 -3
- package/src/images/icons/sorting.svg +6 -0
- package/src/images/icons/upload.svg +4 -4
- package/src/js/api/instance.js +1 -1
- package/src/js/components/internal/lightbox-animations.js +2 -1
- package/src/js/components/internal/slideshow-animations.js +5 -5
- package/src/js/components/lightbox-panel.js +180 -45
- package/src/js/components/lightbox.js +59 -6
- package/src/js/components/slideshow.js +1 -2
- package/src/js/components/tooltip.js +1 -1
- package/src/js/core/grid.js +1 -1
- package/src/js/core/icon.js +2 -2
- package/src/js/core/img.js +3 -5
- package/src/js/core/navbar.js +6 -2
- package/src/js/core/scrollspy-nav.js +1 -1
- package/src/js/core/svg.js +8 -10
- package/src/js/core/toggle.js +1 -1
- package/src/js/core/video.js +4 -3
- package/src/js/mixin/internal/slideshow-animations.js +1 -6
- package/src/js/mixin/modal.js +1 -4
- package/src/js/mixin/slider-drag.js +5 -6
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider.js +11 -13
- package/src/js/mixin/slideshow.js +1 -1
- package/src/js/mixin/togglable.js +7 -2
- package/src/js/util/dom.js +3 -1
- package/src/js/util/filter.js +3 -1
- package/src/js/util/player.js +0 -4
- package/src/less/components/background.less +1 -9
- package/src/less/components/breadcrumb.less +6 -2
- package/src/less/components/button.less +1 -1
- package/src/less/components/form-range.less +52 -0
- package/src/less/components/form.less +1 -1
- package/src/less/components/lightbox.less +57 -89
- package/src/less/components/margin.less +14 -0
- package/src/less/components/search.less +49 -23
- package/src/less/components/sticky.less +1 -10
- package/src/less/components/totop.less +1 -1
- package/src/less/components/transition.less +4 -4
- package/src/less/components/visibility.less +3 -2
- package/src/less/theme/form-range.less +12 -0
- package/src/less/theme/lightbox.less +2 -20
- package/src/less/theme/search.less +24 -10
- package/src/scss/components/background.scss +1 -9
- package/src/scss/components/breadcrumb.scss +6 -2
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/form-range.scss +12 -0
- package/src/scss/components/form.scss +1 -1
- package/src/scss/components/lightbox.scss +50 -77
- package/src/scss/components/margin.scss +13 -0
- package/src/scss/components/search.scss +30 -12
- package/src/scss/components/sticky.scss +1 -10
- package/src/scss/components/totop.scss +1 -1
- package/src/scss/components/transition.scss +4 -4
- package/src/scss/components/visibility.scss +3 -2
- package/src/scss/mixins-theme.scss +51 -12
- package/src/scss/mixins.scss +45 -6
- package/src/scss/theme/form-range.scss +10 -0
- package/src/scss/theme/lightbox.scss +2 -20
- package/src/scss/theme/search.scss +10 -6
- package/src/scss/variables-theme.scss +32 -20
- package/src/scss/variables.scss +29 -24
- package/tests/badge.html +2 -2
- package/tests/base.html +1 -1
- package/tests/breadcrumb.html +23 -5
- package/tests/card.html +24 -24
- package/tests/dropbar.html +15 -15
- package/tests/dropdown.html +6 -6
- package/tests/dropnav.html +100 -100
- package/tests/icon.html +8 -0
- package/tests/index.html +15 -15
- package/tests/lightbox.html +379 -28
- package/tests/margin.html +19 -0
- package/tests/nav.html +21 -21
- package/tests/navbar.html +292 -292
- package/tests/offcanvas.html +27 -27
- package/tests/placeholder.html +2 -2
- package/tests/slider.html +0 -1
- package/tests/slideshow.html +1 -1
- package/tests/sortable.html +5 -5
- package/tests/sticky-navbar.html +114 -114
- package/tests/transition.html +2 -1
|
@@ -19,12 +19,16 @@
|
|
|
19
19
|
========================================================================== */
|
|
20
20
|
|
|
21
21
|
/*
|
|
22
|
-
* Reset list
|
|
22
|
+
* 1. Reset list
|
|
23
|
+
* 2. Remove space between elements
|
|
23
24
|
*/
|
|
24
25
|
|
|
25
26
|
.uk-breadcrumb {
|
|
27
|
+
/* 1 */
|
|
26
28
|
padding: 0;
|
|
27
29
|
list-style: none;
|
|
30
|
+
/* 2 */
|
|
31
|
+
font-size: 0;
|
|
28
32
|
@if(mixin-exists(hook-breadcrumb)) {@include hook-breadcrumb();}
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -74,7 +78,7 @@
|
|
|
74
78
|
content: $breadcrumb-divider;
|
|
75
79
|
display: inline-block;
|
|
76
80
|
/* 1 */
|
|
77
|
-
margin: 0 $breadcrumb-divider-margin-horizontal
|
|
81
|
+
margin: 0 $breadcrumb-divider-margin-horizontal;
|
|
78
82
|
/* 2 */
|
|
79
83
|
font-size: $breadcrumb-divider-font-size;
|
|
80
84
|
color: $breadcrumb-divider-color;
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
========================================================================== */
|
|
307
307
|
|
|
308
308
|
/*
|
|
309
|
-
* 1. Using `flex` instead of `inline-block` to prevent whitespace
|
|
309
|
+
* 1. Using `flex` instead of `inline-block` to prevent whitespace between child elements
|
|
310
310
|
* 2. Behave like button
|
|
311
311
|
* 3. Create position context
|
|
312
312
|
*/
|
|
@@ -130,3 +130,15 @@
|
|
|
130
130
|
// @mixin hook-form-range-track-focus(){}
|
|
131
131
|
// @mixin hook-form-range-thumb(){}
|
|
132
132
|
// @mixin hook-form-range-misc(){}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
// Inverse
|
|
136
|
+
// ========================================================================
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
// @mixin hook-inverse-form-range-track(){}
|
|
143
|
+
// @mixin hook-inverse-form-range-track-focus(){}
|
|
144
|
+
// @mixin hook-inverse-form-range-thumb(){}
|
|
@@ -547,7 +547,7 @@ select.uk-form-width-xsmall { width: ($form-width-xsmall + 25px); }
|
|
|
547
547
|
* 1. Position and resize the form control to always cover its container
|
|
548
548
|
* 2. Required for Firefox for positioning to the left
|
|
549
549
|
* 3. Required for Webkit to make `height` work
|
|
550
|
-
* 4. Hide
|
|
550
|
+
* 4. Hide controls and show cursor
|
|
551
551
|
* 5. Needed for the cursor
|
|
552
552
|
* 6. Clip height caused by 5. Needed for Webkit only
|
|
553
553
|
*/
|
|
@@ -5,11 +5,14 @@
|
|
|
5
5
|
//
|
|
6
6
|
// Sub-objects: `uk-lightbox-page`
|
|
7
7
|
// `uk-lightbox-items`
|
|
8
|
-
// `uk-lightbox-
|
|
9
|
-
// `uk-lightbox-
|
|
10
|
-
// `uk-lightbox-
|
|
8
|
+
// `uk-lightbox-items-fit`
|
|
9
|
+
// `uk-lightbox-thumbnav`
|
|
10
|
+
// `uk-lightbox-thumbnav-vertical`
|
|
11
|
+
// `uk-lightbox-dotnav`
|
|
11
12
|
// `uk-lightbox-caption`
|
|
13
|
+
// `uk-lightbox-counter`
|
|
12
14
|
// `uk-lightbox-iframe`
|
|
15
|
+
// `uk-lightbox-zoom`
|
|
13
16
|
//
|
|
14
17
|
// States: `uk-open`
|
|
15
18
|
//
|
|
@@ -25,9 +28,6 @@
|
|
|
25
28
|
|
|
26
29
|
|
|
27
30
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
31
|
/* ========================================================================
|
|
32
32
|
Component: Lightbox
|
|
33
33
|
========================================================================== */
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
*/
|
|
44
44
|
|
|
45
45
|
.uk-lightbox {
|
|
46
|
+
--uk-inverse: #{$lightbox-color-mode};
|
|
46
47
|
/* 1 */
|
|
47
48
|
display: none;
|
|
48
49
|
/* 2 */
|
|
@@ -91,15 +92,24 @@
|
|
|
91
92
|
.uk-lightbox-page { overflow: hidden; }
|
|
92
93
|
|
|
93
94
|
|
|
94
|
-
/*
|
|
95
|
+
/* Items
|
|
95
96
|
========================================================================== */
|
|
96
97
|
|
|
98
|
+
/*
|
|
99
|
+
* Reset list
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
.uk-lightbox-items {
|
|
103
|
+
margin: 0;
|
|
104
|
+
padding: 0;
|
|
105
|
+
list-style: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
97
108
|
/*
|
|
98
109
|
* 1. Center child within the viewport
|
|
99
110
|
* 2. Not visible by default
|
|
100
|
-
* 3.
|
|
101
|
-
* 4.
|
|
102
|
-
* 5. Responsiveness
|
|
111
|
+
* 3. Optimize animation
|
|
112
|
+
* 4. Responsiveness
|
|
103
113
|
* Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
|
|
104
114
|
*/
|
|
105
115
|
|
|
@@ -113,96 +123,64 @@
|
|
|
113
123
|
/* 2 */
|
|
114
124
|
display: none;
|
|
115
125
|
justify-content: center;
|
|
116
|
-
align-items:
|
|
126
|
+
align-items: flex-start;
|
|
117
127
|
/* 3 */
|
|
118
|
-
color: $lightbox-item-color;
|
|
119
|
-
/* 4 */
|
|
120
128
|
will-change: transform, opacity;
|
|
129
|
+
/* 4 */
|
|
130
|
+
overflow: auto;
|
|
121
131
|
@if(mixin-exists(hook-lightbox-item)) {@include hook-lightbox-item();}
|
|
122
132
|
}
|
|
123
133
|
|
|
124
|
-
/*
|
|
125
|
-
.uk-lightbox-items >
|
|
134
|
+
/* 2 */
|
|
135
|
+
.uk-lightbox-items > .uk-active { display: flex; }
|
|
136
|
+
|
|
137
|
+
.uk-lightbox-items-fit > * { align-items: center; }
|
|
138
|
+
|
|
139
|
+
/* 4 */
|
|
140
|
+
.uk-lightbox-items-fit > * > * {
|
|
126
141
|
max-width: $lightbox-item-max-width;
|
|
127
142
|
max-height: $lightbox-item-max-height;
|
|
128
143
|
}
|
|
129
144
|
|
|
130
|
-
.uk-lightbox-items > * > :not(iframe) {
|
|
145
|
+
.uk-lightbox-items-fit > * > :not(iframe) {
|
|
131
146
|
width: auto;
|
|
132
147
|
height: auto;
|
|
133
148
|
}
|
|
134
149
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
========================================================================== */
|
|
139
|
-
|
|
140
|
-
.uk-lightbox-toolbar {
|
|
141
|
-
padding: $lightbox-toolbar-padding-vertical $lightbox-toolbar-padding-horizontal;
|
|
142
|
-
background: $lightbox-toolbar-background;
|
|
143
|
-
color: $lightbox-toolbar-color;
|
|
144
|
-
@if(mixin-exists(hook-lightbox-toolbar)) {@include hook-lightbox-toolbar();}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.uk-lightbox-toolbar > * { color: $lightbox-toolbar-color; }
|
|
150
|
+
/* Zoom Cursor */
|
|
151
|
+
.uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover { cursor: zoom-in; }
|
|
152
|
+
.uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover { cursor: zoom-out; }
|
|
148
153
|
|
|
149
154
|
|
|
150
|
-
/*
|
|
155
|
+
/* Navs
|
|
151
156
|
========================================================================== */
|
|
152
157
|
|
|
153
|
-
.uk-lightbox-
|
|
154
|
-
|
|
155
|
-
color: $lightbox-toolbar-icon-color;
|
|
156
|
-
@if(mixin-exists(hook-lightbox-toolbar-icon)) {@include hook-lightbox-toolbar-icon();}
|
|
157
|
-
}
|
|
158
|
+
.uk-lightbox-thumbnav-vertical :where(img, video) { max-width: $lightbox-thumbnav-vertical-width; }
|
|
159
|
+
.uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) { max-height: $lightbox-thumbnav-height; }
|
|
158
160
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
*/
|
|
161
|
+
.uk-lightbox-thumbnav:empty,
|
|
162
|
+
.uk-lightbox-dotnav:empty { display: none; }
|
|
162
163
|
|
|
163
|
-
.uk-lightbox-toolbar-icon:hover {
|
|
164
|
-
color: $lightbox-toolbar-icon-hover-color;
|
|
165
|
-
@if(mixin-exists(hook-lightbox-toolbar-icon-hover)) {@include hook-lightbox-toolbar-icon-hover();}
|
|
166
|
-
}
|
|
167
164
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
/* Button (Slidenav)
|
|
165
|
+
/* Caption
|
|
171
166
|
========================================================================== */
|
|
172
167
|
|
|
173
|
-
|
|
174
|
-
* 1. Center icon vertically and horizontally
|
|
175
|
-
*/
|
|
176
|
-
|
|
177
|
-
.uk-lightbox-button {
|
|
178
|
-
box-sizing: border-box;
|
|
179
|
-
width: $lightbox-button-size;
|
|
180
|
-
height: $lightbox-button-size;
|
|
181
|
-
background: $lightbox-button-background;
|
|
182
|
-
color: $lightbox-button-color;
|
|
183
|
-
/* 1 */
|
|
184
|
-
display: inline-flex;
|
|
185
|
-
justify-content: center;
|
|
186
|
-
align-items: center;
|
|
187
|
-
@if(mixin-exists(hook-lightbox-button)) {@include hook-lightbox-button();}
|
|
188
|
-
}
|
|
168
|
+
.uk-lightbox-caption:empty { display: none; }
|
|
189
169
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
170
|
+
.uk-lightbox-caption {
|
|
171
|
+
padding: $lightbox-caption-padding-vertical $lightbox-caption-padding-horizontal;
|
|
172
|
+
background: $lightbox-caption-background;
|
|
173
|
+
color: $lightbox-caption-color;
|
|
174
|
+
@if(mixin-exists(hook-lightbox-caption)) {@include hook-lightbox-caption();}
|
|
194
175
|
}
|
|
195
176
|
|
|
196
|
-
|
|
197
|
-
.uk-lightbox-button:active {
|
|
198
|
-
@if(mixin-exists(hook-lightbox-button-active)) {@include hook-lightbox-button-active();}
|
|
199
|
-
}
|
|
177
|
+
.uk-lightbox-caption > * { color: $lightbox-caption-color; }
|
|
200
178
|
|
|
201
179
|
|
|
202
|
-
/*
|
|
180
|
+
/* Counter
|
|
203
181
|
========================================================================== */
|
|
204
182
|
|
|
205
|
-
.uk-lightbox-
|
|
183
|
+
.uk-lightbox-counter:empty { display: none; }
|
|
206
184
|
|
|
207
185
|
|
|
208
186
|
/* Iframe
|
|
@@ -221,10 +199,5 @@
|
|
|
221
199
|
|
|
222
200
|
// @mixin hook-lightbox(){}
|
|
223
201
|
// @mixin hook-lightbox-item(){}
|
|
224
|
-
// @mixin hook-lightbox-
|
|
225
|
-
// @mixin hook-lightbox-toolbar-icon(){}
|
|
226
|
-
// @mixin hook-lightbox-toolbar-icon-hover(){}
|
|
227
|
-
// @mixin hook-lightbox-button(){}
|
|
228
|
-
// @mixin hook-lightbox-button-hover(){}
|
|
229
|
-
// @mixin hook-lightbox-button-active(){}
|
|
202
|
+
// @mixin hook-lightbox-caption(){}
|
|
230
203
|
// @mixin hook-lightbox-misc(){}
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
24
|
+
|
|
24
25
|
/* ========================================================================
|
|
25
26
|
Component: Margin
|
|
26
27
|
========================================================================== */
|
|
@@ -38,6 +39,18 @@
|
|
|
38
39
|
.uk-margin-right { margin-right: $margin-margin !important; }
|
|
39
40
|
|
|
40
41
|
|
|
42
|
+
/* XSmall
|
|
43
|
+
========================================================================== */
|
|
44
|
+
|
|
45
|
+
.uk-margin-xsmall { margin-bottom: $margin-xsmall-margin; }
|
|
46
|
+
* + .uk-margin-xsmall { margin-top: $margin-xsmall-margin !important; }
|
|
47
|
+
|
|
48
|
+
.uk-margin-xsmall-top { margin-top: $margin-xsmall-margin !important; }
|
|
49
|
+
.uk-margin-xsmall-bottom { margin-bottom: $margin-xsmall-margin !important; }
|
|
50
|
+
.uk-margin-xsmall-left { margin-left: $margin-xsmall-margin !important; }
|
|
51
|
+
.uk-margin-xsmall-right { margin-right: $margin-xsmall-margin !important; }
|
|
52
|
+
|
|
53
|
+
|
|
41
54
|
/* Small
|
|
42
55
|
========================================================================== */
|
|
43
56
|
|
|
@@ -185,10 +185,13 @@
|
|
|
185
185
|
* Icon
|
|
186
186
|
*/
|
|
187
187
|
|
|
188
|
-
.uk-search-default .uk-search-icon {
|
|
188
|
+
.uk-search-default .uk-search-icon {
|
|
189
|
+
padding-left: $search-default-padding-horizontal;
|
|
190
|
+
padding-right: $search-default-padding-horizontal;
|
|
191
|
+
}
|
|
189
192
|
|
|
190
|
-
.uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-default-icon-width + $search-default-icon-padding); }
|
|
191
|
-
.uk-search-default:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-default-icon-width + $search-default-icon-padding); }
|
|
193
|
+
.uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-default-icon-width + $search-default-padding-horizontal + $search-default-icon-padding); }
|
|
194
|
+
.uk-search-default:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-default-icon-width + $search-default-padding-horizontal + $search-default-icon-padding); }
|
|
192
195
|
|
|
193
196
|
|
|
194
197
|
/* Navbar modifier
|
|
@@ -218,10 +221,13 @@
|
|
|
218
221
|
* Icon
|
|
219
222
|
*/
|
|
220
223
|
|
|
221
|
-
.uk-search-navbar .uk-search-icon {
|
|
224
|
+
.uk-search-navbar .uk-search-icon {
|
|
225
|
+
padding-left: $search-navbar-padding-horizontal;
|
|
226
|
+
padding-right: $search-navbar-padding-horizontal;
|
|
227
|
+
}
|
|
222
228
|
|
|
223
|
-
.uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-navbar-icon-width + $search-navbar-icon-padding); }
|
|
224
|
-
.uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-navbar-icon-width + $search-navbar-icon-padding); }
|
|
229
|
+
.uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-navbar-icon-width + $search-navbar-padding-horizontal + $search-navbar-icon-padding); }
|
|
230
|
+
.uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-navbar-icon-width + $search-navbar-padding-horizontal + $search-navbar-icon-padding); }
|
|
225
231
|
|
|
226
232
|
|
|
227
233
|
/* Medium modifier
|
|
@@ -235,6 +241,8 @@
|
|
|
235
241
|
|
|
236
242
|
.uk-search-medium .uk-search-input {
|
|
237
243
|
height: $search-medium-height;
|
|
244
|
+
padding-left: $search-medium-padding-horizontal;
|
|
245
|
+
padding-right: $search-medium-padding-horizontal;
|
|
238
246
|
background: $search-medium-background;
|
|
239
247
|
font-size: $search-medium-font-size;
|
|
240
248
|
@if(mixin-exists(hook-search-medium-input)) {@include hook-search-medium-input();}
|
|
@@ -242,6 +250,7 @@
|
|
|
242
250
|
|
|
243
251
|
/* Focus */
|
|
244
252
|
.uk-search-medium .uk-search-input:focus {
|
|
253
|
+
background-color: $search-medium-focus-background;
|
|
245
254
|
@if(mixin-exists(hook-search-medium-input-focus)) {@include hook-search-medium-input-focus();}
|
|
246
255
|
}
|
|
247
256
|
|
|
@@ -249,10 +258,13 @@
|
|
|
249
258
|
* Icon
|
|
250
259
|
*/
|
|
251
260
|
|
|
252
|
-
.uk-search-medium .uk-search-icon {
|
|
261
|
+
.uk-search-medium .uk-search-icon {
|
|
262
|
+
padding-left: $search-medium-padding-horizontal;
|
|
263
|
+
padding-right: $search-medium-padding-horizontal;
|
|
264
|
+
}
|
|
253
265
|
|
|
254
|
-
.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-medium-icon-width + $search-medium-icon-padding); }
|
|
255
|
-
.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-medium-icon-width + $search-medium-icon-padding); }
|
|
266
|
+
.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-medium-icon-width + $search-medium-padding-horizontal + $search-medium-icon-padding); }
|
|
267
|
+
.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-medium-icon-width + $search-medium-padding-horizontal + $search-medium-icon-padding); }
|
|
256
268
|
|
|
257
269
|
|
|
258
270
|
/* Large modifier
|
|
@@ -266,6 +278,8 @@
|
|
|
266
278
|
|
|
267
279
|
.uk-search-large .uk-search-input {
|
|
268
280
|
height: $search-large-height;
|
|
281
|
+
padding-left: $search-large-padding-horizontal;
|
|
282
|
+
padding-right: $search-large-padding-horizontal;
|
|
269
283
|
background: $search-large-background;
|
|
270
284
|
font-size: $search-large-font-size;
|
|
271
285
|
@if(mixin-exists(hook-search-large-input)) {@include hook-search-large-input();}
|
|
@@ -273,6 +287,7 @@
|
|
|
273
287
|
|
|
274
288
|
/* Focus */
|
|
275
289
|
.uk-search-large .uk-search-input:focus {
|
|
290
|
+
background-color: $search-medium-focus-background;
|
|
276
291
|
@if(mixin-exists(hook-search-large-input-focus)) {@include hook-search-large-input-focus();}
|
|
277
292
|
}
|
|
278
293
|
|
|
@@ -280,10 +295,13 @@
|
|
|
280
295
|
* Icon
|
|
281
296
|
*/
|
|
282
297
|
|
|
283
|
-
.uk-search-large .uk-search-icon {
|
|
298
|
+
.uk-search-large .uk-search-icon {
|
|
299
|
+
padding-left: $search-large-padding-horizontal;
|
|
300
|
+
padding-right: $search-large-padding-horizontal;
|
|
301
|
+
}
|
|
284
302
|
|
|
285
|
-
.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-large-icon-width + $search-large-icon-padding); }
|
|
286
|
-
.uk-search-large:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-large-icon-width + $search-large-icon-padding); }
|
|
303
|
+
.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: ($search-large-icon-width + $search-large-padding-horizontal + $search-large-icon-padding); }
|
|
304
|
+
.uk-search-large:has(.uk-search-icon-flip) .uk-search-input { padding-right: ($search-large-icon-width + $search-large-padding-horizontal + $search-large-icon-padding); }
|
|
287
305
|
|
|
288
306
|
|
|
289
307
|
/* Toggle
|
|
@@ -36,16 +36,7 @@
|
|
|
36
36
|
box-sizing: border-box;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
* 1. Force new layer to resolve frame rate issues on devices with lower frame rates
|
|
41
|
-
*/
|
|
42
|
-
|
|
43
|
-
.uk-sticky-fixed {
|
|
44
|
-
margin: 0 !important;
|
|
45
|
-
/* 1 */
|
|
46
|
-
-webkit-backface-visibility: hidden;
|
|
47
|
-
backface-visibility: hidden;
|
|
48
|
-
}
|
|
39
|
+
.uk-sticky-fixed { margin: 0 !important; }
|
|
49
40
|
|
|
50
41
|
/*
|
|
51
42
|
* Faster animations
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
|
|
73
73
|
.uk-transition-toggle:hover .uk-transition-fade,
|
|
74
74
|
.uk-transition-toggle:focus .uk-transition-fade,
|
|
75
|
-
.uk-transition-toggle .uk-transition-fade
|
|
75
|
+
.uk-transition-toggle:focus-within .uk-transition-fade,
|
|
76
76
|
.uk-transition-active.uk-active .uk-transition-fade { opacity: 1; }
|
|
77
77
|
|
|
78
78
|
/*
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
/* Show */
|
|
96
96
|
.uk-transition-toggle:hover .uk-transition-scale-up,
|
|
97
97
|
.uk-transition-toggle:focus .uk-transition-scale-up,
|
|
98
|
-
.uk-transition-toggle .uk-transition-scale-up
|
|
98
|
+
.uk-transition-toggle:focus-within .uk-transition-scale-up,
|
|
99
99
|
.uk-transition-active.uk-active .uk-transition-scale-up {
|
|
100
100
|
--uk-scale-x: #{$transition-scale};
|
|
101
101
|
--uk-scale-y: #{$transition-scale};
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
|
|
105
105
|
.uk-transition-toggle:hover .uk-transition-scale-down,
|
|
106
106
|
.uk-transition-toggle:focus .uk-transition-scale-down,
|
|
107
|
-
.uk-transition-toggle .uk-transition-scale-down
|
|
107
|
+
.uk-transition-toggle:focus-within .uk-transition-scale-down,
|
|
108
108
|
.uk-transition-active.uk-active .uk-transition-scale-down {
|
|
109
109
|
--uk-scale-x: 1;
|
|
110
110
|
--uk-scale-y: 1;
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
/* Show */
|
|
134
134
|
.uk-transition-toggle:hover [class*="uk-transition-slide"],
|
|
135
135
|
.uk-transition-toggle:focus [class*="uk-transition-slide"],
|
|
136
|
-
.uk-transition-toggle [class*="uk-transition-slide"]
|
|
136
|
+
.uk-transition-toggle:focus-within [class*="uk-transition-slide"],
|
|
137
137
|
.uk-transition-active.uk-active [class*="uk-transition-slide"] {
|
|
138
138
|
--uk-translate-x: 0;
|
|
139
139
|
--uk-translate-y: 0;
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
*/
|
|
25
25
|
|
|
26
26
|
[hidden],
|
|
27
|
-
.uk-hidden
|
|
27
|
+
.uk-hidden,
|
|
28
|
+
.uk-hidden-empty:empty { display: none !important; }
|
|
28
29
|
|
|
29
30
|
/* Phone landscape and bigger */
|
|
30
31
|
@media (min-width: $breakpoint-small) {
|
|
@@ -114,7 +115,7 @@
|
|
|
114
115
|
*/
|
|
115
116
|
|
|
116
117
|
.uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
|
|
117
|
-
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-
|
|
118
|
+
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-visible):not(:has(:focus-visible)) {
|
|
118
119
|
/* 1 */
|
|
119
120
|
position: absolute !important;
|
|
120
121
|
/* 2 */
|
|
@@ -819,6 +819,47 @@
|
|
|
819
819
|
@mixin hook-form-range-track-focus(){}
|
|
820
820
|
@mixin hook-form-range-thumb(){ border: $form-range-thumb-border-width solid $form-range-thumb-border; }
|
|
821
821
|
@mixin hook-form-range-misc(){}
|
|
822
|
+
@mixin hook-inverse-form-range-track(){}
|
|
823
|
+
@mixin hook-inverse-form-range-track-focus(){}
|
|
824
|
+
@mixin hook-inverse-form-range-thumb(){ border-color: $inverse-form-range-thumb-border; }
|
|
825
|
+
@mixin hook-inverse-component-form-range(){
|
|
826
|
+
|
|
827
|
+
/* Webkit */
|
|
828
|
+
.uk-range::-webkit-slider-runnable-track {
|
|
829
|
+
background: $inverse-form-range-track-background;
|
|
830
|
+
@if(mixin-exists(hook-inverse-form-range-track)) {@include hook-inverse-form-range-track();}
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.uk-range:focus::-webkit-slider-runnable-track,
|
|
834
|
+
.uk-range:active::-webkit-slider-runnable-track {
|
|
835
|
+
background: $inverse-form-range-track-focus-background;
|
|
836
|
+
@if(mixin-exists(hook-inverse-form-range-track-focus)) {@include hook-inverse-form-range-track-focus();}
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
/* Firefox */
|
|
840
|
+
.uk-range::-moz-range-track {
|
|
841
|
+
background: $inverse-form-range-track-background;
|
|
842
|
+
@if(mixin-exists(hook-inverse-form-range-track)) {@include hook-inverse-form-range-track();}
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.uk-range:focus::-moz-range-track {
|
|
846
|
+
background: $inverse-form-range-track-focus-background;
|
|
847
|
+
@if(mixin-exists(hook-inverse-form-range-track-focus)) {@include hook-inverse-form-range-track-focus();}
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
/* Webkit */
|
|
851
|
+
.uk-range::-webkit-slider-thumb {
|
|
852
|
+
background: $inverse-form-range-thumb-background;
|
|
853
|
+
@if(mixin-exists(hook-inverse-form-range-thumb)) {@include hook-inverse-form-range-thumb();}
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
/* Firefox */
|
|
857
|
+
.uk-range::-moz-range-thumb {
|
|
858
|
+
background: $inverse-form-range-thumb-background;
|
|
859
|
+
@if(mixin-exists(hook-inverse-form-range-thumb)) {@include hook-inverse-form-range-thumb();}
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
}
|
|
822
863
|
@mixin hook-form(){
|
|
823
864
|
border: $form-border-width solid $form-border;
|
|
824
865
|
transition: 0.2s ease-in-out;
|
|
@@ -1160,12 +1201,7 @@
|
|
|
1160
1201
|
}
|
|
1161
1202
|
@mixin hook-lightbox(){}
|
|
1162
1203
|
@mixin hook-lightbox-item(){}
|
|
1163
|
-
@mixin hook-lightbox-
|
|
1164
|
-
@mixin hook-lightbox-toolbar-icon(){}
|
|
1165
|
-
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
1166
|
-
@mixin hook-lightbox-button(){}
|
|
1167
|
-
@mixin hook-lightbox-button-hover(){}
|
|
1168
|
-
@mixin hook-lightbox-button-active(){}
|
|
1204
|
+
@mixin hook-lightbox-caption(){}
|
|
1169
1205
|
@mixin hook-lightbox-misc(){}
|
|
1170
1206
|
@mixin hook-link-muted(){}
|
|
1171
1207
|
@mixin hook-link-muted-hover(){}
|
|
@@ -1673,10 +1709,10 @@
|
|
|
1673
1709
|
@mixin hook-search-default-input-focus(){ border-color: $search-default-focus-border; }
|
|
1674
1710
|
@mixin hook-search-navbar-input(){ border: $search-navbar-border-width solid $search-navbar-border; }
|
|
1675
1711
|
@mixin hook-search-navbar-input-focus(){ border-color: $search-navbar-focus-border; }
|
|
1676
|
-
@mixin hook-search-medium-input(){}
|
|
1677
|
-
@mixin hook-search-medium-input-focus(){}
|
|
1678
|
-
@mixin hook-search-large-input(){}
|
|
1679
|
-
@mixin hook-search-large-input-focus(){}
|
|
1712
|
+
@mixin hook-search-medium-input(){ border: $search-medium-border-width solid $search-medium-border; }
|
|
1713
|
+
@mixin hook-search-medium-input-focus(){ border-color: $search-medium-focus-border; }
|
|
1714
|
+
@mixin hook-search-large-input(){ border: $search-large-border-width solid $search-large-border; }
|
|
1715
|
+
@mixin hook-search-large-input-focus(){ border-color: $search-large-focus-border; }
|
|
1680
1716
|
@mixin hook-search-toggle(){}
|
|
1681
1717
|
@mixin hook-search-toggle-hover(){}
|
|
1682
1718
|
@mixin hook-search-misc(){}
|
|
@@ -1684,9 +1720,9 @@
|
|
|
1684
1720
|
@mixin hook-inverse-search-default-input-focus(){}
|
|
1685
1721
|
@mixin hook-inverse-search-navbar-input(){ border-color: $inverse-global-border; }
|
|
1686
1722
|
@mixin hook-inverse-search-navbar-input-focus(){}
|
|
1687
|
-
@mixin hook-inverse-search-medium-input(){}
|
|
1723
|
+
@mixin hook-inverse-search-medium-input(){ border-color: $inverse-global-border; }
|
|
1688
1724
|
@mixin hook-inverse-search-medium-input-focus(){}
|
|
1689
|
-
@mixin hook-inverse-search-large-input(){}
|
|
1725
|
+
@mixin hook-inverse-search-large-input(){ border-color: $inverse-global-border; }
|
|
1690
1726
|
@mixin hook-inverse-search-large-input-focus(){}
|
|
1691
1727
|
@mixin hook-inverse-search-toggle(){}
|
|
1692
1728
|
@mixin hook-inverse-search-toggle-hover(){}
|
|
@@ -1737,6 +1773,7 @@
|
|
|
1737
1773
|
}
|
|
1738
1774
|
|
|
1739
1775
|
.uk-search-medium .uk-search-input:focus {
|
|
1776
|
+
background-color: $inverse-search-medium-focus-background;
|
|
1740
1777
|
@if(mixin-exists(hook-inverse-search-medium-input-focus)) {@include hook-inverse-search-medium-input-focus();}
|
|
1741
1778
|
}
|
|
1742
1779
|
|
|
@@ -1746,6 +1783,7 @@
|
|
|
1746
1783
|
}
|
|
1747
1784
|
|
|
1748
1785
|
.uk-search-large .uk-search-input:focus {
|
|
1786
|
+
background-color: $inverse-search-large-focus-background;
|
|
1749
1787
|
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1750
1788
|
}
|
|
1751
1789
|
|
|
@@ -2211,6 +2249,7 @@
|
|
|
2211
2249
|
@include hook-inverse-component-countdown();
|
|
2212
2250
|
@include hook-inverse-component-divider();
|
|
2213
2251
|
@include hook-inverse-component-dotnav();
|
|
2252
|
+
@include hook-inverse-component-form-range();
|
|
2214
2253
|
@include hook-inverse-component-form();
|
|
2215
2254
|
@include hook-inverse-component-grid();
|
|
2216
2255
|
@include hook-inverse-component-heading();
|
package/src/scss/mixins.scss
CHANGED
|
@@ -593,6 +593,47 @@
|
|
|
593
593
|
@mixin hook-form-range-track-focus(){}
|
|
594
594
|
@mixin hook-form-range-thumb(){}
|
|
595
595
|
@mixin hook-form-range-misc(){}
|
|
596
|
+
@mixin hook-inverse-form-range-track(){}
|
|
597
|
+
@mixin hook-inverse-form-range-track-focus(){}
|
|
598
|
+
@mixin hook-inverse-form-range-thumb(){}
|
|
599
|
+
@mixin hook-inverse-component-form-range(){
|
|
600
|
+
|
|
601
|
+
/* Webkit */
|
|
602
|
+
.uk-range::-webkit-slider-runnable-track {
|
|
603
|
+
background: $inverse-form-range-track-background;
|
|
604
|
+
@if(mixin-exists(hook-inverse-form-range-track)) {@include hook-inverse-form-range-track();}
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.uk-range:focus::-webkit-slider-runnable-track,
|
|
608
|
+
.uk-range:active::-webkit-slider-runnable-track {
|
|
609
|
+
background: $inverse-form-range-track-focus-background;
|
|
610
|
+
@if(mixin-exists(hook-inverse-form-range-track-focus)) {@include hook-inverse-form-range-track-focus();}
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
/* Firefox */
|
|
614
|
+
.uk-range::-moz-range-track {
|
|
615
|
+
background: $inverse-form-range-track-background;
|
|
616
|
+
@if(mixin-exists(hook-inverse-form-range-track)) {@include hook-inverse-form-range-track();}
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.uk-range:focus::-moz-range-track {
|
|
620
|
+
background: $inverse-form-range-track-focus-background;
|
|
621
|
+
@if(mixin-exists(hook-inverse-form-range-track-focus)) {@include hook-inverse-form-range-track-focus();}
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
/* Webkit */
|
|
625
|
+
.uk-range::-webkit-slider-thumb {
|
|
626
|
+
background: $inverse-form-range-thumb-background;
|
|
627
|
+
@if(mixin-exists(hook-inverse-form-range-thumb)) {@include hook-inverse-form-range-thumb();}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/* Firefox */
|
|
631
|
+
.uk-range::-moz-range-thumb {
|
|
632
|
+
background: $inverse-form-range-thumb-background;
|
|
633
|
+
@if(mixin-exists(hook-inverse-form-range-thumb)) {@include hook-inverse-form-range-thumb();}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
}
|
|
596
637
|
@mixin hook-form(){}
|
|
597
638
|
@mixin hook-form-single-line(){}
|
|
598
639
|
@mixin hook-form-multi-line(){}
|
|
@@ -910,12 +951,7 @@
|
|
|
910
951
|
}
|
|
911
952
|
@mixin hook-lightbox(){}
|
|
912
953
|
@mixin hook-lightbox-item(){}
|
|
913
|
-
@mixin hook-lightbox-
|
|
914
|
-
@mixin hook-lightbox-toolbar-icon(){}
|
|
915
|
-
@mixin hook-lightbox-toolbar-icon-hover(){}
|
|
916
|
-
@mixin hook-lightbox-button(){}
|
|
917
|
-
@mixin hook-lightbox-button-hover(){}
|
|
918
|
-
@mixin hook-lightbox-button-active(){}
|
|
954
|
+
@mixin hook-lightbox-caption(){}
|
|
919
955
|
@mixin hook-lightbox-misc(){}
|
|
920
956
|
@mixin hook-link-muted(){}
|
|
921
957
|
@mixin hook-link-muted-hover(){}
|
|
@@ -1420,6 +1456,7 @@
|
|
|
1420
1456
|
}
|
|
1421
1457
|
|
|
1422
1458
|
.uk-search-medium .uk-search-input:focus {
|
|
1459
|
+
background-color: $inverse-search-medium-focus-background;
|
|
1423
1460
|
@if(mixin-exists(hook-inverse-search-medium-input-focus)) {@include hook-inverse-search-medium-input-focus();}
|
|
1424
1461
|
}
|
|
1425
1462
|
|
|
@@ -1429,6 +1466,7 @@
|
|
|
1429
1466
|
}
|
|
1430
1467
|
|
|
1431
1468
|
.uk-search-large .uk-search-input:focus {
|
|
1469
|
+
background-color: $inverse-search-large-focus-background;
|
|
1432
1470
|
@if(mixin-exists(hook-inverse-search-large-input-focus)) {@include hook-inverse-search-large-input-focus();}
|
|
1433
1471
|
}
|
|
1434
1472
|
|
|
@@ -1813,6 +1851,7 @@
|
|
|
1813
1851
|
@include hook-inverse-component-countdown();
|
|
1814
1852
|
@include hook-inverse-component-divider();
|
|
1815
1853
|
@include hook-inverse-component-dotnav();
|
|
1854
|
+
@include hook-inverse-component-form-range();
|
|
1816
1855
|
@include hook-inverse-component-form();
|
|
1817
1856
|
@include hook-inverse-component-grid();
|
|
1818
1857
|
@include hook-inverse-component-heading();
|