@gitlab/ui 94.1.1 → 94.2.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/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +9 -1
- package/dist/tokens/build/js/tokens.js +9 -1
- package/dist/tokens/css/tokens.css +8 -0
- package/dist/tokens/css/tokens.dark.css +8 -0
- package/dist/tokens/js/tokens.dark.js +8 -0
- package/dist/tokens/js/tokens.js +8 -0
- package/dist/tokens/json/tokens.dark.json +219 -0
- package/dist/tokens/json/tokens.json +219 -0
- package/dist/tokens/scss/_tokens.dark.scss +8 -0
- package/dist/tokens/scss/_tokens.scss +8 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +8 -0
- package/package.json +1 -1
- package/src/components/base/filtered_search/filtered_search.scss +2 -2
- package/src/components/base/filtered_search/filtered_search_term.scss +1 -0
- package/src/components/base/filtered_search/filtered_search_token.scss +10 -7
- package/src/components/base/filtered_search/filtered_search_token_segment.scss +1 -0
- package/src/components/base/token/token.scss +3 -17
- package/src/tokens/build/css/tokens.css +8 -0
- package/src/tokens/build/css/tokens.dark.css +8 -0
- package/src/tokens/build/js/tokens.dark.js +8 -0
- package/src/tokens/build/js/tokens.js +8 -0
- package/src/tokens/build/json/tokens.dark.json +219 -0
- package/src/tokens/build/json/tokens.json +219 -0
- package/src/tokens/build/scss/_tokens.dark.scss +8 -0
- package/src/tokens/build/scss/_tokens.scss +8 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +8 -0
- package/src/tokens/contextual/filtered-search.tokens.json +72 -0
- package/src/tokens/contextual/token.tokens.json +21 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.gl-token {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
color: var(--gl-token-foreground-color);
|
|
3
|
+
background-color: var(--gl-token-background-color);
|
|
4
4
|
@apply gl-rounded-small;
|
|
5
5
|
@apply gl-pl-3;
|
|
6
6
|
@apply gl-inline-flex;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.gl-token-search-type-variant {
|
|
17
|
-
|
|
17
|
+
background-color: var(--gl-token-background-color);
|
|
18
18
|
@apply gl-rounded-tr-none;
|
|
19
19
|
@apply gl-rounded-br-none;
|
|
20
20
|
}
|
|
@@ -39,20 +39,6 @@
|
|
|
39
39
|
|
|
40
40
|
.gl-token-close {
|
|
41
41
|
@apply gl-ml-2;
|
|
42
|
-
@apply gl-text-inherit;
|
|
43
|
-
@include gl-cursor-pointer;
|
|
44
|
-
|
|
45
|
-
opacity: 0.8;
|
|
46
42
|
color: inherit !important;
|
|
47
43
|
background-color: transparent !important;
|
|
48
|
-
|
|
49
|
-
&:hover,
|
|
50
|
-
&:focus {
|
|
51
|
-
@include gl-opacity-10;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
&:focus,
|
|
55
|
-
&:hover:focus {
|
|
56
|
-
@include gl-focus($important: true);
|
|
57
|
-
}
|
|
58
44
|
}
|
|
@@ -497,6 +497,7 @@
|
|
|
497
497
|
--gl-control-background-color-concatenation: var(--gl-color-neutral-10); /* Used for the background of static content that prepends or appends a text input. */
|
|
498
498
|
--gl-control-background-color-disabled: var(--gl-color-neutral-10); /* Used for disabled form control (checkbox, input, radio button, textarea) background. */
|
|
499
499
|
--gl-control-background-color-default: var(--gl-color-neutral-0); /* Used for form control (input, radio button, checkbox, textarea) default background. */
|
|
500
|
+
--gl-token-background-color: var(--gl-color-neutral-100); /* Used for the token background color. */
|
|
500
501
|
--gl-tab-selected-indicator-color-default: var(--gl-color-blue-500); /* Used for the selected indicator of a tab. */
|
|
501
502
|
--gl-spinner-segment-color-light: var(--gl-color-neutral-200); /* Used for the animated segment of a loading spinner on a dark background. */
|
|
502
503
|
--gl-spinner-segment-color-default: var(--gl-color-neutral-700); /* Used for the animated segment of a loading spinner. */
|
|
@@ -520,6 +521,12 @@
|
|
|
520
521
|
--gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
|
|
521
522
|
--gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
|
|
522
523
|
--gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
|
|
524
|
+
--gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-200); /* Used for the filtered search operator token background color in the hover state. */
|
|
525
|
+
--gl-filtered-search-token-operator-background-color-default: var(--gl-color-neutral-50); /* Used for the filtered search operator background color in the default state. */
|
|
526
|
+
--gl-filtered-search-token-data-background-color-hover: var(--gl-color-neutral-200); /* Used for the filtered search data token background color in the hover state. */
|
|
527
|
+
--gl-filtered-search-token-data-background-color-default: var(--gl-color-neutral-100); /* Used for the filtered search data background color in the default state. */
|
|
528
|
+
--gl-filtered-search-token-type-background-color-hover: var(--gl-color-neutral-100); /* Used for the filtered search type token background color in the hover state. */
|
|
529
|
+
--gl-filtered-search-token-type-background-color-default: var(--gl-color-neutral-50); /* Used for the filtered search type token background color in the default state. */
|
|
523
530
|
--gl-datepicker-background-color: var(--gl-color-neutral-0); /* Used for the background color of datepicker. */
|
|
524
531
|
--gl-button-disabled-border-color: var(--gl-color-neutral-100); /* Used for the border of a disabled button. */
|
|
525
532
|
--gl-button-disabled-background-color: var(--gl-color-neutral-10); /* Used for the background of a disabled button. */
|
|
@@ -762,6 +769,7 @@
|
|
|
762
769
|
--gl-control-placeholder-color: var(--gl-text-color-disabled); /* Used for placeholder text within inputs. */
|
|
763
770
|
--gl-control-text-color-valid: var(--gl-text-color-success); /* Used for the helper text when the input is valid. */
|
|
764
771
|
--gl-control-text-color-error: var(--gl-text-color-danger); /* Used for the helper text when the input is invalid. */
|
|
772
|
+
--gl-token-foreground-color: var(--gl-text-color-default); /* Used for the token foreground color. */
|
|
765
773
|
--gl-table-sorting-icon-color: var(--gl-text-color-heading); /* Used for the color of the sorting icons in the column headers. */
|
|
766
774
|
--gl-table-row-background-color-hover: var(--gl-background-color-subtle); /* Used for the background of a table row in hover state. */
|
|
767
775
|
--gl-datepicker-date-text-color-selected: var(--gl-control-indicator-color-selected); /* Used for the datepicker date text color state indicators. */
|
|
@@ -497,6 +497,7 @@
|
|
|
497
497
|
--gl-control-background-color-concatenation: var(--gl-color-alpha-light-4); /* Used for the background of static content that prepends or appends a text input. */
|
|
498
498
|
--gl-control-background-color-disabled: var(--gl-color-alpha-light-4); /* Used for disabled form control (checkbox, input, radio button, textarea) background. */
|
|
499
499
|
--gl-control-background-color-default: var(--gl-color-alpha-dark-40); /* Used for form control (input, radio button, checkbox, textarea) default background. */
|
|
500
|
+
--gl-token-background-color: var(--gl-color-neutral-800); /* Used for the token background color. */
|
|
500
501
|
--gl-tab-selected-indicator-color-default: var(--gl-color-blue-400); /* Used for the selected indicator of a tab. */
|
|
501
502
|
--gl-spinner-segment-color-light: var(--gl-color-neutral-200); /* Used for the animated segment of a loading spinner on a dark background. */
|
|
502
503
|
--gl-spinner-segment-color-default: var(--gl-color-neutral-200); /* Used for the animated segment of a loading spinner. */
|
|
@@ -520,6 +521,12 @@
|
|
|
520
521
|
--gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
|
|
521
522
|
--gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
|
|
522
523
|
--gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
|
|
524
|
+
--gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-700); /* Used for the filtered search operator token background color in the hover state. */
|
|
525
|
+
--gl-filtered-search-token-operator-background-color-default: var(--gl-color-neutral-900); /* Used for the filtered search operator background color in the default state. */
|
|
526
|
+
--gl-filtered-search-token-data-background-color-hover: var(--gl-color-neutral-700); /* Used for the filtered search data token background color in the hover state. */
|
|
527
|
+
--gl-filtered-search-token-data-background-color-default: var(--gl-color-neutral-800); /* Used for the filtered search data background color in the default state. */
|
|
528
|
+
--gl-filtered-search-token-type-background-color-hover: var(--gl-color-neutral-800); /* Used for the filtered search type token background color in the hover state. */
|
|
529
|
+
--gl-filtered-search-token-type-background-color-default: var(--gl-color-neutral-900); /* Used for the filtered search type token background color in the default state. */
|
|
523
530
|
--gl-datepicker-background-color: var(--gl-color-neutral-900); /* Used for the background color of datepicker. */
|
|
524
531
|
--gl-button-disabled-border-color: var(--gl-color-neutral-800); /* Used for the border of a disabled button. */
|
|
525
532
|
--gl-button-disabled-background-color: var(--gl-color-neutral-950); /* Used for the background of a disabled button. */
|
|
@@ -762,6 +769,7 @@
|
|
|
762
769
|
--gl-control-placeholder-color: var(--gl-text-color-disabled); /* Used for placeholder text within inputs. */
|
|
763
770
|
--gl-control-text-color-valid: var(--gl-text-color-success); /* Used for the helper text when the input is valid. */
|
|
764
771
|
--gl-control-text-color-error: var(--gl-text-color-danger); /* Used for the helper text when the input is invalid. */
|
|
772
|
+
--gl-token-foreground-color: var(--gl-text-color-default); /* Used for the token foreground color. */
|
|
765
773
|
--gl-table-sorting-icon-color: var(--gl-text-color-heading); /* Used for the color of the sorting icons in the column headers. */
|
|
766
774
|
--gl-table-row-background-color-hover: var(--gl-background-color-subtle); /* Used for the background of a table row in hover state. */
|
|
767
775
|
--gl-datepicker-date-text-color-selected: var(--gl-control-indicator-color-selected); /* Used for the datepicker date text color state indicators. */
|
|
@@ -627,6 +627,12 @@ export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#18171d'; // Used for the ba
|
|
|
627
627
|
export const GL_BUTTON_DISABLED_BORDER_COLOR = '#3a383f'; // Used for the border of a disabled button.
|
|
628
628
|
export const GL_DATEPICKER_BACKGROUND_COLOR = '#28272d'; // Used for the background color of datepicker.
|
|
629
629
|
export const GL_DATEPICKER_DATE_TEXT_COLOR_SELECTED = '#18171d'; // Used for the datepicker date text color state indicators.
|
|
630
|
+
export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the filtered search type token background color in the default state.
|
|
631
|
+
export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#3a383f'; // Used for the filtered search type token background color in the hover state.
|
|
632
|
+
export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#3a383f'; // Used for the filtered search data background color in the default state.
|
|
633
|
+
export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#4c4b51'; // Used for the filtered search data token background color in the hover state.
|
|
634
|
+
export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the filtered search operator background color in the default state.
|
|
635
|
+
export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#4c4b51'; // Used for the filtered search operator token background color in the hover state.
|
|
630
636
|
export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
631
637
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
|
|
632
638
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
|
|
@@ -652,6 +658,8 @@ export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animate
|
|
|
652
658
|
export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of a table row in hover state.
|
|
653
659
|
export const GL_TABLE_SORTING_ICON_COLOR = '#fff'; // Used for the color of the sorting icons in the column headers.
|
|
654
660
|
export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#428fdc'; // Used for the selected indicator of a tab.
|
|
661
|
+
export const GL_TOKEN_FOREGROUND_COLOR = '#ececef'; // Used for the token foreground color.
|
|
662
|
+
export const GL_TOKEN_BACKGROUND_COLOR = '#3a383f'; // Used for the token background color.
|
|
655
663
|
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.4)'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
656
664
|
export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = 'rgba(255, 255, 255, 0.04)'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
657
665
|
export const GL_CONTROL_BACKGROUND_COLOR_CONCATENATION = 'rgba(255, 255, 255, 0.04)'; // Used for the background of static content that prepends or appends a text input.
|
|
@@ -627,6 +627,12 @@ export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#fbfafd'; // Used for the ba
|
|
|
627
627
|
export const GL_BUTTON_DISABLED_BORDER_COLOR = '#dcdcde'; // Used for the border of a disabled button.
|
|
628
628
|
export const GL_DATEPICKER_BACKGROUND_COLOR = '#fff'; // Used for the background color of datepicker.
|
|
629
629
|
export const GL_DATEPICKER_DATE_TEXT_COLOR_SELECTED = '#fff'; // Used for the datepicker date text color state indicators.
|
|
630
|
+
export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the filtered search type token background color in the default state.
|
|
631
|
+
export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#dcdcde'; // Used for the filtered search type token background color in the hover state.
|
|
632
|
+
export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#dcdcde'; // Used for the filtered search data background color in the default state.
|
|
633
|
+
export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#bfbfc3'; // Used for the filtered search data token background color in the hover state.
|
|
634
|
+
export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the filtered search operator background color in the default state.
|
|
635
|
+
export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#bfbfc3'; // Used for the filtered search operator token background color in the hover state.
|
|
630
636
|
export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
631
637
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
|
|
632
638
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
|
|
@@ -652,6 +658,8 @@ export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animate
|
|
|
652
658
|
export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#fbfafd'; // Used for the background of a table row in hover state.
|
|
653
659
|
export const GL_TABLE_SORTING_ICON_COLOR = '#18171d'; // Used for the color of the sorting icons in the column headers.
|
|
654
660
|
export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#1f75cb'; // Used for the selected indicator of a tab.
|
|
661
|
+
export const GL_TOKEN_FOREGROUND_COLOR = '#3a383f'; // Used for the token foreground color.
|
|
662
|
+
export const GL_TOKEN_BACKGROUND_COLOR = '#dcdcde'; // Used for the token background color.
|
|
655
663
|
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
656
664
|
export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
657
665
|
export const GL_CONTROL_BACKGROUND_COLOR_CONCATENATION = '#fbfafd'; // Used for the background of static content that prepends or appends a text input.
|
|
@@ -13739,6 +13739,178 @@
|
|
|
13739
13739
|
}
|
|
13740
13740
|
}
|
|
13741
13741
|
},
|
|
13742
|
+
"filtered-search": {
|
|
13743
|
+
"token": {
|
|
13744
|
+
"type": {
|
|
13745
|
+
"background": {
|
|
13746
|
+
"color": {
|
|
13747
|
+
"default": {
|
|
13748
|
+
"value": "#28272d",
|
|
13749
|
+
"$type": "color",
|
|
13750
|
+
"comment": "Used for the filtered search type token background color in the default state.",
|
|
13751
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13752
|
+
"isSource": true,
|
|
13753
|
+
"original": {
|
|
13754
|
+
"value": {
|
|
13755
|
+
"default": "{color.neutral.50}",
|
|
13756
|
+
"dark": "{color.neutral.900}"
|
|
13757
|
+
},
|
|
13758
|
+
"$type": "color",
|
|
13759
|
+
"comment": "Used for the filtered search type token background color in the default state."
|
|
13760
|
+
},
|
|
13761
|
+
"name": "FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_DEFAULT",
|
|
13762
|
+
"attributes": {},
|
|
13763
|
+
"path": [
|
|
13764
|
+
"filtered-search",
|
|
13765
|
+
"token",
|
|
13766
|
+
"type",
|
|
13767
|
+
"background",
|
|
13768
|
+
"color",
|
|
13769
|
+
"default"
|
|
13770
|
+
]
|
|
13771
|
+
},
|
|
13772
|
+
"hover": {
|
|
13773
|
+
"value": "#3a383f",
|
|
13774
|
+
"$type": "color",
|
|
13775
|
+
"comment": "Used for the filtered search type token background color in the hover state.",
|
|
13776
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13777
|
+
"isSource": true,
|
|
13778
|
+
"original": {
|
|
13779
|
+
"value": {
|
|
13780
|
+
"default": "{color.neutral.100}",
|
|
13781
|
+
"dark": "{color.neutral.800}"
|
|
13782
|
+
},
|
|
13783
|
+
"$type": "color",
|
|
13784
|
+
"comment": "Used for the filtered search type token background color in the hover state."
|
|
13785
|
+
},
|
|
13786
|
+
"name": "FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER",
|
|
13787
|
+
"attributes": {},
|
|
13788
|
+
"path": [
|
|
13789
|
+
"filtered-search",
|
|
13790
|
+
"token",
|
|
13791
|
+
"type",
|
|
13792
|
+
"background",
|
|
13793
|
+
"color",
|
|
13794
|
+
"hover"
|
|
13795
|
+
]
|
|
13796
|
+
}
|
|
13797
|
+
}
|
|
13798
|
+
}
|
|
13799
|
+
},
|
|
13800
|
+
"data": {
|
|
13801
|
+
"background": {
|
|
13802
|
+
"color": {
|
|
13803
|
+
"default": {
|
|
13804
|
+
"value": "#3a383f",
|
|
13805
|
+
"$type": "color",
|
|
13806
|
+
"comment": "Used for the filtered search data background color in the default state.",
|
|
13807
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13808
|
+
"isSource": true,
|
|
13809
|
+
"original": {
|
|
13810
|
+
"value": {
|
|
13811
|
+
"default": "{color.neutral.100}",
|
|
13812
|
+
"dark": "{color.neutral.800}"
|
|
13813
|
+
},
|
|
13814
|
+
"$type": "color",
|
|
13815
|
+
"comment": "Used for the filtered search data background color in the default state."
|
|
13816
|
+
},
|
|
13817
|
+
"name": "FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT",
|
|
13818
|
+
"attributes": {},
|
|
13819
|
+
"path": [
|
|
13820
|
+
"filtered-search",
|
|
13821
|
+
"token",
|
|
13822
|
+
"data",
|
|
13823
|
+
"background",
|
|
13824
|
+
"color",
|
|
13825
|
+
"default"
|
|
13826
|
+
]
|
|
13827
|
+
},
|
|
13828
|
+
"hover": {
|
|
13829
|
+
"value": "#4c4b51",
|
|
13830
|
+
"$type": "color",
|
|
13831
|
+
"comment": "Used for the filtered search data token background color in the hover state.",
|
|
13832
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13833
|
+
"isSource": true,
|
|
13834
|
+
"original": {
|
|
13835
|
+
"value": {
|
|
13836
|
+
"default": "{color.neutral.200}",
|
|
13837
|
+
"dark": "{color.neutral.700}"
|
|
13838
|
+
},
|
|
13839
|
+
"$type": "color",
|
|
13840
|
+
"comment": "Used for the filtered search data token background color in the hover state."
|
|
13841
|
+
},
|
|
13842
|
+
"name": "FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER",
|
|
13843
|
+
"attributes": {},
|
|
13844
|
+
"path": [
|
|
13845
|
+
"filtered-search",
|
|
13846
|
+
"token",
|
|
13847
|
+
"data",
|
|
13848
|
+
"background",
|
|
13849
|
+
"color",
|
|
13850
|
+
"hover"
|
|
13851
|
+
]
|
|
13852
|
+
}
|
|
13853
|
+
}
|
|
13854
|
+
}
|
|
13855
|
+
},
|
|
13856
|
+
"operator": {
|
|
13857
|
+
"background": {
|
|
13858
|
+
"color": {
|
|
13859
|
+
"default": {
|
|
13860
|
+
"value": "#28272d",
|
|
13861
|
+
"$type": "color",
|
|
13862
|
+
"comment": "Used for the filtered search operator background color in the default state.",
|
|
13863
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13864
|
+
"isSource": true,
|
|
13865
|
+
"original": {
|
|
13866
|
+
"value": {
|
|
13867
|
+
"default": "{color.neutral.50}",
|
|
13868
|
+
"dark": "{color.neutral.900}"
|
|
13869
|
+
},
|
|
13870
|
+
"$type": "color",
|
|
13871
|
+
"comment": "Used for the filtered search operator background color in the default state."
|
|
13872
|
+
},
|
|
13873
|
+
"name": "FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT",
|
|
13874
|
+
"attributes": {},
|
|
13875
|
+
"path": [
|
|
13876
|
+
"filtered-search",
|
|
13877
|
+
"token",
|
|
13878
|
+
"operator",
|
|
13879
|
+
"background",
|
|
13880
|
+
"color",
|
|
13881
|
+
"default"
|
|
13882
|
+
]
|
|
13883
|
+
},
|
|
13884
|
+
"hover": {
|
|
13885
|
+
"value": "#4c4b51",
|
|
13886
|
+
"$type": "color",
|
|
13887
|
+
"comment": "Used for the filtered search operator token background color in the hover state.",
|
|
13888
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13889
|
+
"isSource": true,
|
|
13890
|
+
"original": {
|
|
13891
|
+
"value": {
|
|
13892
|
+
"default": "{color.neutral.200}",
|
|
13893
|
+
"dark": "{color.neutral.700}"
|
|
13894
|
+
},
|
|
13895
|
+
"$type": "color",
|
|
13896
|
+
"comment": "Used for the filtered search operator token background color in the hover state."
|
|
13897
|
+
},
|
|
13898
|
+
"name": "FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER",
|
|
13899
|
+
"attributes": {},
|
|
13900
|
+
"path": [
|
|
13901
|
+
"filtered-search",
|
|
13902
|
+
"token",
|
|
13903
|
+
"operator",
|
|
13904
|
+
"background",
|
|
13905
|
+
"color",
|
|
13906
|
+
"hover"
|
|
13907
|
+
]
|
|
13908
|
+
}
|
|
13909
|
+
}
|
|
13910
|
+
}
|
|
13911
|
+
}
|
|
13912
|
+
}
|
|
13913
|
+
},
|
|
13742
13914
|
"label": {
|
|
13743
13915
|
"light": {
|
|
13744
13916
|
"text": {
|
|
@@ -14392,6 +14564,53 @@
|
|
|
14392
14564
|
}
|
|
14393
14565
|
}
|
|
14394
14566
|
},
|
|
14567
|
+
"token": {
|
|
14568
|
+
"foreground": {
|
|
14569
|
+
"color": {
|
|
14570
|
+
"value": "#ececef",
|
|
14571
|
+
"$type": "color",
|
|
14572
|
+
"comment": "Used for the token foreground color.",
|
|
14573
|
+
"filePath": "src/tokens/contextual/token.tokens.json",
|
|
14574
|
+
"isSource": true,
|
|
14575
|
+
"original": {
|
|
14576
|
+
"value": "{text.color.default}",
|
|
14577
|
+
"$type": "color",
|
|
14578
|
+
"comment": "Used for the token foreground color."
|
|
14579
|
+
},
|
|
14580
|
+
"name": "TOKEN_FOREGROUND_COLOR",
|
|
14581
|
+
"attributes": {},
|
|
14582
|
+
"path": [
|
|
14583
|
+
"token",
|
|
14584
|
+
"foreground",
|
|
14585
|
+
"color"
|
|
14586
|
+
]
|
|
14587
|
+
}
|
|
14588
|
+
},
|
|
14589
|
+
"background": {
|
|
14590
|
+
"color": {
|
|
14591
|
+
"value": "#3a383f",
|
|
14592
|
+
"$type": "color",
|
|
14593
|
+
"comment": "Used for the token background color.",
|
|
14594
|
+
"filePath": "src/tokens/contextual/token.tokens.json",
|
|
14595
|
+
"isSource": true,
|
|
14596
|
+
"original": {
|
|
14597
|
+
"value": {
|
|
14598
|
+
"default": "{color.neutral.100}",
|
|
14599
|
+
"dark": "{color.neutral.800}"
|
|
14600
|
+
},
|
|
14601
|
+
"$type": "color",
|
|
14602
|
+
"comment": "Used for the token background color."
|
|
14603
|
+
},
|
|
14604
|
+
"name": "TOKEN_BACKGROUND_COLOR",
|
|
14605
|
+
"attributes": {},
|
|
14606
|
+
"path": [
|
|
14607
|
+
"token",
|
|
14608
|
+
"background",
|
|
14609
|
+
"color"
|
|
14610
|
+
]
|
|
14611
|
+
}
|
|
14612
|
+
}
|
|
14613
|
+
},
|
|
14395
14614
|
"control": {
|
|
14396
14615
|
"background": {
|
|
14397
14616
|
"color": {
|
|
@@ -13739,6 +13739,178 @@
|
|
|
13739
13739
|
}
|
|
13740
13740
|
}
|
|
13741
13741
|
},
|
|
13742
|
+
"filtered-search": {
|
|
13743
|
+
"token": {
|
|
13744
|
+
"type": {
|
|
13745
|
+
"background": {
|
|
13746
|
+
"color": {
|
|
13747
|
+
"default": {
|
|
13748
|
+
"value": "#ececef",
|
|
13749
|
+
"$type": "color",
|
|
13750
|
+
"comment": "Used for the filtered search type token background color in the default state.",
|
|
13751
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13752
|
+
"isSource": true,
|
|
13753
|
+
"original": {
|
|
13754
|
+
"value": {
|
|
13755
|
+
"default": "{color.neutral.50}",
|
|
13756
|
+
"dark": "{color.neutral.900}"
|
|
13757
|
+
},
|
|
13758
|
+
"$type": "color",
|
|
13759
|
+
"comment": "Used for the filtered search type token background color in the default state."
|
|
13760
|
+
},
|
|
13761
|
+
"name": "FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_DEFAULT",
|
|
13762
|
+
"attributes": {},
|
|
13763
|
+
"path": [
|
|
13764
|
+
"filtered-search",
|
|
13765
|
+
"token",
|
|
13766
|
+
"type",
|
|
13767
|
+
"background",
|
|
13768
|
+
"color",
|
|
13769
|
+
"default"
|
|
13770
|
+
]
|
|
13771
|
+
},
|
|
13772
|
+
"hover": {
|
|
13773
|
+
"value": "#dcdcde",
|
|
13774
|
+
"$type": "color",
|
|
13775
|
+
"comment": "Used for the filtered search type token background color in the hover state.",
|
|
13776
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13777
|
+
"isSource": true,
|
|
13778
|
+
"original": {
|
|
13779
|
+
"value": {
|
|
13780
|
+
"default": "{color.neutral.100}",
|
|
13781
|
+
"dark": "{color.neutral.800}"
|
|
13782
|
+
},
|
|
13783
|
+
"$type": "color",
|
|
13784
|
+
"comment": "Used for the filtered search type token background color in the hover state."
|
|
13785
|
+
},
|
|
13786
|
+
"name": "FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER",
|
|
13787
|
+
"attributes": {},
|
|
13788
|
+
"path": [
|
|
13789
|
+
"filtered-search",
|
|
13790
|
+
"token",
|
|
13791
|
+
"type",
|
|
13792
|
+
"background",
|
|
13793
|
+
"color",
|
|
13794
|
+
"hover"
|
|
13795
|
+
]
|
|
13796
|
+
}
|
|
13797
|
+
}
|
|
13798
|
+
}
|
|
13799
|
+
},
|
|
13800
|
+
"data": {
|
|
13801
|
+
"background": {
|
|
13802
|
+
"color": {
|
|
13803
|
+
"default": {
|
|
13804
|
+
"value": "#dcdcde",
|
|
13805
|
+
"$type": "color",
|
|
13806
|
+
"comment": "Used for the filtered search data background color in the default state.",
|
|
13807
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13808
|
+
"isSource": true,
|
|
13809
|
+
"original": {
|
|
13810
|
+
"value": {
|
|
13811
|
+
"default": "{color.neutral.100}",
|
|
13812
|
+
"dark": "{color.neutral.800}"
|
|
13813
|
+
},
|
|
13814
|
+
"$type": "color",
|
|
13815
|
+
"comment": "Used for the filtered search data background color in the default state."
|
|
13816
|
+
},
|
|
13817
|
+
"name": "FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT",
|
|
13818
|
+
"attributes": {},
|
|
13819
|
+
"path": [
|
|
13820
|
+
"filtered-search",
|
|
13821
|
+
"token",
|
|
13822
|
+
"data",
|
|
13823
|
+
"background",
|
|
13824
|
+
"color",
|
|
13825
|
+
"default"
|
|
13826
|
+
]
|
|
13827
|
+
},
|
|
13828
|
+
"hover": {
|
|
13829
|
+
"value": "#bfbfc3",
|
|
13830
|
+
"$type": "color",
|
|
13831
|
+
"comment": "Used for the filtered search data token background color in the hover state.",
|
|
13832
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13833
|
+
"isSource": true,
|
|
13834
|
+
"original": {
|
|
13835
|
+
"value": {
|
|
13836
|
+
"default": "{color.neutral.200}",
|
|
13837
|
+
"dark": "{color.neutral.700}"
|
|
13838
|
+
},
|
|
13839
|
+
"$type": "color",
|
|
13840
|
+
"comment": "Used for the filtered search data token background color in the hover state."
|
|
13841
|
+
},
|
|
13842
|
+
"name": "FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER",
|
|
13843
|
+
"attributes": {},
|
|
13844
|
+
"path": [
|
|
13845
|
+
"filtered-search",
|
|
13846
|
+
"token",
|
|
13847
|
+
"data",
|
|
13848
|
+
"background",
|
|
13849
|
+
"color",
|
|
13850
|
+
"hover"
|
|
13851
|
+
]
|
|
13852
|
+
}
|
|
13853
|
+
}
|
|
13854
|
+
}
|
|
13855
|
+
},
|
|
13856
|
+
"operator": {
|
|
13857
|
+
"background": {
|
|
13858
|
+
"color": {
|
|
13859
|
+
"default": {
|
|
13860
|
+
"value": "#ececef",
|
|
13861
|
+
"$type": "color",
|
|
13862
|
+
"comment": "Used for the filtered search operator background color in the default state.",
|
|
13863
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13864
|
+
"isSource": true,
|
|
13865
|
+
"original": {
|
|
13866
|
+
"value": {
|
|
13867
|
+
"default": "{color.neutral.50}",
|
|
13868
|
+
"dark": "{color.neutral.900}"
|
|
13869
|
+
},
|
|
13870
|
+
"$type": "color",
|
|
13871
|
+
"comment": "Used for the filtered search operator background color in the default state."
|
|
13872
|
+
},
|
|
13873
|
+
"name": "FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT",
|
|
13874
|
+
"attributes": {},
|
|
13875
|
+
"path": [
|
|
13876
|
+
"filtered-search",
|
|
13877
|
+
"token",
|
|
13878
|
+
"operator",
|
|
13879
|
+
"background",
|
|
13880
|
+
"color",
|
|
13881
|
+
"default"
|
|
13882
|
+
]
|
|
13883
|
+
},
|
|
13884
|
+
"hover": {
|
|
13885
|
+
"value": "#bfbfc3",
|
|
13886
|
+
"$type": "color",
|
|
13887
|
+
"comment": "Used for the filtered search operator token background color in the hover state.",
|
|
13888
|
+
"filePath": "src/tokens/contextual/filtered-search.tokens.json",
|
|
13889
|
+
"isSource": true,
|
|
13890
|
+
"original": {
|
|
13891
|
+
"value": {
|
|
13892
|
+
"default": "{color.neutral.200}",
|
|
13893
|
+
"dark": "{color.neutral.700}"
|
|
13894
|
+
},
|
|
13895
|
+
"$type": "color",
|
|
13896
|
+
"comment": "Used for the filtered search operator token background color in the hover state."
|
|
13897
|
+
},
|
|
13898
|
+
"name": "FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER",
|
|
13899
|
+
"attributes": {},
|
|
13900
|
+
"path": [
|
|
13901
|
+
"filtered-search",
|
|
13902
|
+
"token",
|
|
13903
|
+
"operator",
|
|
13904
|
+
"background",
|
|
13905
|
+
"color",
|
|
13906
|
+
"hover"
|
|
13907
|
+
]
|
|
13908
|
+
}
|
|
13909
|
+
}
|
|
13910
|
+
}
|
|
13911
|
+
}
|
|
13912
|
+
}
|
|
13913
|
+
},
|
|
13742
13914
|
"label": {
|
|
13743
13915
|
"light": {
|
|
13744
13916
|
"text": {
|
|
@@ -14392,6 +14564,53 @@
|
|
|
14392
14564
|
}
|
|
14393
14565
|
}
|
|
14394
14566
|
},
|
|
14567
|
+
"token": {
|
|
14568
|
+
"foreground": {
|
|
14569
|
+
"color": {
|
|
14570
|
+
"value": "#3a383f",
|
|
14571
|
+
"$type": "color",
|
|
14572
|
+
"comment": "Used for the token foreground color.",
|
|
14573
|
+
"filePath": "src/tokens/contextual/token.tokens.json",
|
|
14574
|
+
"isSource": true,
|
|
14575
|
+
"original": {
|
|
14576
|
+
"value": "{text.color.default}",
|
|
14577
|
+
"$type": "color",
|
|
14578
|
+
"comment": "Used for the token foreground color."
|
|
14579
|
+
},
|
|
14580
|
+
"name": "TOKEN_FOREGROUND_COLOR",
|
|
14581
|
+
"attributes": {},
|
|
14582
|
+
"path": [
|
|
14583
|
+
"token",
|
|
14584
|
+
"foreground",
|
|
14585
|
+
"color"
|
|
14586
|
+
]
|
|
14587
|
+
}
|
|
14588
|
+
},
|
|
14589
|
+
"background": {
|
|
14590
|
+
"color": {
|
|
14591
|
+
"value": "#dcdcde",
|
|
14592
|
+
"$type": "color",
|
|
14593
|
+
"comment": "Used for the token background color.",
|
|
14594
|
+
"filePath": "src/tokens/contextual/token.tokens.json",
|
|
14595
|
+
"isSource": true,
|
|
14596
|
+
"original": {
|
|
14597
|
+
"value": {
|
|
14598
|
+
"default": "{color.neutral.100}",
|
|
14599
|
+
"dark": "{color.neutral.800}"
|
|
14600
|
+
},
|
|
14601
|
+
"$type": "color",
|
|
14602
|
+
"comment": "Used for the token background color."
|
|
14603
|
+
},
|
|
14604
|
+
"name": "TOKEN_BACKGROUND_COLOR",
|
|
14605
|
+
"attributes": {},
|
|
14606
|
+
"path": [
|
|
14607
|
+
"token",
|
|
14608
|
+
"background",
|
|
14609
|
+
"color"
|
|
14610
|
+
]
|
|
14611
|
+
}
|
|
14612
|
+
}
|
|
14613
|
+
},
|
|
14395
14614
|
"control": {
|
|
14396
14615
|
"background": {
|
|
14397
14616
|
"color": {
|
|
@@ -495,6 +495,7 @@ $gl-control-background-color-readonly: $gl-color-alpha-light-8; // Used for the
|
|
|
495
495
|
$gl-control-background-color-concatenation: $gl-color-alpha-light-4; // Used for the background of static content that prepends or appends a text input.
|
|
496
496
|
$gl-control-background-color-disabled: $gl-color-alpha-light-4; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
497
497
|
$gl-control-background-color-default: $gl-color-alpha-dark-40; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
498
|
+
$gl-token-background-color: $gl-color-neutral-800; // Used for the token background color.
|
|
498
499
|
$gl-tab-selected-indicator-color-default: $gl-color-blue-400; // Used for the selected indicator of a tab.
|
|
499
500
|
$gl-spinner-segment-color-light: $gl-color-neutral-200; // Used for the animated segment of a loading spinner on a dark background.
|
|
500
501
|
$gl-spinner-segment-color-default: $gl-color-neutral-200; // Used for the animated segment of a loading spinner.
|
|
@@ -518,6 +519,12 @@ $gl-label-light-button-icon-color-default: $gl-color-neutral-950; // Used for th
|
|
|
518
519
|
$gl-label-light-button-background-color-hover: $gl-color-neutral-950; // Used for the label remove button background on a light background color in the hover state.
|
|
519
520
|
$gl-label-light-button-background-color-default: $gl-color-alpha-0; // Used for the label remove button background on a light background color in the default state.
|
|
520
521
|
$gl-label-light-text-color: $gl-color-neutral-950; // Used for the label text color on a light background color.
|
|
522
|
+
$gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-700; // Used for the filtered search operator token background color in the hover state.
|
|
523
|
+
$gl-filtered-search-token-operator-background-color-default: $gl-color-neutral-900; // Used for the filtered search operator background color in the default state.
|
|
524
|
+
$gl-filtered-search-token-data-background-color-hover: $gl-color-neutral-700; // Used for the filtered search data token background color in the hover state.
|
|
525
|
+
$gl-filtered-search-token-data-background-color-default: $gl-color-neutral-800; // Used for the filtered search data background color in the default state.
|
|
526
|
+
$gl-filtered-search-token-type-background-color-hover: $gl-color-neutral-800; // Used for the filtered search type token background color in the hover state.
|
|
527
|
+
$gl-filtered-search-token-type-background-color-default: $gl-color-neutral-900; // Used for the filtered search type token background color in the default state.
|
|
521
528
|
$gl-datepicker-background-color: $gl-color-neutral-900; // Used for the background color of datepicker.
|
|
522
529
|
$gl-button-disabled-border-color: $gl-color-neutral-800; // Used for the border of a disabled button.
|
|
523
530
|
$gl-button-disabled-background-color: $gl-color-neutral-950; // Used for the background of a disabled button.
|
|
@@ -760,6 +767,7 @@ $gl-focus-ring-inner-color: $gl-background-color-default; // Used for the inner
|
|
|
760
767
|
$gl-control-placeholder-color: $gl-text-color-disabled; // Used for placeholder text within inputs.
|
|
761
768
|
$gl-control-text-color-valid: $gl-text-color-success; // Used for the helper text when the input is valid.
|
|
762
769
|
$gl-control-text-color-error: $gl-text-color-danger; // Used for the helper text when the input is invalid.
|
|
770
|
+
$gl-token-foreground-color: $gl-text-color-default; // Used for the token foreground color.
|
|
763
771
|
$gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
|
|
764
772
|
$gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
|
|
765
773
|
$gl-datepicker-date-text-color-selected: $gl-control-indicator-color-selected; // Used for the datepicker date text color state indicators.
|