@gitlab/ui 85.9.0 → 85.11.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 +15 -0
- package/dist/components/base/datepicker/datepicker.js +1 -1
- package/dist/components/base/popover/popover.js +1 -1
- package/dist/components/base/search_box_by_click/search_box_by_click.js +1 -1
- package/dist/components/base/table/table.js +1 -1
- package/dist/components/base/token_selector/token_selector.js +1 -1
- package/dist/components/charts/single_stat/single_stat.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +3 -3
- package/dist/components/experimental/duo/chat/duo_chat.js +2 -2
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +36 -1
- package/dist/tokens/build/js/tokens.js +36 -1
- package/dist/tokens/css/tokens.css +35 -0
- package/dist/tokens/css/tokens.dark.css +35 -0
- package/dist/tokens/js/tokens.dark.js +35 -0
- package/dist/tokens/js/tokens.js +35 -0
- package/dist/tokens/json/tokens.dark.json +875 -0
- package/dist/tokens/json/tokens.json +875 -0
- package/dist/tokens/scss/_tokens.dark.scss +35 -0
- package/dist/tokens/scss/_tokens.scss +35 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +35 -0
- package/dist/tokens/tailwind/tokens.cjs +2 -0
- package/package.json +5 -4
- package/src/components/base/datepicker/datepicker.vue +1 -1
- package/src/components/base/form/form_fields/validators.js +1 -1
- package/src/components/base/modal/modal.scss +6 -4
- package/src/components/base/popover/popover.vue +1 -1
- package/src/components/base/search_box_by_click/search_box_by_click.vue +1 -1
- package/src/components/base/skeleton_loader/skeleton_loader.scss +2 -2
- package/src/components/base/table/table.vue +1 -1
- package/src/components/base/token_selector/token_selector.vue +1 -1
- package/src/components/charts/single_stat/single_stat.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +3 -3
- package/src/components/experimental/duo/chat/duo_chat.vue +8 -8
- package/src/tokens/action.tokens.json +277 -0
- package/src/tokens/background.tokens.json +8 -0
- package/src/tokens/build/css/tokens.css +35 -0
- package/src/tokens/build/css/tokens.dark.css +35 -0
- package/src/tokens/build/js/tokens.dark.js +35 -0
- package/src/tokens/build/js/tokens.js +35 -0
- package/src/tokens/build/json/tokens.dark.json +875 -0
- package/src/tokens/build/json/tokens.json +875 -0
- package/src/tokens/build/scss/_tokens.dark.scss +35 -0
- package/src/tokens/build/scss/_tokens.scss +35 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +35 -0
- package/src/tokens/build/tailwind/tokens.cjs +2 -0
- package/src/tokens/contextual/skeleton-loader.tokens.json +24 -0
|
@@ -514,6 +514,8 @@ $gl-control-background-color-selected-hover: $gl-color-blue-200; // Used for che
|
|
|
514
514
|
$gl-control-background-color-selected-default: $gl-color-blue-400; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
515
515
|
$gl-control-background-color-disabled: $gl-color-neutral-950; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
516
516
|
$gl-control-background-color-default: $gl-color-neutral-900; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
517
|
+
$gl-skeleton-loader-shimmer-color: $gl-color-neutral-700; // Used for the animated shimmer effect in a skeleton loader.
|
|
518
|
+
$gl-skeleton-loader-background-color: $gl-color-neutral-800; // Used for the skeleton loader background color.
|
|
517
519
|
$gl-popover-background-color: $gl-color-neutral-900; // Used for the background color of popover.
|
|
518
520
|
$gl-breadcrumb-separator-color: $gl-color-neutral-700; // Used for the breadcrumb level separator.
|
|
519
521
|
$gl-banner-promo-background-color: $gl-color-neutral-900; // Used as background for the default banner type.
|
|
@@ -530,10 +532,43 @@ $gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to
|
|
|
530
532
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
531
533
|
$gl-border-color-subtle: $gl-color-neutral-900; // Used for a border that has a little more definition, or is used in combination with a subtle background.
|
|
532
534
|
$gl-border-color-default: $gl-color-neutral-800; // Used for the default border color.
|
|
535
|
+
$gl-background-color-overlay: rgba(0,0,0,0.64); // Used for an overlay that covers other content.
|
|
533
536
|
$gl-background-color-disabled: $gl-color-neutral-900; // Used to identify a disabled section.
|
|
534
537
|
$gl-background-color-strong: $gl-color-neutral-800; // Used to make the background easily stand out from the default.
|
|
535
538
|
$gl-background-color-subtle: $gl-color-neutral-900; // Used to slightly differentiate the background from the default.
|
|
536
539
|
$gl-background-color-default: $gl-color-neutral-950; // Used for the default background color.
|
|
540
|
+
$gl-action-confirm-icon-color-strong: $gl-color-neutral-900; // Used for the icon on a solid, strong confirm (positive) action background.
|
|
541
|
+
$gl-action-confirm-icon-color-active: $gl-color-blue-50; // Used for the icon of a confirm (positive) action in the active state.
|
|
542
|
+
$gl-action-confirm-icon-color-focus: $gl-color-blue-200; // Used for the icon of a confirm (positive) action in the focus state.
|
|
543
|
+
$gl-action-confirm-icon-color-hover: $gl-color-blue-200; // Used for the icon of a confirm (positive) action in the hover state.
|
|
544
|
+
$gl-action-confirm-icon-color-default: $gl-color-blue-400; // Used for the icon of a confirm (positive) action in the default state.
|
|
545
|
+
$gl-action-confirm-text-color-strong: $gl-color-neutral-900; // Used for the text on a solid, strong confirm (positive) action background.
|
|
546
|
+
$gl-action-confirm-text-color-active: $gl-color-blue-50; // Used for the text of a confirm (positive) action in the active state.
|
|
547
|
+
$gl-action-confirm-text-color-focus: $gl-color-blue-200; // Used for the text of a confirm (positive) action in the focus state.
|
|
548
|
+
$gl-action-confirm-text-color-hover: $gl-color-blue-200; // Used for the text of a confirm (positive) action in the hover state.
|
|
549
|
+
$gl-action-confirm-text-color-default: $gl-color-blue-400; // Used for the text of a confirm (positive) action in the default state.
|
|
550
|
+
$gl-action-confirm-border-color-strong-selected: $gl-color-blue-300; // Used for the border of a solid, strong confirm (positive) action when in a selected or current state.
|
|
551
|
+
$gl-action-confirm-border-color-strong-active: $gl-color-blue-50; // Used for the border of a solid, strong confirm (positive) action in the active state.
|
|
552
|
+
$gl-action-confirm-border-color-strong-focus: $gl-color-blue-100; // Used for the border of a solid, strong confirm (positive) action in the focus state.
|
|
553
|
+
$gl-action-confirm-border-color-strong-hover: $gl-color-blue-100; // Used for the border of a solid, strong confirm (positive) action in the hover state.
|
|
554
|
+
$gl-action-confirm-border-color-strong-default: $gl-color-blue-300; // Used for the border of a solid, strong confirm (positive) action in the default state.
|
|
555
|
+
$gl-action-confirm-border-color-active: $gl-color-blue-50; // Used for the border of an outlined confirm (positive) action in the active state.
|
|
556
|
+
$gl-action-confirm-border-color-focus: $gl-color-blue-200; // Used for the border of an outlined confirm (positive) action in the focus state.
|
|
557
|
+
$gl-action-confirm-border-color-hover: $gl-color-blue-200; // Used for the border of an outlined confirm (positive) action in the hover state.
|
|
558
|
+
$gl-action-confirm-border-color-default: $gl-color-blue-400; // Used for the border of an outlined confirm (positive) action in the default state.
|
|
559
|
+
$gl-action-confirm-background-color-strong-selected: $gl-color-blue-400; // Used for the background of a solid, strong confirm (positive) action when in a selected or current state.
|
|
560
|
+
$gl-action-confirm-background-color-strong-active: $gl-color-blue-200; // Used for the background of a solid, strong confirm (positive) action in the active state.
|
|
561
|
+
$gl-action-confirm-background-color-strong-focus: $gl-color-blue-300; // Used for the background of a solid, strong confirm (positive) action in the focus state.
|
|
562
|
+
$gl-action-confirm-background-color-strong-hover: $gl-color-blue-300; // Used for the background of a solid, strong confirm (positive) action in the hover state.
|
|
563
|
+
$gl-action-confirm-background-color-strong-default: $gl-color-blue-400; // Used for the background of a solid, strong confirm (positive) action in the default state.
|
|
564
|
+
$gl-action-confirm-background-color-subtle-active: $gl-color-blue-800; // Used for the background of a borderless, subtle confirm (positive) action in the active state.
|
|
565
|
+
$gl-action-confirm-background-color-subtle-focus: $gl-color-blue-900; // Used for the background of a borderless, subtle confirm (positive) action in the focus state.
|
|
566
|
+
$gl-action-confirm-background-color-subtle-hover: $gl-color-blue-900; // Used for the background of a borderless, subtle confirm (positive) action in the hover state.
|
|
567
|
+
$gl-action-confirm-background-color-subtle-default: $gl-color-alpha-0; // Used for the background of a borderless, subtle confirm (positive) action in the default state.
|
|
568
|
+
$gl-action-confirm-background-color-active: $gl-color-blue-800; // Used for the background of an outlined confirm (positive) action in the active state.
|
|
569
|
+
$gl-action-confirm-background-color-focus: $gl-color-blue-900; // Used for the background of an outlined confirm (positive) action in the focus state.
|
|
570
|
+
$gl-action-confirm-background-color-hover: $gl-color-blue-900; // Used for the background of an outlined confirm (positive) action in the hover state.
|
|
571
|
+
$gl-action-confirm-background-color-default: $gl-color-neutral-900; // Used for the background of an outlined confirm (positive) action in the default state.
|
|
537
572
|
$gl-action-neutral-icon-color-strong: $gl-color-neutral-900; // Used for the icon on a solid, strong neutral action background.
|
|
538
573
|
$gl-action-neutral-icon-color-active: $gl-color-neutral-50; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
539
574
|
$gl-action-neutral-icon-color-focus: $gl-color-neutral-200; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
@@ -514,6 +514,8 @@ $gl-control-background-color-selected-hover: $gl-color-blue-700; // Used for che
|
|
|
514
514
|
$gl-control-background-color-selected-default: $gl-color-blue-500; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
515
515
|
$gl-control-background-color-disabled: $gl-color-neutral-10; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
516
516
|
$gl-control-background-color-default: $gl-color-neutral-0; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
517
|
+
$gl-skeleton-loader-shimmer-color: $gl-color-neutral-50; // Used for the animated shimmer effect in a skeleton loader.
|
|
518
|
+
$gl-skeleton-loader-background-color: $gl-color-neutral-100; // Used for the skeleton loader background color.
|
|
517
519
|
$gl-popover-background-color: $gl-color-neutral-0; // Used for the background color of popover.
|
|
518
520
|
$gl-breadcrumb-separator-color: $gl-color-neutral-200; // Used for the breadcrumb level separator.
|
|
519
521
|
$gl-banner-promo-background-color: $gl-color-neutral-10; // Used as background for the default banner type.
|
|
@@ -530,10 +532,43 @@ $gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to
|
|
|
530
532
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
531
533
|
$gl-border-color-subtle: $gl-color-neutral-50; // Used for a border that has a little more definition, or is used in combination with a subtle background.
|
|
532
534
|
$gl-border-color-default: $gl-color-neutral-100; // Used for the default border color.
|
|
535
|
+
$gl-background-color-overlay: $gl-color-alpha-dark-24; // Used for an overlay that covers other content.
|
|
533
536
|
$gl-background-color-disabled: $gl-color-neutral-10; // Used to identify a disabled section.
|
|
534
537
|
$gl-background-color-strong: $gl-color-neutral-50; // Used to make the background easily stand out from the default.
|
|
535
538
|
$gl-background-color-subtle: $gl-color-neutral-10; // Used to slightly differentiate the background from the default.
|
|
536
539
|
$gl-background-color-default: $gl-color-neutral-0; // Used for the default background color.
|
|
540
|
+
$gl-action-confirm-icon-color-strong: $gl-color-neutral-0; // Used for the icon on a solid, strong confirm (positive) action background.
|
|
541
|
+
$gl-action-confirm-icon-color-active: $gl-color-blue-900; // Used for the icon of a confirm (positive) action in the active state.
|
|
542
|
+
$gl-action-confirm-icon-color-focus: $gl-color-blue-700; // Used for the icon of a confirm (positive) action in the focus state.
|
|
543
|
+
$gl-action-confirm-icon-color-hover: $gl-color-blue-700; // Used for the icon of a confirm (positive) action in the hover state.
|
|
544
|
+
$gl-action-confirm-icon-color-default: $gl-color-blue-500; // Used for the icon of a confirm (positive) action in the default state.
|
|
545
|
+
$gl-action-confirm-text-color-strong: $gl-color-neutral-0; // Used for the text on a solid, strong confirm (positive) action background.
|
|
546
|
+
$gl-action-confirm-text-color-active: $gl-color-blue-900; // Used for the text of a confirm (positive) action in the active state.
|
|
547
|
+
$gl-action-confirm-text-color-focus: $gl-color-blue-700; // Used for the text of a confirm (positive) action in the focus state.
|
|
548
|
+
$gl-action-confirm-text-color-hover: $gl-color-blue-700; // Used for the text of a confirm (positive) action in the hover state.
|
|
549
|
+
$gl-action-confirm-text-color-default: $gl-color-blue-500; // Used for the text of a confirm (positive) action in the default state.
|
|
550
|
+
$gl-action-confirm-border-color-strong-selected: $gl-color-blue-600; // Used for the border of a solid, strong confirm (positive) action when in a selected or current state.
|
|
551
|
+
$gl-action-confirm-border-color-strong-active: $gl-color-blue-900; // Used for the border of a solid, strong confirm (positive) action in the active state.
|
|
552
|
+
$gl-action-confirm-border-color-strong-focus: $gl-color-blue-800; // Used for the border of a solid, strong confirm (positive) action in the focus state.
|
|
553
|
+
$gl-action-confirm-border-color-strong-hover: $gl-color-blue-800; // Used for the border of a solid, strong confirm (positive) action in the hover state.
|
|
554
|
+
$gl-action-confirm-border-color-strong-default: $gl-color-blue-600; // Used for the border of a solid, strong confirm (positive) action in the default state.
|
|
555
|
+
$gl-action-confirm-border-color-active: $gl-color-blue-900; // Used for the border of an outlined confirm (positive) action in the active state.
|
|
556
|
+
$gl-action-confirm-border-color-focus: $gl-color-blue-700; // Used for the border of an outlined confirm (positive) action in the focus state.
|
|
557
|
+
$gl-action-confirm-border-color-hover: $gl-color-blue-700; // Used for the border of an outlined confirm (positive) action in the hover state.
|
|
558
|
+
$gl-action-confirm-border-color-default: $gl-color-blue-500; // Used for the border of an outlined confirm (positive) action in the default state.
|
|
559
|
+
$gl-action-confirm-background-color-strong-selected: $gl-color-blue-500; // Used for the background of a solid, strong confirm (positive) action when in a selected or current state.
|
|
560
|
+
$gl-action-confirm-background-color-strong-active: $gl-color-blue-700; // Used for the background of a solid, strong confirm (positive) action in the active state.
|
|
561
|
+
$gl-action-confirm-background-color-strong-focus: $gl-color-blue-600; // Used for the background of a solid, strong confirm (positive) action in the focus state.
|
|
562
|
+
$gl-action-confirm-background-color-strong-hover: $gl-color-blue-600; // Used for the background of a solid, strong confirm (positive) action in the hover state.
|
|
563
|
+
$gl-action-confirm-background-color-strong-default: $gl-color-blue-500; // Used for the background of a solid, strong confirm (positive) action in the default state.
|
|
564
|
+
$gl-action-confirm-background-color-subtle-active: $gl-color-blue-100; // Used for the background of a borderless, subtle confirm (positive) action in the active state.
|
|
565
|
+
$gl-action-confirm-background-color-subtle-focus: $gl-color-blue-50; // Used for the background of a borderless, subtle confirm (positive) action in the focus state.
|
|
566
|
+
$gl-action-confirm-background-color-subtle-hover: $gl-color-blue-50; // Used for the background of a borderless, subtle confirm (positive) action in the hover state.
|
|
567
|
+
$gl-action-confirm-background-color-subtle-default: $gl-color-alpha-0; // Used for the background of a borderless, subtle confirm (positive) action in the default state.
|
|
568
|
+
$gl-action-confirm-background-color-active: $gl-color-blue-100; // Used for the background of an outlined confirm (positive) action in the active state.
|
|
569
|
+
$gl-action-confirm-background-color-focus: $gl-color-blue-50; // Used for the background of an outlined confirm (positive) action in the focus state.
|
|
570
|
+
$gl-action-confirm-background-color-hover: $gl-color-blue-50; // Used for the background of an outlined confirm (positive) action in the hover state.
|
|
571
|
+
$gl-action-confirm-background-color-default: $gl-color-neutral-0; // Used for the background of an outlined confirm (positive) action in the default state.
|
|
537
572
|
$gl-action-neutral-icon-color-strong: $gl-color-neutral-0; // Used for the icon on a solid, strong neutral action background.
|
|
538
573
|
$gl-action-neutral-icon-color-active: $gl-color-neutral-900; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
539
574
|
$gl-action-neutral-icon-color-focus: $gl-color-neutral-700; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
@@ -38,10 +38,43 @@ $gl-action-neutral-icon-color-hover: var(--gl-action-neutral-icon-color-hover);
|
|
|
38
38
|
$gl-action-neutral-icon-color-focus: var(--gl-action-neutral-icon-color-focus);
|
|
39
39
|
$gl-action-neutral-icon-color-active: var(--gl-action-neutral-icon-color-active);
|
|
40
40
|
$gl-action-neutral-icon-color-strong: var(--gl-action-neutral-icon-color-strong);
|
|
41
|
+
$gl-action-confirm-background-color-default: var(--gl-action-confirm-background-color-default);
|
|
42
|
+
$gl-action-confirm-background-color-hover: var(--gl-action-confirm-background-color-hover);
|
|
43
|
+
$gl-action-confirm-background-color-focus: var(--gl-action-confirm-background-color-focus);
|
|
44
|
+
$gl-action-confirm-background-color-active: var(--gl-action-confirm-background-color-active);
|
|
45
|
+
$gl-action-confirm-background-color-subtle-default: var(--gl-action-confirm-background-color-subtle-default);
|
|
46
|
+
$gl-action-confirm-background-color-subtle-hover: var(--gl-action-confirm-background-color-subtle-hover);
|
|
47
|
+
$gl-action-confirm-background-color-subtle-focus: var(--gl-action-confirm-background-color-subtle-focus);
|
|
48
|
+
$gl-action-confirm-background-color-subtle-active: var(--gl-action-confirm-background-color-subtle-active);
|
|
49
|
+
$gl-action-confirm-background-color-strong-default: var(--gl-action-confirm-background-color-strong-default);
|
|
50
|
+
$gl-action-confirm-background-color-strong-hover: var(--gl-action-confirm-background-color-strong-hover);
|
|
51
|
+
$gl-action-confirm-background-color-strong-focus: var(--gl-action-confirm-background-color-strong-focus);
|
|
52
|
+
$gl-action-confirm-background-color-strong-active: var(--gl-action-confirm-background-color-strong-active);
|
|
53
|
+
$gl-action-confirm-background-color-strong-selected: var(--gl-action-confirm-background-color-strong-selected);
|
|
54
|
+
$gl-action-confirm-border-color-default: var(--gl-action-confirm-border-color-default);
|
|
55
|
+
$gl-action-confirm-border-color-hover: var(--gl-action-confirm-border-color-hover);
|
|
56
|
+
$gl-action-confirm-border-color-focus: var(--gl-action-confirm-border-color-focus);
|
|
57
|
+
$gl-action-confirm-border-color-active: var(--gl-action-confirm-border-color-active);
|
|
58
|
+
$gl-action-confirm-border-color-strong-default: var(--gl-action-confirm-border-color-strong-default);
|
|
59
|
+
$gl-action-confirm-border-color-strong-hover: var(--gl-action-confirm-border-color-strong-hover);
|
|
60
|
+
$gl-action-confirm-border-color-strong-focus: var(--gl-action-confirm-border-color-strong-focus);
|
|
61
|
+
$gl-action-confirm-border-color-strong-active: var(--gl-action-confirm-border-color-strong-active);
|
|
62
|
+
$gl-action-confirm-border-color-strong-selected: var(--gl-action-confirm-border-color-strong-selected);
|
|
63
|
+
$gl-action-confirm-text-color-default: var(--gl-action-confirm-text-color-default);
|
|
64
|
+
$gl-action-confirm-text-color-hover: var(--gl-action-confirm-text-color-hover);
|
|
65
|
+
$gl-action-confirm-text-color-focus: var(--gl-action-confirm-text-color-focus);
|
|
66
|
+
$gl-action-confirm-text-color-active: var(--gl-action-confirm-text-color-active);
|
|
67
|
+
$gl-action-confirm-text-color-strong: var(--gl-action-confirm-text-color-strong);
|
|
68
|
+
$gl-action-confirm-icon-color-default: var(--gl-action-confirm-icon-color-default);
|
|
69
|
+
$gl-action-confirm-icon-color-hover: var(--gl-action-confirm-icon-color-hover);
|
|
70
|
+
$gl-action-confirm-icon-color-focus: var(--gl-action-confirm-icon-color-focus);
|
|
71
|
+
$gl-action-confirm-icon-color-active: var(--gl-action-confirm-icon-color-active);
|
|
72
|
+
$gl-action-confirm-icon-color-strong: var(--gl-action-confirm-icon-color-strong);
|
|
41
73
|
$gl-background-color-default: var(--gl-background-color-default);
|
|
42
74
|
$gl-background-color-subtle: var(--gl-background-color-subtle);
|
|
43
75
|
$gl-background-color-strong: var(--gl-background-color-strong);
|
|
44
76
|
$gl-background-color-disabled: var(--gl-background-color-disabled);
|
|
77
|
+
$gl-background-color-overlay: var(--gl-background-color-overlay);
|
|
45
78
|
$gl-border-color-default: var(--gl-border-color-default);
|
|
46
79
|
$gl-border-color-subtle: var(--gl-border-color-subtle);
|
|
47
80
|
$gl-border-color-strong: var(--gl-border-color-strong);
|
|
@@ -433,6 +466,8 @@ $gl-banner-intro-border-color: var(--gl-banner-intro-border-color);
|
|
|
433
466
|
$gl-banner-promo-background-color: var(--gl-banner-promo-background-color);
|
|
434
467
|
$gl-breadcrumb-separator-color: var(--gl-breadcrumb-separator-color);
|
|
435
468
|
$gl-popover-background-color: var(--gl-popover-background-color);
|
|
469
|
+
$gl-skeleton-loader-background-color: var(--gl-skeleton-loader-background-color);
|
|
470
|
+
$gl-skeleton-loader-shimmer-color: var(--gl-skeleton-loader-shimmer-color);
|
|
436
471
|
$gl-control-background-color-default: var(--gl-control-background-color-default);
|
|
437
472
|
$gl-control-background-color-disabled: var(--gl-control-background-color-disabled);
|
|
438
473
|
$gl-control-background-color-selected-default: var(--gl-control-background-color-selected-default);
|
|
@@ -223,6 +223,8 @@ const backgroundColors = {
|
|
|
223
223
|
'var(--gl-background-color-strong, var(--gl-color-neutral-50, #ececef))',
|
|
224
224
|
disabled:
|
|
225
225
|
'var(--gl-background-color-disabled, var(--gl-color-neutral-10, #fbfafd))',
|
|
226
|
+
overlay:
|
|
227
|
+
'var(--gl-background-color-overlay, var(--gl-color-alpha-dark-24, rgba(31, 30, 36, 0.24)))',
|
|
226
228
|
};
|
|
227
229
|
const borderColors = {
|
|
228
230
|
default:
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skeleton-loader": {
|
|
3
|
+
"background": {
|
|
4
|
+
"color": {
|
|
5
|
+
"$value": {
|
|
6
|
+
"default": "{color.neutral.100}",
|
|
7
|
+
"dark": "{color.neutral.800}"
|
|
8
|
+
},
|
|
9
|
+
"$type": "color",
|
|
10
|
+
"$description": "Used for the skeleton loader background color."
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"shimmer": {
|
|
14
|
+
"color": {
|
|
15
|
+
"$value": {
|
|
16
|
+
"default": "{color.neutral.50}",
|
|
17
|
+
"dark": "{color.neutral.700}"
|
|
18
|
+
},
|
|
19
|
+
"$type": "color",
|
|
20
|
+
"$description": "Used for the animated shimmer effect in a skeleton loader."
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|