uikit-reset 3.2.0 → 3.3.0
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.
- checksums.yaml +4 -4
- data/lib/uikit/reset/version.rb +1 -1
- data/vendor/assets/javascripts/uikit-reset.js +1089 -1105
- data/vendor/assets/stylesheets/uikit-reset.scss +28 -10
- metadata +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 3.
|
1
|
+
/*! UIkit 3.3.0 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
|
2
2
|
/* ========================================================================
|
3
3
|
Component: Base
|
4
4
|
========================================================================== */
|
@@ -2140,11 +2140,12 @@ select.uk-form-width-xsmall {
|
|
2140
2140
|
* 3. Address `overflow` set to `hidden` in IE.
|
2141
2141
|
* 4. Correct `font` properties and `color` not being inherited for `button`.
|
2142
2142
|
* 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
|
2143
|
-
* 6.
|
2144
|
-
* 7.
|
2143
|
+
* 6. Remove default style for `input type="submit"`in iOS.
|
2144
|
+
* 7. Style
|
2145
|
+
* 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
|
2145
2146
|
* Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
|
2146
|
-
*
|
2147
|
-
*
|
2147
|
+
* 9. Align text if button has a width
|
2148
|
+
* 10. Required for `a`.
|
2148
2149
|
*/
|
2149
2150
|
.uk-button {
|
2150
2151
|
/* 1 */
|
@@ -2159,16 +2160,19 @@ select.uk-form-width-xsmall {
|
|
2159
2160
|
/* 5 */
|
2160
2161
|
text-transform: none;
|
2161
2162
|
/* 6 */
|
2163
|
+
-webkit-appearance: none;
|
2164
|
+
border-radius: 0;
|
2165
|
+
/* 7 */
|
2162
2166
|
display: inline-block;
|
2163
2167
|
box-sizing: border-box;
|
2164
2168
|
padding: 0 30px;
|
2165
2169
|
vertical-align: middle;
|
2166
2170
|
font-size: 0.875rem;
|
2167
|
-
/* 7 */
|
2168
|
-
line-height: 38px;
|
2169
2171
|
/* 8 */
|
2170
|
-
|
2172
|
+
line-height: 38px;
|
2171
2173
|
/* 9 */
|
2174
|
+
text-align: center;
|
2175
|
+
/* 10 */
|
2172
2176
|
text-decoration: none;
|
2173
2177
|
text-transform: uppercase;
|
2174
2178
|
transition: 0.1s ease-in-out;
|
@@ -2635,6 +2639,10 @@ select.uk-form-width-xsmall {
|
|
2635
2639
|
}
|
2636
2640
|
|
2637
2641
|
.uk-container-large {
|
2642
|
+
max-width: 1400px;
|
2643
|
+
}
|
2644
|
+
|
2645
|
+
.uk-container-xlarge {
|
2638
2646
|
max-width: 1600px;
|
2639
2647
|
}
|
2640
2648
|
|
@@ -2689,6 +2697,11 @@ select.uk-form-width-xsmall {
|
|
2689
2697
|
|
2690
2698
|
.uk-container-expand-left.uk-container-large,
|
2691
2699
|
.uk-container-expand-right.uk-container-large {
|
2700
|
+
max-width: calc(50% + (1400px / 2) - 40px);
|
2701
|
+
}
|
2702
|
+
|
2703
|
+
.uk-container-expand-left.uk-container-xlarge,
|
2704
|
+
.uk-container-expand-right.uk-container-xlarge {
|
2692
2705
|
max-width: calc(50% + (1600px / 2) - 40px);
|
2693
2706
|
}
|
2694
2707
|
}
|
@@ -6694,7 +6707,7 @@ ul.uk-nav-sub {
|
|
6694
6707
|
}
|
6695
6708
|
|
6696
6709
|
:root {
|
6697
|
-
--uk-leader-fill-content:
|
6710
|
+
--uk-leader-fill-content: .;
|
6698
6711
|
}
|
6699
6712
|
|
6700
6713
|
/* ========================================================================
|
@@ -10314,12 +10327,17 @@ iframe.uk-cover {
|
|
10314
10327
|
========================================================================== */
|
10315
10328
|
/* Directions
|
10316
10329
|
========================================================================== */
|
10330
|
+
/*
|
10331
|
+
* 1. Prevent content overflow if `max-width: 100%` is used inside position container.
|
10332
|
+
*/
|
10317
10333
|
[class*='uk-position-top'],
|
10318
10334
|
[class*='uk-position-bottom'],
|
10319
10335
|
[class*='uk-position-left'],
|
10320
10336
|
[class*='uk-position-right'],
|
10321
10337
|
[class*='uk-position-center'] {
|
10322
10338
|
position: absolute !important;
|
10339
|
+
/* 1 */
|
10340
|
+
max-width: 100%;
|
10323
10341
|
}
|
10324
10342
|
|
10325
10343
|
/* Edges
|
@@ -14099,4 +14117,4 @@ iframe.uk-cover {
|
|
14099
14117
|
h3 {
|
14100
14118
|
page-break-after: avoid;
|
14101
14119
|
}
|
14102
|
-
}
|
14120
|
+
}
|