@clayui/css 3.142.2 → 3.145.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 +19 -28
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +13 -22
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +21 -157
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/plus-circle-full.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/plus-circle-full.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_custom-forms.scss +11 -6
- package/src/scss/cadmin/components/_cards.scss +0 -5
- package/src/scss/cadmin/components/_list-group.scss +0 -70
- package/src/scss/cadmin/variables/_custom-forms.scss +18 -16
- package/src/scss/cadmin/variables/_slideout.scss +0 -3
- package/src/scss/components/_list-group.scss +6 -0
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/variables/_cards.scss +0 -6
- package/src/scss/variables/_custom-forms.scss +13 -11
- package/src/scss/variables/_list-group.scss +2 -0
- package/src/scss/variables/_slideout.scss +0 -3
|
@@ -33,7 +33,7 @@ $custom-control-indicator-bg: if(
|
|
|
33
33
|
$input-bg,
|
|
34
34
|
$white
|
|
35
35
|
) !default;
|
|
36
|
-
$custom-control-indicator-bg-size:
|
|
36
|
+
$custom-control-indicator-bg-size: 8px 8px !default;
|
|
37
37
|
$custom-control-indicator-border-color: $gray-500 !default;
|
|
38
38
|
$custom-control-indicator-border-style: solid !default;
|
|
39
39
|
$custom-control-indicator-border-width: $border-width !default;
|
|
@@ -42,7 +42,7 @@ $custom-control-indicator-box-shadow: if(
|
|
|
42
42
|
$input-box-shadow,
|
|
43
43
|
inset 0 1px 1px rgba($black, 0.075)
|
|
44
44
|
) !default;
|
|
45
|
-
$custom-control-indicator-position-top: 0
|
|
45
|
+
$custom-control-indicator-position-top: 0 !default;
|
|
46
46
|
|
|
47
47
|
$custom-control-indicator-focus-border-color: if(
|
|
48
48
|
variable-exists(input-focus-border-color),
|
|
@@ -114,8 +114,7 @@ $custom-control-margin-top: null !default;
|
|
|
114
114
|
|
|
115
115
|
/// @deprecated after of v3.5.0 use the Sass map `$custom-control` instead
|
|
116
116
|
|
|
117
|
-
$custom-control-min-height:
|
|
118
|
-
($custom-control-indicator-position-top * 2) !default;
|
|
117
|
+
$custom-control-min-height: 1.5rem !default;
|
|
119
118
|
|
|
120
119
|
// .custom-control-label
|
|
121
120
|
|
|
@@ -178,19 +177,20 @@ $custom-control-label: map-deep-merge(
|
|
|
178
177
|
height: $custom-control-indicator-size,
|
|
179
178
|
left: 0,
|
|
180
179
|
position: relative,
|
|
181
|
-
top:
|
|
180
|
+
top: 0.25rem,
|
|
182
181
|
transition: clay-enable-transitions($custom-forms-transition),
|
|
183
182
|
width: $custom-control-indicator-size,
|
|
184
183
|
),
|
|
185
184
|
after: (
|
|
186
185
|
background: no-repeat 50% / #{$custom-control-indicator-bg-size},
|
|
186
|
+
border-radius: $rounded-circle-border-radius,
|
|
187
187
|
content: '',
|
|
188
188
|
display: block,
|
|
189
|
-
height:
|
|
190
|
-
left: 0,
|
|
189
|
+
height: 1.5rem,
|
|
190
|
+
left: -0.25rem,
|
|
191
191
|
position: absolute,
|
|
192
192
|
top: $custom-control-indicator-position-top,
|
|
193
|
-
width:
|
|
193
|
+
width: 1.5rem,
|
|
194
194
|
),
|
|
195
195
|
),
|
|
196
196
|
$custom-control-label
|
|
@@ -276,17 +276,19 @@ $custom-control-input: map-deep-merge(
|
|
|
276
276
|
$form-check-input-cursor,
|
|
277
277
|
$link-cursor
|
|
278
278
|
),
|
|
279
|
-
height:
|
|
280
|
-
left: 0,
|
|
279
|
+
height: 1.5rem,
|
|
280
|
+
left: -0.25rem,
|
|
281
281
|
opacity: 0,
|
|
282
282
|
position: absolute,
|
|
283
283
|
top: $custom-control-indicator-position-top,
|
|
284
|
-
width:
|
|
284
|
+
width: 1.5rem,
|
|
285
285
|
z-index: 1,
|
|
286
286
|
focus: (
|
|
287
287
|
custom-control-label: (
|
|
288
288
|
before: (
|
|
289
289
|
border-color: $custom-control-indicator-focus-border-color,
|
|
290
|
+
),
|
|
291
|
+
after: (
|
|
290
292
|
box-shadow: $custom-control-indicator-focus-box-shadow,
|
|
291
293
|
),
|
|
292
294
|
),
|