uikit 3.25.17-dev.80dfe87 → 3.25.17-dev.8c70e44
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 +33 -0
- package/build/prefix.js +1 -1
- package/build/publishDev.js +1 -1
- package/build/release.js +2 -2
- package/build/scope.js +1 -1
- package/build/scss.js +1 -1
- package/dist/css/uikit-core-rtl.css +892 -802
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +892 -802
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +893 -803
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +893 -803
- 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 +133 -132
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +134 -133
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/marquee.js +179 -0
- package/dist/js/components/marquee.min.js +1 -0
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +8 -12
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +8 -12
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +41 -25
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +8 -12
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +71 -102
- 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 +19 -19
- 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 +754 -262
- 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 +629 -374
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/js/api/component.js +2 -3
- package/src/js/api/observables.js +2 -4
- package/src/js/api/options.js +6 -3
- package/src/js/api/props.js +1 -4
- package/src/js/api/state.js +7 -8
- package/src/js/components/index.js +1 -0
- package/src/js/components/internal/lightbox-animations.js +7 -26
- package/src/js/components/internal/slideshow-animations.js +15 -62
- package/src/js/components/lightbox-panel.js +121 -96
- package/src/js/components/lightbox.js +5 -8
- package/src/js/components/marquee.js +123 -0
- package/src/js/components/tooltip.js +4 -2
- package/src/js/core/accordion.js +78 -29
- package/src/js/core/drop.js +5 -4
- package/src/js/core/dropnav.js +3 -3
- package/src/js/core/grid.js +5 -19
- package/src/js/core/height-match.js +1 -2
- package/src/js/core/margin.js +3 -0
- package/src/js/core/overflow-fade.js +5 -5
- package/src/js/core/sticky.js +1 -1
- package/src/js/core/switcher.js +24 -44
- package/src/js/core/video.js +172 -15
- package/src/js/mixin/connect.js +57 -0
- package/src/js/mixin/internal/slideshow-animations.js +5 -13
- package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
- package/src/js/mixin/modal.js +4 -3
- package/src/js/mixin/parallax.js +1 -4
- package/src/js/mixin/position.js +1 -1
- package/src/js/mixin/scroll-driven.js +57 -0
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider-parallax.js +9 -38
- package/src/js/mixin/togglable.js +13 -14
- package/src/js/util/attr.js +7 -7
- package/src/js/util/class.js +1 -1
- package/src/js/util/dom.js +3 -4
- package/src/js/util/lang.js +1 -1
- package/src/js/util/player.js +4 -4
- package/src/js/util/style.js +10 -15
- package/src/js/util/viewport.js +22 -25
- package/src/less/components/_import.less +6 -1
- package/src/less/components/base.less +1 -1
- package/src/less/components/button.less +1 -1
- package/src/less/components/dropcap.less +71 -0
- package/src/less/components/floating-shadow.less +65 -0
- package/src/less/components/form.less +5 -5
- package/src/less/components/grid.less +57 -64
- package/src/less/components/logo.less +94 -0
- package/src/less/components/margin.less +81 -81
- package/src/less/components/marquee.less +133 -0
- package/src/less/components/nav.less +1 -1
- package/src/less/components/padding.less +9 -9
- package/src/less/components/utility.less +0 -157
- package/src/less/theme/_import.less +5 -1
- package/src/less/theme/dropcap.less +29 -0
- package/src/less/theme/floating-shadow.less +20 -0
- package/src/less/theme/logo.less +29 -0
- package/src/less/theme/marquee.less +14 -0
- package/src/less/theme/utility.less +0 -32
- package/src/scss/components/_import.scss +6 -1
- package/src/scss/components/base.scss +1 -1
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/dropcap.scss +63 -0
- package/src/scss/components/floating-shadow.scss +62 -0
- package/src/scss/components/form.scss +5 -5
- package/src/scss/components/grid.scss +57 -64
- package/src/scss/components/logo.scss +75 -0
- package/src/scss/components/margin.scss +81 -81
- package/src/scss/components/marquee.scss +136 -0
- package/src/scss/components/nav.scss +1 -1
- package/src/scss/components/padding.scss +9 -9
- package/src/scss/components/utility.scss +0 -128
- package/src/scss/mixins-theme.scss +41 -32
- package/src/scss/mixins.scss +38 -29
- package/src/scss/variables-theme.scss +14 -9
- package/src/scss/variables.scss +14 -9
- package/tests/accordion.html +77 -10
- package/tests/alert.html +1 -1
- package/tests/align.html +5 -5
- package/tests/animation.html +4 -4
- package/tests/article.html +7 -7
- package/tests/background.html +2 -2
- package/tests/badge.html +1 -1
- package/tests/base.html +2 -2
- package/tests/button.html +1 -1
- package/tests/card.html +15 -15
- package/tests/close.html +2 -2
- package/tests/comment.html +9 -9
- package/tests/container.html +2 -2
- package/tests/countdown.html +21 -21
- package/tests/cover.html +3 -3
- package/tests/description-list.html +1 -1
- package/tests/divider.html +3 -3
- package/tests/dotnav.html +1 -1
- package/tests/drop.html +7 -7
- package/tests/dropbar.html +5 -5
- package/tests/dropcap.html +26 -0
- package/tests/dropdown.html +1 -1
- package/tests/dropnav.html +18 -18
- package/tests/filter.html +3 -3
- package/tests/floating-shadow.html +44 -0
- package/tests/form.html +14 -14
- package/tests/grid.html +41 -47
- package/tests/heading.html +2 -2
- package/tests/height-viewport.html +4 -4
- package/tests/height.html +5 -5
- package/tests/icon.html +8 -8
- package/tests/image.html +6 -6
- package/tests/index.html +13 -13
- package/tests/js/index.js +1 -1
- package/tests/leader.html +5 -5
- package/tests/lightbox.html +6 -6
- package/tests/link.html +1 -1
- package/tests/list.html +4 -4
- package/tests/logo.html +84 -0
- package/tests/margin.html +7 -7
- package/tests/marker.html +3 -3
- package/tests/marquee.html +617 -0
- package/tests/modal.html +3 -3
- package/tests/nav.html +5 -5
- package/tests/navbar.html +27 -27
- package/tests/notification.html +2 -2
- package/tests/offcanvas.html +12 -12
- package/tests/overlay.html +3 -3
- package/tests/padding.html +1 -1
- package/tests/pagination.html +3 -3
- package/tests/parallax.html +1 -1
- package/tests/position.html +6 -6
- package/tests/scrollspy.html +12 -12
- package/tests/search.html +5 -5
- package/tests/section.html +17 -17
- package/tests/slidenav.html +3 -3
- package/tests/slider.html +5 -5
- package/tests/slideshow.html +3 -3
- package/tests/sortable.html +15 -15
- package/tests/sticky-navbar.html +4 -4
- package/tests/sticky-parallax.html +3 -3
- package/tests/sticky.html +3 -3
- package/tests/svg.html +3 -2
- package/tests/switcher.html +6 -6
- package/tests/tab.html +4 -4
- package/tests/text.html +3 -3
- package/tests/tile.html +4 -4
- package/tests/toggle.html +1 -1
- package/tests/tooltip.html +3 -3
- package/tests/totop.html +2 -2
- package/tests/transition.html +1 -1
- package/tests/upload.html +5 -5
- package/tests/utility.html +16 -116
- package/tests/video.html +224 -24
- package/tests/visibility.html +4 -4
- package/tests/width.html +12 -12
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
@use "sass:meta";
|
|
2
|
+
@use "sass:string";
|
|
3
|
+
|
|
4
|
+
// Name: Marquee
|
|
5
|
+
// Description: Component to create scrolling areas
|
|
6
|
+
//
|
|
7
|
+
// Component: `uk-marquee`
|
|
8
|
+
//
|
|
9
|
+
// Sub-objects: `uk-marquee-items`
|
|
10
|
+
//
|
|
11
|
+
// Modifiers: `uk-marquee-vertical`
|
|
12
|
+
// `uk-marquee-fade`
|
|
13
|
+
//
|
|
14
|
+
// ========================================================================
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
// Variables
|
|
18
|
+
// ========================================================================
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/* ========================================================================
|
|
22
|
+
Component: Marquee
|
|
23
|
+
========================================================================== */
|
|
24
|
+
|
|
25
|
+
/*
|
|
26
|
+
* 1. Fallback for Safari 15 and older
|
|
27
|
+
* 2. Clip child elements
|
|
28
|
+
* `clip` prevents accidental scrolling through elements in slide getting focused
|
|
29
|
+
* `clip` also works in only one direction
|
|
30
|
+
* 3. Prevent tab highlighting on iOS.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
.uk-marquee {
|
|
34
|
+
/* 1 */
|
|
35
|
+
overflow-x: hidden;
|
|
36
|
+
/* 2 */
|
|
37
|
+
overflow-x: clip;
|
|
38
|
+
/* 3 */
|
|
39
|
+
-webkit-tap-highlight-color: transparent;
|
|
40
|
+
@if(meta.mixin-exists(hook-marquee)) {@include hook-marquee();}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.uk-marquee-vertical {
|
|
44
|
+
overflow: visible;
|
|
45
|
+
overflow-y: hidden;
|
|
46
|
+
overflow-y: clip;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/*
|
|
50
|
+
* Fade out
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
.uk-marquee-fade {
|
|
54
|
+
--uk-overflow-fade-size: 100px;
|
|
55
|
+
--uk-overflow-fade-direction: right;
|
|
56
|
+
}
|
|
57
|
+
.uk-marquee-fade.uk-marquee-vertical { --uk-overflow-fade-direction: bottom; }
|
|
58
|
+
|
|
59
|
+
.uk-marquee-fade {
|
|
60
|
+
mask-image: linear-gradient(
|
|
61
|
+
to var(--uk-overflow-fade-direction),
|
|
62
|
+
rgba(0, 0, 0, var(--uk-overflow-fade-start-opacity)),
|
|
63
|
+
#000 var(--uk-overflow-fade-size),
|
|
64
|
+
#000 string.unquote('calc(100% - var(--uk-overflow-fade-size))'),
|
|
65
|
+
rgba(0, 0, 0, var(--uk-overflow-fade-end-opacity))
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
/* Items
|
|
71
|
+
========================================================================== */
|
|
72
|
+
|
|
73
|
+
/*
|
|
74
|
+
* 1. Create a containing block.
|
|
75
|
+
*/
|
|
76
|
+
|
|
77
|
+
.uk-marquee-items {
|
|
78
|
+
/* 1 */
|
|
79
|
+
position: relative;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/*
|
|
83
|
+
* 1. Reset list style without interfering with grid
|
|
84
|
+
* 2. Prevent displaying the callout information on iOS.
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
.uk-marquee:not(.uk-marquee-vertical) .uk-marquee-items:not(.uk-grid) {
|
|
88
|
+
display: flex;
|
|
89
|
+
/* 1 */
|
|
90
|
+
margin: 0;
|
|
91
|
+
padding: 0;
|
|
92
|
+
list-style: none;
|
|
93
|
+
/* 2 */
|
|
94
|
+
-webkit-touch-callout: none;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.uk-marquee:not(.uk-marquee-vertical) .uk-marquee-items.uk-grid { flex-wrap: nowrap; }
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
/* Item
|
|
101
|
+
========================================================================== */
|
|
102
|
+
|
|
103
|
+
/*
|
|
104
|
+
* 1. Let items take content dimensions (0 0 auto)
|
|
105
|
+
* `max-width` needed to keep image responsiveness and prevent content overflow
|
|
106
|
+
* 2. Create position context
|
|
107
|
+
* 3. Create animation along offset-path
|
|
108
|
+
*/
|
|
109
|
+
|
|
110
|
+
.uk-marquee-items > * {
|
|
111
|
+
/* 1 */
|
|
112
|
+
flex: none !important;
|
|
113
|
+
box-sizing: border-box;
|
|
114
|
+
max-width: 100%;
|
|
115
|
+
/* 2 */
|
|
116
|
+
position: relative;
|
|
117
|
+
/* 3 */
|
|
118
|
+
offset-anchor: 0 0;
|
|
119
|
+
offset-rotate: 0deg;
|
|
120
|
+
offset-path: path(var(--uk-marquee-path));
|
|
121
|
+
animation: var(--uk-marquee-duration) linear calc(var(--uk-marquee-start) / -100 * var(--uk-marquee-duration)) infinite var(--uk-marquee-direction) uk-marquee;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
@keyframes uk-marquee {
|
|
125
|
+
0% { offset-distance: 0; }
|
|
126
|
+
100% { offset-distance: 100%; }
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
// Hooks
|
|
131
|
+
// ========================================================================
|
|
132
|
+
|
|
133
|
+
@if(meta.mixin-exists(hook-marquee-misc)) {@include hook-marquee-misc();}
|
|
134
|
+
|
|
135
|
+
// @mixin hook-marquee(){}
|
|
136
|
+
// @mixin hook-marquee-misc(){}
|
|
@@ -53,20 +53,20 @@
|
|
|
53
53
|
/* Remove
|
|
54
54
|
========================================================================== */
|
|
55
55
|
|
|
56
|
-
.uk-padding-remove { padding: 0
|
|
57
|
-
.uk-padding-remove-top { padding-top: 0
|
|
58
|
-
.uk-padding-remove-bottom { padding-bottom: 0
|
|
59
|
-
.uk-padding-remove-left { padding-left: 0
|
|
60
|
-
.uk-padding-remove-right { padding-right: 0
|
|
56
|
+
.uk-padding-remove { padding: 0; }
|
|
57
|
+
.uk-padding-remove-top { padding-top: 0; }
|
|
58
|
+
.uk-padding-remove-bottom { padding-bottom: 0; }
|
|
59
|
+
.uk-padding-remove-left { padding-left: 0; }
|
|
60
|
+
.uk-padding-remove-right { padding-right: 0; }
|
|
61
61
|
|
|
62
62
|
.uk-padding-remove-vertical {
|
|
63
|
-
padding-top: 0
|
|
64
|
-
padding-bottom: 0
|
|
63
|
+
padding-top: 0;
|
|
64
|
+
padding-bottom: 0;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.uk-padding-remove-horizontal {
|
|
68
|
-
padding-left: 0
|
|
69
|
-
padding-right: 0
|
|
68
|
+
padding-left: 0;
|
|
69
|
+
padding-right: 0;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
|
|
@@ -16,9 +16,6 @@
|
|
|
16
16
|
// `uk-object-*`
|
|
17
17
|
// `uk-border-*`
|
|
18
18
|
// `uk-box-shadow-*`
|
|
19
|
-
// `uk-box-shadow-bottom`
|
|
20
|
-
// `uk-dropcap`
|
|
21
|
-
// `uk-logo`
|
|
22
19
|
// `uk-blend-*`
|
|
23
20
|
// `uk-transform-*`
|
|
24
21
|
// `uk-transform-origin-*`
|
|
@@ -41,8 +38,6 @@
|
|
|
41
38
|
|
|
42
39
|
|
|
43
40
|
|
|
44
|
-
|
|
45
|
-
|
|
46
41
|
/* ========================================================================
|
|
47
42
|
Component: Utility
|
|
48
43
|
========================================================================== */
|
|
@@ -351,114 +346,6 @@
|
|
|
351
346
|
.uk-box-shadow-hover-xlarge:hover { box-shadow: $global-xlarge-box-shadow; }
|
|
352
347
|
|
|
353
348
|
|
|
354
|
-
/* Box-shadow bottom
|
|
355
|
-
========================================================================== */
|
|
356
|
-
|
|
357
|
-
/*
|
|
358
|
-
* 1. Set position.
|
|
359
|
-
* 2. Set style
|
|
360
|
-
* 3. Fix shadow being clipped in Safari if container is animated
|
|
361
|
-
*/
|
|
362
|
-
|
|
363
|
-
@supports (filter: blur(0)) {
|
|
364
|
-
|
|
365
|
-
.uk-box-shadow-bottom {
|
|
366
|
-
display: inline-block;
|
|
367
|
-
position: relative;
|
|
368
|
-
z-index: 0;
|
|
369
|
-
max-width: 100%;
|
|
370
|
-
vertical-align: middle;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.uk-box-shadow-bottom::after {
|
|
374
|
-
content: "";
|
|
375
|
-
/* 1 */
|
|
376
|
-
position: absolute;
|
|
377
|
-
bottom: $box-shadow-bottom-bottom;
|
|
378
|
-
left: 0;
|
|
379
|
-
right: 0;
|
|
380
|
-
z-index: -1;
|
|
381
|
-
/* 2 */
|
|
382
|
-
height: $box-shadow-bottom-height;
|
|
383
|
-
border-radius: $box-shadow-bottom-border-radius;
|
|
384
|
-
background: $box-shadow-bottom-background;
|
|
385
|
-
filter: blur($box-shadow-bottom-blur);
|
|
386
|
-
/* 3 */
|
|
387
|
-
will-change: filter;
|
|
388
|
-
@if(meta.mixin-exists(hook-box-shadow-bottom)) {@include hook-box-shadow-bottom();}
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
/* Drop cap
|
|
395
|
-
========================================================================== */
|
|
396
|
-
|
|
397
|
-
/*
|
|
398
|
-
* 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
|
|
399
|
-
* https://bugzilla.mozilla.org/show_bug.cgi?id=214004
|
|
400
|
-
* 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
|
|
401
|
-
* https://bugzilla.mozilla.org/show_bug.cgi?id=317933
|
|
402
|
-
*/
|
|
403
|
-
|
|
404
|
-
.uk-dropcap::first-letter,
|
|
405
|
-
/* 1 */
|
|
406
|
-
.uk-dropcap > p:first-of-type::first-letter {
|
|
407
|
-
display: block;
|
|
408
|
-
margin-right: $dropcap-margin-right;
|
|
409
|
-
float: left;
|
|
410
|
-
font-size: $dropcap-font-size;
|
|
411
|
-
line-height: $dropcap-line-height;
|
|
412
|
-
@if(meta.mixin-exists(hook-dropcap)) {@include hook-dropcap();}
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
/* 2 */
|
|
416
|
-
@-moz-document url-prefix() {
|
|
417
|
-
|
|
418
|
-
.uk-dropcap::first-letter,
|
|
419
|
-
.uk-dropcap > p:first-of-type::first-letter { margin-top: 1.1%; }
|
|
420
|
-
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
/* Logo
|
|
425
|
-
========================================================================== */
|
|
426
|
-
|
|
427
|
-
/*
|
|
428
|
-
* 1. Style
|
|
429
|
-
* 2. Required for `a`
|
|
430
|
-
* 3. Behave like image but can be overridden through flex utility classes
|
|
431
|
-
*/
|
|
432
|
-
|
|
433
|
-
.uk-logo {
|
|
434
|
-
/* 1 */
|
|
435
|
-
font-size: $logo-font-size;
|
|
436
|
-
font-family: $logo-font-family;
|
|
437
|
-
color: $logo-color;
|
|
438
|
-
/* 2 */
|
|
439
|
-
text-decoration: none;
|
|
440
|
-
@if(meta.mixin-exists(hook-logo)) {@include hook-logo();}
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
/* 3 */
|
|
444
|
-
:where(.uk-logo) {
|
|
445
|
-
display: inline-block;
|
|
446
|
-
vertical-align: middle;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
/* Hover */
|
|
450
|
-
.uk-logo:hover {
|
|
451
|
-
color: $logo-hover-color;
|
|
452
|
-
/* 1 */
|
|
453
|
-
text-decoration: none;
|
|
454
|
-
@if(meta.mixin-exists(hook-logo-hover)) {@include hook-logo-hover();}
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.uk-logo :where(img, svg, video) { display: block; }
|
|
458
|
-
|
|
459
|
-
.uk-logo-inverse { display: none; }
|
|
460
|
-
|
|
461
|
-
|
|
462
349
|
/* Disabled State
|
|
463
350
|
========================================================================== */
|
|
464
351
|
|
|
@@ -536,19 +423,4 @@
|
|
|
536
423
|
@if(meta.mixin-exists(hook-utility-misc)) {@include hook-utility-misc();}
|
|
537
424
|
|
|
538
425
|
// @mixin hook-panel-scrollable(){}
|
|
539
|
-
// @mixin hook-box-shadow-bottom(){}
|
|
540
|
-
// @mixin hook-dropcap(){}
|
|
541
|
-
// @mixin hook-logo(){}
|
|
542
|
-
// @mixin hook-logo-hover(){}
|
|
543
426
|
// @mixin hook-utility-misc(){}
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
// Inverse
|
|
547
|
-
// ========================================================================
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
// @mixin hook-inverse-dropcap(){}
|
|
553
|
-
// @mixin hook-inverse-logo(){}
|
|
554
|
-
// @mixin hook-inverse-logo-hover(){}
|
|
@@ -824,6 +824,20 @@
|
|
|
824
824
|
@mixin hook-dropbar-left(){ box-shadow: $dropbar-left-box-shadow; }
|
|
825
825
|
@mixin hook-dropbar-right(){ box-shadow: $dropbar-right-box-shadow; }
|
|
826
826
|
@mixin hook-dropbar-misc(){}
|
|
827
|
+
@mixin hook-dropcap(){
|
|
828
|
+
// Prevent line wrap
|
|
829
|
+
margin-bottom: -2px;
|
|
830
|
+
}
|
|
831
|
+
@mixin hook-dropcap-misc(){}
|
|
832
|
+
@mixin hook-inverse-dropcap(){}
|
|
833
|
+
@mixin hook-inverse-component-dropcap(){
|
|
834
|
+
|
|
835
|
+
.uk-dropcap::first-letter,
|
|
836
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
837
|
+
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
}
|
|
827
841
|
@mixin hook-dropdown(){ box-shadow: $dropdown-box-shadow; }
|
|
828
842
|
@mixin hook-dropdown-dropbar(){ box-shadow: none; }
|
|
829
843
|
@mixin hook-dropdown-dropbar-large(){}
|
|
@@ -836,6 +850,8 @@
|
|
|
836
850
|
@mixin hook-dropdown-misc(){}
|
|
837
851
|
@mixin hook-dropnav-misc(){}
|
|
838
852
|
@mixin hook-flex-misc(){}
|
|
853
|
+
@mixin hook-floating-shadow(){}
|
|
854
|
+
@mixin hook-floating-shadow-misc(){}
|
|
839
855
|
@mixin hook-form-range(){}
|
|
840
856
|
@mixin hook-form-range-track(){ border-radius: $form-range-track-border-radius; }
|
|
841
857
|
@mixin hook-form-range-track-focus(){}
|
|
@@ -1325,6 +1341,27 @@
|
|
|
1325
1341
|
|
|
1326
1342
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1327
1343
|
|
|
1344
|
+
}
|
|
1345
|
+
@mixin hook-logo(){}
|
|
1346
|
+
@mixin hook-logo-hover(){}
|
|
1347
|
+
@mixin hook-logo-misc(){}
|
|
1348
|
+
@mixin hook-inverse-logo(){}
|
|
1349
|
+
@mixin hook-inverse-logo-hover(){}
|
|
1350
|
+
@mixin hook-inverse-component-logo(){
|
|
1351
|
+
|
|
1352
|
+
.uk-logo {
|
|
1353
|
+
color: $inverse-logo-color;
|
|
1354
|
+
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.uk-logo:hover {
|
|
1358
|
+
color: $inverse-logo-hover-color;
|
|
1359
|
+
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]) { display: none; }
|
|
1363
|
+
.uk-logo-inverse:not([uk-svg]) { display: block; }
|
|
1364
|
+
|
|
1328
1365
|
}
|
|
1329
1366
|
@mixin hook-margin-misc(){}
|
|
1330
1367
|
@mixin hook-marker(){
|
|
@@ -1348,6 +1385,8 @@
|
|
|
1348
1385
|
}
|
|
1349
1386
|
|
|
1350
1387
|
}
|
|
1388
|
+
@mixin hook-marquee(){}
|
|
1389
|
+
@mixin hook-marquee-misc(){}
|
|
1351
1390
|
@mixin hook-modal(){}
|
|
1352
1391
|
@mixin hook-modal-dialog(){}
|
|
1353
1392
|
@mixin hook-modal-full(){}
|
|
@@ -2241,38 +2280,7 @@
|
|
|
2241
2280
|
}
|
|
2242
2281
|
@mixin hook-transition-misc(){}
|
|
2243
2282
|
@mixin hook-panel-scrollable(){}
|
|
2244
|
-
@mixin hook-box-shadow-bottom(){}
|
|
2245
|
-
@mixin hook-dropcap(){
|
|
2246
|
-
// Prevent line wrap
|
|
2247
|
-
margin-bottom: -2px;
|
|
2248
|
-
}
|
|
2249
|
-
@mixin hook-logo(){}
|
|
2250
|
-
@mixin hook-logo-hover(){}
|
|
2251
2283
|
@mixin hook-utility-misc(){}
|
|
2252
|
-
@mixin hook-inverse-dropcap(){}
|
|
2253
|
-
@mixin hook-inverse-logo(){}
|
|
2254
|
-
@mixin hook-inverse-logo-hover(){}
|
|
2255
|
-
@mixin hook-inverse-component-utility(){
|
|
2256
|
-
|
|
2257
|
-
.uk-dropcap::first-letter,
|
|
2258
|
-
.uk-dropcap p:first-of-type::first-letter {
|
|
2259
|
-
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
2260
|
-
}
|
|
2261
|
-
|
|
2262
|
-
.uk-logo {
|
|
2263
|
-
color: $inverse-logo-color;
|
|
2264
|
-
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
2265
|
-
}
|
|
2266
|
-
|
|
2267
|
-
.uk-logo:hover {
|
|
2268
|
-
color: $inverse-logo-hover-color;
|
|
2269
|
-
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
2270
|
-
}
|
|
2271
|
-
|
|
2272
|
-
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) { display: none; }
|
|
2273
|
-
.uk-logo-inverse { display: block; }
|
|
2274
|
-
|
|
2275
|
-
}
|
|
2276
2284
|
@mixin hook-visibility-misc(){}
|
|
2277
2285
|
@mixin hook-width-misc(){}
|
|
2278
2286
|
@mixin hook-inverse() {
|
|
@@ -2288,6 +2296,7 @@
|
|
|
2288
2296
|
@include hook-inverse-component-countdown();
|
|
2289
2297
|
@include hook-inverse-component-divider();
|
|
2290
2298
|
@include hook-inverse-component-dotnav();
|
|
2299
|
+
@include hook-inverse-component-dropcap();
|
|
2291
2300
|
@include hook-inverse-component-form-range();
|
|
2292
2301
|
@include hook-inverse-component-form();
|
|
2293
2302
|
@include hook-inverse-component-grid();
|
|
@@ -2298,6 +2307,7 @@
|
|
|
2298
2307
|
@include hook-inverse-component-leader();
|
|
2299
2308
|
@include hook-inverse-component-link();
|
|
2300
2309
|
@include hook-inverse-component-list();
|
|
2310
|
+
@include hook-inverse-component-logo();
|
|
2301
2311
|
@include hook-inverse-component-marker();
|
|
2302
2312
|
@include hook-inverse-component-nav();
|
|
2303
2313
|
@include hook-inverse-component-navbar();
|
|
@@ -2310,5 +2320,4 @@
|
|
|
2310
2320
|
@include hook-inverse-component-text();
|
|
2311
2321
|
@include hook-inverse-component-thumbnav();
|
|
2312
2322
|
@include hook-inverse-component-totop();
|
|
2313
|
-
@include hook-inverse-component-utility();
|
|
2314
2323
|
}
|
package/src/scss/mixins.scss
CHANGED
|
@@ -604,6 +604,17 @@
|
|
|
604
604
|
@mixin hook-dropbar-left(){}
|
|
605
605
|
@mixin hook-dropbar-right(){}
|
|
606
606
|
@mixin hook-dropbar-misc(){}
|
|
607
|
+
@mixin hook-dropcap(){}
|
|
608
|
+
@mixin hook-dropcap-misc(){}
|
|
609
|
+
@mixin hook-inverse-dropcap(){}
|
|
610
|
+
@mixin hook-inverse-component-dropcap(){
|
|
611
|
+
|
|
612
|
+
.uk-dropcap::first-letter,
|
|
613
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
614
|
+
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
}
|
|
607
618
|
@mixin hook-dropdown(){}
|
|
608
619
|
@mixin hook-dropdown-dropbar(){}
|
|
609
620
|
@mixin hook-dropdown-dropbar-large(){}
|
|
@@ -616,6 +627,8 @@
|
|
|
616
627
|
@mixin hook-dropdown-misc(){}
|
|
617
628
|
@mixin hook-dropnav-misc(){}
|
|
618
629
|
@mixin hook-flex-misc(){}
|
|
630
|
+
@mixin hook-floating-shadow(){}
|
|
631
|
+
@mixin hook-floating-shadow-misc(){}
|
|
619
632
|
@mixin hook-form-range(){}
|
|
620
633
|
@mixin hook-form-range-track(){}
|
|
621
634
|
@mixin hook-form-range-track-focus(){}
|
|
@@ -1064,6 +1077,27 @@
|
|
|
1064
1077
|
|
|
1065
1078
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1066
1079
|
|
|
1080
|
+
}
|
|
1081
|
+
@mixin hook-logo(){}
|
|
1082
|
+
@mixin hook-logo-hover(){}
|
|
1083
|
+
@mixin hook-logo-misc(){}
|
|
1084
|
+
@mixin hook-inverse-logo(){}
|
|
1085
|
+
@mixin hook-inverse-logo-hover(){}
|
|
1086
|
+
@mixin hook-inverse-component-logo(){
|
|
1087
|
+
|
|
1088
|
+
.uk-logo {
|
|
1089
|
+
color: $inverse-logo-color;
|
|
1090
|
+
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.uk-logo:hover {
|
|
1094
|
+
color: $inverse-logo-hover-color;
|
|
1095
|
+
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]) { display: none; }
|
|
1099
|
+
.uk-logo-inverse:not([uk-svg]) { display: block; }
|
|
1100
|
+
|
|
1067
1101
|
}
|
|
1068
1102
|
@mixin hook-margin-misc(){}
|
|
1069
1103
|
@mixin hook-marker(){}
|
|
@@ -1085,6 +1119,8 @@
|
|
|
1085
1119
|
}
|
|
1086
1120
|
|
|
1087
1121
|
}
|
|
1122
|
+
@mixin hook-marquee(){}
|
|
1123
|
+
@mixin hook-marquee-misc(){}
|
|
1088
1124
|
@mixin hook-modal(){}
|
|
1089
1125
|
@mixin hook-modal-dialog(){}
|
|
1090
1126
|
@mixin hook-modal-full(){}
|
|
@@ -1849,35 +1885,7 @@
|
|
|
1849
1885
|
}
|
|
1850
1886
|
@mixin hook-transition-misc(){}
|
|
1851
1887
|
@mixin hook-panel-scrollable(){}
|
|
1852
|
-
@mixin hook-box-shadow-bottom(){}
|
|
1853
|
-
@mixin hook-dropcap(){}
|
|
1854
|
-
@mixin hook-logo(){}
|
|
1855
|
-
@mixin hook-logo-hover(){}
|
|
1856
1888
|
@mixin hook-utility-misc(){}
|
|
1857
|
-
@mixin hook-inverse-dropcap(){}
|
|
1858
|
-
@mixin hook-inverse-logo(){}
|
|
1859
|
-
@mixin hook-inverse-logo-hover(){}
|
|
1860
|
-
@mixin hook-inverse-component-utility(){
|
|
1861
|
-
|
|
1862
|
-
.uk-dropcap::first-letter,
|
|
1863
|
-
.uk-dropcap p:first-of-type::first-letter {
|
|
1864
|
-
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
.uk-logo {
|
|
1868
|
-
color: $inverse-logo-color;
|
|
1869
|
-
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
|
-
.uk-logo:hover {
|
|
1873
|
-
color: $inverse-logo-hover-color;
|
|
1874
|
-
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1875
|
-
}
|
|
1876
|
-
|
|
1877
|
-
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) { display: none; }
|
|
1878
|
-
.uk-logo-inverse { display: block; }
|
|
1879
|
-
|
|
1880
|
-
}
|
|
1881
1889
|
@mixin hook-visibility-misc(){}
|
|
1882
1890
|
@mixin hook-width-misc(){}
|
|
1883
1891
|
@mixin hook-inverse() {
|
|
@@ -1893,6 +1901,7 @@
|
|
|
1893
1901
|
@include hook-inverse-component-countdown();
|
|
1894
1902
|
@include hook-inverse-component-divider();
|
|
1895
1903
|
@include hook-inverse-component-dotnav();
|
|
1904
|
+
@include hook-inverse-component-dropcap();
|
|
1896
1905
|
@include hook-inverse-component-form-range();
|
|
1897
1906
|
@include hook-inverse-component-form();
|
|
1898
1907
|
@include hook-inverse-component-grid();
|
|
@@ -1903,6 +1912,7 @@
|
|
|
1903
1912
|
@include hook-inverse-component-leader();
|
|
1904
1913
|
@include hook-inverse-component-link();
|
|
1905
1914
|
@include hook-inverse-component-list();
|
|
1915
|
+
@include hook-inverse-component-logo();
|
|
1906
1916
|
@include hook-inverse-component-marker();
|
|
1907
1917
|
@include hook-inverse-component-nav();
|
|
1908
1918
|
@include hook-inverse-component-navbar();
|
|
@@ -1915,5 +1925,4 @@
|
|
|
1915
1925
|
@include hook-inverse-component-text();
|
|
1916
1926
|
@include hook-inverse-component-thumbnav();
|
|
1917
1927
|
@include hook-inverse-component-totop();
|
|
1918
|
-
@include hook-inverse-component-utility();
|
|
1919
1928
|
}
|
|
@@ -387,6 +387,9 @@ $dropbar-color-mode: dark !default;
|
|
|
387
387
|
$dropbar-focus-outline: $base-focus-outline !default;
|
|
388
388
|
$dropbar-large-padding-top: 40px !default;
|
|
389
389
|
$dropbar-large-padding-bottom: $dropbar-large-padding-top !default;
|
|
390
|
+
$dropcap-margin-right: 10px !default;
|
|
391
|
+
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
392
|
+
$dropcap-line-height: 1 !default;
|
|
390
393
|
$dropdown-margin: $global-small-margin !default;
|
|
391
394
|
$dropdown-viewport-margin: 15px !default;
|
|
392
395
|
$dropdown-min-width: 200px !default;
|
|
@@ -413,6 +416,11 @@ $dropdown-nav-divider-border: $global-border !default;
|
|
|
413
416
|
$dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
414
417
|
$dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
415
418
|
$dropnav-dropbar-z-index: $global-z-index - 20 !default;
|
|
419
|
+
$floating-shadow-height: 30px !default;
|
|
420
|
+
$floating-shadow-bottom: (-$floating-shadow-height) !default;
|
|
421
|
+
$floating-shadow-border-radius: 100% !default;
|
|
422
|
+
$floating-shadow-background: #444 !default;
|
|
423
|
+
$floating-shadow-blur: 20px !default;
|
|
416
424
|
$form-range-track-height: 3px !default;
|
|
417
425
|
$form-range-track-background: color.adjust($global-muted-background, $lightness: -5%) !default;
|
|
418
426
|
$form-range-track-focus-background: color.adjust($form-range-track-background, $lightness: -5%) !default;
|
|
@@ -655,6 +663,12 @@ $inverse-list-secondary-color: $inverse-global-primary-background !default;
|
|
|
655
663
|
$inverse-list-divider-border: $inverse-global-border !default;
|
|
656
664
|
$inverse-list-striped-background: $inverse-global-muted-background !default;
|
|
657
665
|
$inverse-list-bullet-icon-color: $inverse-global-color !default;
|
|
666
|
+
$logo-font-size: $global-large-font-size !default;
|
|
667
|
+
$logo-font-family: $global-font-family !default;
|
|
668
|
+
$logo-color: $global-emphasis-color !default;
|
|
669
|
+
$logo-hover-color: $global-emphasis-color !default;
|
|
670
|
+
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
671
|
+
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
658
672
|
$margin-margin: $global-margin !default;
|
|
659
673
|
$margin-xsmall-margin: 5px !default;
|
|
660
674
|
$margin-small-margin: $global-small-margin !default;
|
|
@@ -1163,16 +1177,7 @@ $box-shadow-bottom-bottom: (-$box-shadow-bottom-height) !default;
|
|
|
1163
1177
|
$box-shadow-bottom-border-radius: 100% !default;
|
|
1164
1178
|
$box-shadow-bottom-background: #444 !default;
|
|
1165
1179
|
$box-shadow-bottom-blur: 20px !default;
|
|
1166
|
-
$dropcap-margin-right: 10px !default;
|
|
1167
|
-
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
1168
|
-
$dropcap-line-height: 1 !default;
|
|
1169
|
-
$logo-font-size: $global-large-font-size !default;
|
|
1170
|
-
$logo-font-family: $global-font-family !default;
|
|
1171
|
-
$logo-color: $global-emphasis-color !default;
|
|
1172
|
-
$logo-hover-color: $global-emphasis-color !default;
|
|
1173
1180
|
$dragover-box-shadow: 0 0 20px rgba(100,100,100,0.3) !default;
|
|
1174
|
-
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
1175
|
-
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
1176
1181
|
$deprecated: false !default;
|
|
1177
1182
|
$breakpoint-small: 640px !default;
|
|
1178
1183
|
$breakpoint-medium: 960px !default;
|
package/src/scss/variables.scss
CHANGED
|
@@ -386,6 +386,9 @@ $dropbar-color-mode: dark !default;
|
|
|
386
386
|
$dropbar-focus-outline: $base-focus-outline !default;
|
|
387
387
|
$dropbar-large-padding-top: 40px !default;
|
|
388
388
|
$dropbar-large-padding-bottom: $dropbar-large-padding-top !default;
|
|
389
|
+
$dropcap-margin-right: 10px !default;
|
|
390
|
+
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
391
|
+
$dropcap-line-height: 1 !default;
|
|
389
392
|
$dropdown-margin: $global-small-margin !default;
|
|
390
393
|
$dropdown-viewport-margin: 15px !default;
|
|
391
394
|
$dropdown-min-width: 200px !default;
|
|
@@ -412,6 +415,11 @@ $dropdown-nav-divider-border: $global-border !default;
|
|
|
412
415
|
$dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
413
416
|
$dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
414
417
|
$dropnav-dropbar-z-index: $global-z-index - 20 !default;
|
|
418
|
+
$floating-shadow-height: 30px !default;
|
|
419
|
+
$floating-shadow-bottom: (-$floating-shadow-height) !default;
|
|
420
|
+
$floating-shadow-border-radius: 100% !default;
|
|
421
|
+
$floating-shadow-background: #444 !default;
|
|
422
|
+
$floating-shadow-blur: 20px !default;
|
|
415
423
|
$form-range-track-height: 3px !default;
|
|
416
424
|
$form-range-track-background: color.adjust($global-muted-background, $lightness: -5%) !default;
|
|
417
425
|
$form-range-track-focus-background: color.adjust($form-range-track-background, $lightness: -5%) !default;
|
|
@@ -653,6 +661,12 @@ $inverse-list-secondary-color: $inverse-global-primary-background !default;
|
|
|
653
661
|
$inverse-list-divider-border: $inverse-global-border !default;
|
|
654
662
|
$inverse-list-striped-background: $inverse-global-muted-background !default;
|
|
655
663
|
$inverse-list-bullet-icon-color: $inverse-global-color !default;
|
|
664
|
+
$logo-font-size: $global-large-font-size !default;
|
|
665
|
+
$logo-font-family: $global-font-family !default;
|
|
666
|
+
$logo-color: $global-emphasis-color !default;
|
|
667
|
+
$logo-hover-color: $global-emphasis-color !default;
|
|
668
|
+
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
669
|
+
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
656
670
|
$margin-margin: $global-margin !default;
|
|
657
671
|
$margin-xsmall-margin: 5px !default;
|
|
658
672
|
$margin-small-margin: $global-small-margin !default;
|
|
@@ -1161,16 +1175,7 @@ $box-shadow-bottom-bottom: (-$box-shadow-bottom-height) !default;
|
|
|
1161
1175
|
$box-shadow-bottom-border-radius: 100% !default;
|
|
1162
1176
|
$box-shadow-bottom-background: #444 !default;
|
|
1163
1177
|
$box-shadow-bottom-blur: 20px !default;
|
|
1164
|
-
$dropcap-margin-right: 10px !default;
|
|
1165
|
-
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
1166
|
-
$dropcap-line-height: 1 !default;
|
|
1167
|
-
$logo-font-size: $global-large-font-size !default;
|
|
1168
|
-
$logo-font-family: $global-font-family !default;
|
|
1169
|
-
$logo-color: $global-emphasis-color !default;
|
|
1170
|
-
$logo-hover-color: $global-emphasis-color !default;
|
|
1171
1178
|
$dragover-box-shadow: 0 0 20px rgba(100,100,100,0.3) !default;
|
|
1172
|
-
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
1173
|
-
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
1174
1179
|
$deprecated: false !default;
|
|
1175
1180
|
$breakpoint-small: 640px !default;
|
|
1176
1181
|
$breakpoint-medium: 960px !default;
|