@gitlab/ui 95.3.0 → 95.5.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 +14 -0
- package/dist/components/base/search_box_by_type/search_box_by_type.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +26 -17
- package/dist/tokens/build/js/tokens.js +10 -1
- package/dist/tokens/css/tokens.css +9 -0
- package/dist/tokens/css/tokens.dark.css +14 -5
- package/dist/tokens/js/tokens.dark.js +25 -16
- package/dist/tokens/js/tokens.js +9 -0
- package/dist/tokens/json/tokens.dark.json +236 -21
- package/dist/tokens/json/tokens.json +220 -5
- package/dist/tokens/scss/_tokens.dark.scss +14 -5
- package/dist/tokens/scss/_tokens.scss +9 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +9 -0
- package/package.json +1 -1
- package/src/components/base/search_box_by_type/search_box_by_type.scss +2 -3
- package/src/components/base/search_box_by_type/search_box_by_type.vue +1 -1
- package/src/tokens/action.tokens.json +11 -5
- package/src/tokens/build/css/tokens.css +9 -0
- package/src/tokens/build/css/tokens.dark.css +14 -5
- package/src/tokens/build/js/tokens.dark.js +25 -16
- package/src/tokens/build/js/tokens.js +9 -0
- package/src/tokens/build/json/tokens.dark.json +236 -21
- package/src/tokens/build/json/tokens.json +220 -5
- package/src/tokens/build/scss/_tokens.dark.scss +14 -5
- package/src/tokens/build/scss/_tokens.scss +9 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +9 -0
- package/src/tokens/contextual/toggle.tokens.json +59 -0
|
@@ -744,12 +744,12 @@ $gl-background-color-strong: $gl-color-neutral-800; // Used to make the backgrou
|
|
|
744
744
|
$gl-background-color-subtle: $gl-color-neutral-900; // Used to slightly differentiate the background from the default.
|
|
745
745
|
$gl-background-color-default: $gl-color-neutral-950; // Used for the default background color.
|
|
746
746
|
$gl-action-strong-neutral-border-color-default: $gl-color-alpha-0; // Used for the border of a strong neutral action in the default state.
|
|
747
|
-
$gl-action-strong-neutral-foreground-color-default: $gl-color-neutral-
|
|
748
|
-
$gl-action-strong-neutral-background-color-active: $gl-color-neutral-
|
|
749
|
-
$gl-action-strong-neutral-background-color-hover: $gl-color-neutral-
|
|
750
|
-
$gl-action-strong-neutral-background-color-default: $gl-color-neutral-
|
|
747
|
+
$gl-action-strong-neutral-foreground-color-default: $gl-color-neutral-50; // Used for the foreground of a strong neutral action in the default state.
|
|
748
|
+
$gl-action-strong-neutral-background-color-active: $gl-color-neutral-500; // Used for the background of a strong neutral action in the active state.
|
|
749
|
+
$gl-action-strong-neutral-background-color-hover: $gl-color-neutral-600; // Used for the background of a strong neutral action in the hover state.
|
|
750
|
+
$gl-action-strong-neutral-background-color-default: $gl-color-neutral-700; // Used for the background of a strong neutral action in the default state.
|
|
751
751
|
$gl-action-strong-confirm-border-color-default: $gl-color-alpha-0; // Used for the border of a strong confirm action in the default state.
|
|
752
|
-
$gl-action-strong-confirm-foreground-color-default: $gl-color-neutral-
|
|
752
|
+
$gl-action-strong-confirm-foreground-color-default: $gl-color-neutral-950; // Used for the foreground of a strong confirm action in the default state.
|
|
753
753
|
$gl-action-strong-confirm-background-color-active: $gl-color-blue-200; // Used for the background of a strong confirm action in the active state.
|
|
754
754
|
$gl-action-strong-confirm-background-color-hover: $gl-color-blue-300; // Used for the background of a strong confirm action in the hover state.
|
|
755
755
|
$gl-action-strong-confirm-background-color-default: $gl-color-blue-400; // Used for the background of a strong confirm action in the default state.
|
|
@@ -778,6 +778,13 @@ $gl-control-placeholder-color: $gl-text-color-disabled; // Used for placeholder
|
|
|
778
778
|
$gl-control-text-color-valid: $gl-text-color-success; // Used for the helper text when the input is valid.
|
|
779
779
|
$gl-control-text-color-error: $gl-text-color-danger; // Used for the helper text when the input is invalid.
|
|
780
780
|
$gl-token-foreground-color: $gl-text-color-default; // Used for the token foreground color.
|
|
781
|
+
$gl-toggle-switch-icon-color-disabled: $gl-action-disabled-background-color; // Used for the icon color of a disabled toggle switch.
|
|
782
|
+
$gl-toggle-switch-icon-color-checked-active: $gl-action-strong-confirm-background-color-active; // Used for the icon color of a checked toggle switch in the active state.
|
|
783
|
+
$gl-toggle-switch-icon-color-checked-hover: $gl-action-strong-confirm-background-color-hover; // Used for the icon color of a checked toggle switch in the hover state.
|
|
784
|
+
$gl-toggle-switch-icon-color-checked-default: $gl-action-strong-confirm-background-color-default; // Used for the icon color of a checked toggle switch in the default state.
|
|
785
|
+
$gl-toggle-switch-icon-color-unchecked-active: $gl-action-strong-neutral-background-color-active; // Used for the icon color of an unchecked toggle switch in the active state.
|
|
786
|
+
$gl-toggle-switch-icon-color-unchecked-hover: $gl-action-strong-neutral-background-color-hover; // Used for the icon color of an unchecked toggle switch in the hover state.
|
|
787
|
+
$gl-toggle-switch-icon-color-unchecked-default: $gl-action-strong-neutral-background-color-default; // Used for the icon color of an unchecked toggle switch in the default state.
|
|
781
788
|
$gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
|
|
782
789
|
$gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
|
|
783
790
|
$gl-progress-bar-indicator-color-danger: $gl-status-danger-icon-color; // Used for the indicator color for the danger progress-bar variant.
|
|
@@ -891,6 +898,8 @@ $gl-action-selected-border-color-hover: $gl-action-selected-background-color-hov
|
|
|
891
898
|
$gl-action-selected-border-color-default: $gl-action-selected-background-color-default; // Used for the border of a selected action in the default state.
|
|
892
899
|
$gl-action-selected-background-color-focus: $gl-action-selected-background-color-hover; // Used for the background of a selected action in the focus state.
|
|
893
900
|
$gl-action-selected-foreground-color-hover: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected action in the hover state.
|
|
901
|
+
$gl-toggle-switch-icon-color-checked-focus: $gl-action-strong-confirm-background-color-focus; // Used for the icon color of a checked toggle switch in the focus state.
|
|
902
|
+
$gl-toggle-switch-icon-color-unchecked-focus: $gl-action-strong-neutral-background-color-focus; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
894
903
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
895
904
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
896
905
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
@@ -778,6 +778,13 @@ $gl-control-placeholder-color: $gl-text-color-disabled; // Used for placeholder
|
|
|
778
778
|
$gl-control-text-color-valid: $gl-text-color-success; // Used for the helper text when the input is valid.
|
|
779
779
|
$gl-control-text-color-error: $gl-text-color-danger; // Used for the helper text when the input is invalid.
|
|
780
780
|
$gl-token-foreground-color: $gl-text-color-default; // Used for the token foreground color.
|
|
781
|
+
$gl-toggle-switch-icon-color-disabled: $gl-action-disabled-background-color; // Used for the icon color of a disabled toggle switch.
|
|
782
|
+
$gl-toggle-switch-icon-color-checked-active: $gl-action-strong-confirm-background-color-active; // Used for the icon color of a checked toggle switch in the active state.
|
|
783
|
+
$gl-toggle-switch-icon-color-checked-hover: $gl-action-strong-confirm-background-color-hover; // Used for the icon color of a checked toggle switch in the hover state.
|
|
784
|
+
$gl-toggle-switch-icon-color-checked-default: $gl-action-strong-confirm-background-color-default; // Used for the icon color of a checked toggle switch in the default state.
|
|
785
|
+
$gl-toggle-switch-icon-color-unchecked-active: $gl-action-strong-neutral-background-color-active; // Used for the icon color of an unchecked toggle switch in the active state.
|
|
786
|
+
$gl-toggle-switch-icon-color-unchecked-hover: $gl-action-strong-neutral-background-color-hover; // Used for the icon color of an unchecked toggle switch in the hover state.
|
|
787
|
+
$gl-toggle-switch-icon-color-unchecked-default: $gl-action-strong-neutral-background-color-default; // Used for the icon color of an unchecked toggle switch in the default state.
|
|
781
788
|
$gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
|
|
782
789
|
$gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
|
|
783
790
|
$gl-progress-bar-indicator-color-danger: $gl-status-danger-icon-color; // Used for the indicator color for the danger progress-bar variant.
|
|
@@ -891,6 +898,8 @@ $gl-action-selected-border-color-hover: $gl-action-selected-background-color-hov
|
|
|
891
898
|
$gl-action-selected-border-color-default: $gl-action-selected-background-color-default; // Used for the border of a selected action in the default state.
|
|
892
899
|
$gl-action-selected-background-color-focus: $gl-action-selected-background-color-hover; // Used for the background of a selected action in the focus state.
|
|
893
900
|
$gl-action-selected-foreground-color-hover: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected action in the hover state.
|
|
901
|
+
$gl-toggle-switch-icon-color-checked-focus: $gl-action-strong-confirm-background-color-focus; // Used for the icon color of a checked toggle switch in the focus state.
|
|
902
|
+
$gl-toggle-switch-icon-color-unchecked-focus: $gl-action-strong-neutral-background-color-focus; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
894
903
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
895
904
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
896
905
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
@@ -682,6 +682,15 @@ $gl-spinner-segment-color-light: var(--gl-spinner-segment-color-light);
|
|
|
682
682
|
$gl-table-row-background-color-hover: var(--gl-table-row-background-color-hover);
|
|
683
683
|
$gl-table-sorting-icon-color: var(--gl-table-sorting-icon-color);
|
|
684
684
|
$gl-tab-selected-indicator-color-default: var(--gl-tab-selected-indicator-color-default);
|
|
685
|
+
$gl-toggle-switch-icon-color-unchecked-default: var(--gl-toggle-switch-icon-color-unchecked-default);
|
|
686
|
+
$gl-toggle-switch-icon-color-unchecked-hover: var(--gl-toggle-switch-icon-color-unchecked-hover);
|
|
687
|
+
$gl-toggle-switch-icon-color-unchecked-focus: var(--gl-toggle-switch-icon-color-unchecked-focus);
|
|
688
|
+
$gl-toggle-switch-icon-color-unchecked-active: var(--gl-toggle-switch-icon-color-unchecked-active);
|
|
689
|
+
$gl-toggle-switch-icon-color-checked-default: var(--gl-toggle-switch-icon-color-checked-default);
|
|
690
|
+
$gl-toggle-switch-icon-color-checked-hover: var(--gl-toggle-switch-icon-color-checked-hover);
|
|
691
|
+
$gl-toggle-switch-icon-color-checked-focus: var(--gl-toggle-switch-icon-color-checked-focus);
|
|
692
|
+
$gl-toggle-switch-icon-color-checked-active: var(--gl-toggle-switch-icon-color-checked-active);
|
|
693
|
+
$gl-toggle-switch-icon-color-disabled: var(--gl-toggle-switch-icon-color-disabled);
|
|
685
694
|
$gl-token-foreground-color: var(--gl-token-foreground-color);
|
|
686
695
|
$gl-token-background-color: var(--gl-token-background-color);
|
|
687
696
|
$gl-control-background-color-default: var(--gl-control-background-color-default);
|
package/package.json
CHANGED
|
@@ -2,7 +2,6 @@ $gl-search-box-by-type-search-icon-size: 16px;
|
|
|
2
2
|
$gl-search-box-by-type-input-padding: 3.5 * $grid-size;
|
|
3
3
|
|
|
4
4
|
.gl-search-box-by-type-search-icon {
|
|
5
|
-
@apply gl-text-gray-500;
|
|
6
5
|
@apply gl-w-5;
|
|
7
6
|
position: absolute;
|
|
8
7
|
left: $gl-spacing-scale-3;
|
|
@@ -15,7 +14,7 @@ $gl-search-box-by-type-input-padding: 3.5 * $grid-size;
|
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
.gl-search-box-by-type-loading-icon {
|
|
18
|
-
@apply gl-
|
|
17
|
+
@apply gl-fill-icon-subtle;
|
|
19
18
|
@apply gl-w-5;
|
|
20
19
|
@apply gl-mr-2;
|
|
21
20
|
}
|
|
@@ -53,7 +52,7 @@ $gl-search-box-by-type-input-padding: 3.5 * $grid-size;
|
|
|
53
52
|
}
|
|
54
53
|
|
|
55
54
|
&::placeholder {
|
|
56
|
-
|
|
55
|
+
color: var(--gl-control-placeholder-color);
|
|
57
56
|
}
|
|
58
57
|
|
|
59
58
|
&::-webkit-search-cancel-button {
|
|
@@ -130,7 +130,7 @@ export default {
|
|
|
130
130
|
|
|
131
131
|
<template>
|
|
132
132
|
<div class="gl-search-box-by-type">
|
|
133
|
-
<gl-icon name="search" class="gl-search-box-by-type-search-icon" />
|
|
133
|
+
<gl-icon name="search" class="gl-search-box-by-type-search-icon" variant="subtle" />
|
|
134
134
|
<gl-form-input
|
|
135
135
|
ref="input"
|
|
136
136
|
:value="value"
|
|
@@ -426,7 +426,10 @@
|
|
|
426
426
|
"foreground": {
|
|
427
427
|
"color": {
|
|
428
428
|
"default": {
|
|
429
|
-
"$value":
|
|
429
|
+
"$value": {
|
|
430
|
+
"default": "{color.neutral.0}",
|
|
431
|
+
"dark": "{color.neutral.950}"
|
|
432
|
+
},
|
|
430
433
|
"$type": "color",
|
|
431
434
|
"$description": "Used for the foreground of a strong confirm action in the default state."
|
|
432
435
|
},
|
|
@@ -478,7 +481,7 @@
|
|
|
478
481
|
"default": {
|
|
479
482
|
"$value": {
|
|
480
483
|
"default": "{color.neutral.600}",
|
|
481
|
-
"dark": "{color.neutral.
|
|
484
|
+
"dark": "{color.neutral.700}"
|
|
482
485
|
},
|
|
483
486
|
"$type": "color",
|
|
484
487
|
"$description": "Used for the background of a strong neutral action in the default state."
|
|
@@ -486,7 +489,7 @@
|
|
|
486
489
|
"hover": {
|
|
487
490
|
"$value": {
|
|
488
491
|
"default": "{color.neutral.700}",
|
|
489
|
-
"dark": "{color.neutral.
|
|
492
|
+
"dark": "{color.neutral.600}"
|
|
490
493
|
},
|
|
491
494
|
"$type": "color",
|
|
492
495
|
"$description": "Used for the background of a strong neutral action in the hover state."
|
|
@@ -499,7 +502,7 @@
|
|
|
499
502
|
"active": {
|
|
500
503
|
"$value": {
|
|
501
504
|
"default": "{color.neutral.800}",
|
|
502
|
-
"dark": "{color.neutral.
|
|
505
|
+
"dark": "{color.neutral.500}"
|
|
503
506
|
},
|
|
504
507
|
"$type": "color",
|
|
505
508
|
"$description": "Used for the background of a strong neutral action in the active state."
|
|
@@ -509,7 +512,10 @@
|
|
|
509
512
|
"foreground": {
|
|
510
513
|
"color": {
|
|
511
514
|
"default": {
|
|
512
|
-
"$value":
|
|
515
|
+
"$value": {
|
|
516
|
+
"default": "{color.neutral.0}",
|
|
517
|
+
"dark": "{color.neutral.50}"
|
|
518
|
+
},
|
|
513
519
|
"$type": "color",
|
|
514
520
|
"$description": "Used for the foreground of a strong neutral action in the default state."
|
|
515
521
|
},
|
|
@@ -780,6 +780,13 @@
|
|
|
780
780
|
--gl-control-text-color-valid: var(--gl-text-color-success); /* Used for the helper text when the input is valid. */
|
|
781
781
|
--gl-control-text-color-error: var(--gl-text-color-danger); /* Used for the helper text when the input is invalid. */
|
|
782
782
|
--gl-token-foreground-color: var(--gl-text-color-default); /* Used for the token foreground color. */
|
|
783
|
+
--gl-toggle-switch-icon-color-disabled: var(--gl-action-disabled-background-color); /* Used for the icon color of a disabled toggle switch. */
|
|
784
|
+
--gl-toggle-switch-icon-color-checked-active: var(--gl-action-strong-confirm-background-color-active); /* Used for the icon color of a checked toggle switch in the active state. */
|
|
785
|
+
--gl-toggle-switch-icon-color-checked-hover: var(--gl-action-strong-confirm-background-color-hover); /* Used for the icon color of a checked toggle switch in the hover state. */
|
|
786
|
+
--gl-toggle-switch-icon-color-checked-default: var(--gl-action-strong-confirm-background-color-default); /* Used for the icon color of a checked toggle switch in the default state. */
|
|
787
|
+
--gl-toggle-switch-icon-color-unchecked-active: var(--gl-action-strong-neutral-background-color-active); /* Used for the icon color of an unchecked toggle switch in the active state. */
|
|
788
|
+
--gl-toggle-switch-icon-color-unchecked-hover: var(--gl-action-strong-neutral-background-color-hover); /* Used for the icon color of an unchecked toggle switch in the hover state. */
|
|
789
|
+
--gl-toggle-switch-icon-color-unchecked-default: var(--gl-action-strong-neutral-background-color-default); /* Used for the icon color of an unchecked toggle switch in the default state. */
|
|
783
790
|
--gl-table-sorting-icon-color: var(--gl-text-color-heading); /* Used for the color of the sorting icons in the column headers. */
|
|
784
791
|
--gl-table-row-background-color-hover: var(--gl-background-color-subtle); /* Used for the background of a table row in hover state. */
|
|
785
792
|
--gl-progress-bar-indicator-color-danger: var(--gl-status-danger-icon-color); /* Used for the indicator color for the danger progress-bar variant. */
|
|
@@ -893,6 +900,8 @@
|
|
|
893
900
|
--gl-action-selected-border-color-default: var(--gl-action-selected-background-color-default); /* Used for the border of a selected action in the default state. */
|
|
894
901
|
--gl-action-selected-background-color-focus: var(--gl-action-selected-background-color-hover); /* Used for the background of a selected action in the focus state. */
|
|
895
902
|
--gl-action-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-default); /* Used for the foreground of a selected action in the hover state. */
|
|
903
|
+
--gl-toggle-switch-icon-color-checked-focus: var(--gl-action-strong-confirm-background-color-focus); /* Used for the icon color of a checked toggle switch in the focus state. */
|
|
904
|
+
--gl-toggle-switch-icon-color-unchecked-focus: var(--gl-action-strong-neutral-background-color-focus); /* Used for the icon color of an unchecked toggle switch in the focus state. */
|
|
896
905
|
--gl-dropdown-option-text-color-active: var(--gl-action-neutral-foreground-color-active); /* Used for the text of a dropdown option in the active state. */
|
|
897
906
|
--gl-dropdown-option-text-color-focus: var(--gl-action-neutral-foreground-color-focus); /* Used for the text of a dropdown option in the focus state. */
|
|
898
907
|
--gl-dropdown-option-text-color-hover: var(--gl-action-neutral-foreground-color-hover); /* Used for the text of a dropdown option in the hover state. */
|
|
@@ -746,12 +746,12 @@
|
|
|
746
746
|
--gl-background-color-subtle: var(--gl-color-neutral-900); /* Used to slightly differentiate the background from the default. */
|
|
747
747
|
--gl-background-color-default: var(--gl-color-neutral-950); /* Used for the default background color. */
|
|
748
748
|
--gl-action-strong-neutral-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a strong neutral action in the default state. */
|
|
749
|
-
--gl-action-strong-neutral-foreground-color-default: var(--gl-color-neutral-
|
|
750
|
-
--gl-action-strong-neutral-background-color-active: var(--gl-color-neutral-
|
|
751
|
-
--gl-action-strong-neutral-background-color-hover: var(--gl-color-neutral-
|
|
752
|
-
--gl-action-strong-neutral-background-color-default: var(--gl-color-neutral-
|
|
749
|
+
--gl-action-strong-neutral-foreground-color-default: var(--gl-color-neutral-50); /* Used for the foreground of a strong neutral action in the default state. */
|
|
750
|
+
--gl-action-strong-neutral-background-color-active: var(--gl-color-neutral-500); /* Used for the background of a strong neutral action in the active state. */
|
|
751
|
+
--gl-action-strong-neutral-background-color-hover: var(--gl-color-neutral-600); /* Used for the background of a strong neutral action in the hover state. */
|
|
752
|
+
--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. */
|
|
753
753
|
--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. */
|
|
754
|
-
--gl-action-strong-confirm-foreground-color-default: var(--gl-color-neutral-
|
|
754
|
+
--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. */
|
|
755
755
|
--gl-action-strong-confirm-background-color-active: var(--gl-color-blue-200); /* Used for the background of a strong confirm action in the active state. */
|
|
756
756
|
--gl-action-strong-confirm-background-color-hover: var(--gl-color-blue-300); /* Used for the background of a strong confirm action in the hover state. */
|
|
757
757
|
--gl-action-strong-confirm-background-color-default: var(--gl-color-blue-400); /* Used for the background of a strong confirm action in the default state. */
|
|
@@ -780,6 +780,13 @@
|
|
|
780
780
|
--gl-control-text-color-valid: var(--gl-text-color-success); /* Used for the helper text when the input is valid. */
|
|
781
781
|
--gl-control-text-color-error: var(--gl-text-color-danger); /* Used for the helper text when the input is invalid. */
|
|
782
782
|
--gl-token-foreground-color: var(--gl-text-color-default); /* Used for the token foreground color. */
|
|
783
|
+
--gl-toggle-switch-icon-color-disabled: var(--gl-action-disabled-background-color); /* Used for the icon color of a disabled toggle switch. */
|
|
784
|
+
--gl-toggle-switch-icon-color-checked-active: var(--gl-action-strong-confirm-background-color-active); /* Used for the icon color of a checked toggle switch in the active state. */
|
|
785
|
+
--gl-toggle-switch-icon-color-checked-hover: var(--gl-action-strong-confirm-background-color-hover); /* Used for the icon color of a checked toggle switch in the hover state. */
|
|
786
|
+
--gl-toggle-switch-icon-color-checked-default: var(--gl-action-strong-confirm-background-color-default); /* Used for the icon color of a checked toggle switch in the default state. */
|
|
787
|
+
--gl-toggle-switch-icon-color-unchecked-active: var(--gl-action-strong-neutral-background-color-active); /* Used for the icon color of an unchecked toggle switch in the active state. */
|
|
788
|
+
--gl-toggle-switch-icon-color-unchecked-hover: var(--gl-action-strong-neutral-background-color-hover); /* Used for the icon color of an unchecked toggle switch in the hover state. */
|
|
789
|
+
--gl-toggle-switch-icon-color-unchecked-default: var(--gl-action-strong-neutral-background-color-default); /* Used for the icon color of an unchecked toggle switch in the default state. */
|
|
783
790
|
--gl-table-sorting-icon-color: var(--gl-text-color-heading); /* Used for the color of the sorting icons in the column headers. */
|
|
784
791
|
--gl-table-row-background-color-hover: var(--gl-background-color-subtle); /* Used for the background of a table row in hover state. */
|
|
785
792
|
--gl-progress-bar-indicator-color-danger: var(--gl-status-danger-icon-color); /* Used for the indicator color for the danger progress-bar variant. */
|
|
@@ -893,6 +900,8 @@
|
|
|
893
900
|
--gl-action-selected-border-color-default: var(--gl-action-selected-background-color-default); /* Used for the border of a selected action in the default state. */
|
|
894
901
|
--gl-action-selected-background-color-focus: var(--gl-action-selected-background-color-hover); /* Used for the background of a selected action in the focus state. */
|
|
895
902
|
--gl-action-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-default); /* Used for the foreground of a selected action in the hover state. */
|
|
903
|
+
--gl-toggle-switch-icon-color-checked-focus: var(--gl-action-strong-confirm-background-color-focus); /* Used for the icon color of a checked toggle switch in the focus state. */
|
|
904
|
+
--gl-toggle-switch-icon-color-unchecked-focus: var(--gl-action-strong-neutral-background-color-focus); /* Used for the icon color of an unchecked toggle switch in the focus state. */
|
|
896
905
|
--gl-dropdown-option-text-color-active: var(--gl-action-neutral-foreground-color-active); /* Used for the text of a dropdown option in the active state. */
|
|
897
906
|
--gl-dropdown-option-text-color-focus: var(--gl-action-neutral-foreground-color-focus); /* Used for the text of a dropdown option in the focus state. */
|
|
898
907
|
--gl-dropdown-option-text-color-hover: var(--gl-action-neutral-foreground-color-hover); /* Used for the text of a dropdown option in the hover state. */
|
|
@@ -58,22 +58,22 @@ export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#428fdc'; // U
|
|
|
58
58
|
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_HOVER = '#63a6e9'; // Used for the background of a strong confirm action in the hover state.
|
|
59
59
|
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_FOCUS = '#63a6e9'; // Used for the background of a strong confirm action in the focus state.
|
|
60
60
|
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_ACTIVE = '#9dc7f1'; // Used for the background of a strong confirm action in the active state.
|
|
61
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_DEFAULT = '#
|
|
62
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_HOVER = '#
|
|
63
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_FOCUS = '#
|
|
64
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_ACTIVE = '#
|
|
61
|
+
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_DEFAULT = '#18171d'; // Used for the foreground of a strong confirm action in the default state.
|
|
62
|
+
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_HOVER = '#18171d'; // Used for the foreground of a strong confirm action in the hover state.
|
|
63
|
+
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_FOCUS = '#18171d'; // Used for the foreground of a strong confirm action in the focus state.
|
|
64
|
+
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_ACTIVE = '#18171d'; // Used for the foreground of a strong confirm action in the active state.
|
|
65
65
|
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a strong confirm action in the default state.
|
|
66
66
|
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a strong confirm action in the hover state.
|
|
67
67
|
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a strong confirm action in the focus state.
|
|
68
68
|
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a strong confirm action in the active state.
|
|
69
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#
|
|
70
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_HOVER = '#
|
|
71
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_FOCUS = '#
|
|
72
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#
|
|
73
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_DEFAULT = '#
|
|
74
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_HOVER = '#
|
|
75
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_FOCUS = '#
|
|
76
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_ACTIVE = '#
|
|
69
|
+
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#4c4b51'; // Used for the background of a strong neutral action in the default state.
|
|
70
|
+
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_HOVER = '#626168'; // Used for the background of a strong neutral action in the hover state.
|
|
71
|
+
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_FOCUS = '#626168'; // Used for the background of a strong neutral action in the focus state.
|
|
72
|
+
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#737278'; // Used for the background of a strong neutral action in the active state.
|
|
73
|
+
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_DEFAULT = '#ececef'; // Used for the foreground of a strong neutral action in the default state.
|
|
74
|
+
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_HOVER = '#ececef'; // Used for the foreground of a strong neutral action in the hover state.
|
|
75
|
+
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_FOCUS = '#ececef'; // Used for the foreground of a strong neutral action in the focus state.
|
|
76
|
+
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_ACTIVE = '#ececef'; // Used for the foreground of a strong neutral action in the active state.
|
|
77
77
|
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a strong neutral action in the default state.
|
|
78
78
|
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a strong neutral action in the hover state.
|
|
79
79
|
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a strong neutral action in the focus state.
|
|
@@ -530,10 +530,10 @@ export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; //
|
|
|
530
530
|
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a default borderless, tertiary button in the hover state.
|
|
531
531
|
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a default borderless, tertiary button in the focus state.
|
|
532
532
|
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a default borderless, tertiary button in the active state.
|
|
533
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#
|
|
534
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_HOVER = '#
|
|
535
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_FOCUS = '#
|
|
536
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#
|
|
533
|
+
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#18171d'; // Used for the foreground of a confirm (positive) primary button in the default state.
|
|
534
|
+
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_HOVER = '#18171d'; // Used for the foreground of a confirm (positive) primary button in the hover state.
|
|
535
|
+
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_FOCUS = '#18171d'; // Used for the foreground of a confirm (positive) primary button in the focus state.
|
|
536
|
+
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#18171d'; // Used for the foreground of a confirm (positive) primary button in the active state.
|
|
537
537
|
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#428fdc'; // Used for the background of a confirm (positive) primary button in the default state.
|
|
538
538
|
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_HOVER = '#63a6e9'; // Used for the background of a confirm (positive) primary button in the hover state.
|
|
539
539
|
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_FOCUS = '#63a6e9'; // Used for the background of a confirm (positive) primary button in the focus state.
|
|
@@ -682,6 +682,15 @@ export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animate
|
|
|
682
682
|
export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of a table row in hover state.
|
|
683
683
|
export const GL_TABLE_SORTING_ICON_COLOR = '#fff'; // Used for the color of the sorting icons in the column headers.
|
|
684
684
|
export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#428fdc'; // Used for the selected indicator of a tab.
|
|
685
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#4c4b51'; // Used for the icon color of an unchecked toggle switch in the default state.
|
|
686
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#626168'; // Used for the icon color of an unchecked toggle switch in the hover state.
|
|
687
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#626168'; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
688
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#737278'; // Used for the icon color of an unchecked toggle switch in the active state.
|
|
689
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#428fdc'; // Used for the icon color of a checked toggle switch in the default state.
|
|
690
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#63a6e9'; // Used for the icon color of a checked toggle switch in the hover state.
|
|
691
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#63a6e9'; // Used for the icon color of a checked toggle switch in the focus state.
|
|
692
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#9dc7f1'; // Used for the icon color of a checked toggle switch in the active state.
|
|
693
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_DISABLED = '#28272d'; // Used for the icon color of a disabled toggle switch.
|
|
685
694
|
export const GL_TOKEN_FOREGROUND_COLOR = '#ececef'; // Used for the token foreground color.
|
|
686
695
|
export const GL_TOKEN_BACKGROUND_COLOR = '#3a383f'; // Used for the token background color.
|
|
687
696
|
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.4)'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
@@ -682,6 +682,15 @@ export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animate
|
|
|
682
682
|
export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#fbfafd'; // Used for the background of a table row in hover state.
|
|
683
683
|
export const GL_TABLE_SORTING_ICON_COLOR = '#18171d'; // Used for the color of the sorting icons in the column headers.
|
|
684
684
|
export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#1f75cb'; // Used for the selected indicator of a tab.
|
|
685
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#626168'; // Used for the icon color of an unchecked toggle switch in the default state.
|
|
686
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#4c4b51'; // Used for the icon color of an unchecked toggle switch in the hover state.
|
|
687
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#4c4b51'; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
688
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#3a383f'; // Used for the icon color of an unchecked toggle switch in the active state.
|
|
689
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#1f75cb'; // Used for the icon color of a checked toggle switch in the default state.
|
|
690
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#1068bf'; // Used for the icon color of a checked toggle switch in the hover state.
|
|
691
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#1068bf'; // Used for the icon color of a checked toggle switch in the focus state.
|
|
692
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#0b5cad'; // Used for the icon color of a checked toggle switch in the active state.
|
|
693
|
+
export const GL_TOGGLE_SWITCH_ICON_COLOR_DISABLED = '#ececef'; // Used for the icon color of a disabled toggle switch.
|
|
685
694
|
export const GL_TOKEN_FOREGROUND_COLOR = '#3a383f'; // Used for the token foreground color.
|
|
686
695
|
export const GL_TOKEN_BACKGROUND_COLOR = '#dcdcde'; // Used for the token background color.
|
|
687
696
|
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|