@gitlab/ui 111.0.0 → 111.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/components/base/token_selector/token_container.js +1 -1
- package/dist/components/base/token_selector/token_selector.js +2 -1
- package/dist/components/charts/discrete_scatter/discrete_scatter.js +1 -2
- package/dist/components/charts/heatmap/heatmap.js +4 -4
- package/dist/components/charts/legend/legend.js +1 -2
- package/dist/components/charts/line/line.js +1 -2
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +8 -1
- package/dist/tokens/build/js/tokens.js +8 -1
- package/dist/tokens/css/tokens.css +8 -1
- package/dist/tokens/css/tokens.dark.css +8 -1
- package/dist/tokens/js/tokens.dark.js +7 -0
- package/dist/tokens/js/tokens.js +7 -0
- package/dist/tokens/json/tokens.dark.json +176 -1
- package/dist/tokens/json/tokens.json +176 -1
- package/dist/tokens/scss/_tokens.dark.scss +8 -1
- package/dist/tokens/scss/_tokens.scss +8 -1
- package/dist/tokens/scss/_tokens_custom_properties.scss +7 -0
- package/dist/utils/charts/theme.js +31 -29
- package/dist/utils/is_slot_empty.js +1 -8
- package/package.json +1 -1
- package/src/components/base/token_selector/token_container.vue +3 -2
- package/src/components/base/token_selector/token_selector.scss +1 -0
- package/src/components/base/token_selector/token_selector.vue +3 -0
- package/src/components/charts/discrete_scatter/discrete_scatter.vue +1 -2
- package/src/components/charts/heatmap/heatmap.vue +4 -4
- package/src/components/charts/legend/legend.vue +1 -2
- package/src/components/charts/line/line.vue +1 -2
- package/src/tokens/build/css/tokens.css +8 -1
- package/src/tokens/build/css/tokens.dark.css +8 -1
- package/src/tokens/build/js/tokens.dark.js +7 -0
- package/src/tokens/build/js/tokens.js +7 -0
- package/src/tokens/build/json/tokens.dark.json +176 -1
- package/src/tokens/build/json/tokens.json +176 -1
- package/src/tokens/build/scss/_tokens.dark.scss +8 -1
- package/src/tokens/build/scss/_tokens.scss +8 -1
- package/src/tokens/build/scss/_tokens_custom_properties.scss +7 -0
- package/src/tokens/contextual/chart.tokens.json +68 -0
- package/src/tokens/contextual/dropdown.tokens.json +2 -0
- package/src/utils/charts/theme.js +150 -153
- package/src/utils/is_slot_empty.js +1 -10
package/dist/tokens/js/tokens.js
CHANGED
|
@@ -624,6 +624,13 @@ export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '#626168';
|
|
|
624
624
|
export const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#737278';
|
|
625
625
|
export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#fbfafd';
|
|
626
626
|
export const GL_BUTTON_DISABLED_BORDER_COLOR = '#dcdcde';
|
|
627
|
+
export const GL_CHART_AXIS_POINTER_COLOR = '#626168';
|
|
628
|
+
export const GL_CHART_AXIS_LINE_COLOR = '#bfbfc3';
|
|
629
|
+
export const GL_CHART_AXIS_TEXT_COLOR = '#626168';
|
|
630
|
+
export const GL_CHART_THRESHOLD_AREA_COLOR = 'rgba(221,43,14,0.1)';
|
|
631
|
+
export const GL_CHART_THRESHOLD_LINE_COLOR = '#dd2b0e';
|
|
632
|
+
export const GL_CHART_ZOOM_FILLER_COLOR = 'rgba(05, 05, 06, 0.08)';
|
|
633
|
+
export const GL_CHART_ZOOM_HANDLE_COLOR = '#626168';
|
|
627
634
|
export const GL_DATEPICKER_BACKGROUND_COLOR = '#fff';
|
|
628
635
|
export const GL_DATEPICKER_DATE_TEXT_COLOR_SELECTED = '#fff';
|
|
629
636
|
export const GL_DROPDOWN_BACKGROUND_COLOR = '#fff';
|
|
@@ -13350,6 +13350,177 @@
|
|
|
13350
13350
|
}
|
|
13351
13351
|
}
|
|
13352
13352
|
},
|
|
13353
|
+
"chart": {
|
|
13354
|
+
"axis": {
|
|
13355
|
+
"pointer": {
|
|
13356
|
+
"color": {
|
|
13357
|
+
"$value": "#bfbfc3",
|
|
13358
|
+
"$type": "color",
|
|
13359
|
+
"$description": "Used in charts for the color of the reference line and axis value under mouse pointer.",
|
|
13360
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13361
|
+
"isSource": true,
|
|
13362
|
+
"original": {
|
|
13363
|
+
"$value": "{icon.color.subtle}",
|
|
13364
|
+
"$type": "color",
|
|
13365
|
+
"$description": "Used in charts for the color of the reference line and axis value under mouse pointer."
|
|
13366
|
+
},
|
|
13367
|
+
"name": "CHART_AXIS_POINTER_COLOR",
|
|
13368
|
+
"attributes": {},
|
|
13369
|
+
"path": [
|
|
13370
|
+
"chart",
|
|
13371
|
+
"axis",
|
|
13372
|
+
"pointer",
|
|
13373
|
+
"color"
|
|
13374
|
+
]
|
|
13375
|
+
}
|
|
13376
|
+
},
|
|
13377
|
+
"line": {
|
|
13378
|
+
"color": {
|
|
13379
|
+
"$value": "#4c4b51",
|
|
13380
|
+
"$type": "color",
|
|
13381
|
+
"$description": "Used in charts for axis line color.",
|
|
13382
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13383
|
+
"isSource": true,
|
|
13384
|
+
"original": {
|
|
13385
|
+
"$value": {
|
|
13386
|
+
"default": "{color.neutral.200}",
|
|
13387
|
+
"dark": "{color.neutral.700}"
|
|
13388
|
+
},
|
|
13389
|
+
"$type": "color",
|
|
13390
|
+
"$description": "Used in charts for axis line color."
|
|
13391
|
+
},
|
|
13392
|
+
"name": "CHART_AXIS_LINE_COLOR",
|
|
13393
|
+
"attributes": {},
|
|
13394
|
+
"path": [
|
|
13395
|
+
"chart",
|
|
13396
|
+
"axis",
|
|
13397
|
+
"line",
|
|
13398
|
+
"color"
|
|
13399
|
+
]
|
|
13400
|
+
}
|
|
13401
|
+
},
|
|
13402
|
+
"text": {
|
|
13403
|
+
"color": {
|
|
13404
|
+
"$value": "#bfbfc3",
|
|
13405
|
+
"$type": "color",
|
|
13406
|
+
"$description": "Used in charts for the text color of axis titles and labels.",
|
|
13407
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13408
|
+
"isSource": true,
|
|
13409
|
+
"original": {
|
|
13410
|
+
"$value": "{text.color.subtle}",
|
|
13411
|
+
"$type": "color",
|
|
13412
|
+
"$description": "Used in charts for the text color of axis titles and labels."
|
|
13413
|
+
},
|
|
13414
|
+
"name": "CHART_AXIS_TEXT_COLOR",
|
|
13415
|
+
"attributes": {},
|
|
13416
|
+
"path": [
|
|
13417
|
+
"chart",
|
|
13418
|
+
"axis",
|
|
13419
|
+
"text",
|
|
13420
|
+
"color"
|
|
13421
|
+
]
|
|
13422
|
+
}
|
|
13423
|
+
}
|
|
13424
|
+
},
|
|
13425
|
+
"threshold": {
|
|
13426
|
+
"area": {
|
|
13427
|
+
"color": {
|
|
13428
|
+
"$value": "rgba(221,43,14,0.1)",
|
|
13429
|
+
"$type": "color",
|
|
13430
|
+
"$description": "Used in charts to delineate a threshold area in a chart.",
|
|
13431
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13432
|
+
"isSource": true,
|
|
13433
|
+
"original": {
|
|
13434
|
+
"$value": "rgba(221,43,14,0.1)",
|
|
13435
|
+
"$type": "color",
|
|
13436
|
+
"$description": "Used in charts to delineate a threshold area in a chart."
|
|
13437
|
+
},
|
|
13438
|
+
"name": "CHART_THRESHOLD_AREA_COLOR",
|
|
13439
|
+
"attributes": {},
|
|
13440
|
+
"path": [
|
|
13441
|
+
"chart",
|
|
13442
|
+
"threshold",
|
|
13443
|
+
"area",
|
|
13444
|
+
"color"
|
|
13445
|
+
]
|
|
13446
|
+
}
|
|
13447
|
+
},
|
|
13448
|
+
"line": {
|
|
13449
|
+
"color": {
|
|
13450
|
+
"$value": "#c91c00",
|
|
13451
|
+
"$type": "color",
|
|
13452
|
+
"$description": "Used in charts to divide a threshold area in a chart from other data.",
|
|
13453
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13454
|
+
"isSource": true,
|
|
13455
|
+
"original": {
|
|
13456
|
+
"$value": {
|
|
13457
|
+
"default": "{color.red.500}",
|
|
13458
|
+
"dark": "{color.red.600}"
|
|
13459
|
+
},
|
|
13460
|
+
"$type": "color",
|
|
13461
|
+
"$description": "Used in charts to divide a threshold area in a chart from other data."
|
|
13462
|
+
},
|
|
13463
|
+
"name": "CHART_THRESHOLD_LINE_COLOR",
|
|
13464
|
+
"attributes": {},
|
|
13465
|
+
"path": [
|
|
13466
|
+
"chart",
|
|
13467
|
+
"threshold",
|
|
13468
|
+
"line",
|
|
13469
|
+
"color"
|
|
13470
|
+
]
|
|
13471
|
+
}
|
|
13472
|
+
}
|
|
13473
|
+
},
|
|
13474
|
+
"zoom": {
|
|
13475
|
+
"filler": {
|
|
13476
|
+
"color": {
|
|
13477
|
+
"$value": "rgba(255, 255, 255, 0.16)",
|
|
13478
|
+
"$type": "color",
|
|
13479
|
+
"$description": "Used in charts for the overlay color when zooming in on a specific area of data.",
|
|
13480
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13481
|
+
"isSource": true,
|
|
13482
|
+
"original": {
|
|
13483
|
+
"$value": {
|
|
13484
|
+
"default": "{color.alpha.dark.8}",
|
|
13485
|
+
"dark": "{color.alpha.light.16}"
|
|
13486
|
+
},
|
|
13487
|
+
"$type": "color",
|
|
13488
|
+
"$description": "Used in charts for the overlay color when zooming in on a specific area of data."
|
|
13489
|
+
},
|
|
13490
|
+
"name": "CHART_ZOOM_FILLER_COLOR",
|
|
13491
|
+
"attributes": {},
|
|
13492
|
+
"path": [
|
|
13493
|
+
"chart",
|
|
13494
|
+
"zoom",
|
|
13495
|
+
"filler",
|
|
13496
|
+
"color"
|
|
13497
|
+
]
|
|
13498
|
+
}
|
|
13499
|
+
},
|
|
13500
|
+
"handle": {
|
|
13501
|
+
"color": {
|
|
13502
|
+
"$value": "#bfbfc3",
|
|
13503
|
+
"$type": "color",
|
|
13504
|
+
"$description": "Used in charts for the handle color when zooming in on a specific area of data.",
|
|
13505
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13506
|
+
"isSource": true,
|
|
13507
|
+
"original": {
|
|
13508
|
+
"$value": "{icon.color.subtle}",
|
|
13509
|
+
"$type": "color",
|
|
13510
|
+
"$description": "Used in charts for the handle color when zooming in on a specific area of data."
|
|
13511
|
+
},
|
|
13512
|
+
"name": "CHART_ZOOM_HANDLE_COLOR",
|
|
13513
|
+
"attributes": {},
|
|
13514
|
+
"path": [
|
|
13515
|
+
"chart",
|
|
13516
|
+
"zoom",
|
|
13517
|
+
"handle",
|
|
13518
|
+
"color"
|
|
13519
|
+
]
|
|
13520
|
+
}
|
|
13521
|
+
}
|
|
13522
|
+
}
|
|
13523
|
+
},
|
|
13353
13524
|
"datepicker": {
|
|
13354
13525
|
"background": {
|
|
13355
13526
|
"color": {
|
|
@@ -13452,13 +13623,17 @@
|
|
|
13452
13623
|
"divider": {
|
|
13453
13624
|
"color": {
|
|
13454
13625
|
"$value": "#3a383f",
|
|
13626
|
+
"$type": "color",
|
|
13627
|
+
"$description": "Used for the divider of a dropdown.",
|
|
13455
13628
|
"filePath": "src/tokens/contextual/dropdown.tokens.json",
|
|
13456
13629
|
"isSource": true,
|
|
13457
13630
|
"original": {
|
|
13458
13631
|
"$value": {
|
|
13459
13632
|
"default": "{border.color.default}",
|
|
13460
13633
|
"dark": "{border.color.subtle}"
|
|
13461
|
-
}
|
|
13634
|
+
},
|
|
13635
|
+
"$type": "color",
|
|
13636
|
+
"$description": "Used for the divider of a dropdown."
|
|
13462
13637
|
},
|
|
13463
13638
|
"name": "DROPDOWN_DIVIDER_COLOR",
|
|
13464
13639
|
"attributes": {},
|
|
@@ -13350,6 +13350,177 @@
|
|
|
13350
13350
|
}
|
|
13351
13351
|
}
|
|
13352
13352
|
},
|
|
13353
|
+
"chart": {
|
|
13354
|
+
"axis": {
|
|
13355
|
+
"pointer": {
|
|
13356
|
+
"color": {
|
|
13357
|
+
"$value": "#626168",
|
|
13358
|
+
"$type": "color",
|
|
13359
|
+
"$description": "Used in charts for the color of the reference line and axis value under mouse pointer.",
|
|
13360
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13361
|
+
"isSource": true,
|
|
13362
|
+
"original": {
|
|
13363
|
+
"$value": "{icon.color.subtle}",
|
|
13364
|
+
"$type": "color",
|
|
13365
|
+
"$description": "Used in charts for the color of the reference line and axis value under mouse pointer."
|
|
13366
|
+
},
|
|
13367
|
+
"name": "CHART_AXIS_POINTER_COLOR",
|
|
13368
|
+
"attributes": {},
|
|
13369
|
+
"path": [
|
|
13370
|
+
"chart",
|
|
13371
|
+
"axis",
|
|
13372
|
+
"pointer",
|
|
13373
|
+
"color"
|
|
13374
|
+
]
|
|
13375
|
+
}
|
|
13376
|
+
},
|
|
13377
|
+
"line": {
|
|
13378
|
+
"color": {
|
|
13379
|
+
"$value": "#bfbfc3",
|
|
13380
|
+
"$type": "color",
|
|
13381
|
+
"$description": "Used in charts for axis line color.",
|
|
13382
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13383
|
+
"isSource": true,
|
|
13384
|
+
"original": {
|
|
13385
|
+
"$value": {
|
|
13386
|
+
"default": "{color.neutral.200}",
|
|
13387
|
+
"dark": "{color.neutral.700}"
|
|
13388
|
+
},
|
|
13389
|
+
"$type": "color",
|
|
13390
|
+
"$description": "Used in charts for axis line color."
|
|
13391
|
+
},
|
|
13392
|
+
"name": "CHART_AXIS_LINE_COLOR",
|
|
13393
|
+
"attributes": {},
|
|
13394
|
+
"path": [
|
|
13395
|
+
"chart",
|
|
13396
|
+
"axis",
|
|
13397
|
+
"line",
|
|
13398
|
+
"color"
|
|
13399
|
+
]
|
|
13400
|
+
}
|
|
13401
|
+
},
|
|
13402
|
+
"text": {
|
|
13403
|
+
"color": {
|
|
13404
|
+
"$value": "#626168",
|
|
13405
|
+
"$type": "color",
|
|
13406
|
+
"$description": "Used in charts for the text color of axis titles and labels.",
|
|
13407
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13408
|
+
"isSource": true,
|
|
13409
|
+
"original": {
|
|
13410
|
+
"$value": "{text.color.subtle}",
|
|
13411
|
+
"$type": "color",
|
|
13412
|
+
"$description": "Used in charts for the text color of axis titles and labels."
|
|
13413
|
+
},
|
|
13414
|
+
"name": "CHART_AXIS_TEXT_COLOR",
|
|
13415
|
+
"attributes": {},
|
|
13416
|
+
"path": [
|
|
13417
|
+
"chart",
|
|
13418
|
+
"axis",
|
|
13419
|
+
"text",
|
|
13420
|
+
"color"
|
|
13421
|
+
]
|
|
13422
|
+
}
|
|
13423
|
+
}
|
|
13424
|
+
},
|
|
13425
|
+
"threshold": {
|
|
13426
|
+
"area": {
|
|
13427
|
+
"color": {
|
|
13428
|
+
"$value": "rgba(221,43,14,0.1)",
|
|
13429
|
+
"$type": "color",
|
|
13430
|
+
"$description": "Used in charts to delineate a threshold area in a chart.",
|
|
13431
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13432
|
+
"isSource": true,
|
|
13433
|
+
"original": {
|
|
13434
|
+
"$value": "rgba(221,43,14,0.1)",
|
|
13435
|
+
"$type": "color",
|
|
13436
|
+
"$description": "Used in charts to delineate a threshold area in a chart."
|
|
13437
|
+
},
|
|
13438
|
+
"name": "CHART_THRESHOLD_AREA_COLOR",
|
|
13439
|
+
"attributes": {},
|
|
13440
|
+
"path": [
|
|
13441
|
+
"chart",
|
|
13442
|
+
"threshold",
|
|
13443
|
+
"area",
|
|
13444
|
+
"color"
|
|
13445
|
+
]
|
|
13446
|
+
}
|
|
13447
|
+
},
|
|
13448
|
+
"line": {
|
|
13449
|
+
"color": {
|
|
13450
|
+
"$value": "#dd2b0e",
|
|
13451
|
+
"$type": "color",
|
|
13452
|
+
"$description": "Used in charts to divide a threshold area in a chart from other data.",
|
|
13453
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13454
|
+
"isSource": true,
|
|
13455
|
+
"original": {
|
|
13456
|
+
"$value": {
|
|
13457
|
+
"default": "{color.red.500}",
|
|
13458
|
+
"dark": "{color.red.600}"
|
|
13459
|
+
},
|
|
13460
|
+
"$type": "color",
|
|
13461
|
+
"$description": "Used in charts to divide a threshold area in a chart from other data."
|
|
13462
|
+
},
|
|
13463
|
+
"name": "CHART_THRESHOLD_LINE_COLOR",
|
|
13464
|
+
"attributes": {},
|
|
13465
|
+
"path": [
|
|
13466
|
+
"chart",
|
|
13467
|
+
"threshold",
|
|
13468
|
+
"line",
|
|
13469
|
+
"color"
|
|
13470
|
+
]
|
|
13471
|
+
}
|
|
13472
|
+
}
|
|
13473
|
+
},
|
|
13474
|
+
"zoom": {
|
|
13475
|
+
"filler": {
|
|
13476
|
+
"color": {
|
|
13477
|
+
"$value": "rgba(05, 05, 06, 0.08)",
|
|
13478
|
+
"$type": "color",
|
|
13479
|
+
"$description": "Used in charts for the overlay color when zooming in on a specific area of data.",
|
|
13480
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13481
|
+
"isSource": true,
|
|
13482
|
+
"original": {
|
|
13483
|
+
"$value": {
|
|
13484
|
+
"default": "{color.alpha.dark.8}",
|
|
13485
|
+
"dark": "{color.alpha.light.16}"
|
|
13486
|
+
},
|
|
13487
|
+
"$type": "color",
|
|
13488
|
+
"$description": "Used in charts for the overlay color when zooming in on a specific area of data."
|
|
13489
|
+
},
|
|
13490
|
+
"name": "CHART_ZOOM_FILLER_COLOR",
|
|
13491
|
+
"attributes": {},
|
|
13492
|
+
"path": [
|
|
13493
|
+
"chart",
|
|
13494
|
+
"zoom",
|
|
13495
|
+
"filler",
|
|
13496
|
+
"color"
|
|
13497
|
+
]
|
|
13498
|
+
}
|
|
13499
|
+
},
|
|
13500
|
+
"handle": {
|
|
13501
|
+
"color": {
|
|
13502
|
+
"$value": "#626168",
|
|
13503
|
+
"$type": "color",
|
|
13504
|
+
"$description": "Used in charts for the handle color when zooming in on a specific area of data.",
|
|
13505
|
+
"filePath": "src/tokens/contextual/chart.tokens.json",
|
|
13506
|
+
"isSource": true,
|
|
13507
|
+
"original": {
|
|
13508
|
+
"$value": "{icon.color.subtle}",
|
|
13509
|
+
"$type": "color",
|
|
13510
|
+
"$description": "Used in charts for the handle color when zooming in on a specific area of data."
|
|
13511
|
+
},
|
|
13512
|
+
"name": "CHART_ZOOM_HANDLE_COLOR",
|
|
13513
|
+
"attributes": {},
|
|
13514
|
+
"path": [
|
|
13515
|
+
"chart",
|
|
13516
|
+
"zoom",
|
|
13517
|
+
"handle",
|
|
13518
|
+
"color"
|
|
13519
|
+
]
|
|
13520
|
+
}
|
|
13521
|
+
}
|
|
13522
|
+
}
|
|
13523
|
+
},
|
|
13353
13524
|
"datepicker": {
|
|
13354
13525
|
"background": {
|
|
13355
13526
|
"color": {
|
|
@@ -13452,13 +13623,17 @@
|
|
|
13452
13623
|
"divider": {
|
|
13453
13624
|
"color": {
|
|
13454
13625
|
"$value": "#dcdcde",
|
|
13626
|
+
"$type": "color",
|
|
13627
|
+
"$description": "Used for the divider of a dropdown.",
|
|
13455
13628
|
"filePath": "src/tokens/contextual/dropdown.tokens.json",
|
|
13456
13629
|
"isSource": true,
|
|
13457
13630
|
"original": {
|
|
13458
13631
|
"$value": {
|
|
13459
13632
|
"default": "{border.color.default}",
|
|
13460
13633
|
"dark": "{border.color.subtle}"
|
|
13461
|
-
}
|
|
13634
|
+
},
|
|
13635
|
+
"$type": "color",
|
|
13636
|
+
"$description": "Used for the divider of a dropdown."
|
|
13462
13637
|
},
|
|
13463
13638
|
"name": "DROPDOWN_DIVIDER_COLOR",
|
|
13464
13639
|
"attributes": {},
|
|
@@ -242,6 +242,7 @@ $gl-avatar-fallback-background-color-blue: #9dc7f13d; // Blue background for ava
|
|
|
242
242
|
$gl-avatar-fallback-background-color-green: #91d4a83d; // Green background for avatar fallback with no particular meaning.
|
|
243
243
|
$gl-avatar-fallback-background-color-orange: #e9be743d; // Orange background for avatar fallback with no particular meaning.
|
|
244
244
|
$gl-avatar-fallback-background-color-neutral: #bfbfc33d; // Neutral background for avatar fallback with no particular meaning.
|
|
245
|
+
$gl-chart-threshold-area-color: rgba(221,43,14,0.1); // Used in charts to delineate a threshold area in a chart.
|
|
245
246
|
$gl-illustration-stroke-color-default: #e3e3e8; // Default stroke color to define shape and provide essential detail.
|
|
246
247
|
$gl-illustration-stroke-width-default: 0.09375rem; // Default stroke width to define shape and provide essential detail.
|
|
247
248
|
$gl-illustration-fill-color-default: #423f4f; // Default fill color for an element where specific meaning or emphasis is not required.
|
|
@@ -748,6 +749,9 @@ $gl-button-selected-border-color-active: $gl-color-alpha-0; // Used for the bord
|
|
|
748
749
|
$gl-button-disabled-foreground-color: $gl-color-neutral-400; // Used for the foreground of a disabled button.
|
|
749
750
|
$gl-button-disabled-background-color: rgba(137, 136, 141, 0.16); // Used for the background of a disabled button.
|
|
750
751
|
$gl-button-disabled-border-color: $gl-color-alpha-0; // Used for the border of a disabled button.
|
|
752
|
+
$gl-chart-axis-line-color: $gl-color-neutral-700; // Used in charts for axis line color.
|
|
753
|
+
$gl-chart-threshold-line-color: $gl-color-red-600; // Used in charts to divide a threshold area in a chart from other data.
|
|
754
|
+
$gl-chart-zoom-filler-color: $gl-color-alpha-light-16; // Used in charts for the overlay color when zooming in on a specific area of data.
|
|
751
755
|
$gl-datepicker-background-color: $gl-color-neutral-900; // Used for the background color of datepicker.
|
|
752
756
|
$gl-dropdown-option-background-color-unselected-default: $gl-action-neutral-background-color-default; // Used for the background of an unselected dropdown option in the default state.
|
|
753
757
|
$gl-dropdown-option-background-color-unselected-hover: $gl-action-neutral-background-color-hover; // Used for the background of an unselected dropdown option in the hover state.
|
|
@@ -951,10 +955,11 @@ $gl-button-selected-foreground-color-default: $gl-color-neutral-900; // Used for
|
|
|
951
955
|
$gl-button-selected-background-color-hover: $gl-color-neutral-200; // Used for the background of a selected button in the hover state.
|
|
952
956
|
$gl-button-selected-background-color-active: $gl-color-neutral-400; // Used for the background of a selected button in the active state.
|
|
953
957
|
$gl-button-selected-border-color-focus: $gl-button-selected-border-color-hover; // Used for the border of a selected button in the focus state.
|
|
958
|
+
$gl-chart-axis-text-color: $gl-text-color-subtle; // Used in charts for the text color of axis titles and labels.
|
|
954
959
|
$gl-datepicker-date-text-color-selected: $gl-control-indicator-color-selected; // Used for the datepicker date text color state indicators.
|
|
955
960
|
$gl-dropdown-background-color: $gl-background-color-overlap; // Used for the background of a dropdown.
|
|
956
961
|
$gl-dropdown-border-color: $gl-border-color-default; // Used for the border of a dropdown.
|
|
957
|
-
$gl-dropdown-divider-color: $gl-border-color-subtle;
|
|
962
|
+
$gl-dropdown-divider-color: $gl-border-color-subtle; // Used for the divider of a dropdown.
|
|
958
963
|
$gl-dropdown-option-text-color-default: $gl-action-neutral-foreground-color-default; // Used for the text of a dropdown option in the default state.
|
|
959
964
|
$gl-dropdown-option-text-color-disabled: $gl-action-disabled-foreground-color; // Used for the text of a dropdown option in the disabled state.
|
|
960
965
|
$gl-dropdown-option-indicator-color-selected-default: $gl-control-background-color-selected-default; // Used for the dropdown selected option indicator in the default state.
|
|
@@ -1025,6 +1030,8 @@ $gl-button-selected-foreground-color-hover: $gl-color-neutral-950; // Used for t
|
|
|
1025
1030
|
$gl-button-selected-foreground-color-focus: $gl-color-neutral-950; // Used for the foreground of a selected button in the focus state.
|
|
1026
1031
|
$gl-button-selected-foreground-color-active: $gl-color-neutral-950; // Used for the foreground of a selected button in the active state.
|
|
1027
1032
|
$gl-button-selected-background-color-focus: $gl-color-neutral-200; // Used for the background of a selected button in the focus state.
|
|
1033
|
+
$gl-chart-axis-pointer-color: $gl-icon-color-subtle; // Used in charts for the color of the reference line and axis value under mouse pointer.
|
|
1034
|
+
$gl-chart-zoom-handle-color: $gl-icon-color-subtle; // Used in charts for the handle color when zooming in on a specific area of data.
|
|
1028
1035
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
1029
1036
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
1030
1037
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
@@ -242,6 +242,7 @@ $gl-avatar-fallback-background-color-blue: #9dc7f13d; // Blue background for ava
|
|
|
242
242
|
$gl-avatar-fallback-background-color-green: #91d4a83d; // Green background for avatar fallback with no particular meaning.
|
|
243
243
|
$gl-avatar-fallback-background-color-orange: #e9be743d; // Orange background for avatar fallback with no particular meaning.
|
|
244
244
|
$gl-avatar-fallback-background-color-neutral: #bfbfc33d; // Neutral background for avatar fallback with no particular meaning.
|
|
245
|
+
$gl-chart-threshold-area-color: rgba(221,43,14,0.1); // Used in charts to delineate a threshold area in a chart.
|
|
245
246
|
$gl-illustration-stroke-color-default: #171321; // Default stroke color to define shape and provide essential detail.
|
|
246
247
|
$gl-illustration-stroke-width-default: 0.125rem; // Default stroke width to define shape and provide essential detail.
|
|
247
248
|
$gl-illustration-fill-color-default: #fff; // Default fill color for an element where specific meaning or emphasis is not required.
|
|
@@ -748,6 +749,9 @@ $gl-button-selected-border-color-active: $gl-color-neutral-600; // Used for the
|
|
|
748
749
|
$gl-button-disabled-foreground-color: $gl-color-neutral-500; // Used for the foreground of a disabled button.
|
|
749
750
|
$gl-button-disabled-background-color: $gl-color-neutral-10; // Used for the background of a disabled button.
|
|
750
751
|
$gl-button-disabled-border-color: $gl-color-neutral-100; // Used for the border of a disabled button.
|
|
752
|
+
$gl-chart-axis-line-color: $gl-color-neutral-200; // Used in charts for axis line color.
|
|
753
|
+
$gl-chart-threshold-line-color: $gl-color-red-500; // Used in charts to divide a threshold area in a chart from other data.
|
|
754
|
+
$gl-chart-zoom-filler-color: $gl-color-alpha-dark-8; // Used in charts for the overlay color when zooming in on a specific area of data.
|
|
751
755
|
$gl-datepicker-background-color: $gl-color-neutral-0; // Used for the background color of datepicker.
|
|
752
756
|
$gl-dropdown-option-background-color-unselected-default: $gl-action-neutral-background-color-default; // Used for the background of an unselected dropdown option in the default state.
|
|
753
757
|
$gl-dropdown-option-background-color-unselected-hover: $gl-action-neutral-background-color-hover; // Used for the background of an unselected dropdown option in the hover state.
|
|
@@ -951,10 +955,11 @@ $gl-button-selected-foreground-color-default: $gl-button-default-primary-foregro
|
|
|
951
955
|
$gl-button-selected-background-color-hover: $gl-button-default-primary-background-color-hover; // Used for the background of a selected button in the hover state.
|
|
952
956
|
$gl-button-selected-background-color-active: $gl-button-default-primary-background-color-active; // Used for the background of a selected button in the active state.
|
|
953
957
|
$gl-button-selected-border-color-focus: $gl-button-selected-border-color-hover; // Used for the border of a selected button in the focus state.
|
|
958
|
+
$gl-chart-axis-text-color: $gl-text-color-subtle; // Used in charts for the text color of axis titles and labels.
|
|
954
959
|
$gl-datepicker-date-text-color-selected: $gl-control-indicator-color-selected; // Used for the datepicker date text color state indicators.
|
|
955
960
|
$gl-dropdown-background-color: $gl-background-color-overlap; // Used for the background of a dropdown.
|
|
956
961
|
$gl-dropdown-border-color: $gl-border-color-strong; // Used for the border of a dropdown.
|
|
957
|
-
$gl-dropdown-divider-color: $gl-border-color-default;
|
|
962
|
+
$gl-dropdown-divider-color: $gl-border-color-default; // Used for the divider of a dropdown.
|
|
958
963
|
$gl-dropdown-option-text-color-default: $gl-action-neutral-foreground-color-default; // Used for the text of a dropdown option in the default state.
|
|
959
964
|
$gl-dropdown-option-text-color-disabled: $gl-action-disabled-foreground-color; // Used for the text of a dropdown option in the disabled state.
|
|
960
965
|
$gl-dropdown-option-indicator-color-selected-default: $gl-control-background-color-selected-default; // Used for the dropdown selected option indicator in the default state.
|
|
@@ -1025,6 +1030,8 @@ $gl-button-selected-foreground-color-hover: $gl-button-default-primary-foregroun
|
|
|
1025
1030
|
$gl-button-selected-foreground-color-focus: $gl-button-default-primary-foreground-color-focus; // Used for the foreground of a selected button in the focus state.
|
|
1026
1031
|
$gl-button-selected-foreground-color-active: $gl-button-default-primary-foreground-color-active; // Used for the foreground of a selected button in the active state.
|
|
1027
1032
|
$gl-button-selected-background-color-focus: $gl-button-default-primary-background-color-focus; // Used for the background of a selected button in the focus state.
|
|
1033
|
+
$gl-chart-axis-pointer-color: $gl-icon-color-subtle; // Used in charts for the color of the reference line and axis value under mouse pointer.
|
|
1034
|
+
$gl-chart-zoom-handle-color: $gl-icon-color-subtle; // Used in charts for the handle color when zooming in on a specific area of data.
|
|
1028
1035
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
1029
1036
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
1030
1037
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
@@ -624,6 +624,13 @@ $gl-button-selected-border-color-active: var(--gl-button-selected-border-color-a
|
|
|
624
624
|
$gl-button-disabled-foreground-color: var(--gl-button-disabled-foreground-color);
|
|
625
625
|
$gl-button-disabled-background-color: var(--gl-button-disabled-background-color);
|
|
626
626
|
$gl-button-disabled-border-color: var(--gl-button-disabled-border-color);
|
|
627
|
+
$gl-chart-axis-pointer-color: var(--gl-chart-axis-pointer-color);
|
|
628
|
+
$gl-chart-axis-line-color: var(--gl-chart-axis-line-color);
|
|
629
|
+
$gl-chart-axis-text-color: var(--gl-chart-axis-text-color);
|
|
630
|
+
$gl-chart-threshold-area-color: var(--gl-chart-threshold-area-color);
|
|
631
|
+
$gl-chart-threshold-line-color: var(--gl-chart-threshold-line-color);
|
|
632
|
+
$gl-chart-zoom-filler-color: var(--gl-chart-zoom-filler-color);
|
|
633
|
+
$gl-chart-zoom-handle-color: var(--gl-chart-zoom-handle-color);
|
|
627
634
|
$gl-datepicker-background-color: var(--gl-datepicker-background-color);
|
|
628
635
|
$gl-datepicker-date-text-color-selected: var(--gl-datepicker-date-text-color-selected);
|
|
629
636
|
$gl-dropdown-background-color: var(--gl-dropdown-background-color);
|