@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.
@@ -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: 50% 50% !default;
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.25rem !default;
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: $custom-control-indicator-size +
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: $custom-control-indicator-position-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: $custom-control-indicator-size,
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: $custom-control-indicator-size,
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: $custom-control-indicator-size,
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: $custom-control-indicator-size,
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
  ),
@@ -209,6 +209,8 @@ $list-group: map-deep-merge(
209
209
 
210
210
  // List Group Item Variants
211
211
 
212
+ // @deprecated as of v3.142.2 with no replacement
213
+
212
214
  $list-group-item-theme-colors: () !default;
213
215
  $list-group-item-theme-colors: map-deep-merge(
214
216
  (
@@ -95,9 +95,6 @@ $c-slideout: map-deep-merge(
95
95
  flex-shrink: 0,
96
96
  position: relative,
97
97
  width: $c-slideout-sidebar-width,
98
- sidebar-header: (
99
- border-bottom-width: 1px,
100
- ),
101
98
  sidebar-body: (
102
99
  flex-grow: 1,
103
100
  overflow: visible,