@itcase/ui 1.0.91 → 1.0.93
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/dist/{SelectContainer-meg_EXPO.js → SelectContainer-umrbJtB5.js} +87 -54
- package/dist/components/Accordion.js +29 -8
- package/dist/components/Avatar.js +5 -0
- package/dist/components/Badge.js +1 -1
- package/dist/components/Breadcrumbs.js +8 -3
- package/dist/components/Button.js +12 -7
- package/dist/components/Cell.js +13 -10
- package/dist/components/Chips.js +1 -1
- package/dist/components/Choice.js +5 -0
- package/dist/components/ContextMenu.js +5 -0
- package/dist/components/CookiesWarning.js +5 -1
- package/dist/components/DatePicker.js +4 -0
- package/dist/components/Dropdown.js +14 -2
- package/dist/components/Empty.js +5 -0
- package/dist/components/FormField.js +7 -2
- package/dist/components/Icon.js +30 -2
- package/dist/components/InputPassword.js +8 -0
- package/dist/components/Label.js +1 -1
- package/dist/components/LanguageSelector.js +8 -0
- package/dist/components/Loader.js +27 -12
- package/dist/components/MenuItem.js +1 -1
- package/dist/components/Notification.js +1 -1
- package/dist/components/Search.js +5 -0
- package/dist/components/Segmented.js +20 -3
- package/dist/components/Select.js +20 -14
- package/dist/components/SiteMenu.js +5 -0
- package/dist/components/Tab.js +1 -1
- package/dist/components/Tile.js +1 -0
- package/dist/components/Tooltip.js +46 -26
- package/dist/constants/componentProps/alignment.js +5 -0
- package/dist/constants.js +6 -4
- package/dist/css/components/Accordion/Accordion.css +14 -5
- package/dist/css/components/Cell/Cell.css +8 -1
- package/dist/css/components/Icon/Icon.css +8 -0
- package/dist/css/components/Notification/Notification.css +6 -6
- package/dist/css/components/Notification/css/__item/notification__item_set_float.css +1 -1
- package/dist/css/components/Notification/css/__item/notification__item_set_form.css +1 -1
- package/dist/css/components/Notification/css/__item/notification__item_set_toast.css +1 -1
- package/dist/css/components/Notification/css/__item/notification__item_set_top.css +1 -1
- package/dist/css/components/Notification/css/__item/notification__item_type_close-button.css +2 -2
- package/dist/css/components/Segmented/Segmented.css +0 -1
- package/dist/css/components/Select/Select.css +1 -0
- package/dist/css/components/Select/css/__indicators/select__indicators.css +1 -0
- package/dist/css/components/Tooltip/Tooltip.css +103 -3
- package/dist/css/styles/alignment/alignment.css +54 -0
- package/dist/css/styles/mediaqueries.css +23 -9
- package/package.json +1 -1
package/dist/constants.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var alignDirection = require('./constants/componentProps/alignDirection.js');
|
|
4
4
|
var align = require('./constants/componentProps/align.js');
|
|
5
|
+
var alignment = require('./constants/componentProps/alignment.js');
|
|
5
6
|
var borderColorHover = require('./constants/componentProps/borderColorHover.js');
|
|
6
7
|
var borderColor = require('./constants/componentProps/borderColor.js');
|
|
7
8
|
var borderType = require('./constants/componentProps/borderType.js');
|
|
@@ -9,8 +10,8 @@ var borderWidth = require('./constants/componentProps/borderWidth.js');
|
|
|
9
10
|
var captionPosition = require('./constants/componentProps/captionPosition.js');
|
|
10
11
|
var direction = require('./constants/componentProps/direction.js');
|
|
11
12
|
var emojiSize = require('./constants/componentProps/emojiSize.js');
|
|
12
|
-
var fillHover = require('./constants/componentProps/fillHover.js');
|
|
13
13
|
var fillGradient = require('./constants/componentProps/fillGradient.js');
|
|
14
|
+
var fillHover = require('./constants/componentProps/fillHover.js');
|
|
14
15
|
var fill = require('./constants/componentProps/fill.js');
|
|
15
16
|
var fillType = require('./constants/componentProps/fillType.js');
|
|
16
17
|
var flexAlign = require('./constants/componentProps/flexAlign.js');
|
|
@@ -23,8 +24,8 @@ var gridJustifySelf = require('./constants/componentProps/gridJustifySelf.js');
|
|
|
23
24
|
var height = require('./constants/componentProps/height.js');
|
|
24
25
|
var horizontalContentAlign = require('./constants/componentProps/horizontalContentAlign.js');
|
|
25
26
|
var horizontalResizeMode = require('./constants/componentProps/horizontalResizeMode.js');
|
|
26
|
-
var iconSize = require('./constants/componentProps/iconSize.js');
|
|
27
27
|
var iconFillSize = require('./constants/componentProps/iconFillSize.js');
|
|
28
|
+
var iconSize = require('./constants/componentProps/iconSize.js');
|
|
28
29
|
var itemColor = require('./constants/componentProps/itemColor.js');
|
|
29
30
|
var position = require('./constants/componentProps/position.js');
|
|
30
31
|
var resizeMode = require('./constants/componentProps/resizeMode.js');
|
|
@@ -57,6 +58,7 @@ var wrap = require('./constants/componentProps/wrap.js');
|
|
|
57
58
|
|
|
58
59
|
exports.alignDirectionProps = alignDirection.default;
|
|
59
60
|
exports.alignProps = align.default;
|
|
61
|
+
exports.alignmentProps = alignment.default;
|
|
60
62
|
exports.borderColorHoverProps = borderColorHover.default;
|
|
61
63
|
exports.borderColorProps = borderColor.default;
|
|
62
64
|
exports.borderTypeProps = borderType.default;
|
|
@@ -64,8 +66,8 @@ exports.borderWidthProps = borderWidth.default;
|
|
|
64
66
|
exports.captionPositionProps = captionPosition.default;
|
|
65
67
|
exports.directionProps = direction.default;
|
|
66
68
|
exports.emojiSizeProps = emojiSize.default;
|
|
67
|
-
exports.fillHoverProps = fillHover.default;
|
|
68
69
|
exports.fillGradientProps = fillGradient.default;
|
|
70
|
+
exports.fillHoverProps = fillHover.default;
|
|
69
71
|
exports.fillProps = fill.default;
|
|
70
72
|
exports.fillTypeProps = fillType.default;
|
|
71
73
|
exports.flexAlignProps = flexAlign.default;
|
|
@@ -78,8 +80,8 @@ exports.gridJustifySelfProps = gridJustifySelf.default;
|
|
|
78
80
|
exports.heightProps = height.default;
|
|
79
81
|
exports.horizontalContentAlignProps = horizontalContentAlign.default;
|
|
80
82
|
exports.horizontalResizeModeProps = horizontalResizeMode.default;
|
|
81
|
-
exports.iconSizeProps = iconSize.default;
|
|
82
83
|
exports.iconFillSizeProps = iconFillSize.default;
|
|
84
|
+
exports.iconSizeProps = iconSize.default;
|
|
83
85
|
exports.itemColorProps = itemColor.default;
|
|
84
86
|
exports.positionProps = position.default;
|
|
85
87
|
exports.resizeModeProps = resizeMode.default;
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
}
|
|
47
47
|
.accordion-item {
|
|
48
48
|
min-width: 170px;
|
|
49
|
-
padding: 10px 12px;
|
|
50
49
|
display: flex;
|
|
51
50
|
flex-flow: row wrap;
|
|
52
51
|
gap: 8px;
|
|
@@ -65,17 +64,27 @@
|
|
|
65
64
|
.accordion-item {
|
|
66
65
|
&_shape {
|
|
67
66
|
&_rounded {
|
|
68
|
-
border-radius: var(--accordion-item-shape-rounded,
|
|
67
|
+
border-radius: var(--accordion-item-shape-rounded, 100px);
|
|
69
68
|
}
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
.accordion-item {
|
|
72
|
+
&_size {
|
|
73
|
+
@each $size in xs, s, m, l, xl, xxl {
|
|
74
|
+
&_$(size) {
|
|
75
|
+
padding: var(--accordion-item-size-$(size)-padding);
|
|
76
|
+
}
|
|
72
77
|
}
|
|
73
78
|
}
|
|
74
79
|
}
|
|
75
80
|
.accordion-item {
|
|
76
81
|
&&_state_open {
|
|
77
82
|
^&__icon {
|
|
78
|
-
transform: rotate(
|
|
83
|
+
transform: rotate(180deg);
|
|
79
84
|
}
|
|
80
85
|
}
|
|
81
86
|
}
|
|
87
|
+
:root {
|
|
88
|
+
--accordion-item-size-xs-padding: 10px 8px;
|
|
89
|
+
--accordion-item-size-l-padding: 14px 12px;
|
|
90
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.icon {
|
|
2
2
|
&__item {
|
|
3
|
+
position: relative;
|
|
3
4
|
display: flex;
|
|
4
5
|
& svg {
|
|
5
6
|
transition: var(--icon-transition);
|
|
@@ -143,6 +144,13 @@
|
|
|
143
144
|
}
|
|
144
145
|
}
|
|
145
146
|
}
|
|
147
|
+
.icon {
|
|
148
|
+
&__tooltip {
|
|
149
|
+
min-width: 200px;
|
|
150
|
+
padding: 8px;
|
|
151
|
+
border-radius: 8px;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
146
154
|
:root {
|
|
147
155
|
--icon-transition: all 0.2s ease 0s;
|
|
148
156
|
--icon-size-24-badge-position: 12px, 12px;
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
&_set {
|
|
28
28
|
&_float {
|
|
29
29
|
width: 100%;
|
|
30
|
-
padding: var(--notification-item-set-float-padding, 12px 16px);
|
|
31
30
|
border-radius: var(--notification-item-set-float-border-radius, 8px);
|
|
32
31
|
@mixin elevation-8;
|
|
33
32
|
^^&-wrapper {
|
|
33
|
+
padding: var(--notification-item-set-float-padding, 12px 16px);
|
|
34
34
|
display: flex;
|
|
35
35
|
flex-direction: column;
|
|
36
36
|
gap: 4px;
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
&_top {
|
|
44
44
|
width: 100%;
|
|
45
45
|
^^&-wrapper {
|
|
46
|
-
padding: var(--notification-item-set-top-padding, 12px
|
|
46
|
+
padding: var(--notification-item-set-top-padding, 12px 16px);
|
|
47
47
|
display: flex;
|
|
48
48
|
flex-direction: column;
|
|
49
49
|
justify-content: center;
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
&_set {
|
|
58
58
|
&_form {
|
|
59
59
|
width: 100%;
|
|
60
|
-
padding: var(--notification-item-set-form-padding, 12px 16px);
|
|
61
60
|
border-radius: var(--notification-item-set-form-border-radius, 8px);
|
|
62
61
|
^^&-wrapper {
|
|
63
62
|
text-align: left;
|
|
63
|
+
padding: var(--notification-item-set-form-padding, 12px 16px);
|
|
64
64
|
display: flex;
|
|
65
65
|
flex-direction: column;
|
|
66
66
|
gap: 4px;
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
&_toast {
|
|
74
74
|
width: 100%;
|
|
75
75
|
background: var(--color-surface-primary);
|
|
76
|
-
padding: var(--notification-item-set-toast-padding, 12px 16px);
|
|
77
76
|
border-radius: var(--notification-item-set-toast-border-radius, 8px);
|
|
78
77
|
display: flex;
|
|
79
78
|
flex-direction: column;
|
|
80
79
|
gap: 24px;
|
|
81
80
|
@mixin elevation-8;
|
|
82
81
|
^^&-wrapper {
|
|
82
|
+
padding: var(--notification-item-set-toast-padding, 12px 16px);
|
|
83
83
|
display: flex;
|
|
84
84
|
flex-direction: column;
|
|
85
85
|
gap: 4px;
|
|
@@ -134,8 +134,8 @@
|
|
|
134
134
|
}
|
|
135
135
|
^^^&-close {
|
|
136
136
|
position: absolute;
|
|
137
|
-
top:
|
|
138
|
-
right:
|
|
137
|
+
top: 12px;
|
|
138
|
+
right: 16px;
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
}
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
&_set {
|
|
3
3
|
&_float {
|
|
4
4
|
width: 100%;
|
|
5
|
-
padding: var(--notification-item-set-float-padding, 12px 16px);
|
|
6
5
|
border-radius: var(--notification-item-set-float-border-radius, 8px);
|
|
7
6
|
@mixin elevation-8;
|
|
8
7
|
^^&-wrapper {
|
|
8
|
+
padding: var(--notification-item-set-float-padding, 12px 16px);
|
|
9
9
|
display: flex;
|
|
10
10
|
flex-direction: column;
|
|
11
11
|
gap: 4px;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
&_set {
|
|
3
3
|
&_form {
|
|
4
4
|
width: 100%;
|
|
5
|
-
padding: var(--notification-item-set-form-padding, 12px 16px);
|
|
6
5
|
border-radius: var(--notification-item-set-form-border-radius, 8px);
|
|
7
6
|
^^&-wrapper {
|
|
8
7
|
text-align: left;
|
|
8
|
+
padding: var(--notification-item-set-form-padding, 12px 16px);
|
|
9
9
|
display: flex;
|
|
10
10
|
flex-direction: column;
|
|
11
11
|
gap: 4px;
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
&_toast {
|
|
4
4
|
width: 100%;
|
|
5
5
|
background: var(--color-surface-primary);
|
|
6
|
-
padding: var(--notification-item-set-toast-padding, 12px 16px);
|
|
7
6
|
border-radius: var(--notification-item-set-toast-border-radius, 8px);
|
|
8
7
|
display: flex;
|
|
9
8
|
flex-direction: column;
|
|
10
9
|
gap: 24px;
|
|
11
10
|
@mixin elevation-8;
|
|
12
11
|
^^&-wrapper {
|
|
12
|
+
padding: var(--notification-item-set-toast-padding, 12px 16px);
|
|
13
13
|
display: flex;
|
|
14
14
|
flex-direction: column;
|
|
15
15
|
gap: 4px;
|
|
@@ -1,4 +1,104 @@
|
|
|
1
|
-
|
|
1
|
+
.tooltip {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: flex;
|
|
4
|
+
animation: 0.5s tooltipShowAnimation ease;
|
|
5
|
+
}
|
|
2
6
|
|
|
3
|
-
@
|
|
4
|
-
|
|
7
|
+
@keyframes tooltipShowAnimation {
|
|
8
|
+
0% {
|
|
9
|
+
visibility: hidden;
|
|
10
|
+
opacity: 0%;
|
|
11
|
+
}
|
|
12
|
+
100% {
|
|
13
|
+
visibility: visible;
|
|
14
|
+
opacity: 100%;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.tooltip {
|
|
19
|
+
&_size {
|
|
20
|
+
@each $size in s, m, l {
|
|
21
|
+
&_$(size) {
|
|
22
|
+
max-width: 400px;
|
|
23
|
+
padding: var(--tooltip-size-$(size)-padding);
|
|
24
|
+
^^&__inner {
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-flow: column nowrap;
|
|
27
|
+
gap: var(--tooltip-size-$(size)-gap);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.tooltip {
|
|
35
|
+
&_shape {
|
|
36
|
+
&_rounded {
|
|
37
|
+
border-radius: var(--tooltip-shape-rounded-default, 12px);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.tooltip {
|
|
43
|
+
&_type_arrow {
|
|
44
|
+
^&__inner {
|
|
45
|
+
position: relative;
|
|
46
|
+
background-color: inherit;
|
|
47
|
+
}
|
|
48
|
+
&::after {
|
|
49
|
+
content: '';
|
|
50
|
+
display: block;
|
|
51
|
+
position: absolute;
|
|
52
|
+
background-color: inherit;
|
|
53
|
+
width: var(--tooltip-arrow-width);
|
|
54
|
+
height: var(--tooltip-arrow-height);
|
|
55
|
+
border-radius: var(--tooltip-arrow-radius);
|
|
56
|
+
z-index: -1;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.tooltip {
|
|
62
|
+
&_arrow_position {
|
|
63
|
+
&_top {
|
|
64
|
+
&::after {
|
|
65
|
+
top: 0;
|
|
66
|
+
left: 50%;
|
|
67
|
+
transform: translate(-50%, calc(calc(var(--tooltip-arrow-width) / 2) * -1)) rotate(45deg);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
&_left {
|
|
71
|
+
&::after {
|
|
72
|
+
top: 50%;
|
|
73
|
+
left: 0;
|
|
74
|
+
transform: translate(calc(calc(var(--tooltip-arrow-width) / 2) * -1), -50%) rotate(45deg);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
&_right {
|
|
78
|
+
&::after {
|
|
79
|
+
top: 50%;
|
|
80
|
+
right: 0;
|
|
81
|
+
transform: translate(calc(var(--tooltip-arrow-width) / 2), -50%) rotate(45deg);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
&_bottom {
|
|
85
|
+
&::after {
|
|
86
|
+
bottom: 0;
|
|
87
|
+
left: 50%;
|
|
88
|
+
transform: translate(-50%, calc(var(--tooltip-arrow-width) / 2)) rotate(45deg);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
:root {
|
|
95
|
+
--tooltip-size-m-padding: 0;
|
|
96
|
+
--tooltip-size-s-padding: 0;
|
|
97
|
+
|
|
98
|
+
--tooltip-size-m-gap: 0;
|
|
99
|
+
--tooltip-size-s-gap: 0;
|
|
100
|
+
|
|
101
|
+
--tooltip-arrow-width: 14px;
|
|
102
|
+
--tooltip-arrow-height: 14px;
|
|
103
|
+
--tooltip-arrow-radius: 2px;
|
|
104
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
.alignment {
|
|
2
|
+
&_top {
|
|
3
|
+
&-left {
|
|
4
|
+
position: absolute;
|
|
5
|
+
right: 100%;
|
|
6
|
+
bottom: 100%;
|
|
7
|
+
transform: translate(calc(0% - 12px), calc(0% - 12px));
|
|
8
|
+
}
|
|
9
|
+
&-center {
|
|
10
|
+
position: absolute;
|
|
11
|
+
left: 50%;
|
|
12
|
+
bottom: 100%;
|
|
13
|
+
transform: translate(-50%, calc(0% - 12px));
|
|
14
|
+
}
|
|
15
|
+
&-right {
|
|
16
|
+
position: absolute;
|
|
17
|
+
left: 100%;
|
|
18
|
+
bottom: 100%;
|
|
19
|
+
transform: translate(calc(0% + 12px), calc(0% - 12px));
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
&_bottom {
|
|
23
|
+
&-left {
|
|
24
|
+
position: absolute;
|
|
25
|
+
top: 100%;
|
|
26
|
+
right: 100%;
|
|
27
|
+
transform: translate(calc(0% - 12px), calc(0% + 12px));
|
|
28
|
+
}
|
|
29
|
+
&-center {
|
|
30
|
+
position: absolute;
|
|
31
|
+
left: 50%;
|
|
32
|
+
top: 100%;
|
|
33
|
+
transform: translate(-50%, calc(0% + 12px));
|
|
34
|
+
}
|
|
35
|
+
&-right {
|
|
36
|
+
position: absolute;
|
|
37
|
+
left: 100%;
|
|
38
|
+
top: 100%;
|
|
39
|
+
transform: translate(calc(0% + 12px), calc(0% + 12px));
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
&_left-center {
|
|
43
|
+
position: absolute;
|
|
44
|
+
top: 50%;
|
|
45
|
+
right: 100%;
|
|
46
|
+
transform: translate(calc(0% - 12px), -50%);
|
|
47
|
+
}
|
|
48
|
+
&_right-center {
|
|
49
|
+
position: absolute;
|
|
50
|
+
left: 100%;
|
|
51
|
+
top: 50%;
|
|
52
|
+
transform: translate(calc(0% + 12px), -50%);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -1,23 +1,37 @@
|
|
|
1
1
|
:root {
|
|
2
|
+
|
|
2
3
|
--mobile-tiny: 15em; /* 240px */
|
|
4
|
+
|
|
3
5
|
--mobile-small: 20em; /* 320px */
|
|
6
|
+
|
|
4
7
|
--mobile-medium: 23.435em; /* 375px */
|
|
8
|
+
|
|
5
9
|
--mobile-large: 25.875em; /* 414px */
|
|
10
|
+
|
|
6
11
|
--mobile-extra-large: 30em; /* 480px */
|
|
12
|
+
|
|
7
13
|
--mobile-super-extra-large: 40em; /* 640px */
|
|
14
|
+
|
|
8
15
|
--tablet: 48em; /* 768px */
|
|
16
|
+
|
|
9
17
|
--desktop-small: 60em; /* 960px */
|
|
18
|
+
|
|
10
19
|
--desktop-medium: 64em; /* 1024px */
|
|
20
|
+
|
|
11
21
|
--desktop-normal: 72.5em; /* 1160px */
|
|
22
|
+
|
|
12
23
|
--desktop-large: 80em; /* 1280px */
|
|
24
|
+
|
|
13
25
|
--desktop-extra-large: 90em; /* 1441px */
|
|
26
|
+
|
|
14
27
|
--desktop-super-extra-large: 120em; /* 1920px */
|
|
28
|
+
|
|
15
29
|
--desktop-huge: 160em; /* 560px */
|
|
16
30
|
}
|
|
17
31
|
|
|
18
32
|
@custom-media --warning (width <= 15em);
|
|
19
33
|
|
|
20
|
-
@custom-media --mobile (width >= 15em) and (width <
|
|
34
|
+
@custom-media --mobile (width >= 15em) and (width < 48em);
|
|
21
35
|
|
|
22
36
|
@custom-media --mobile-tiny (width >= 15em) and (width < 20em);
|
|
23
37
|
|
|
@@ -25,17 +39,17 @@
|
|
|
25
39
|
|
|
26
40
|
@custom-media --mobile-medium (width >= 23.435em) and (width < 25.875em);
|
|
27
41
|
|
|
28
|
-
@custom-media --mobile-standart (width >=
|
|
42
|
+
@custom-media --mobile-standart (width >= 25.875em) and (width < 30em);
|
|
29
43
|
|
|
30
44
|
@custom-media --mobile-large (width >= 30em) and (width < 40em);
|
|
31
45
|
|
|
32
|
-
@custom-media --mobile-huge (width >= 40em) and (width <
|
|
46
|
+
@custom-media --mobile-huge (width >= 40em) and (width < 48em);
|
|
33
47
|
|
|
34
|
-
@custom-media --tablet (width >=
|
|
48
|
+
@custom-media --tablet (width >= 48em) and (width < 60em);
|
|
35
49
|
|
|
36
|
-
@custom-media --tablet-small (width >= 40em) and (width <
|
|
50
|
+
@custom-media --tablet-small (width >= 40em) and (width < 48em);
|
|
37
51
|
|
|
38
|
-
@custom-media --tablet-large (width >=
|
|
52
|
+
@custom-media --tablet-large (width >= 48em) and (width < 60em);
|
|
39
53
|
|
|
40
54
|
@custom-media --desktop (width >= 60em);
|
|
41
55
|
|
|
@@ -49,13 +63,13 @@
|
|
|
49
63
|
|
|
50
64
|
@custom-media --desktop-large (width >= 90em) and (width < 120em);
|
|
51
65
|
|
|
52
|
-
@custom-media --desktop-huge (width >=
|
|
66
|
+
@custom-media --desktop-huge (width >= 120em) and (width < 160em);
|
|
53
67
|
|
|
54
68
|
@custom-media --desktop-super-huge (width >= 160em);
|
|
55
69
|
|
|
56
|
-
@custom-media --landscape (orientation:landscape) and (width >=
|
|
70
|
+
@custom-media --landscape (orientation: landscape) and (width >= 15em) and (width < 60em);
|
|
57
71
|
|
|
58
|
-
@custom-media --portrait (orientation:portrait) and (width >=
|
|
72
|
+
@custom-media --portrait (orientation: portrait) and (width >= 15em) and (width < 60em);
|
|
59
73
|
|
|
60
74
|
@custom-media --touch (hover: none) and (pointer: coarse);
|
|
61
75
|
|