@gitlab/ui 89.0.0 → 89.0.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.
- package/CHANGELOG.md +7 -0
- package/bin/migrate_custom_utils_to_tw.bundled.mjs +1 -0
- package/dist/components/base/datepicker/datepicker.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/components/base/datepicker/datepicker.vue +1 -1
- package/src/components/base/form/form_checkbox/form_checkbox.scss +3 -3
package/package.json
CHANGED
|
@@ -369,7 +369,7 @@ export default {
|
|
|
369
369
|
|
|
370
370
|
<template>
|
|
371
371
|
<div :class="datepickerClasses">
|
|
372
|
-
<div v-if="showDefaultField" class="gl-
|
|
372
|
+
<div v-if="showDefaultField" class="gl-flex gl-items-start gl-gap-3">
|
|
373
373
|
<div class="gl-relative gl-flex gl-grow">
|
|
374
374
|
<!--
|
|
375
375
|
@slot (optional) Input to display and bind the datepicker to. Defaults to `<gl-form-input />`
|
|
@@ -102,17 +102,17 @@
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.custom-control-input[type='checkbox']:checked ~ .custom-control-label::after {
|
|
105
|
-
background-
|
|
105
|
+
background-color: var(--gl-control-indicator-color-selected);
|
|
106
106
|
mask-image: url('#{$gl-icon-check}');
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.custom-control-input[type='checkbox']:indeterminate ~ .custom-control-label::after {
|
|
110
|
-
background-
|
|
110
|
+
background-color: var(--gl-control-indicator-color-selected);
|
|
111
111
|
mask-image: url('#{$gl-icon-indeterminate}');
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
.custom-control-input[type='radio']:checked ~ .custom-control-label::after {
|
|
115
|
-
background-
|
|
115
|
+
background-color: var(--gl-control-indicator-color-selected);
|
|
116
116
|
mask-image: url('#{$gl-icon-radio}');
|
|
117
117
|
}
|
|
118
118
|
|