@clayui/css 3.46.0 → 3.47.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 +143 -74
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +107 -56
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +123 -64
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/atlas/variables/_cards.scss +12 -0
- package/src/scss/atlas/variables/_list-group.scss +28 -12
- package/src/scss/cadmin/components/_cards.scss +10 -120
- package/src/scss/cadmin/components/_empty-state.scss +36 -0
- package/src/scss/cadmin/components/_links.scss +0 -8
- package/src/scss/cadmin/components/_treeview.scss +58 -1
- package/src/scss/cadmin/variables/_cards.scss +164 -1
- package/src/scss/cadmin/variables/_empty-state.scss +23 -0
- package/src/scss/cadmin/variables/_links.scss +14 -0
- package/src/scss/cadmin/variables/_list-group.scss +32 -16
- package/src/scss/cadmin/variables/_sidebar.scss +1 -1
- package/src/scss/cadmin/variables/_treeview.scss +17 -1
- package/src/scss/components/_cards.scss +28 -122
- package/src/scss/components/_empty-state.scss +30 -0
- package/src/scss/components/_links.scss +1 -9
- package/src/scss/components/_tables.scss +0 -8
- package/src/scss/components/_treeview.scss +58 -1
- package/src/scss/mixins/_cards.scss +59 -25
- package/src/scss/mixins/_links.scss +22 -2
- package/src/scss/variables/_cards.scss +158 -4
- package/src/scss/variables/_empty-state.scss +23 -0
- package/src/scss/variables/_links.scss +21 -3
- package/src/scss/variables/_list-group.scss +22 -12
- package/src/scss/variables/_sidebar.scss +3 -3
- package/src/scss/variables/_tables.scss +14 -0
- package/src/scss/variables/_treeview.scss +21 -1
|
@@ -177,6 +177,13 @@ $table-title-link: map-deep-merge(
|
|
|
177
177
|
$table-title-link
|
|
178
178
|
);
|
|
179
179
|
|
|
180
|
+
$table-title: map-deep-merge(
|
|
181
|
+
$table-title,
|
|
182
|
+
(
|
|
183
|
+
href: $table-title-link,
|
|
184
|
+
)
|
|
185
|
+
);
|
|
186
|
+
|
|
180
187
|
// Table Link
|
|
181
188
|
|
|
182
189
|
$table-link: () !default;
|
|
@@ -386,6 +393,13 @@ $table-list-title-link: map-deep-merge(
|
|
|
386
393
|
$table-list-title-link
|
|
387
394
|
);
|
|
388
395
|
|
|
396
|
+
$table-list-title: map-deep-merge(
|
|
397
|
+
$table-list-title,
|
|
398
|
+
(
|
|
399
|
+
href: $table-list-title-link,
|
|
400
|
+
)
|
|
401
|
+
);
|
|
402
|
+
|
|
389
403
|
// Table List Link
|
|
390
404
|
|
|
391
405
|
$table-list-link: () !default;
|
|
@@ -52,6 +52,7 @@ $treeview: map-merge(
|
|
|
52
52
|
),
|
|
53
53
|
),
|
|
54
54
|
treeview-link: (
|
|
55
|
+
background-color: transparent,
|
|
55
56
|
cursor: pointer,
|
|
56
57
|
display: block,
|
|
57
58
|
border-color: transparent,
|
|
@@ -62,6 +63,7 @@ $treeview: map-merge(
|
|
|
62
63
|
min-width: 100%,
|
|
63
64
|
padding: 0,
|
|
64
65
|
position: relative,
|
|
66
|
+
text-align: left,
|
|
65
67
|
user-select: none,
|
|
66
68
|
treeview-dropping-bottom: (
|
|
67
69
|
box-shadow: 0 2px 0 0 $primary-l1,
|
|
@@ -80,6 +82,9 @@ $treeview: map-merge(
|
|
|
80
82
|
box-shadow: $component-focus-inset-box-shadow,
|
|
81
83
|
outline: 0,
|
|
82
84
|
),
|
|
85
|
+
disabled: (
|
|
86
|
+
cursor: $disabled-cursor,
|
|
87
|
+
),
|
|
83
88
|
),
|
|
84
89
|
component-action: (
|
|
85
90
|
display: none,
|
|
@@ -160,6 +165,10 @@ $treeview-light: map-deep-merge(
|
|
|
160
165
|
hover: (
|
|
161
166
|
color: $primary,
|
|
162
167
|
),
|
|
168
|
+
disabled: (
|
|
169
|
+
color: $secondary,
|
|
170
|
+
opacity: 0.5,
|
|
171
|
+
),
|
|
163
172
|
btn-secondary: (
|
|
164
173
|
background-color: $white,
|
|
165
174
|
),
|
|
@@ -178,6 +187,10 @@ $treeview-light: map-deep-merge(
|
|
|
178
187
|
background-color: $gray-200,
|
|
179
188
|
color: $gray-900,
|
|
180
189
|
),
|
|
190
|
+
disabled: (
|
|
191
|
+
background-color: transparent,
|
|
192
|
+
color: rgba($gray-600, 0.5),
|
|
193
|
+
),
|
|
181
194
|
show: (
|
|
182
195
|
background-color: null,
|
|
183
196
|
color: null,
|
|
@@ -195,6 +208,10 @@ $treeview-dark: map-deep-merge(
|
|
|
195
208
|
hover: (
|
|
196
209
|
color: $primary-l1,
|
|
197
210
|
),
|
|
211
|
+
disabled: (
|
|
212
|
+
color: $secondary-l1,
|
|
213
|
+
opacity: 0.5,
|
|
214
|
+
),
|
|
198
215
|
),
|
|
199
216
|
treeview-link: (
|
|
200
217
|
color: $secondary-l1,
|
|
@@ -207,7 +224,7 @@ $treeview-dark: map-deep-merge(
|
|
|
207
224
|
),
|
|
208
225
|
disabled: (
|
|
209
226
|
background-color: transparent,
|
|
210
|
-
color: rgba($secondary-l1, 0.
|
|
227
|
+
color: rgba($secondary-l1, 0.5),
|
|
211
228
|
),
|
|
212
229
|
show: (
|
|
213
230
|
background-color: null,
|
|
@@ -216,6 +233,9 @@ $treeview-dark: map-deep-merge(
|
|
|
216
233
|
),
|
|
217
234
|
component-action: (
|
|
218
235
|
color: $secondary-l1,
|
|
236
|
+
disabled: (
|
|
237
|
+
color: $secondary-l1,
|
|
238
|
+
),
|
|
219
239
|
),
|
|
220
240
|
),
|
|
221
241
|
$treeview-dark
|