uikit 3.18.4-dev.379fa2bf1 → 3.18.4-dev.3b6dec3a6
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 +13 -0
- package/build/scss.js +3 -0
- package/dist/css/uikit-core-rtl.css +188 -31
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +188 -31
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +188 -31
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +188 -31
- 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 +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- 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 +12 -9
- 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 +1 -1
- 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 +3 -3
- 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 +15 -12
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/images/components/navbar-toggle-icon.svg +2 -2
- package/src/js/components/internal/slider-transitioner.js +2 -2
- package/src/js/components/slider.js +12 -11
- package/src/js/components/tooltip.js +1 -1
- package/src/less/components/flex.less +110 -2
- package/src/less/components/heading.less +2 -2
- package/src/less/components/width.less +64 -38
- package/src/less/theme/text.less +1 -1
- package/src/scss/components/flex.scss +110 -2
- package/src/scss/components/heading.scss +2 -2
- package/src/scss/components/width.scss +64 -38
- package/src/scss/variables-theme.scss +1 -1
- package/tests/slider.html +12 -1
- package/tests/slideshow.html +2 -2
package/dist/css/uikit.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.18.4-dev.
|
|
1
|
+
/*! UIkit 3.18.4-dev.3b6dec3a6 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -6826,7 +6826,7 @@ ul.uk-nav-sub {
|
|
|
6826
6826
|
width: 50%;
|
|
6827
6827
|
}
|
|
6828
6828
|
.uk-child-width-1-3 > * {
|
|
6829
|
-
width: calc(100%
|
|
6829
|
+
width: calc(100% / 3);
|
|
6830
6830
|
}
|
|
6831
6831
|
.uk-child-width-1-4 > * {
|
|
6832
6832
|
width: 25%;
|
|
@@ -6835,7 +6835,7 @@ ul.uk-nav-sub {
|
|
|
6835
6835
|
width: 20%;
|
|
6836
6836
|
}
|
|
6837
6837
|
.uk-child-width-1-6 > * {
|
|
6838
|
-
width: calc(100%
|
|
6838
|
+
width: calc(100% / 6);
|
|
6839
6839
|
}
|
|
6840
6840
|
.uk-child-width-auto > * {
|
|
6841
6841
|
width: auto;
|
|
@@ -6845,6 +6845,7 @@ ul.uk-nav-sub {
|
|
|
6845
6845
|
* flex items won't shrink below their minimum intrinsic content size.
|
|
6846
6846
|
* Using `1px` instead of `0`, so items still wrap into the next line,
|
|
6847
6847
|
* if they have zero width and padding and the predecessor is 100% wide.
|
|
6848
|
+
* 2. Reset flex if auto classes are combined with expand classes
|
|
6848
6849
|
*/
|
|
6849
6850
|
.uk-child-width-expand > :not([class*="uk-width"]) {
|
|
6850
6851
|
flex: 1;
|
|
@@ -6860,7 +6861,7 @@ ul.uk-nav-sub {
|
|
|
6860
6861
|
width: 50%;
|
|
6861
6862
|
}
|
|
6862
6863
|
.uk-child-width-1-3\@s > * {
|
|
6863
|
-
width: calc(100%
|
|
6864
|
+
width: calc(100% / 3);
|
|
6864
6865
|
}
|
|
6865
6866
|
.uk-child-width-1-4\@s > * {
|
|
6866
6867
|
width: 25%;
|
|
@@ -6869,10 +6870,12 @@ ul.uk-nav-sub {
|
|
|
6869
6870
|
width: 20%;
|
|
6870
6871
|
}
|
|
6871
6872
|
.uk-child-width-1-6\@s > * {
|
|
6872
|
-
width: calc(100%
|
|
6873
|
+
width: calc(100% / 6);
|
|
6873
6874
|
}
|
|
6874
6875
|
.uk-child-width-auto\@s > * {
|
|
6875
6876
|
width: auto;
|
|
6877
|
+
/* 2 */
|
|
6878
|
+
flex: initial;
|
|
6876
6879
|
}
|
|
6877
6880
|
.uk-child-width-expand\@s > :not([class*="uk-width"]) {
|
|
6878
6881
|
flex: 1;
|
|
@@ -6888,7 +6891,7 @@ ul.uk-nav-sub {
|
|
|
6888
6891
|
width: 50%;
|
|
6889
6892
|
}
|
|
6890
6893
|
.uk-child-width-1-3\@m > * {
|
|
6891
|
-
width: calc(100%
|
|
6894
|
+
width: calc(100% / 3);
|
|
6892
6895
|
}
|
|
6893
6896
|
.uk-child-width-1-4\@m > * {
|
|
6894
6897
|
width: 25%;
|
|
@@ -6897,10 +6900,11 @@ ul.uk-nav-sub {
|
|
|
6897
6900
|
width: 20%;
|
|
6898
6901
|
}
|
|
6899
6902
|
.uk-child-width-1-6\@m > * {
|
|
6900
|
-
width: calc(100%
|
|
6903
|
+
width: calc(100% / 6);
|
|
6901
6904
|
}
|
|
6902
6905
|
.uk-child-width-auto\@m > * {
|
|
6903
6906
|
width: auto;
|
|
6907
|
+
flex: initial;
|
|
6904
6908
|
}
|
|
6905
6909
|
.uk-child-width-expand\@m > :not([class*="uk-width"]) {
|
|
6906
6910
|
flex: 1;
|
|
@@ -6916,7 +6920,7 @@ ul.uk-nav-sub {
|
|
|
6916
6920
|
width: 50%;
|
|
6917
6921
|
}
|
|
6918
6922
|
.uk-child-width-1-3\@l > * {
|
|
6919
|
-
width: calc(100%
|
|
6923
|
+
width: calc(100% / 3);
|
|
6920
6924
|
}
|
|
6921
6925
|
.uk-child-width-1-4\@l > * {
|
|
6922
6926
|
width: 25%;
|
|
@@ -6925,10 +6929,11 @@ ul.uk-nav-sub {
|
|
|
6925
6929
|
width: 20%;
|
|
6926
6930
|
}
|
|
6927
6931
|
.uk-child-width-1-6\@l > * {
|
|
6928
|
-
width: calc(100%
|
|
6932
|
+
width: calc(100% / 6);
|
|
6929
6933
|
}
|
|
6930
6934
|
.uk-child-width-auto\@l > * {
|
|
6931
6935
|
width: auto;
|
|
6936
|
+
flex: initial;
|
|
6932
6937
|
}
|
|
6933
6938
|
.uk-child-width-expand\@l > :not([class*="uk-width"]) {
|
|
6934
6939
|
flex: 1;
|
|
@@ -6944,7 +6949,7 @@ ul.uk-nav-sub {
|
|
|
6944
6949
|
width: 50%;
|
|
6945
6950
|
}
|
|
6946
6951
|
.uk-child-width-1-3\@xl > * {
|
|
6947
|
-
width: calc(100%
|
|
6952
|
+
width: calc(100% / 3);
|
|
6948
6953
|
}
|
|
6949
6954
|
.uk-child-width-1-4\@xl > * {
|
|
6950
6955
|
width: 25%;
|
|
@@ -6953,10 +6958,11 @@ ul.uk-nav-sub {
|
|
|
6953
6958
|
width: 20%;
|
|
6954
6959
|
}
|
|
6955
6960
|
.uk-child-width-1-6\@xl > * {
|
|
6956
|
-
width: calc(100%
|
|
6961
|
+
width: calc(100% / 6);
|
|
6957
6962
|
}
|
|
6958
6963
|
.uk-child-width-auto\@xl > * {
|
|
6959
6964
|
width: auto;
|
|
6965
|
+
flex: initial;
|
|
6960
6966
|
}
|
|
6961
6967
|
.uk-child-width-expand\@xl > :not([class*="uk-width"]) {
|
|
6962
6968
|
flex: 1;
|
|
@@ -6980,10 +6986,10 @@ ul.uk-nav-sub {
|
|
|
6980
6986
|
}
|
|
6981
6987
|
/* Thirds */
|
|
6982
6988
|
.uk-width-1-3 {
|
|
6983
|
-
width: calc(100%
|
|
6989
|
+
width: calc(100% / 3);
|
|
6984
6990
|
}
|
|
6985
6991
|
.uk-width-2-3 {
|
|
6986
|
-
width: calc(
|
|
6992
|
+
width: calc(200% / 3);
|
|
6987
6993
|
}
|
|
6988
6994
|
/* Quarters */
|
|
6989
6995
|
.uk-width-1-4 {
|
|
@@ -7007,10 +7013,10 @@ ul.uk-nav-sub {
|
|
|
7007
7013
|
}
|
|
7008
7014
|
/* Sixths */
|
|
7009
7015
|
.uk-width-1-6 {
|
|
7010
|
-
width: calc(100%
|
|
7016
|
+
width: calc(100% / 6);
|
|
7011
7017
|
}
|
|
7012
7018
|
.uk-width-5-6 {
|
|
7013
|
-
width: calc(
|
|
7019
|
+
width: calc(500% / 6);
|
|
7014
7020
|
}
|
|
7015
7021
|
/* Pixel */
|
|
7016
7022
|
.uk-width-small {
|
|
@@ -7049,10 +7055,10 @@ ul.uk-nav-sub {
|
|
|
7049
7055
|
}
|
|
7050
7056
|
/* Thirds */
|
|
7051
7057
|
.uk-width-1-3\@s {
|
|
7052
|
-
width: calc(100%
|
|
7058
|
+
width: calc(100% / 3);
|
|
7053
7059
|
}
|
|
7054
7060
|
.uk-width-2-3\@s {
|
|
7055
|
-
width: calc(
|
|
7061
|
+
width: calc(200% / 3);
|
|
7056
7062
|
}
|
|
7057
7063
|
/* Quarters */
|
|
7058
7064
|
.uk-width-1-4\@s {
|
|
@@ -7076,10 +7082,10 @@ ul.uk-nav-sub {
|
|
|
7076
7082
|
}
|
|
7077
7083
|
/* Sixths */
|
|
7078
7084
|
.uk-width-1-6\@s {
|
|
7079
|
-
width: calc(100%
|
|
7085
|
+
width: calc(100% / 6);
|
|
7080
7086
|
}
|
|
7081
7087
|
.uk-width-5-6\@s {
|
|
7082
|
-
width: calc(
|
|
7088
|
+
width: calc(500% / 6);
|
|
7083
7089
|
}
|
|
7084
7090
|
/* Pixel */
|
|
7085
7091
|
.uk-width-small\@s {
|
|
@@ -7100,6 +7106,7 @@ ul.uk-nav-sub {
|
|
|
7100
7106
|
/* Auto */
|
|
7101
7107
|
.uk-width-auto\@s {
|
|
7102
7108
|
width: auto;
|
|
7109
|
+
flex: initial;
|
|
7103
7110
|
}
|
|
7104
7111
|
/* Expand */
|
|
7105
7112
|
.uk-width-expand\@s {
|
|
@@ -7119,10 +7126,10 @@ ul.uk-nav-sub {
|
|
|
7119
7126
|
}
|
|
7120
7127
|
/* Thirds */
|
|
7121
7128
|
.uk-width-1-3\@m {
|
|
7122
|
-
width: calc(100%
|
|
7129
|
+
width: calc(100% / 3);
|
|
7123
7130
|
}
|
|
7124
7131
|
.uk-width-2-3\@m {
|
|
7125
|
-
width: calc(
|
|
7132
|
+
width: calc(200% / 3);
|
|
7126
7133
|
}
|
|
7127
7134
|
/* Quarters */
|
|
7128
7135
|
.uk-width-1-4\@m {
|
|
@@ -7146,10 +7153,10 @@ ul.uk-nav-sub {
|
|
|
7146
7153
|
}
|
|
7147
7154
|
/* Sixths */
|
|
7148
7155
|
.uk-width-1-6\@m {
|
|
7149
|
-
width: calc(100%
|
|
7156
|
+
width: calc(100% / 6);
|
|
7150
7157
|
}
|
|
7151
7158
|
.uk-width-5-6\@m {
|
|
7152
|
-
width: calc(
|
|
7159
|
+
width: calc(500% / 6);
|
|
7153
7160
|
}
|
|
7154
7161
|
/* Pixel */
|
|
7155
7162
|
.uk-width-small\@m {
|
|
@@ -7170,6 +7177,7 @@ ul.uk-nav-sub {
|
|
|
7170
7177
|
/* Auto */
|
|
7171
7178
|
.uk-width-auto\@m {
|
|
7172
7179
|
width: auto;
|
|
7180
|
+
flex: initial;
|
|
7173
7181
|
}
|
|
7174
7182
|
/* Expand */
|
|
7175
7183
|
.uk-width-expand\@m {
|
|
@@ -7189,10 +7197,10 @@ ul.uk-nav-sub {
|
|
|
7189
7197
|
}
|
|
7190
7198
|
/* Thirds */
|
|
7191
7199
|
.uk-width-1-3\@l {
|
|
7192
|
-
width: calc(100%
|
|
7200
|
+
width: calc(100% / 3);
|
|
7193
7201
|
}
|
|
7194
7202
|
.uk-width-2-3\@l {
|
|
7195
|
-
width: calc(
|
|
7203
|
+
width: calc(200% / 3);
|
|
7196
7204
|
}
|
|
7197
7205
|
/* Quarters */
|
|
7198
7206
|
.uk-width-1-4\@l {
|
|
@@ -7216,10 +7224,10 @@ ul.uk-nav-sub {
|
|
|
7216
7224
|
}
|
|
7217
7225
|
/* Sixths */
|
|
7218
7226
|
.uk-width-1-6\@l {
|
|
7219
|
-
width: calc(100%
|
|
7227
|
+
width: calc(100% / 6);
|
|
7220
7228
|
}
|
|
7221
7229
|
.uk-width-5-6\@l {
|
|
7222
|
-
width: calc(
|
|
7230
|
+
width: calc(500% / 6);
|
|
7223
7231
|
}
|
|
7224
7232
|
/* Pixel */
|
|
7225
7233
|
.uk-width-small\@l {
|
|
@@ -7240,6 +7248,7 @@ ul.uk-nav-sub {
|
|
|
7240
7248
|
/* Auto */
|
|
7241
7249
|
.uk-width-auto\@l {
|
|
7242
7250
|
width: auto;
|
|
7251
|
+
flex: initial;
|
|
7243
7252
|
}
|
|
7244
7253
|
/* Expand */
|
|
7245
7254
|
.uk-width-expand\@l {
|
|
@@ -7259,10 +7268,10 @@ ul.uk-nav-sub {
|
|
|
7259
7268
|
}
|
|
7260
7269
|
/* Thirds */
|
|
7261
7270
|
.uk-width-1-3\@xl {
|
|
7262
|
-
width: calc(100%
|
|
7271
|
+
width: calc(100% / 3);
|
|
7263
7272
|
}
|
|
7264
7273
|
.uk-width-2-3\@xl {
|
|
7265
|
-
width: calc(
|
|
7274
|
+
width: calc(200% / 3);
|
|
7266
7275
|
}
|
|
7267
7276
|
/* Quarters */
|
|
7268
7277
|
.uk-width-1-4\@xl {
|
|
@@ -7286,10 +7295,10 @@ ul.uk-nav-sub {
|
|
|
7286
7295
|
}
|
|
7287
7296
|
/* Sixths */
|
|
7288
7297
|
.uk-width-1-6\@xl {
|
|
7289
|
-
width: calc(100%
|
|
7298
|
+
width: calc(100% / 6);
|
|
7290
7299
|
}
|
|
7291
7300
|
.uk-width-5-6\@xl {
|
|
7292
|
-
width: calc(
|
|
7301
|
+
width: calc(500% / 6);
|
|
7293
7302
|
}
|
|
7294
7303
|
/* Pixel */
|
|
7295
7304
|
.uk-width-small\@xl {
|
|
@@ -7310,6 +7319,7 @@ ul.uk-nav-sub {
|
|
|
7310
7319
|
/* Auto */
|
|
7311
7320
|
.uk-width-auto\@xl {
|
|
7312
7321
|
width: auto;
|
|
7322
|
+
flex: initial;
|
|
7313
7323
|
}
|
|
7314
7324
|
/* Expand */
|
|
7315
7325
|
.uk-width-expand\@xl {
|
|
@@ -8654,6 +8664,66 @@ iframe[data-uk-cover] {
|
|
|
8654
8664
|
.uk-flex-bottom {
|
|
8655
8665
|
align-items: flex-end;
|
|
8656
8666
|
}
|
|
8667
|
+
/* Phone landscape and bigger */
|
|
8668
|
+
@media (min-width: 640px) {
|
|
8669
|
+
.uk-flex-stretch\@s {
|
|
8670
|
+
align-items: stretch;
|
|
8671
|
+
}
|
|
8672
|
+
.uk-flex-top\@s {
|
|
8673
|
+
align-items: flex-start;
|
|
8674
|
+
}
|
|
8675
|
+
.uk-flex-middle\@s {
|
|
8676
|
+
align-items: center;
|
|
8677
|
+
}
|
|
8678
|
+
.uk-flex-bottom\@s {
|
|
8679
|
+
align-items: flex-end;
|
|
8680
|
+
}
|
|
8681
|
+
}
|
|
8682
|
+
/* Tablet landscape and bigger */
|
|
8683
|
+
@media (min-width: 960px) {
|
|
8684
|
+
.uk-flex-stretch\@m {
|
|
8685
|
+
align-items: stretch;
|
|
8686
|
+
}
|
|
8687
|
+
.uk-flex-top\@m {
|
|
8688
|
+
align-items: flex-start;
|
|
8689
|
+
}
|
|
8690
|
+
.uk-flex-middle\@m {
|
|
8691
|
+
align-items: center;
|
|
8692
|
+
}
|
|
8693
|
+
.uk-flex-bottom\@m {
|
|
8694
|
+
align-items: flex-end;
|
|
8695
|
+
}
|
|
8696
|
+
}
|
|
8697
|
+
/* Desktop and bigger */
|
|
8698
|
+
@media (min-width: 1200px) {
|
|
8699
|
+
.uk-flex-stretch\@l {
|
|
8700
|
+
align-items: stretch;
|
|
8701
|
+
}
|
|
8702
|
+
.uk-flex-top\@l {
|
|
8703
|
+
align-items: flex-start;
|
|
8704
|
+
}
|
|
8705
|
+
.uk-flex-middle\@l {
|
|
8706
|
+
align-items: center;
|
|
8707
|
+
}
|
|
8708
|
+
.uk-flex-bottom\@l {
|
|
8709
|
+
align-items: flex-end;
|
|
8710
|
+
}
|
|
8711
|
+
}
|
|
8712
|
+
/* Large screen and bigger */
|
|
8713
|
+
@media (min-width: 1600px) {
|
|
8714
|
+
.uk-flex-stretch\@xl {
|
|
8715
|
+
align-items: stretch;
|
|
8716
|
+
}
|
|
8717
|
+
.uk-flex-top\@xl {
|
|
8718
|
+
align-items: flex-start;
|
|
8719
|
+
}
|
|
8720
|
+
.uk-flex-middle\@xl {
|
|
8721
|
+
align-items: center;
|
|
8722
|
+
}
|
|
8723
|
+
.uk-flex-bottom\@xl {
|
|
8724
|
+
align-items: flex-end;
|
|
8725
|
+
}
|
|
8726
|
+
}
|
|
8657
8727
|
/* Direction
|
|
8658
8728
|
========================================================================== */
|
|
8659
8729
|
.uk-flex-row {
|
|
@@ -8668,6 +8738,42 @@ iframe[data-uk-cover] {
|
|
|
8668
8738
|
.uk-flex-column-reverse {
|
|
8669
8739
|
flex-direction: column-reverse;
|
|
8670
8740
|
}
|
|
8741
|
+
/* Phone landscape and bigger */
|
|
8742
|
+
@media (min-width: 640px) {
|
|
8743
|
+
.uk-flex-row\@s {
|
|
8744
|
+
flex-direction: row;
|
|
8745
|
+
}
|
|
8746
|
+
.uk-flex-column\@s {
|
|
8747
|
+
flex-direction: column;
|
|
8748
|
+
}
|
|
8749
|
+
}
|
|
8750
|
+
/* Tablet landscape and bigger */
|
|
8751
|
+
@media (min-width: 960px) {
|
|
8752
|
+
.uk-flex-row\@m {
|
|
8753
|
+
flex-direction: row;
|
|
8754
|
+
}
|
|
8755
|
+
.uk-flex-column\@m {
|
|
8756
|
+
flex-direction: column;
|
|
8757
|
+
}
|
|
8758
|
+
}
|
|
8759
|
+
/* Desktop and bigger */
|
|
8760
|
+
@media (min-width: 1200px) {
|
|
8761
|
+
.uk-flex-row\@l {
|
|
8762
|
+
flex-direction: row;
|
|
8763
|
+
}
|
|
8764
|
+
.uk-flex-column\@l {
|
|
8765
|
+
flex-direction: column;
|
|
8766
|
+
}
|
|
8767
|
+
}
|
|
8768
|
+
/* Large screen and bigger */
|
|
8769
|
+
@media (min-width: 1600px) {
|
|
8770
|
+
.uk-flex-row\@xl {
|
|
8771
|
+
flex-direction: row;
|
|
8772
|
+
}
|
|
8773
|
+
.uk-flex-column\@xl {
|
|
8774
|
+
flex-direction: column;
|
|
8775
|
+
}
|
|
8776
|
+
}
|
|
8671
8777
|
/* Wrap
|
|
8672
8778
|
========================================================================== */
|
|
8673
8779
|
.uk-flex-nowrap {
|
|
@@ -8754,6 +8860,9 @@ iframe[data-uk-cover] {
|
|
|
8754
8860
|
* Initial: 0 1 auto
|
|
8755
8861
|
* Content dimensions, but shrinks
|
|
8756
8862
|
*/
|
|
8863
|
+
.uk-flex-initial {
|
|
8864
|
+
flex: initial;
|
|
8865
|
+
}
|
|
8757
8866
|
/*
|
|
8758
8867
|
* No Flex: 0 0 auto
|
|
8759
8868
|
* Content dimensions
|
|
@@ -8775,6 +8884,54 @@ iframe[data-uk-cover] {
|
|
|
8775
8884
|
.uk-flex-1 {
|
|
8776
8885
|
flex: 1;
|
|
8777
8886
|
}
|
|
8887
|
+
/* Phone landscape and bigger */
|
|
8888
|
+
@media (min-width: 640px) {
|
|
8889
|
+
.uk-flex-initial\@s {
|
|
8890
|
+
flex: initial;
|
|
8891
|
+
}
|
|
8892
|
+
.uk-flex-none\@s {
|
|
8893
|
+
flex: none;
|
|
8894
|
+
}
|
|
8895
|
+
.uk-flex-1\@s {
|
|
8896
|
+
flex: 1;
|
|
8897
|
+
}
|
|
8898
|
+
}
|
|
8899
|
+
/* Tablet landscape and bigger */
|
|
8900
|
+
@media (min-width: 960px) {
|
|
8901
|
+
.uk-flex-initial\@m {
|
|
8902
|
+
flex: initial;
|
|
8903
|
+
}
|
|
8904
|
+
.uk-flex-none\@m {
|
|
8905
|
+
flex: none;
|
|
8906
|
+
}
|
|
8907
|
+
.uk-flex-1\@m {
|
|
8908
|
+
flex: 1;
|
|
8909
|
+
}
|
|
8910
|
+
}
|
|
8911
|
+
/* Desktop and bigger */
|
|
8912
|
+
@media (min-width: 1200px) {
|
|
8913
|
+
.uk-flex-initial\@l {
|
|
8914
|
+
flex: initial;
|
|
8915
|
+
}
|
|
8916
|
+
.uk-flex-none\@l {
|
|
8917
|
+
flex: none;
|
|
8918
|
+
}
|
|
8919
|
+
.uk-flex-1\@l {
|
|
8920
|
+
flex: 1;
|
|
8921
|
+
}
|
|
8922
|
+
}
|
|
8923
|
+
/* Large screen and bigger */
|
|
8924
|
+
@media (min-width: 1600px) {
|
|
8925
|
+
.uk-flex-initial\@xl {
|
|
8926
|
+
flex: initial;
|
|
8927
|
+
}
|
|
8928
|
+
.uk-flex-none\@xl {
|
|
8929
|
+
flex: none;
|
|
8930
|
+
}
|
|
8931
|
+
.uk-flex-1\@xl {
|
|
8932
|
+
flex: 1;
|
|
8933
|
+
}
|
|
8934
|
+
}
|
|
8778
8935
|
/* ========================================================================
|
|
8779
8936
|
Component: Margin
|
|
8780
8937
|
========================================================================== */
|