@clayui/css 3.118.0 → 3.119.1

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.
@@ -19,6 +19,7 @@
19
19
  '-webkit-overflow-scrolling',
20
20
  '-webkit-tap-highlight-color',
21
21
  '-webkit-text-size-adjust',
22
+ 'accent-color',
22
23
  'align-content',
23
24
  'align-items',
24
25
  'align-self',
@@ -31,6 +32,8 @@
31
32
  'animation-name',
32
33
  'animation-play-state',
33
34
  'animation-timing-function',
35
+ 'aspect-ratio',
36
+ 'backdrop-filter',
34
37
  'backface-visibility',
35
38
  'background',
36
39
  'background-attachment',
@@ -76,13 +79,19 @@
76
79
  'border-top-width',
77
80
  'border-width',
78
81
  'bottom',
82
+ 'box-decoration-break',
79
83
  'box-shadow',
80
84
  'box-sizing',
81
85
  'caption-side',
86
+ 'caret-color',
82
87
  'clear',
83
88
  'clip',
84
89
  '-webkit-clip-path',
85
90
  'clip-path',
91
+ 'contain',
92
+ 'container',
93
+ 'container-name',
94
+ 'container-type',
86
95
  'color',
87
96
  'column-count',
88
97
  'column-fill',
@@ -113,11 +122,13 @@
113
122
  'float',
114
123
  'font',
115
124
  'font-family',
125
+ 'font-feature-settings',
116
126
  'font-kerning',
117
127
  'font-size',
118
128
  'font-stretch',
119
129
  'font-style',
120
130
  'font-variant',
131
+ 'font-variant-numeric',
121
132
  'font-weight',
122
133
  'gap',
123
134
  'grid',
@@ -139,6 +150,9 @@
139
150
  'grid-template-columns',
140
151
  'grid-template-rows',
141
152
  'height',
153
+ 'hyphens',
154
+ 'inset',
155
+ 'isolation',
142
156
  'justify-content',
143
157
  'left',
144
158
  'letter-spacing',
@@ -174,6 +188,7 @@
174
188
  'max-width',
175
189
  'min-height',
176
190
  'min-width',
191
+ 'mix-blend-mode',
177
192
  'object-fit',
178
193
  'object-position',
179
194
  'opacity',
@@ -186,6 +201,9 @@
186
201
  'overflow',
187
202
  'overflow-x',
188
203
  'overflow-y',
204
+ 'overscroll-behavior',
205
+ 'overscroll-behavior-x',
206
+ 'overscroll-behavior-y',
189
207
  'padding',
190
208
  'padding-bottom',
191
209
  'padding-left',
@@ -196,12 +214,28 @@
196
214
  'page-break-inside',
197
215
  'perspective',
198
216
  'perspective-origin',
217
+ 'place-content',
218
+ 'place-items',
219
+ 'place-self',
199
220
  'pointer-events',
200
221
  'position',
201
222
  'resize',
202
223
  'right',
203
224
  'row-gap',
204
225
  'scroll-behavior',
226
+ 'scroll-margin',
227
+ 'scroll-margin-bottom',
228
+ 'scroll-margin-left',
229
+ 'scroll-margin-right',
230
+ 'scroll-margin-top',
231
+ 'scroll-padding',
232
+ 'scroll-padding-bottom',
233
+ 'scroll-padding-left',
234
+ 'scroll-padding-right',
235
+ 'scroll-padding-top',
236
+ 'scroll-snap-align',
237
+ 'scroll-snap-stop',
238
+ 'scroll-snap-type',
205
239
  'scrollbar-width',
206
240
  'table-layout',
207
241
  'text-align',
@@ -356,6 +390,10 @@
356
390
  -moz-user-select: $value;
357
391
  -webkit-user-select: $value;
358
392
  user-select: $value;
393
+ } @else if ($key == 'aspect-ratio') {
394
+ @if (type-of($value) != 'map') {
395
+ aspect-ratio: $value;
396
+ }
359
397
  } @else if (index($properties, $key)) {
360
398
  #{$key}: #{$value};
361
399
  }
@@ -757,7 +757,6 @@ $dropdown-menu-width-shrink: () !default;
757
757
  $dropdown-menu-width-shrink: map-deep-merge(
758
758
  (
759
759
  min-width: 0,
760
- white-space: nowrap,
761
760
  ),
762
761
  $dropdown-menu-width-shrink
763
762
  );
@@ -21,4 +21,7 @@ $zindex-pagination-link-focus: 4 !default;
21
21
  $zindex-pagination-link-active: 3 !default;
22
22
  $zindex-pagination-link-disabled: 0 !default;
23
23
  $zindex-panel-header-link-focus: 1 !default;
24
- $zindex-sidenav: $zindex-fixed + 5 !default; // 1035
24
+ $zindex-sidenav: calc(#{$zindex-dropdown} - 25) !default; // 975
25
+
26
+ $zindex-c-slideout: $zindex-sidenav !default; // 975
27
+ $zindex-c-slideout-height-full: calc(#{$zindex-fixed} + 5) !default; // 1035
@@ -49,7 +49,7 @@ $c-slideout: map-deep-merge(
49
49
  (
50
50
  display: flex,
51
51
  overflow: hidden,
52
- z-index: $zindex-sidenav,
52
+ z-index: $zindex-c-slideout,
53
53
  c-slideout-shown: (
54
54
  overflow: visible,
55
55
  ),
@@ -192,3 +192,11 @@ $c-slideout-end-sm-down: map-deep-merge(
192
192
  ),
193
193
  $c-slideout-end-sm-down
194
194
  );
195
+
196
+ $c-slideout-height-full: () !default;
197
+ $c-slideout-height-full: map-deep-merge(
198
+ (
199
+ z-index: $zindex-c-slideout-height-full,
200
+ ),
201
+ $c-slideout-height-full
202
+ );