@clayui/css 3.119.0 → 3.121.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.
- package/lib/css/atlas.css +22 -2
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +22 -2
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +23 -3
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +89 -0
- package/src/scss/cadmin/components/_tables.scss +78 -0
- package/src/scss/cadmin/variables/_dropdowns.scss +0 -1
- package/src/scss/cadmin/variables/_globals.scss +89 -0
- package/src/scss/components/_tables.scss +78 -0
- package/src/scss/mixins/_globals.scss +38 -0
- package/src/scss/variables/_dropdowns.scss +0 -1
- package/src/scss/variables/_globals.scss +89 -0
|
@@ -86,6 +86,24 @@ caption {
|
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
+
|
|
90
|
+
&.table-hover {
|
|
91
|
+
tbody tr:nth-of-type(#{$table-striped-order}):hover {
|
|
92
|
+
&:not(.table-active):not(.table-disabled):not(.table-divider) {
|
|
93
|
+
&,
|
|
94
|
+
td,
|
|
95
|
+
th {
|
|
96
|
+
background-color: map-deep-get(
|
|
97
|
+
$c-table-hover,
|
|
98
|
+
tbody,
|
|
99
|
+
tr,
|
|
100
|
+
hover,
|
|
101
|
+
background-color
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
89
107
|
}
|
|
90
108
|
|
|
91
109
|
// Table Hover
|
|
@@ -240,6 +258,18 @@ td.table-focus {
|
|
|
240
258
|
}
|
|
241
259
|
}
|
|
242
260
|
}
|
|
261
|
+
|
|
262
|
+
&.table-hover {
|
|
263
|
+
tbody tr:nth-of-type(#{$table-striped-order}):hover {
|
|
264
|
+
&:not(.table-active):not(.table-disabled):not(.table-divider) {
|
|
265
|
+
&,
|
|
266
|
+
td,
|
|
267
|
+
th {
|
|
268
|
+
background-color: $table-dark-hover-bg;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
243
273
|
}
|
|
244
274
|
|
|
245
275
|
&.table-hover {
|
|
@@ -319,6 +349,24 @@ td.table-focus {
|
|
|
319
349
|
}
|
|
320
350
|
}
|
|
321
351
|
}
|
|
352
|
+
|
|
353
|
+
&.table-hover {
|
|
354
|
+
tbody tr:nth-of-type(#{$table-striped-order}):hover {
|
|
355
|
+
&:not(.table-active):not(.table-disabled):not(.table-divider) {
|
|
356
|
+
&,
|
|
357
|
+
th,
|
|
358
|
+
td {
|
|
359
|
+
background-color: map-deep-get(
|
|
360
|
+
$c-table-list-table-hover,
|
|
361
|
+
tbody,
|
|
362
|
+
tr,
|
|
363
|
+
hover,
|
|
364
|
+
background-color
|
|
365
|
+
);
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
322
370
|
}
|
|
323
371
|
|
|
324
372
|
// Table List Hover
|
|
@@ -564,6 +612,21 @@ td.table-focus {
|
|
|
564
612
|
background-color: $table-quick-action-menu-accent-active-bg;
|
|
565
613
|
}
|
|
566
614
|
}
|
|
615
|
+
|
|
616
|
+
&.table-hover {
|
|
617
|
+
tbody tr:nth-of-type(#{$table-striped-order}):hover {
|
|
618
|
+
.quick-action-menu {
|
|
619
|
+
background-color: map-deep-get(
|
|
620
|
+
$c-table-hover,
|
|
621
|
+
tbody,
|
|
622
|
+
tr,
|
|
623
|
+
hover,
|
|
624
|
+
quick-action-menu,
|
|
625
|
+
background-color
|
|
626
|
+
);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
}
|
|
567
630
|
}
|
|
568
631
|
|
|
569
632
|
.table-list.table-striped {
|
|
@@ -578,6 +641,21 @@ td.table-focus {
|
|
|
578
641
|
background-color: $table-list-quick-action-menu-accent-active-bg;
|
|
579
642
|
}
|
|
580
643
|
}
|
|
644
|
+
|
|
645
|
+
&.table-hover {
|
|
646
|
+
tbody tr:nth-of-type(#{$table-striped-order}):hover {
|
|
647
|
+
.quick-action-menu {
|
|
648
|
+
background-color: map-deep-get(
|
|
649
|
+
$c-table-list-table-hover,
|
|
650
|
+
tbody,
|
|
651
|
+
tr,
|
|
652
|
+
hover,
|
|
653
|
+
quick-action-menu,
|
|
654
|
+
background-color
|
|
655
|
+
);
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
581
659
|
}
|
|
582
660
|
|
|
583
661
|
// Table Column Utilities
|
|
@@ -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
|
}
|
|
@@ -78,16 +78,105 @@ $grays: map-merge(
|
|
|
78
78
|
$grays
|
|
79
79
|
);
|
|
80
80
|
|
|
81
|
+
$blue-d4: #004799 !default;
|
|
82
|
+
$blue-d3: #0053b3 !default;
|
|
83
|
+
$blue-d2: #005fcc !default;
|
|
84
|
+
$blue-d1: #006be6 !default;
|
|
81
85
|
$blue: #007bff !default;
|
|
86
|
+
$blue-l1: #338fff !default;
|
|
87
|
+
$blue-l2: #66abff !default;
|
|
88
|
+
$blue-l3: #97c5ff !default;
|
|
89
|
+
$blue-l4: #cce3ff !default;
|
|
90
|
+
|
|
91
|
+
$indigo-d4: #0017e5 !default;
|
|
92
|
+
$indigo-d3: #001aff !default;
|
|
93
|
+
$indigo-d2: #1a30ff !default;
|
|
94
|
+
$indigo-d1: #3347ff !default;
|
|
82
95
|
$indigo: #6610f2 !default;
|
|
96
|
+
$indigo-l1: #808cff !default;
|
|
97
|
+
$indigo-l2: #99a3ff !default;
|
|
98
|
+
$indigo-l3: #b2baff !default;
|
|
99
|
+
$indigo-l4: #ccd1ff !default;
|
|
100
|
+
|
|
101
|
+
$purple-d4: #7700cc !default;
|
|
102
|
+
$purple-d3: #8600e6 !default;
|
|
103
|
+
$purple-d2: #9500ff !default;
|
|
104
|
+
$purple-d1: #9f1aff !default;
|
|
83
105
|
$purple: #6f42c1 !default;
|
|
106
|
+
$purple-l1: #bf66ff !default;
|
|
107
|
+
$purple-l2: #ca80ff !default;
|
|
108
|
+
$purple-l3: #d499ff !default;
|
|
109
|
+
$purple-l4: #dfb3ff !default;
|
|
110
|
+
|
|
111
|
+
$pink-d4: #800048 !default;
|
|
112
|
+
$pink-d3: #990057 !default;
|
|
113
|
+
$pink-d2: #b30065 !default;
|
|
114
|
+
$pink-d1: #cc0074 !default;
|
|
84
115
|
$pink: #e83e8c !default;
|
|
116
|
+
$pink-l1: #ff4db2 !default;
|
|
117
|
+
$pink-l2: #ff80c8 !default;
|
|
118
|
+
$pink-l3: #ff99d3 !default;
|
|
119
|
+
$pink-l4: #ffb3de !default;
|
|
120
|
+
|
|
121
|
+
$red-d4: #800000 !default;
|
|
122
|
+
$red-d3: #990000 !default;
|
|
123
|
+
$red-d2: #b30000 !default;
|
|
124
|
+
$red-d1: #cc0000 !default;
|
|
85
125
|
$red: #dc3545 !default;
|
|
126
|
+
$red-l1: #ff4d4d !default;
|
|
127
|
+
$red-l2: #ff6666 !default;
|
|
128
|
+
$red-l3: #ff8080 !default;
|
|
129
|
+
$red-l4: #ff9999 !default;
|
|
130
|
+
|
|
131
|
+
$orange-d4: #662700 !default;
|
|
132
|
+
$orange-d3: #803100 !default;
|
|
133
|
+
$orange-d2: #993b00 !default;
|
|
134
|
+
$orange-d1: #b34400 !default;
|
|
86
135
|
$orange: #fd7e14 !default;
|
|
136
|
+
$orange-l1: #ff6200 !default;
|
|
137
|
+
$orange-l2: #ff8133 !default;
|
|
138
|
+
$orange-l3: #ffa166 !default;
|
|
139
|
+
$orange-l4: #ffc099 !default;
|
|
140
|
+
|
|
141
|
+
$yellow-d4: #997000 !default;
|
|
142
|
+
$yellow-d3: #b38900 !default;
|
|
143
|
+
$yellow-d2: #cc9600 !default;
|
|
144
|
+
$yellow-d1: #e6a800 !default;
|
|
87
145
|
$yellow: #ffc107 !default;
|
|
146
|
+
$yellow-l1: #ffc933 !default;
|
|
147
|
+
$yellow-l2: #ffd666 !default;
|
|
148
|
+
$yellow-l3: #ffe499 !default;
|
|
149
|
+
$yellow-l4: #fff1cc !default;
|
|
150
|
+
|
|
151
|
+
$green-d4: #162d06 !default;
|
|
152
|
+
$green-d3: #22430a !default;
|
|
153
|
+
$green-d2: #2e590d !default;
|
|
154
|
+
$green-d1: #397010 !default;
|
|
88
155
|
$green: #28a745 !default;
|
|
156
|
+
$green-l1: #53a117 !default;
|
|
157
|
+
$green-l2: #67c91d !default;
|
|
158
|
+
$green-l3: #81e236 !default;
|
|
159
|
+
$green-l4: #9de963 !default;
|
|
160
|
+
|
|
161
|
+
$teal-d4: #092a25 !default;
|
|
162
|
+
$teal-d3: #0d3f37 !default;
|
|
163
|
+
$teal-d2: #125449 !default;
|
|
164
|
+
$teal-d1: #16695b !default;
|
|
89
165
|
$teal: #20c997 !default;
|
|
166
|
+
$teal-l1: #24a892 !default;
|
|
167
|
+
$teal-l2: #42d7be !default;
|
|
168
|
+
$teal-l3: #6ce0cc !default;
|
|
169
|
+
$teal-l4: #96e9db !default;
|
|
170
|
+
|
|
171
|
+
$cyan-d4: #00334d !default;
|
|
172
|
+
$cyan-d3: #004466 !default;
|
|
173
|
+
$cyan-d2: #005580 !default;
|
|
174
|
+
$cyan-d1: #006699 !default;
|
|
90
175
|
$cyan: #17a2b8 !default;
|
|
176
|
+
$cyan-l1: #0099e6 !default;
|
|
177
|
+
$cyan-l2: #33bbff !default;
|
|
178
|
+
$cyan-l3: #66ccff !default;
|
|
179
|
+
$cyan-l4: #99ddff !default;
|
|
91
180
|
|
|
92
181
|
$colors: () !default;
|
|
93
182
|
$colors: map-merge(
|