@gitlab/ui 98.1.2 → 98.3.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/CHANGELOG.md +17 -0
- package/dist/components/base/datepicker/datepicker.js +1 -1
- package/dist/components/charts/area/area.js +1 -1
- package/dist/components/charts/bar/bar.js +1 -1
- package/dist/components/charts/column/column.js +1 -1
- package/dist/components/charts/discrete_scatter/discrete_scatter.js +1 -1
- package/dist/components/charts/legend/legend.js +4 -3
- package/dist/components/charts/line/line.js +1 -1
- package/dist/components/charts/stacked_column/stacked_column.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_items_loading.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +84 -84
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +46 -46
- package/dist/tokens/js/tokens.dark.js +84 -84
- package/dist/tokens/json/tokens.dark.json +147 -132
- package/dist/tokens/json/tokens.json +63 -48
- package/dist/tokens/scss/_tokens.dark.scss +46 -46
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/vendor/bootstrap-vue/src/mixins/dropdown.js +1 -1
- package/package.json +1 -1
- package/src/components/base/datepicker/datepicker.vue +1 -1
- package/src/components/base/form/input_group_text/input_group_text.scss +7 -0
- package/src/components/charts/area/area.vue +1 -1
- package/src/components/charts/bar/bar.vue +1 -1
- package/src/components/charts/column/column.vue +1 -1
- package/src/components/charts/discrete_scatter/discrete_scatter.vue +1 -1
- package/src/components/charts/legend/legend.vue +4 -3
- package/src/components/charts/line/line.vue +1 -1
- package/src/components/charts/stacked_column/stacked_column.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_items_loading.vue +1 -1
- package/src/scss/components.scss +1 -0
- package/src/tokens/action.tokens.json +21 -12
- package/src/tokens/build/css/tokens.css +1 -1
- package/src/tokens/build/css/tokens.dark.css +46 -46
- package/src/tokens/build/js/tokens.dark.js +84 -84
- package/src/tokens/build/json/tokens.dark.json +147 -132
- package/src/tokens/build/json/tokens.json +63 -48
- package/src/tokens/build/scss/_tokens.dark.scss +46 -46
- package/src/tokens/build/scss/_tokens.scss +1 -1
- package/src/tokens/contextual/button.tokens.json +42 -36
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.spec.js +2 -2
- package/src/vendor/bootstrap-vue/src/mixins/dropdown.js +1 -1
|
@@ -243,7 +243,7 @@ export default {
|
|
|
243
243
|
datepickerClasses() {
|
|
244
244
|
return [
|
|
245
245
|
'gl-datepicker',
|
|
246
|
-
'
|
|
246
|
+
'gl-inline-block',
|
|
247
247
|
'gl-w-full',
|
|
248
248
|
// eslint-disable-next-line @gitlab/tailwind-no-interpolation -- Not a CSS utility
|
|
249
249
|
`gl-form-input-${this.computedWidth}`,
|
|
@@ -316,7 +316,7 @@ export default {
|
|
|
316
316
|
</script>
|
|
317
317
|
|
|
318
318
|
<template>
|
|
319
|
-
<div class="
|
|
319
|
+
<div class="gl-relative" :class="{ [$options.HEIGHT_AUTO_CLASSES]: autoHeight }">
|
|
320
320
|
<chart
|
|
321
321
|
v-bind="$attrs"
|
|
322
322
|
:class="{ 'gl-grow': autoHeight }"
|
|
@@ -218,7 +218,7 @@ export default {
|
|
|
218
218
|
</script>
|
|
219
219
|
|
|
220
220
|
<template>
|
|
221
|
-
<div class="
|
|
221
|
+
<div class="gl-relative" :class="{ [$options.HEIGHT_AUTO_CLASSES]: autoHeight }">
|
|
222
222
|
<chart
|
|
223
223
|
v-bind="$attrs"
|
|
224
224
|
:class="{ 'gl-grow': autoHeight }"
|
|
@@ -175,7 +175,7 @@ export default {
|
|
|
175
175
|
};
|
|
176
176
|
</script>
|
|
177
177
|
<template>
|
|
178
|
-
<div class="
|
|
178
|
+
<div class="gl-relative" :class="{ [$options.HEIGHT_AUTO_CLASSES]: autoHeight }">
|
|
179
179
|
<chart
|
|
180
180
|
v-bind="$attrs"
|
|
181
181
|
:class="{ 'gl-grow': autoHeight }"
|
|
@@ -180,7 +180,7 @@ export default {
|
|
|
180
180
|
};
|
|
181
181
|
</script>
|
|
182
182
|
<template>
|
|
183
|
-
<div class="
|
|
183
|
+
<div class="gl-relative" :class="{ [$options.HEIGHT_AUTO_CLASSES]: autoHeight }">
|
|
184
184
|
<chart
|
|
185
185
|
v-bind="$attrs"
|
|
186
186
|
:class="{ 'gl-grow': autoHeight }"
|
|
@@ -198,7 +198,7 @@ export default {
|
|
|
198
198
|
:key="key"
|
|
199
199
|
:class="{
|
|
200
200
|
'text-muted': disabledSeries[key],
|
|
201
|
-
'w-
|
|
201
|
+
'gl-w-full': seriesNameIsLong(series.name),
|
|
202
202
|
'hover:!gl-cursor-not-allowed':
|
|
203
203
|
hasOneSeriesElement || isToggleDisabled(series.name, series.disabled),
|
|
204
204
|
}"
|
|
@@ -214,7 +214,7 @@ export default {
|
|
|
214
214
|
:color="getColor(series.color, key)"
|
|
215
215
|
:type="series.type"
|
|
216
216
|
class="gl-legend-inline-series-label"
|
|
217
|
-
:class="{ 'w-
|
|
217
|
+
:class="{ 'gl-w-3/4': seriesNameIsLong(series.name) }"
|
|
218
218
|
>
|
|
219
219
|
<gl-truncate class="gl-font-bold" :text="series.name" />
|
|
220
220
|
</gl-chart-series-label>
|
|
@@ -242,7 +242,8 @@ export default {
|
|
|
242
242
|
v-for="(series, key) in seriesInfo"
|
|
243
243
|
:key="key"
|
|
244
244
|
:class="{
|
|
245
|
-
'text-
|
|
245
|
+
'gl-text-subtle': disabledSeries[key],
|
|
246
|
+
'gl-text-strong': !disabledSeries[key],
|
|
246
247
|
'hover:!gl-cursor-not-allowed':
|
|
247
248
|
hasOneSeriesElement || isToggleDisabled(series.name, series.disabled),
|
|
248
249
|
}"
|
|
@@ -312,7 +312,7 @@ export default {
|
|
|
312
312
|
</script>
|
|
313
313
|
|
|
314
314
|
<template>
|
|
315
|
-
<div class="
|
|
315
|
+
<div class="gl-relative" :class="{ [$options.HEIGHT_AUTO_CLASSES]: autoHeight }">
|
|
316
316
|
<chart
|
|
317
317
|
v-bind="$attrs"
|
|
318
318
|
:class="{ 'gl-grow': autoHeight }"
|
|
@@ -296,7 +296,7 @@ export default {
|
|
|
296
296
|
};
|
|
297
297
|
</script>
|
|
298
298
|
<template>
|
|
299
|
-
<div class="
|
|
299
|
+
<div class="gl-relative" :class="{ [$options.HEIGHT_AUTO_CLASSES]: autoHeight }">
|
|
300
300
|
<chart
|
|
301
301
|
v-bind="$attrs"
|
|
302
302
|
:class="{ 'gl-grow': autoHeight }"
|
|
@@ -29,6 +29,6 @@ export default {
|
|
|
29
29
|
</div>
|
|
30
30
|
<div class="gl-animate-skeleton-loader gl-h-4 gl-w-1/2 gl-rounded-base"></div>
|
|
31
31
|
</div>
|
|
32
|
-
<span class="sr-only">{{ $options.i18n.loadingMessage }}</span>
|
|
32
|
+
<span class="gl-sr-only">{{ $options.i18n.loadingMessage }}</span>
|
|
33
33
|
</div>
|
|
34
34
|
</template>
|
package/src/scss/components.scss
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
@import '../components/base/form/form_radio_group/form_radio_group';
|
|
46
46
|
@import '../components/base/form/form_select/form_select';
|
|
47
47
|
@import '../components/base/form/form_combobox/form_combobox';
|
|
48
|
+
@import '../components/base/form/input_group_text/input_group_text';
|
|
48
49
|
@import '../components/base/icon/icon';
|
|
49
50
|
@import '../components/base/infinite_scroll/infinite_scroll';
|
|
50
51
|
@import '../components/base/label/label';
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"default": {
|
|
211
211
|
"$value": {
|
|
212
212
|
"default": "{color.blue.500}",
|
|
213
|
-
"dark": "{color.blue.
|
|
213
|
+
"dark": "{color.blue.200}"
|
|
214
214
|
},
|
|
215
215
|
"$type": "color",
|
|
216
216
|
"$description": "Used for the foreground of a confirm (positive) action in the default state."
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
"hover": {
|
|
219
219
|
"$value": {
|
|
220
220
|
"default": "{color.blue.700}",
|
|
221
|
-
"dark": "{color.blue.
|
|
221
|
+
"dark": "{color.blue.100}"
|
|
222
222
|
},
|
|
223
223
|
"$type": "color",
|
|
224
224
|
"$description": "Used for the foreground of a confirm (positive) action in the hover state."
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
"active": {
|
|
232
232
|
"$value": {
|
|
233
233
|
"default": "{color.blue.900}",
|
|
234
|
-
"dark": "{color.blue.
|
|
234
|
+
"dark": "{color.blue.100}"
|
|
235
235
|
},
|
|
236
236
|
"$type": "color",
|
|
237
237
|
"$description": "Used for the foreground of a confirm (positive) action in the active state."
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
"default": {
|
|
303
303
|
"$value": {
|
|
304
304
|
"default": "{color.red.500}",
|
|
305
|
-
"dark": "{color.red.
|
|
305
|
+
"dark": "{color.red.200}"
|
|
306
306
|
},
|
|
307
307
|
"$type": "color",
|
|
308
308
|
"$description": "Used for the foreground of a danger (destructive) action in the default state."
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
"hover": {
|
|
311
311
|
"$value": {
|
|
312
312
|
"default": "{color.red.700}",
|
|
313
|
-
"dark": "{color.red.
|
|
313
|
+
"dark": "{color.red.100}"
|
|
314
314
|
},
|
|
315
315
|
"$type": "color",
|
|
316
316
|
"$description": "Used for the foreground of a danger (destructive) action in the hover state."
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
"active": {
|
|
324
324
|
"$value": {
|
|
325
325
|
"default": "{color.red.900}",
|
|
326
|
-
"dark": "{color.red.
|
|
326
|
+
"dark": "{color.red.100}"
|
|
327
327
|
},
|
|
328
328
|
"$type": "color",
|
|
329
329
|
"$description": "Used for the foreground of a danger (destructive) action in the active state."
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
"default": {
|
|
396
396
|
"$value": {
|
|
397
397
|
"default": "{color.blue.500}",
|
|
398
|
-
"dark": "{color.blue.
|
|
398
|
+
"dark": "{color.blue.300}"
|
|
399
399
|
},
|
|
400
400
|
"$type": "color",
|
|
401
401
|
"$description": "Used for the background of a strong confirm action in the default state."
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"hover": {
|
|
404
404
|
"$value": {
|
|
405
405
|
"default": "{color.blue.600}",
|
|
406
|
-
"dark": "{color.blue.
|
|
406
|
+
"dark": "{color.blue.200}"
|
|
407
407
|
},
|
|
408
408
|
"$type": "color",
|
|
409
409
|
"$description": "Used for the background of a strong confirm action in the hover state."
|
|
@@ -416,7 +416,7 @@
|
|
|
416
416
|
"active": {
|
|
417
417
|
"$value": {
|
|
418
418
|
"default": "{color.blue.700}",
|
|
419
|
-
"dark": "{color.blue.
|
|
419
|
+
"dark": "{color.blue.400}"
|
|
420
420
|
},
|
|
421
421
|
"$type": "color",
|
|
422
422
|
"$description": "Used for the background of a strong confirm action in the active state."
|
|
@@ -520,17 +520,26 @@
|
|
|
520
520
|
"$description": "Used for the foreground of a strong neutral action in the default state."
|
|
521
521
|
},
|
|
522
522
|
"hover": {
|
|
523
|
-
"$value":
|
|
523
|
+
"$value": {
|
|
524
|
+
"default": "{action.strong.neutral.foreground.color.default}",
|
|
525
|
+
"dark": "{color.neutral.0}"
|
|
526
|
+
},
|
|
524
527
|
"$type": "color",
|
|
525
528
|
"$description": "Used for the foreground of a strong neutral action in the hover state."
|
|
526
529
|
},
|
|
527
530
|
"focus": {
|
|
528
|
-
"$value":
|
|
531
|
+
"$value": {
|
|
532
|
+
"default": "{action.strong.neutral.foreground.color.hover}",
|
|
533
|
+
"dark": "{color.neutral.0}"
|
|
534
|
+
},
|
|
529
535
|
"$type": "color",
|
|
530
536
|
"$description": "Used for the foreground of a strong neutral action in the focus state."
|
|
531
537
|
},
|
|
532
538
|
"active": {
|
|
533
|
-
"$value":
|
|
539
|
+
"$value": {
|
|
540
|
+
"default": "{action.strong.neutral.foreground.color.focus}",
|
|
541
|
+
"dark": "{color.neutral.0}"
|
|
542
|
+
},
|
|
534
543
|
"$type": "color",
|
|
535
544
|
"$description": "Used for the foreground of a strong neutral action in the active state."
|
|
536
545
|
}
|
|
@@ -579,6 +579,7 @@
|
|
|
579
579
|
--gl-button-confirm-primary-border-color-active: var(--gl-color-blue-900); /* Used for the border of a confirm (positive) primary button in the active state. */
|
|
580
580
|
--gl-button-confirm-primary-border-color-hover: var(--gl-color-blue-800); /* Used for the border of a confirm (positive) primary button in the hover state. */
|
|
581
581
|
--gl-button-confirm-primary-border-color-default: var(--gl-color-blue-600); /* Used for the border of a confirm (positive) primary button in the default state. */
|
|
582
|
+
--gl-button-confirm-primary-foreground-color-default: var(--gl-color-neutral-0); /* Used for the foreground of a confirm (positive) primary button in the default state. */
|
|
582
583
|
--gl-button-default-tertiary-background-color-active: var(--gl-action-neutral-background-color-active); /* Used for the background of a default borderless, tertiary button in the active state. */
|
|
583
584
|
--gl-button-default-tertiary-background-color-hover: var(--gl-action-neutral-background-color-hover); /* Used for the background of a default borderless, tertiary button in the hover state. */
|
|
584
585
|
--gl-button-default-tertiary-background-color-default: var(--gl-action-neutral-background-color-default); /* Used for the background of a default borderless, tertiary button in the default state. */
|
|
@@ -835,7 +836,6 @@
|
|
|
835
836
|
--gl-button-confirm-primary-background-color-active: var(--gl-action-strong-confirm-background-color-active); /* Used for the background of a confirm (positive) primary button in the active state. */
|
|
836
837
|
--gl-button-confirm-primary-background-color-hover: var(--gl-action-strong-confirm-background-color-hover); /* Used for the background of a confirm (positive) primary button in the hover state. */
|
|
837
838
|
--gl-button-confirm-primary-background-color-default: var(--gl-action-strong-confirm-background-color-default); /* Used for the background of a confirm (positive) primary button in the default state. */
|
|
838
|
-
--gl-button-confirm-primary-foreground-color-default: var(--gl-action-strong-confirm-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the default state. */
|
|
839
839
|
--gl-button-default-tertiary-border-color-default: var(--gl-action-neutral-border-color-default); /* Used for the border of a default borderless, tertiary button in the default state. */
|
|
840
840
|
--gl-button-default-tertiary-background-color-focus: var(--gl-action-neutral-background-color-focus); /* Used for the background of a default borderless, tertiary button in the focus state. */
|
|
841
841
|
--gl-button-default-tertiary-foreground-color-default: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a default borderless, tertiary button in the default state. */
|
|
@@ -538,8 +538,8 @@
|
|
|
538
538
|
--gl-dropdown-option-indicator-color-selected-active: var(--gl-color-neutral-100); /* Used for the dropdown selected option indicator in the active state. */
|
|
539
539
|
--gl-dropdown-border-color: var(--gl-color-neutral-700); /* Used for the border of a dropdown. */
|
|
540
540
|
--gl-datepicker-background-color: var(--gl-color-neutral-900); /* Used for the background color of datepicker. */
|
|
541
|
-
--gl-button-disabled-border-color: var(--gl-color-
|
|
542
|
-
--gl-button-disabled-background-color:
|
|
541
|
+
--gl-button-disabled-border-color: var(--gl-color-alpha-0); /* Used for the border of a disabled button. */
|
|
542
|
+
--gl-button-disabled-background-color: rgba(137, 136, 141, 0.16); /* Used for the background of a disabled button. */
|
|
543
543
|
--gl-button-disabled-foreground-color: var(--gl-color-neutral-400); /* Used for the foreground of a disabled button. */
|
|
544
544
|
--gl-button-selected-border-color-active: var(--gl-color-neutral-300); /* Used for the border of a selected button in the active state. */
|
|
545
545
|
--gl-button-selected-border-color-hover: var(--gl-color-neutral-500); /* Used for the border of a selected button in the hover state. */
|
|
@@ -548,46 +548,47 @@
|
|
|
548
548
|
--gl-button-danger-tertiary-background-color-active: var(--gl-action-danger-background-color-active); /* Used for the background of a borderless, tertiary danger (destructive) button in the active state. */
|
|
549
549
|
--gl-button-danger-tertiary-background-color-hover: var(--gl-action-danger-background-color-hover); /* Used for the background of a borderless, tertiary danger (destructive) button in the hover state. */
|
|
550
550
|
--gl-button-danger-tertiary-background-color-default: var(--gl-action-danger-background-color-default); /* Used for the background of a borderless, tertiary danger (destructive) button in the default state. */
|
|
551
|
-
--gl-button-danger-secondary-border-color-active: var(--gl-color-
|
|
552
|
-
--gl-button-danger-secondary-border-color-hover: var(--gl-color-
|
|
553
|
-
--gl-button-danger-secondary-border-color-default: var(--gl-color-
|
|
554
|
-
--gl-button-danger-secondary-background-color-active:
|
|
555
|
-
--gl-button-danger-secondary-background-color-hover:
|
|
556
|
-
--gl-button-danger-secondary-background-color-default:
|
|
551
|
+
--gl-button-danger-secondary-border-color-active: var(--gl-color-alpha-0); /* Used for the border of an outlined danger (destructive) button in the active state. */
|
|
552
|
+
--gl-button-danger-secondary-border-color-hover: var(--gl-color-alpha-0); /* Used for the border of an outlined danger (destructive) button in the hover state. */
|
|
553
|
+
--gl-button-danger-secondary-border-color-default: var(--gl-color-alpha-0); /* Used for the border of an outlined danger (destructive) button in the default state. */
|
|
554
|
+
--gl-button-danger-secondary-background-color-active: rgba(236, 89, 65, 0.32); /* Used for the background of an outlined danger (destructive) button in the active state. */
|
|
555
|
+
--gl-button-danger-secondary-background-color-hover: rgba(236, 89, 65, 0.64); /* Used for the background of an outlined danger (destructive) button in the hover state. */
|
|
556
|
+
--gl-button-danger-secondary-background-color-default: rgba(236, 89, 65, 0.40); /* Used for the background of an outlined danger (destructive) button in the default state. */
|
|
557
557
|
--gl-button-danger-secondary-foreground-color-active: var(--gl-color-red-50); /* Used for the foreground of a danger (destructive) button in the active state. */
|
|
558
|
-
--gl-button-danger-secondary-foreground-color-hover: var(--gl-color-red-
|
|
559
|
-
--gl-button-danger-secondary-foreground-color-default: var(--gl-color-red-
|
|
560
|
-
--gl-button-danger-primary-border-color-active: var(--gl-color-
|
|
561
|
-
--gl-button-danger-primary-border-color-hover: var(--gl-color-
|
|
562
|
-
--gl-button-danger-primary-border-color-default: var(--gl-color-
|
|
563
|
-
--gl-button-danger-primary-background-color-active: var(--gl-color-red-
|
|
564
|
-
--gl-button-danger-primary-background-color-hover: var(--gl-color-red-
|
|
565
|
-
--gl-button-danger-primary-background-color-default: var(--gl-color-red-
|
|
566
|
-
--gl-button-danger-primary-foreground-color-default: var(--gl-color-neutral-
|
|
558
|
+
--gl-button-danger-secondary-foreground-color-hover: var(--gl-color-red-50); /* Used for the foreground of a danger (destructive) button in the hover state. */
|
|
559
|
+
--gl-button-danger-secondary-foreground-color-default: var(--gl-color-red-100); /* Used for the foreground of a danger (destructive) button in the default state. */
|
|
560
|
+
--gl-button-danger-primary-border-color-active: var(--gl-color-alpha-0); /* Used for the border of a danger (destructive) primary button in the active state. */
|
|
561
|
+
--gl-button-danger-primary-border-color-hover: var(--gl-color-alpha-0); /* Used for the border of a danger (destructive) primary button in the hover state. */
|
|
562
|
+
--gl-button-danger-primary-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a danger (destructive) primary button in the default state. */
|
|
563
|
+
--gl-button-danger-primary-background-color-active: var(--gl-color-red-400); /* Used for the background of a danger (destructive) primary button in the active state. */
|
|
564
|
+
--gl-button-danger-primary-background-color-hover: var(--gl-color-red-200); /* Used for the background of a danger (destructive) primary button in the hover state. */
|
|
565
|
+
--gl-button-danger-primary-background-color-default: var(--gl-color-red-300); /* Used for the background of a danger (destructive) primary button in the default state. */
|
|
566
|
+
--gl-button-danger-primary-foreground-color-default: var(--gl-color-neutral-950); /* Used for the foreground of a danger (destructive) primary button in the default state. */
|
|
567
567
|
--gl-button-confirm-tertiary-background-color-active: var(--gl-action-confirm-background-color-active); /* Used for the background of a borderless, tertiary confirm (positive) button in the active state. */
|
|
568
568
|
--gl-button-confirm-tertiary-background-color-hover: var(--gl-action-confirm-background-color-hover); /* Used for the background of a borderless, tertiary confirm (positive) button in the hover state. */
|
|
569
569
|
--gl-button-confirm-tertiary-background-color-default: var(--gl-action-confirm-background-color-default); /* Used for the background of a borderless, tertiary confirm (positive) button in the default state. */
|
|
570
|
-
--gl-button-confirm-secondary-border-color-active: var(--gl-color-
|
|
571
|
-
--gl-button-confirm-secondary-border-color-hover: var(--gl-color-
|
|
572
|
-
--gl-button-confirm-secondary-border-color-default: var(--gl-color-
|
|
573
|
-
--gl-button-confirm-secondary-background-color-active:
|
|
574
|
-
--gl-button-confirm-secondary-background-color-hover:
|
|
575
|
-
--gl-button-confirm-secondary-background-color-default:
|
|
576
|
-
--gl-button-confirm-secondary-foreground-color-active: var(--gl-color-blue-
|
|
577
|
-
--gl-button-confirm-secondary-foreground-color-hover: var(--gl-color-blue-
|
|
578
|
-
--gl-button-confirm-secondary-foreground-color-default: var(--gl-color-blue-
|
|
579
|
-
--gl-button-confirm-primary-border-color-active: var(--gl-color-
|
|
580
|
-
--gl-button-confirm-primary-border-color-hover: var(--gl-color-
|
|
581
|
-
--gl-button-confirm-primary-border-color-default: var(--gl-color-
|
|
570
|
+
--gl-button-confirm-secondary-border-color-active: var(--gl-color-alpha-0); /* Used for the border of an outlined confirm (positive) button in the active state. */
|
|
571
|
+
--gl-button-confirm-secondary-border-color-hover: var(--gl-color-alpha-0); /* Used for the border of an outlined confirm (positive) button in the hover state. */
|
|
572
|
+
--gl-button-confirm-secondary-border-color-default: var(--gl-color-alpha-0); /* Used for the border of an outlined confirm (positive) button in the default state. */
|
|
573
|
+
--gl-button-confirm-secondary-background-color-active: rgba(66, 143, 220, 0.32); /* Used for the background of an outlined confirm (positive) button in the active state. */
|
|
574
|
+
--gl-button-confirm-secondary-background-color-hover: rgba(66, 143, 220, 0.64); /* Used for the background of an outlined confirm (positive) button in the hover state. */
|
|
575
|
+
--gl-button-confirm-secondary-background-color-default: rgba(66, 143, 220, 0.4); /* Used for the background of an outlined confirm (positive) button in the default state. */
|
|
576
|
+
--gl-button-confirm-secondary-foreground-color-active: var(--gl-color-blue-100); /* Used for the foreground of a confirm (positive) button in the active state. */
|
|
577
|
+
--gl-button-confirm-secondary-foreground-color-hover: var(--gl-color-blue-100); /* Used for the foreground of a confirm (positive) button in the hover state. */
|
|
578
|
+
--gl-button-confirm-secondary-foreground-color-default: var(--gl-color-blue-100); /* Used for the foreground of a confirm (positive) button in the default state. */
|
|
579
|
+
--gl-button-confirm-primary-border-color-active: var(--gl-color-alpha-0); /* Used for the border of a confirm (positive) primary button in the active state. */
|
|
580
|
+
--gl-button-confirm-primary-border-color-hover: var(--gl-color-alpha-0); /* Used for the border of a confirm (positive) primary button in the hover state. */
|
|
581
|
+
--gl-button-confirm-primary-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a confirm (positive) primary button in the default state. */
|
|
582
|
+
--gl-button-confirm-primary-foreground-color-default: var(--gl-color-neutral-950); /* Used for the foreground of a confirm (positive) primary button in the default state. */
|
|
582
583
|
--gl-button-default-tertiary-background-color-active: var(--gl-action-neutral-background-color-active); /* Used for the background of a default borderless, tertiary button in the active state. */
|
|
583
584
|
--gl-button-default-tertiary-background-color-hover: var(--gl-action-neutral-background-color-hover); /* Used for the background of a default borderless, tertiary button in the hover state. */
|
|
584
585
|
--gl-button-default-tertiary-background-color-default: var(--gl-action-neutral-background-color-default); /* Used for the background of a default borderless, tertiary button in the default state. */
|
|
585
|
-
--gl-button-default-primary-border-color-active: var(--gl-color-
|
|
586
|
-
--gl-button-default-primary-border-color-hover: var(--gl-color-
|
|
587
|
-
--gl-button-default-primary-border-color-default: var(--gl-color-
|
|
588
|
-
--gl-button-default-primary-background-color-active:
|
|
589
|
-
--gl-button-default-primary-background-color-hover:
|
|
590
|
-
--gl-button-default-primary-background-color-default:
|
|
586
|
+
--gl-button-default-primary-border-color-active: var(--gl-color-alpha-0); /* Used for the border of an default primary button in the active state. */
|
|
587
|
+
--gl-button-default-primary-border-color-hover: var(--gl-color-alpha-0); /* Used for the border of an default primary button in the hover state. */
|
|
588
|
+
--gl-button-default-primary-border-color-default: var(--gl-color-alpha-0); /* Used for the border of an default primary button in the default state. */
|
|
589
|
+
--gl-button-default-primary-background-color-active: rgba(137, 136, 141, 0.32); /* Used for the background of an default primary button in the active state. */
|
|
590
|
+
--gl-button-default-primary-background-color-hover: rgba(137, 136, 141, 0.64); /* Used for the background of an default primary button in the hover state. */
|
|
591
|
+
--gl-button-default-primary-background-color-default: rgba(137, 136, 141, 0.4); /* Used for the background of an default primary button in the default state. */
|
|
591
592
|
--gl-button-default-primary-foreground-color-default: var(--gl-color-neutral-50); /* Used for the foreground of a default primary button in the default state. */
|
|
592
593
|
--gl-broadcast-banner-text-color-red: var(--gl-color-neutral-0); /* Used for the text for the red banner type. */
|
|
593
594
|
--gl-broadcast-banner-text-color-lightred: var(--gl-color-neutral-0); /* Used for the text for the lightred banner type. */
|
|
@@ -753,19 +754,19 @@
|
|
|
753
754
|
--gl-action-strong-neutral-background-color-default: var(--gl-color-neutral-700); /* Used for the background of a strong neutral action in the default state. */
|
|
754
755
|
--gl-action-strong-confirm-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a strong confirm action in the default state. */
|
|
755
756
|
--gl-action-strong-confirm-foreground-color-default: var(--gl-color-neutral-950); /* Used for the foreground of a strong confirm action in the default state. */
|
|
756
|
-
--gl-action-strong-confirm-background-color-active: var(--gl-color-blue-
|
|
757
|
-
--gl-action-strong-confirm-background-color-hover: var(--gl-color-blue-
|
|
758
|
-
--gl-action-strong-confirm-background-color-default: var(--gl-color-blue-
|
|
757
|
+
--gl-action-strong-confirm-background-color-active: var(--gl-color-blue-400); /* Used for the background of a strong confirm action in the active state. */
|
|
758
|
+
--gl-action-strong-confirm-background-color-hover: var(--gl-color-blue-200); /* Used for the background of a strong confirm action in the hover state. */
|
|
759
|
+
--gl-action-strong-confirm-background-color-default: var(--gl-color-blue-300); /* Used for the background of a strong confirm action in the default state. */
|
|
759
760
|
--gl-action-danger-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a danger action in the default state. */
|
|
760
761
|
--gl-action-danger-background-color-focus: var(--gl-action-danger-background-color-hover); /* Used for the background of a danger (destructive) action in the focus state. */
|
|
761
|
-
--gl-action-danger-foreground-color-active: var(--gl-color-red-
|
|
762
|
-
--gl-action-danger-foreground-color-hover: var(--gl-color-red-
|
|
763
|
-
--gl-action-danger-foreground-color-default: var(--gl-color-red-
|
|
762
|
+
--gl-action-danger-foreground-color-active: var(--gl-color-red-100); /* Used for the foreground of a danger (destructive) action in the active state. */
|
|
763
|
+
--gl-action-danger-foreground-color-hover: var(--gl-color-red-100); /* Used for the foreground of a danger (destructive) action in the hover state. */
|
|
764
|
+
--gl-action-danger-foreground-color-default: var(--gl-color-red-200); /* Used for the foreground of a danger (destructive) action in the default state. */
|
|
764
765
|
--gl-action-confirm-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a confirm action in the default state. */
|
|
765
766
|
--gl-action-confirm-background-color-focus: var(--gl-action-confirm-background-color-hover); /* Used for the background of a confirm (positive) action in the focus state. */
|
|
766
|
-
--gl-action-confirm-foreground-color-active: var(--gl-color-blue-
|
|
767
|
-
--gl-action-confirm-foreground-color-hover: var(--gl-color-blue-
|
|
768
|
-
--gl-action-confirm-foreground-color-default: var(--gl-color-blue-
|
|
767
|
+
--gl-action-confirm-foreground-color-active: var(--gl-color-blue-100); /* Used for the foreground of a confirm (positive) action in the active state. */
|
|
768
|
+
--gl-action-confirm-foreground-color-hover: var(--gl-color-blue-100); /* Used for the foreground of a confirm (positive) action in the hover state. */
|
|
769
|
+
--gl-action-confirm-foreground-color-default: var(--gl-color-blue-200); /* Used for the foreground of a confirm (positive) action in the default state. */
|
|
769
770
|
--gl-action-neutral-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a neutral action in the default state. */
|
|
770
771
|
--gl-action-neutral-background-color-focus: var(--gl-action-neutral-background-color-hover); /* Used for the background of a neutral action in the focus state. */
|
|
771
772
|
--gl-action-neutral-foreground-color-default: var(--gl-color-neutral-50); /* Used for the foreground of a neutral action in the default state. */
|
|
@@ -835,7 +836,6 @@
|
|
|
835
836
|
--gl-button-confirm-primary-background-color-active: var(--gl-action-strong-confirm-background-color-active); /* Used for the background of a confirm (positive) primary button in the active state. */
|
|
836
837
|
--gl-button-confirm-primary-background-color-hover: var(--gl-action-strong-confirm-background-color-hover); /* Used for the background of a confirm (positive) primary button in the hover state. */
|
|
837
838
|
--gl-button-confirm-primary-background-color-default: var(--gl-action-strong-confirm-background-color-default); /* Used for the background of a confirm (positive) primary button in the default state. */
|
|
838
|
-
--gl-button-confirm-primary-foreground-color-default: var(--gl-action-strong-confirm-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the default state. */
|
|
839
839
|
--gl-button-default-tertiary-border-color-default: var(--gl-action-neutral-border-color-default); /* Used for the border of a default borderless, tertiary button in the default state. */
|
|
840
840
|
--gl-button-default-tertiary-background-color-focus: var(--gl-action-neutral-background-color-focus); /* Used for the background of a default borderless, tertiary button in the focus state. */
|
|
841
841
|
--gl-button-default-tertiary-foreground-color-default: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a default borderless, tertiary button in the default state. */
|
|
@@ -877,7 +877,7 @@
|
|
|
877
877
|
--gl-alert-neutral-title-color: var(--gl-text-color-heading); /* Used for the title color of a neutral alert. */
|
|
878
878
|
--gl-border-color-section: var(--gl-background-color-default); /* Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page. */
|
|
879
879
|
--gl-action-strong-neutral-border-color-hover: var(--gl-action-strong-neutral-border-color-default); /* Used for the border of a strong neutral action in the hover state. */
|
|
880
|
-
--gl-action-strong-neutral-foreground-color-hover: var(--gl-
|
|
880
|
+
--gl-action-strong-neutral-foreground-color-hover: var(--gl-color-neutral-0); /* Used for the foreground of a strong neutral action in the hover state. */
|
|
881
881
|
--gl-action-strong-neutral-background-color-focus: var(--gl-action-strong-neutral-background-color-hover); /* Used for the background of a strong neutral action in the focus state. */
|
|
882
882
|
--gl-action-strong-confirm-border-color-hover: var(--gl-action-strong-confirm-border-color-default); /* Used for the border of a strong confirm action in the hover state. */
|
|
883
883
|
--gl-action-strong-confirm-foreground-color-hover: var(--gl-action-strong-confirm-foreground-color-default); /* Used for the foreground of a strong confirm action in the hover state. */
|