@gitlab/ui 84.1.0 → 84.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 +8 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +78 -1
- package/dist/tokens/build/js/tokens.js +78 -1
- package/dist/tokens/css/tokens.css +77 -0
- package/dist/tokens/css/tokens.dark.css +77 -0
- package/dist/tokens/js/tokens.dark.js +77 -0
- package/dist/tokens/js/tokens.js +77 -0
- package/dist/tokens/json/tokens.dark.json +1976 -0
- package/dist/tokens/json/tokens.json +1976 -0
- package/dist/tokens/scss/_tokens.dark.scss +77 -0
- package/dist/tokens/scss/_tokens.scss +77 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +77 -0
- package/package.json +1 -1
- package/src/components/base/badge/badge.scss +63 -63
- package/src/tokens/build/css/tokens.css +77 -0
- package/src/tokens/build/css/tokens.dark.css +77 -0
- package/src/tokens/build/js/tokens.dark.js +77 -0
- package/src/tokens/build/js/tokens.js +77 -0
- package/src/tokens/build/json/tokens.dark.json +1976 -0
- package/src/tokens/build/json/tokens.json +1976 -0
- package/src/tokens/build/scss/_tokens.dark.scss +77 -0
- package/src/tokens/build/scss/_tokens.scss +77 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +77 -0
- package/src/tokens/status.tokens.json +746 -0
|
@@ -398,6 +398,83 @@ $gl-text-color-heading: $gl-color-neutral-0; // Used for headings level 1-6.
|
|
|
398
398
|
$gl-text-color-strong: $gl-color-neutral-0; // Used for text with the highest contrast.
|
|
399
399
|
$gl-text-color-subtle: $gl-color-neutral-200; // Used for supplemental text that doesn't need to be as prominent as other text.
|
|
400
400
|
$gl-text-color-default: $gl-color-neutral-50; // Used for the default text color.
|
|
401
|
+
$gl-status-brand-icon-color-active: $gl-color-purple-300; // Used for the icon of a brand related status item in the active state.
|
|
402
|
+
$gl-status-brand-icon-color-focus: $gl-color-purple-400; // Used for the icon of a brand related status item in the focus state.
|
|
403
|
+
$gl-status-brand-icon-color-hover: $gl-color-purple-400; // Used for the icon of a brand related status item in the hover state.
|
|
404
|
+
$gl-status-brand-icon-color-default: $gl-color-purple-500; // Used for the icon of a brand related status item when static or the default state when linked.
|
|
405
|
+
$gl-status-brand-text-color-active: $gl-color-purple-100; // Used for the text of a brand related status item in the active state.
|
|
406
|
+
$gl-status-brand-text-color-focus: $gl-color-purple-200; // Used for the text of a brand related status item in the focus state.
|
|
407
|
+
$gl-status-brand-text-color-hover: $gl-color-purple-200; // Used for the text of a brand related status item in the hover state.
|
|
408
|
+
$gl-status-brand-text-color-default: $gl-color-purple-300; // Used for the text of a brand related status item when static or the default state when linked.
|
|
409
|
+
$gl-status-brand-border-color-hover: $gl-color-purple-800; // Used for the border of a brand related status item in the hover state.
|
|
410
|
+
$gl-status-brand-background-color-active: $gl-color-purple-800; // Used for the background of a brand related status item in the active state.
|
|
411
|
+
$gl-status-brand-background-color-default: $gl-color-purple-900; // Used for the background of a brand related status item when static or the default state when linked.
|
|
412
|
+
$gl-status-danger-icon-color-active: $gl-color-red-200; // Used for the icon of a danger (critical) status item in the active state.
|
|
413
|
+
$gl-status-danger-icon-color-focus: $gl-color-red-300; // Used for the icon of a danger (critical) status item in the focus state.
|
|
414
|
+
$gl-status-danger-icon-color-hover: $gl-color-red-300; // Used for the icon of a danger (critical) status item in the hover state.
|
|
415
|
+
$gl-status-danger-icon-color-default: $gl-color-red-400; // Used for the icon of a danger (critical) status item when static or the default state when linked.
|
|
416
|
+
$gl-status-danger-text-color-active: $gl-color-red-50; // Used for the text of a danger (critical) status item in the active state.
|
|
417
|
+
$gl-status-danger-text-color-focus: $gl-color-red-100; // Used for the text of a danger (critical) status item in the focus state.
|
|
418
|
+
$gl-status-danger-text-color-hover: $gl-color-red-100; // Used for the text of a danger (critical) status item in the hover state.
|
|
419
|
+
$gl-status-danger-text-color-default: $gl-color-red-200; // Used for the text of a danger (critical) status item when static or the default state when linked.
|
|
420
|
+
$gl-status-danger-border-color-hover: $gl-color-red-700; // Used for the border of a danger (critical) status item in the hover state.
|
|
421
|
+
$gl-status-danger-background-color-active: $gl-color-red-700; // Used for the background of a danger (critical) status item in the active state.
|
|
422
|
+
$gl-status-danger-background-color-default: $gl-color-red-800; // Used for the background of a danger (critical) status item when static or the default state when linked.
|
|
423
|
+
$gl-status-warning-icon-color-active: $gl-color-orange-200; // Used for the icon of a warning status or confidential item in the active state.
|
|
424
|
+
$gl-status-warning-icon-color-focus: $gl-color-orange-300; // Used for the icon of a warning status or confidential item in the focus state.
|
|
425
|
+
$gl-status-warning-icon-color-hover: $gl-color-orange-300; // Used for the icon of a warning status or confidential item in the hover state.
|
|
426
|
+
$gl-status-warning-icon-color-default: $gl-color-orange-400; // Used for the icon of a warning status or confidential item when static or the default state when linked.
|
|
427
|
+
$gl-status-warning-text-color-active: $gl-color-orange-50; // Used for the text of a warning status or confidential item in the active state.N
|
|
428
|
+
$gl-status-warning-text-color-focus: $gl-color-orange-100; // Used for the text of a warning status or confidential item in the focus state.
|
|
429
|
+
$gl-status-warning-text-color-hover: $gl-color-orange-100; // Used for the text of a warning status or confidential item in the hover state.
|
|
430
|
+
$gl-status-warning-text-color-default: $gl-color-orange-200; // Used for the text of a warning status or confidential item when static or the default state when linked.
|
|
431
|
+
$gl-status-warning-border-color-hover: $gl-color-orange-700; // Used for the border of a warning status or confidential item in the hover state.
|
|
432
|
+
$gl-status-warning-background-color-active: $gl-color-orange-700; // Used for the background of a warning status or confidential item in the active state.
|
|
433
|
+
$gl-status-warning-background-color-default: $gl-color-orange-800; // Used for the background of a warning status or confidential item when static or the default state when linked.
|
|
434
|
+
$gl-status-success-icon-color-active: $gl-color-green-200; // Used for the icon of a success status item in the active state.
|
|
435
|
+
$gl-status-success-icon-color-focus: $gl-color-green-300; // Used for the icon of a success status item in the focus state.
|
|
436
|
+
$gl-status-success-icon-color-hover: $gl-color-green-300; // Used for the icon of a success status item in the hover state.
|
|
437
|
+
$gl-status-success-icon-color-default: $gl-color-green-400; // Used for the icon of a success status item when static or the default state when linked.
|
|
438
|
+
$gl-status-success-text-color-active: $gl-color-green-50; // Used for the text of a success status item in the active state.
|
|
439
|
+
$gl-status-success-text-color-focus: $gl-color-green-100; // Used for the text of a success status item in the focus state.
|
|
440
|
+
$gl-status-success-text-color-hover: $gl-color-green-100; // Used for the text of a success status item in the hover state.
|
|
441
|
+
$gl-status-success-text-color-default: $gl-color-green-200; // Used for the text of a success status item when static or the default state when linked.
|
|
442
|
+
$gl-status-success-border-color-hover: $gl-color-green-700; // Used for the border of a success status item in the hover state.
|
|
443
|
+
$gl-status-success-background-color-active: $gl-color-green-700; // Used for the background of a success status item in the active state.
|
|
444
|
+
$gl-status-success-background-color-default: $gl-color-green-800; // Used for the background of a success status item when static or the default state when linked.
|
|
445
|
+
$gl-status-info-icon-color-active: $gl-color-blue-200; // Used for the icon of an informational status item in the active state.
|
|
446
|
+
$gl-status-info-icon-color-focus: $gl-color-blue-300; // Used for the icon of an informational status item in the focus state.
|
|
447
|
+
$gl-status-info-icon-color-hover: $gl-color-blue-300; // Used for the icon of an informational status item in the hover state.
|
|
448
|
+
$gl-status-info-icon-color-default: $gl-color-blue-400; // Used for the icon of an informational status item when static or the default state when linked.
|
|
449
|
+
$gl-status-info-text-color-active: $gl-color-blue-50; // Used for the text of an informational status item in the active state.
|
|
450
|
+
$gl-status-info-text-color-focus: $gl-color-blue-100; // Used for the text of an informational status item in the focus state.
|
|
451
|
+
$gl-status-info-text-color-hover: $gl-color-blue-100; // Used for the text of an informational status item in the hover state.
|
|
452
|
+
$gl-status-info-text-color-default: $gl-color-blue-200; // Used for the text of an informational status item when static or the default state when linked.
|
|
453
|
+
$gl-status-info-border-color-hover: $gl-color-blue-700; // Used for the border of an informational status item in the hover state.
|
|
454
|
+
$gl-status-info-background-color-active: $gl-color-blue-700; // Used for the background of an informational status item in the active state.
|
|
455
|
+
$gl-status-info-background-color-default: $gl-color-blue-800; // Used for the background of an informational status item when static or the default state when linked.
|
|
456
|
+
$gl-status-neutral-icon-color-active: $gl-color-neutral-200; // Used for the icon of a neutral status item in the active state.
|
|
457
|
+
$gl-status-neutral-icon-color-focus: $gl-color-neutral-300; // Used for the icon of a neutral status item in the focus state.
|
|
458
|
+
$gl-status-neutral-icon-color-hover: $gl-color-neutral-300; // Used for the icon of a neutral status item in the hover state.
|
|
459
|
+
$gl-status-neutral-icon-color-default: $gl-color-neutral-400; // Used for the icon of a neutral status item when static or the default state when linked.
|
|
460
|
+
$gl-status-neutral-text-color-active: $gl-color-neutral-50; // Used for the text of a neutral status item in the active state.
|
|
461
|
+
$gl-status-neutral-text-color-focus: $gl-color-neutral-100; // Used for the text of a neutral status item in the focus state.
|
|
462
|
+
$gl-status-neutral-text-color-hover: $gl-color-neutral-100; // Used for the text of a neutral status item in the hover state.
|
|
463
|
+
$gl-status-neutral-text-color-default: $gl-color-neutral-200; // Used for the text of a neutral status item when static or the default state when linked.
|
|
464
|
+
$gl-status-neutral-border-color-hover: $gl-color-neutral-700; // Used for the border of a neutral status item in the hover state.
|
|
465
|
+
$gl-status-neutral-background-color-active: $gl-color-neutral-700; // Used for the background of a neutral status item in the active state.
|
|
466
|
+
$gl-status-neutral-background-color-default: $gl-color-neutral-800; // Used for the background of a neutral status item when static or the default state when linked.
|
|
467
|
+
$gl-status-muted-icon-color-active: $gl-color-neutral-200; // Used for the icon of a subtle neutral status item in the active state.
|
|
468
|
+
$gl-status-muted-icon-color-focus: $gl-color-neutral-300; // Used for the icon of a subtle neutral status item in the focus state.
|
|
469
|
+
$gl-status-muted-icon-color-hover: $gl-color-neutral-300; // Used for the icon of a subtle neutral status item in the hover state.
|
|
470
|
+
$gl-status-muted-icon-color-default: $gl-color-neutral-400; // Used for the icon of a subtle neutral status item when static or the default state when linked.
|
|
471
|
+
$gl-status-muted-text-color-active: $gl-color-neutral-100; // Used for the text of a subtle neutral status item in the active state.
|
|
472
|
+
$gl-status-muted-text-color-focus: $gl-color-neutral-200; // Used for the text of a subtle neutral status item in the focus state.
|
|
473
|
+
$gl-status-muted-text-color-hover: $gl-color-neutral-200; // Used for the text of a subtle neutral status item in the hover state.
|
|
474
|
+
$gl-status-muted-text-color-default: $gl-color-neutral-300; // Used for the text of a subtle neutral status item when static or the default state when linked.
|
|
475
|
+
$gl-status-muted-border-color-hover: $gl-color-neutral-700; // Used for the border of a subtle neutral status item in the hover state.
|
|
476
|
+
$gl-status-muted-background-color-active: $gl-color-neutral-800; // Used for the background of a subtle neutral status item in the active state.
|
|
477
|
+
$gl-status-muted-background-color-default: $gl-color-neutral-900; // Used for the background of a subtle neutral status item when static or the default state when linked.
|
|
401
478
|
$gl-icon-color-success: $gl-color-green-300; // Used for an icon associated with success or validity.
|
|
402
479
|
$gl-icon-color-danger: $gl-color-red-300; // Used for an icon associated with an error or danger.
|
|
403
480
|
$gl-icon-color-warning: $gl-color-orange-300; // Used for an icon associated with a warning.
|
|
@@ -398,6 +398,83 @@ $gl-text-color-heading: $gl-color-neutral-950; // Used for headings level 1-6.
|
|
|
398
398
|
$gl-text-color-strong: $gl-color-neutral-950; // Used for text with the highest contrast.
|
|
399
399
|
$gl-text-color-subtle: $gl-color-neutral-600; // Used for supplemental text that doesn't need to be as prominent as other text.
|
|
400
400
|
$gl-text-color-default: $gl-color-neutral-800; // Used for the default text color.
|
|
401
|
+
$gl-status-brand-icon-color-active: $gl-color-purple-700; // Used for the icon of a brand related status item in the active state.
|
|
402
|
+
$gl-status-brand-icon-color-focus: $gl-color-purple-600; // Used for the icon of a brand related status item in the focus state.
|
|
403
|
+
$gl-status-brand-icon-color-hover: $gl-color-purple-600; // Used for the icon of a brand related status item in the hover state.
|
|
404
|
+
$gl-status-brand-icon-color-default: $gl-color-purple-500; // Used for the icon of a brand related status item when static or the default state when linked.
|
|
405
|
+
$gl-status-brand-text-color-active: $gl-color-purple-900; // Used for the text of a brand related status item in the active state.
|
|
406
|
+
$gl-status-brand-text-color-focus: $gl-color-purple-800; // Used for the text of a brand related status item in the focus state.
|
|
407
|
+
$gl-status-brand-text-color-hover: $gl-color-purple-800; // Used for the text of a brand related status item in the hover state.
|
|
408
|
+
$gl-status-brand-text-color-default: $gl-color-purple-700; // Used for the text of a brand related status item when static or the default state when linked.
|
|
409
|
+
$gl-status-brand-border-color-hover: $gl-color-purple-200; // Used for the border of a brand related status item in the hover state.
|
|
410
|
+
$gl-status-brand-background-color-active: $gl-color-purple-200; // Used for the background of a brand related status item in the active state.
|
|
411
|
+
$gl-status-brand-background-color-default: $gl-color-purple-100; // Used for the background of a brand related status item when static or the default state when linked.
|
|
412
|
+
$gl-status-danger-icon-color-active: $gl-color-red-700; // Used for the icon of a danger (critical) status item in the active state.
|
|
413
|
+
$gl-status-danger-icon-color-focus: $gl-color-red-600; // Used for the icon of a danger (critical) status item in the focus state.
|
|
414
|
+
$gl-status-danger-icon-color-hover: $gl-color-red-600; // Used for the icon of a danger (critical) status item in the hover state.
|
|
415
|
+
$gl-status-danger-icon-color-default: $gl-color-red-500; // Used for the icon of a danger (critical) status item when static or the default state when linked.
|
|
416
|
+
$gl-status-danger-text-color-active: $gl-color-red-900; // Used for the text of a danger (critical) status item in the active state.
|
|
417
|
+
$gl-status-danger-text-color-focus: $gl-color-red-800; // Used for the text of a danger (critical) status item in the focus state.
|
|
418
|
+
$gl-status-danger-text-color-hover: $gl-color-red-800; // Used for the text of a danger (critical) status item in the hover state.
|
|
419
|
+
$gl-status-danger-text-color-default: $gl-color-red-700; // Used for the text of a danger (critical) status item when static or the default state when linked.
|
|
420
|
+
$gl-status-danger-border-color-hover: $gl-color-red-200; // Used for the border of a danger (critical) status item in the hover state.
|
|
421
|
+
$gl-status-danger-background-color-active: $gl-color-red-200; // Used for the background of a danger (critical) status item in the active state.
|
|
422
|
+
$gl-status-danger-background-color-default: $gl-color-red-100; // Used for the background of a danger (critical) status item when static or the default state when linked.
|
|
423
|
+
$gl-status-warning-icon-color-active: $gl-color-orange-700; // Used for the icon of a warning status or confidential item in the active state.
|
|
424
|
+
$gl-status-warning-icon-color-focus: $gl-color-orange-600; // Used for the icon of a warning status or confidential item in the focus state.
|
|
425
|
+
$gl-status-warning-icon-color-hover: $gl-color-orange-600; // Used for the icon of a warning status or confidential item in the hover state.
|
|
426
|
+
$gl-status-warning-icon-color-default: $gl-color-orange-500; // Used for the icon of a warning status or confidential item when static or the default state when linked.
|
|
427
|
+
$gl-status-warning-text-color-active: $gl-color-orange-900; // Used for the text of a warning status or confidential item in the active state.N
|
|
428
|
+
$gl-status-warning-text-color-focus: $gl-color-orange-800; // Used for the text of a warning status or confidential item in the focus state.
|
|
429
|
+
$gl-status-warning-text-color-hover: $gl-color-orange-800; // Used for the text of a warning status or confidential item in the hover state.
|
|
430
|
+
$gl-status-warning-text-color-default: $gl-color-orange-700; // Used for the text of a warning status or confidential item when static or the default state when linked.
|
|
431
|
+
$gl-status-warning-border-color-hover: $gl-color-orange-200; // Used for the border of a warning status or confidential item in the hover state.
|
|
432
|
+
$gl-status-warning-background-color-active: $gl-color-orange-200; // Used for the background of a warning status or confidential item in the active state.
|
|
433
|
+
$gl-status-warning-background-color-default: $gl-color-orange-100; // Used for the background of a warning status or confidential item when static or the default state when linked.
|
|
434
|
+
$gl-status-success-icon-color-active: $gl-color-green-700; // Used for the icon of a success status item in the active state.
|
|
435
|
+
$gl-status-success-icon-color-focus: $gl-color-green-600; // Used for the icon of a success status item in the focus state.
|
|
436
|
+
$gl-status-success-icon-color-hover: $gl-color-green-600; // Used for the icon of a success status item in the hover state.
|
|
437
|
+
$gl-status-success-icon-color-default: $gl-color-green-500; // Used for the icon of a success status item when static or the default state when linked.
|
|
438
|
+
$gl-status-success-text-color-active: $gl-color-green-900; // Used for the text of a success status item in the active state.
|
|
439
|
+
$gl-status-success-text-color-focus: $gl-color-green-800; // Used for the text of a success status item in the focus state.
|
|
440
|
+
$gl-status-success-text-color-hover: $gl-color-green-800; // Used for the text of a success status item in the hover state.
|
|
441
|
+
$gl-status-success-text-color-default: $gl-color-green-700; // Used for the text of a success status item when static or the default state when linked.
|
|
442
|
+
$gl-status-success-border-color-hover: $gl-color-green-200; // Used for the border of a success status item in the hover state.
|
|
443
|
+
$gl-status-success-background-color-active: $gl-color-green-200; // Used for the background of a success status item in the active state.
|
|
444
|
+
$gl-status-success-background-color-default: $gl-color-green-100; // Used for the background of a success status item when static or the default state when linked.
|
|
445
|
+
$gl-status-info-icon-color-active: $gl-color-blue-700; // Used for the icon of an informational status item in the active state.
|
|
446
|
+
$gl-status-info-icon-color-focus: $gl-color-blue-600; // Used for the icon of an informational status item in the focus state.
|
|
447
|
+
$gl-status-info-icon-color-hover: $gl-color-blue-600; // Used for the icon of an informational status item in the hover state.
|
|
448
|
+
$gl-status-info-icon-color-default: $gl-color-blue-500; // Used for the icon of an informational status item when static or the default state when linked.
|
|
449
|
+
$gl-status-info-text-color-active: $gl-color-blue-900; // Used for the text of an informational status item in the active state.
|
|
450
|
+
$gl-status-info-text-color-focus: $gl-color-blue-800; // Used for the text of an informational status item in the focus state.
|
|
451
|
+
$gl-status-info-text-color-hover: $gl-color-blue-800; // Used for the text of an informational status item in the hover state.
|
|
452
|
+
$gl-status-info-text-color-default: $gl-color-blue-700; // Used for the text of an informational status item when static or the default state when linked.
|
|
453
|
+
$gl-status-info-border-color-hover: $gl-color-blue-200; // Used for the border of an informational status item in the hover state.
|
|
454
|
+
$gl-status-info-background-color-active: $gl-color-blue-200; // Used for the background of an informational status item in the active state.
|
|
455
|
+
$gl-status-info-background-color-default: $gl-color-blue-100; // Used for the background of an informational status item when static or the default state when linked.
|
|
456
|
+
$gl-status-neutral-icon-color-active: $gl-color-neutral-700; // Used for the icon of a neutral status item in the active state.
|
|
457
|
+
$gl-status-neutral-icon-color-focus: $gl-color-neutral-600; // Used for the icon of a neutral status item in the focus state.
|
|
458
|
+
$gl-status-neutral-icon-color-hover: $gl-color-neutral-600; // Used for the icon of a neutral status item in the hover state.
|
|
459
|
+
$gl-status-neutral-icon-color-default: $gl-color-neutral-500; // Used for the icon of a neutral status item when static or the default state when linked.
|
|
460
|
+
$gl-status-neutral-text-color-active: $gl-color-neutral-900; // Used for the text of a neutral status item in the active state.
|
|
461
|
+
$gl-status-neutral-text-color-focus: $gl-color-neutral-800; // Used for the text of a neutral status item in the focus state.
|
|
462
|
+
$gl-status-neutral-text-color-hover: $gl-color-neutral-800; // Used for the text of a neutral status item in the hover state.
|
|
463
|
+
$gl-status-neutral-text-color-default: $gl-color-neutral-700; // Used for the text of a neutral status item when static or the default state when linked.
|
|
464
|
+
$gl-status-neutral-border-color-hover: $gl-color-neutral-200; // Used for the border of a neutral status item in the hover state.
|
|
465
|
+
$gl-status-neutral-background-color-active: $gl-color-neutral-200; // Used for the background of a neutral status item in the active state.
|
|
466
|
+
$gl-status-neutral-background-color-default: $gl-color-neutral-100; // Used for the background of a neutral status item when static or the default state when linked.
|
|
467
|
+
$gl-status-muted-icon-color-active: $gl-color-neutral-700; // Used for the icon of a subtle neutral status item in the active state.
|
|
468
|
+
$gl-status-muted-icon-color-focus: $gl-color-neutral-600; // Used for the icon of a subtle neutral status item in the focus state.
|
|
469
|
+
$gl-status-muted-icon-color-hover: $gl-color-neutral-600; // Used for the icon of a subtle neutral status item in the hover state.
|
|
470
|
+
$gl-status-muted-icon-color-default: $gl-color-neutral-500; // Used for the icon of a subtle neutral status item when static or the default state when linked.
|
|
471
|
+
$gl-status-muted-text-color-active: $gl-color-neutral-800; // Used for the text of a subtle neutral status item in the active state.
|
|
472
|
+
$gl-status-muted-text-color-focus: $gl-color-neutral-700; // Used for the text of a subtle neutral status item in the focus state.
|
|
473
|
+
$gl-status-muted-text-color-hover: $gl-color-neutral-700; // Used for the text of a subtle neutral status item in the hover state.
|
|
474
|
+
$gl-status-muted-text-color-default: $gl-color-neutral-600; // Used for the text of a subtle neutral status item when static or the default state when linked.
|
|
475
|
+
$gl-status-muted-border-color-hover: $gl-color-neutral-200; // Used for the border of a subtle neutral status item in the hover state.
|
|
476
|
+
$gl-status-muted-background-color-active: $gl-color-neutral-100; // Used for the background of a subtle neutral status item in the active state.
|
|
477
|
+
$gl-status-muted-background-color-default: $gl-color-neutral-50; // Used for the background of a subtle neutral status item when static or the default state when linked.
|
|
401
478
|
$gl-icon-color-success: $gl-color-green-600; // Used for an icon associated with success or validity.
|
|
402
479
|
$gl-icon-color-danger: $gl-color-red-600; // Used for an icon associated with an error or danger.
|
|
403
480
|
$gl-icon-color-warning: $gl-color-orange-600; // Used for an icon associated with a warning.
|
|
@@ -406,6 +406,83 @@ $gl-line-height-36: var(--gl-line-height-36);
|
|
|
406
406
|
$gl-line-height-42: var(--gl-line-height-42);
|
|
407
407
|
$gl-line-height-44: var(--gl-line-height-44);
|
|
408
408
|
$gl-line-height-52: var(--gl-line-height-52);
|
|
409
|
+
$gl-status-muted-background-color-default: var(--gl-status-muted-background-color-default);
|
|
410
|
+
$gl-status-muted-background-color-active: var(--gl-status-muted-background-color-active);
|
|
411
|
+
$gl-status-muted-border-color-hover: var(--gl-status-muted-border-color-hover);
|
|
412
|
+
$gl-status-muted-text-color-default: var(--gl-status-muted-text-color-default);
|
|
413
|
+
$gl-status-muted-text-color-hover: var(--gl-status-muted-text-color-hover);
|
|
414
|
+
$gl-status-muted-text-color-focus: var(--gl-status-muted-text-color-focus);
|
|
415
|
+
$gl-status-muted-text-color-active: var(--gl-status-muted-text-color-active);
|
|
416
|
+
$gl-status-muted-icon-color-default: var(--gl-status-muted-icon-color-default);
|
|
417
|
+
$gl-status-muted-icon-color-hover: var(--gl-status-muted-icon-color-hover);
|
|
418
|
+
$gl-status-muted-icon-color-focus: var(--gl-status-muted-icon-color-focus);
|
|
419
|
+
$gl-status-muted-icon-color-active: var(--gl-status-muted-icon-color-active);
|
|
420
|
+
$gl-status-neutral-background-color-default: var(--gl-status-neutral-background-color-default);
|
|
421
|
+
$gl-status-neutral-background-color-active: var(--gl-status-neutral-background-color-active);
|
|
422
|
+
$gl-status-neutral-border-color-hover: var(--gl-status-neutral-border-color-hover);
|
|
423
|
+
$gl-status-neutral-text-color-default: var(--gl-status-neutral-text-color-default);
|
|
424
|
+
$gl-status-neutral-text-color-hover: var(--gl-status-neutral-text-color-hover);
|
|
425
|
+
$gl-status-neutral-text-color-focus: var(--gl-status-neutral-text-color-focus);
|
|
426
|
+
$gl-status-neutral-text-color-active: var(--gl-status-neutral-text-color-active);
|
|
427
|
+
$gl-status-neutral-icon-color-default: var(--gl-status-neutral-icon-color-default);
|
|
428
|
+
$gl-status-neutral-icon-color-hover: var(--gl-status-neutral-icon-color-hover);
|
|
429
|
+
$gl-status-neutral-icon-color-focus: var(--gl-status-neutral-icon-color-focus);
|
|
430
|
+
$gl-status-neutral-icon-color-active: var(--gl-status-neutral-icon-color-active);
|
|
431
|
+
$gl-status-info-background-color-default: var(--gl-status-info-background-color-default);
|
|
432
|
+
$gl-status-info-background-color-active: var(--gl-status-info-background-color-active);
|
|
433
|
+
$gl-status-info-border-color-hover: var(--gl-status-info-border-color-hover);
|
|
434
|
+
$gl-status-info-text-color-default: var(--gl-status-info-text-color-default);
|
|
435
|
+
$gl-status-info-text-color-hover: var(--gl-status-info-text-color-hover);
|
|
436
|
+
$gl-status-info-text-color-focus: var(--gl-status-info-text-color-focus);
|
|
437
|
+
$gl-status-info-text-color-active: var(--gl-status-info-text-color-active);
|
|
438
|
+
$gl-status-info-icon-color-default: var(--gl-status-info-icon-color-default);
|
|
439
|
+
$gl-status-info-icon-color-hover: var(--gl-status-info-icon-color-hover);
|
|
440
|
+
$gl-status-info-icon-color-focus: var(--gl-status-info-icon-color-focus);
|
|
441
|
+
$gl-status-info-icon-color-active: var(--gl-status-info-icon-color-active);
|
|
442
|
+
$gl-status-success-background-color-default: var(--gl-status-success-background-color-default);
|
|
443
|
+
$gl-status-success-background-color-active: var(--gl-status-success-background-color-active);
|
|
444
|
+
$gl-status-success-border-color-hover: var(--gl-status-success-border-color-hover);
|
|
445
|
+
$gl-status-success-text-color-default: var(--gl-status-success-text-color-default);
|
|
446
|
+
$gl-status-success-text-color-hover: var(--gl-status-success-text-color-hover);
|
|
447
|
+
$gl-status-success-text-color-focus: var(--gl-status-success-text-color-focus);
|
|
448
|
+
$gl-status-success-text-color-active: var(--gl-status-success-text-color-active);
|
|
449
|
+
$gl-status-success-icon-color-default: var(--gl-status-success-icon-color-default);
|
|
450
|
+
$gl-status-success-icon-color-hover: var(--gl-status-success-icon-color-hover);
|
|
451
|
+
$gl-status-success-icon-color-focus: var(--gl-status-success-icon-color-focus);
|
|
452
|
+
$gl-status-success-icon-color-active: var(--gl-status-success-icon-color-active);
|
|
453
|
+
$gl-status-warning-background-color-default: var(--gl-status-warning-background-color-default);
|
|
454
|
+
$gl-status-warning-background-color-active: var(--gl-status-warning-background-color-active);
|
|
455
|
+
$gl-status-warning-border-color-hover: var(--gl-status-warning-border-color-hover);
|
|
456
|
+
$gl-status-warning-text-color-default: var(--gl-status-warning-text-color-default);
|
|
457
|
+
$gl-status-warning-text-color-hover: var(--gl-status-warning-text-color-hover);
|
|
458
|
+
$gl-status-warning-text-color-focus: var(--gl-status-warning-text-color-focus);
|
|
459
|
+
$gl-status-warning-text-color-active: var(--gl-status-warning-text-color-active);
|
|
460
|
+
$gl-status-warning-icon-color-default: var(--gl-status-warning-icon-color-default);
|
|
461
|
+
$gl-status-warning-icon-color-hover: var(--gl-status-warning-icon-color-hover);
|
|
462
|
+
$gl-status-warning-icon-color-focus: var(--gl-status-warning-icon-color-focus);
|
|
463
|
+
$gl-status-warning-icon-color-active: var(--gl-status-warning-icon-color-active);
|
|
464
|
+
$gl-status-danger-background-color-default: var(--gl-status-danger-background-color-default);
|
|
465
|
+
$gl-status-danger-background-color-active: var(--gl-status-danger-background-color-active);
|
|
466
|
+
$gl-status-danger-border-color-hover: var(--gl-status-danger-border-color-hover);
|
|
467
|
+
$gl-status-danger-text-color-default: var(--gl-status-danger-text-color-default);
|
|
468
|
+
$gl-status-danger-text-color-hover: var(--gl-status-danger-text-color-hover);
|
|
469
|
+
$gl-status-danger-text-color-focus: var(--gl-status-danger-text-color-focus);
|
|
470
|
+
$gl-status-danger-text-color-active: var(--gl-status-danger-text-color-active);
|
|
471
|
+
$gl-status-danger-icon-color-default: var(--gl-status-danger-icon-color-default);
|
|
472
|
+
$gl-status-danger-icon-color-hover: var(--gl-status-danger-icon-color-hover);
|
|
473
|
+
$gl-status-danger-icon-color-focus: var(--gl-status-danger-icon-color-focus);
|
|
474
|
+
$gl-status-danger-icon-color-active: var(--gl-status-danger-icon-color-active);
|
|
475
|
+
$gl-status-brand-background-color-default: var(--gl-status-brand-background-color-default);
|
|
476
|
+
$gl-status-brand-background-color-active: var(--gl-status-brand-background-color-active);
|
|
477
|
+
$gl-status-brand-border-color-hover: var(--gl-status-brand-border-color-hover);
|
|
478
|
+
$gl-status-brand-text-color-default: var(--gl-status-brand-text-color-default);
|
|
479
|
+
$gl-status-brand-text-color-hover: var(--gl-status-brand-text-color-hover);
|
|
480
|
+
$gl-status-brand-text-color-focus: var(--gl-status-brand-text-color-focus);
|
|
481
|
+
$gl-status-brand-text-color-active: var(--gl-status-brand-text-color-active);
|
|
482
|
+
$gl-status-brand-icon-color-default: var(--gl-status-brand-icon-color-default);
|
|
483
|
+
$gl-status-brand-icon-color-hover: var(--gl-status-brand-icon-color-hover);
|
|
484
|
+
$gl-status-brand-icon-color-focus: var(--gl-status-brand-icon-color-focus);
|
|
485
|
+
$gl-status-brand-icon-color-active: var(--gl-status-brand-icon-color-active);
|
|
409
486
|
$gl-text-primary: var(--gl-text-primary);
|
|
410
487
|
$gl-text-secondary: var(--gl-text-secondary);
|
|
411
488
|
$gl-text-tertiary: var(--gl-text-tertiary);
|
package/package.json
CHANGED
|
@@ -92,93 +92,93 @@ $badge-min-width: 2.5 * $grid-size;
|
|
|
92
92
|
|
|
93
93
|
@include gl-badge-variant(
|
|
94
94
|
$variant: muted,
|
|
95
|
-
$color:
|
|
96
|
-
$icon-color:
|
|
97
|
-
$bg:
|
|
98
|
-
$hover-color:
|
|
99
|
-
$hover-icon-color:
|
|
100
|
-
$border-color:
|
|
101
|
-
$active-color:
|
|
102
|
-
$active-icon-color:
|
|
103
|
-
$active-bg:
|
|
95
|
+
$color: var(--gl-status-muted-text-color-default),
|
|
96
|
+
$icon-color: var(--gl-status-muted-icon-color-default),
|
|
97
|
+
$bg: var(--gl-status-muted-background-color-default),
|
|
98
|
+
$hover-color: var(--gl-status-muted-text-color-hover),
|
|
99
|
+
$hover-icon-color: var(--gl-status-muted-icon-color-hover),
|
|
100
|
+
$border-color: var(--gl-status-muted-border-color-hover),
|
|
101
|
+
$active-color: var(--gl-status-muted-text-color-active),
|
|
102
|
+
$active-icon-color:var(--gl-status-muted-icon-color-active),
|
|
103
|
+
$active-bg: var(--gl-status-muted-background-color-active)
|
|
104
104
|
);
|
|
105
105
|
|
|
106
106
|
@include gl-badge-variant(
|
|
107
107
|
$variant: neutral,
|
|
108
|
-
$color:
|
|
109
|
-
$icon-color:
|
|
110
|
-
$bg:
|
|
111
|
-
$hover-color:
|
|
112
|
-
$hover-icon-color:
|
|
113
|
-
$border-color:
|
|
114
|
-
$active-color:
|
|
115
|
-
$active-icon-color:
|
|
116
|
-
$active-bg:
|
|
108
|
+
$color: var(--gl-status-neutral-text-color-default),
|
|
109
|
+
$icon-color: var(--gl-status-neutral-icon-color-default),
|
|
110
|
+
$bg: var(--gl-status-neutral-background-color-default),
|
|
111
|
+
$hover-color: var(--gl-status-neutral-text-color-hover),
|
|
112
|
+
$hover-icon-color: var(--gl-status-neutral-icon-color-hover),
|
|
113
|
+
$border-color: var(--gl-status-neutral-border-color-hover),
|
|
114
|
+
$active-color: var(--gl-status-neutral-text-color-active),
|
|
115
|
+
$active-icon-color:var(--gl-status-neutral-icon-color-active),
|
|
116
|
+
$active-bg: var(--gl-status-neutral-background-color-active)
|
|
117
117
|
);
|
|
118
118
|
|
|
119
119
|
@include gl-badge-variant(
|
|
120
120
|
$variant: info,
|
|
121
|
-
$color:
|
|
122
|
-
$icon-color:
|
|
123
|
-
$bg:
|
|
124
|
-
$hover-color:
|
|
125
|
-
$hover-icon-color:
|
|
126
|
-
$border-color:
|
|
127
|
-
$active-color:
|
|
128
|
-
$active-icon-color:
|
|
129
|
-
$active-bg:
|
|
121
|
+
$color: var(--gl-status-info-text-color-default),
|
|
122
|
+
$icon-color: var(--gl-status-info-icon-color-default),
|
|
123
|
+
$bg: var(--gl-status-info-background-color-default),
|
|
124
|
+
$hover-color: var(--gl-status-info-text-color-hover),
|
|
125
|
+
$hover-icon-color: var(--gl-status-info-icon-color-hover),
|
|
126
|
+
$border-color: var(--gl-status-info-border-color-hover),
|
|
127
|
+
$active-color: var(--gl-status-info-text-color-active),
|
|
128
|
+
$active-icon-color:var(--gl-status-info-icon-color-active),
|
|
129
|
+
$active-bg: var(--gl-status-info-background-color-active)
|
|
130
130
|
);
|
|
131
131
|
|
|
132
132
|
@include gl-badge-variant(
|
|
133
133
|
$variant: success,
|
|
134
|
-
$color:
|
|
135
|
-
$icon-color:
|
|
136
|
-
$bg:
|
|
137
|
-
$hover-color:
|
|
138
|
-
$hover-icon-color:
|
|
139
|
-
$border-color:
|
|
140
|
-
$active-color:
|
|
141
|
-
$active-icon-color:
|
|
142
|
-
$active-bg:
|
|
134
|
+
$color: var(--gl-status-success-text-color-default),
|
|
135
|
+
$icon-color: var(--gl-status-success-icon-color-default),
|
|
136
|
+
$bg: var(--gl-status-success-background-color-default),
|
|
137
|
+
$hover-color: var(--gl-status-success-text-color-hover),
|
|
138
|
+
$hover-icon-color: var(--gl-status-success-icon-color-hover),
|
|
139
|
+
$border-color: var(--gl-status-success-border-color-hover),
|
|
140
|
+
$active-color: var(--gl-status-success-text-color-active),
|
|
141
|
+
$active-icon-color:var(--gl-status-success-icon-color-active),
|
|
142
|
+
$active-bg: var(--gl-status-success-background-color-active)
|
|
143
143
|
);
|
|
144
144
|
|
|
145
145
|
@include gl-badge-variant(
|
|
146
146
|
$variant: warning,
|
|
147
|
-
$color:
|
|
148
|
-
$icon-color:
|
|
149
|
-
$bg:
|
|
150
|
-
$hover-color:
|
|
151
|
-
$hover-icon-color:
|
|
152
|
-
$border-color:
|
|
153
|
-
$active-color:
|
|
154
|
-
$active-icon-color:
|
|
155
|
-
$active-bg:
|
|
147
|
+
$color: var(--gl-status-warning-text-color-default),
|
|
148
|
+
$icon-color: var(--gl-status-warning-icon-color-default),
|
|
149
|
+
$bg: var(--gl-status-warning-background-color-default),
|
|
150
|
+
$hover-color: var(--gl-status-warning-text-color-hover),
|
|
151
|
+
$hover-icon-color: var(--gl-status-warning-icon-color-hover),
|
|
152
|
+
$border-color: var(--gl-status-warning-border-color-hover),
|
|
153
|
+
$active-color: var(--gl-status-warning-text-color-active),
|
|
154
|
+
$active-icon-color:var(--gl-status-warning-icon-color-active),
|
|
155
|
+
$active-bg: var(--gl-status-warning-background-color-active)
|
|
156
156
|
);
|
|
157
157
|
|
|
158
158
|
@include gl-badge-variant(
|
|
159
159
|
$variant: danger,
|
|
160
|
-
$color:
|
|
161
|
-
$icon-color:
|
|
162
|
-
$bg:
|
|
163
|
-
$hover-color:
|
|
164
|
-
$hover-icon-color:
|
|
165
|
-
$border-color:
|
|
166
|
-
$active-color:
|
|
167
|
-
$active-icon-color:
|
|
168
|
-
$active-bg:
|
|
160
|
+
$color: var(--gl-status-danger-text-color-default),
|
|
161
|
+
$icon-color: var(--gl-status-danger-icon-color-default),
|
|
162
|
+
$bg: var(--gl-status-danger-background-color-default),
|
|
163
|
+
$hover-color: var(--gl-status-danger-text-color-hover),
|
|
164
|
+
$hover-icon-color: var(--gl-status-danger-icon-color-hover),
|
|
165
|
+
$border-color: var(--gl-status-danger-border-color-hover),
|
|
166
|
+
$active-color: var(--gl-status-danger-text-color-active),
|
|
167
|
+
$active-icon-color:var(--gl-status-danger-icon-color-active),
|
|
168
|
+
$active-bg: var(--gl-status-danger-background-color-active)
|
|
169
169
|
);
|
|
170
170
|
|
|
171
171
|
@include gl-badge-variant(
|
|
172
172
|
$variant: tier,
|
|
173
|
-
$color:
|
|
174
|
-
$icon-color:
|
|
175
|
-
$bg:
|
|
176
|
-
$hover-color:
|
|
177
|
-
$hover-icon-color:
|
|
178
|
-
$border-color:
|
|
179
|
-
$active-color:
|
|
180
|
-
$active-icon-color:
|
|
181
|
-
$active-bg:
|
|
173
|
+
$color: var(--gl-status-brand-text-color-default),
|
|
174
|
+
$icon-color: var(--gl-status-brand-icon-color-default),
|
|
175
|
+
$bg: var(--gl-status-brand-background-color-default),
|
|
176
|
+
$hover-color: var(--gl-status-brand-text-color-hover),
|
|
177
|
+
$hover-icon-color: var(--gl-status-brand-icon-color-hover),
|
|
178
|
+
$border-color: var(--gl-status-brand-border-color-hover),
|
|
179
|
+
$active-color: var(--gl-status-brand-text-color-active),
|
|
180
|
+
$active-icon-color:var(--gl-status-brand-icon-color-active),
|
|
181
|
+
$active-bg: var(--gl-status-brand-background-color-active)
|
|
182
182
|
);
|
|
183
183
|
|
|
184
184
|
// overriding Bootstap's `.btn .badge {top: -1px}` as the badge is not vertically centered otherwise
|
|
@@ -400,6 +400,83 @@
|
|
|
400
400
|
--gl-text-color-strong: var(--gl-color-neutral-950); /* Used for text with the highest contrast. */
|
|
401
401
|
--gl-text-color-subtle: var(--gl-color-neutral-600); /* Used for supplemental text that doesn't need to be as prominent as other text. */
|
|
402
402
|
--gl-text-color-default: var(--gl-color-neutral-800); /* Used for the default text color. */
|
|
403
|
+
--gl-status-brand-icon-color-active: var(--gl-color-purple-700); /* Used for the icon of a brand related status item in the active state. */
|
|
404
|
+
--gl-status-brand-icon-color-focus: var(--gl-color-purple-600); /* Used for the icon of a brand related status item in the focus state. */
|
|
405
|
+
--gl-status-brand-icon-color-hover: var(--gl-color-purple-600); /* Used for the icon of a brand related status item in the hover state. */
|
|
406
|
+
--gl-status-brand-icon-color-default: var(--gl-color-purple-500); /* Used for the icon of a brand related status item when static or the default state when linked. */
|
|
407
|
+
--gl-status-brand-text-color-active: var(--gl-color-purple-900); /* Used for the text of a brand related status item in the active state. */
|
|
408
|
+
--gl-status-brand-text-color-focus: var(--gl-color-purple-800); /* Used for the text of a brand related status item in the focus state. */
|
|
409
|
+
--gl-status-brand-text-color-hover: var(--gl-color-purple-800); /* Used for the text of a brand related status item in the hover state. */
|
|
410
|
+
--gl-status-brand-text-color-default: var(--gl-color-purple-700); /* Used for the text of a brand related status item when static or the default state when linked. */
|
|
411
|
+
--gl-status-brand-border-color-hover: var(--gl-color-purple-200); /* Used for the border of a brand related status item in the hover state. */
|
|
412
|
+
--gl-status-brand-background-color-active: var(--gl-color-purple-200); /* Used for the background of a brand related status item in the active state. */
|
|
413
|
+
--gl-status-brand-background-color-default: var(--gl-color-purple-100); /* Used for the background of a brand related status item when static or the default state when linked. */
|
|
414
|
+
--gl-status-danger-icon-color-active: var(--gl-color-red-700); /* Used for the icon of a danger (critical) status item in the active state. */
|
|
415
|
+
--gl-status-danger-icon-color-focus: var(--gl-color-red-600); /* Used for the icon of a danger (critical) status item in the focus state. */
|
|
416
|
+
--gl-status-danger-icon-color-hover: var(--gl-color-red-600); /* Used for the icon of a danger (critical) status item in the hover state. */
|
|
417
|
+
--gl-status-danger-icon-color-default: var(--gl-color-red-500); /* Used for the icon of a danger (critical) status item when static or the default state when linked. */
|
|
418
|
+
--gl-status-danger-text-color-active: var(--gl-color-red-900); /* Used for the text of a danger (critical) status item in the active state. */
|
|
419
|
+
--gl-status-danger-text-color-focus: var(--gl-color-red-800); /* Used for the text of a danger (critical) status item in the focus state. */
|
|
420
|
+
--gl-status-danger-text-color-hover: var(--gl-color-red-800); /* Used for the text of a danger (critical) status item in the hover state. */
|
|
421
|
+
--gl-status-danger-text-color-default: var(--gl-color-red-700); /* Used for the text of a danger (critical) status item when static or the default state when linked. */
|
|
422
|
+
--gl-status-danger-border-color-hover: var(--gl-color-red-200); /* Used for the border of a danger (critical) status item in the hover state. */
|
|
423
|
+
--gl-status-danger-background-color-active: var(--gl-color-red-200); /* Used for the background of a danger (critical) status item in the active state. */
|
|
424
|
+
--gl-status-danger-background-color-default: var(--gl-color-red-100); /* Used for the background of a danger (critical) status item when static or the default state when linked. */
|
|
425
|
+
--gl-status-warning-icon-color-active: var(--gl-color-orange-700); /* Used for the icon of a warning status or confidential item in the active state. */
|
|
426
|
+
--gl-status-warning-icon-color-focus: var(--gl-color-orange-600); /* Used for the icon of a warning status or confidential item in the focus state. */
|
|
427
|
+
--gl-status-warning-icon-color-hover: var(--gl-color-orange-600); /* Used for the icon of a warning status or confidential item in the hover state. */
|
|
428
|
+
--gl-status-warning-icon-color-default: var(--gl-color-orange-500); /* Used for the icon of a warning status or confidential item when static or the default state when linked. */
|
|
429
|
+
--gl-status-warning-text-color-active: var(--gl-color-orange-900); /* Used for the text of a warning status or confidential item in the active state.N */
|
|
430
|
+
--gl-status-warning-text-color-focus: var(--gl-color-orange-800); /* Used for the text of a warning status or confidential item in the focus state. */
|
|
431
|
+
--gl-status-warning-text-color-hover: var(--gl-color-orange-800); /* Used for the text of a warning status or confidential item in the hover state. */
|
|
432
|
+
--gl-status-warning-text-color-default: var(--gl-color-orange-700); /* Used for the text of a warning status or confidential item when static or the default state when linked. */
|
|
433
|
+
--gl-status-warning-border-color-hover: var(--gl-color-orange-200); /* Used for the border of a warning status or confidential item in the hover state. */
|
|
434
|
+
--gl-status-warning-background-color-active: var(--gl-color-orange-200); /* Used for the background of a warning status or confidential item in the active state. */
|
|
435
|
+
--gl-status-warning-background-color-default: var(--gl-color-orange-100); /* Used for the background of a warning status or confidential item when static or the default state when linked. */
|
|
436
|
+
--gl-status-success-icon-color-active: var(--gl-color-green-700); /* Used for the icon of a success status item in the active state. */
|
|
437
|
+
--gl-status-success-icon-color-focus: var(--gl-color-green-600); /* Used for the icon of a success status item in the focus state. */
|
|
438
|
+
--gl-status-success-icon-color-hover: var(--gl-color-green-600); /* Used for the icon of a success status item in the hover state. */
|
|
439
|
+
--gl-status-success-icon-color-default: var(--gl-color-green-500); /* Used for the icon of a success status item when static or the default state when linked. */
|
|
440
|
+
--gl-status-success-text-color-active: var(--gl-color-green-900); /* Used for the text of a success status item in the active state. */
|
|
441
|
+
--gl-status-success-text-color-focus: var(--gl-color-green-800); /* Used for the text of a success status item in the focus state. */
|
|
442
|
+
--gl-status-success-text-color-hover: var(--gl-color-green-800); /* Used for the text of a success status item in the hover state. */
|
|
443
|
+
--gl-status-success-text-color-default: var(--gl-color-green-700); /* Used for the text of a success status item when static or the default state when linked. */
|
|
444
|
+
--gl-status-success-border-color-hover: var(--gl-color-green-200); /* Used for the border of a success status item in the hover state. */
|
|
445
|
+
--gl-status-success-background-color-active: var(--gl-color-green-200); /* Used for the background of a success status item in the active state. */
|
|
446
|
+
--gl-status-success-background-color-default: var(--gl-color-green-100); /* Used for the background of a success status item when static or the default state when linked. */
|
|
447
|
+
--gl-status-info-icon-color-active: var(--gl-color-blue-700); /* Used for the icon of an informational status item in the active state. */
|
|
448
|
+
--gl-status-info-icon-color-focus: var(--gl-color-blue-600); /* Used for the icon of an informational status item in the focus state. */
|
|
449
|
+
--gl-status-info-icon-color-hover: var(--gl-color-blue-600); /* Used for the icon of an informational status item in the hover state. */
|
|
450
|
+
--gl-status-info-icon-color-default: var(--gl-color-blue-500); /* Used for the icon of an informational status item when static or the default state when linked. */
|
|
451
|
+
--gl-status-info-text-color-active: var(--gl-color-blue-900); /* Used for the text of an informational status item in the active state. */
|
|
452
|
+
--gl-status-info-text-color-focus: var(--gl-color-blue-800); /* Used for the text of an informational status item in the focus state. */
|
|
453
|
+
--gl-status-info-text-color-hover: var(--gl-color-blue-800); /* Used for the text of an informational status item in the hover state. */
|
|
454
|
+
--gl-status-info-text-color-default: var(--gl-color-blue-700); /* Used for the text of an informational status item when static or the default state when linked. */
|
|
455
|
+
--gl-status-info-border-color-hover: var(--gl-color-blue-200); /* Used for the border of an informational status item in the hover state. */
|
|
456
|
+
--gl-status-info-background-color-active: var(--gl-color-blue-200); /* Used for the background of an informational status item in the active state. */
|
|
457
|
+
--gl-status-info-background-color-default: var(--gl-color-blue-100); /* Used for the background of an informational status item when static or the default state when linked. */
|
|
458
|
+
--gl-status-neutral-icon-color-active: var(--gl-color-neutral-700); /* Used for the icon of a neutral status item in the active state. */
|
|
459
|
+
--gl-status-neutral-icon-color-focus: var(--gl-color-neutral-600); /* Used for the icon of a neutral status item in the focus state. */
|
|
460
|
+
--gl-status-neutral-icon-color-hover: var(--gl-color-neutral-600); /* Used for the icon of a neutral status item in the hover state. */
|
|
461
|
+
--gl-status-neutral-icon-color-default: var(--gl-color-neutral-500); /* Used for the icon of a neutral status item when static or the default state when linked. */
|
|
462
|
+
--gl-status-neutral-text-color-active: var(--gl-color-neutral-900); /* Used for the text of a neutral status item in the active state. */
|
|
463
|
+
--gl-status-neutral-text-color-focus: var(--gl-color-neutral-800); /* Used for the text of a neutral status item in the focus state. */
|
|
464
|
+
--gl-status-neutral-text-color-hover: var(--gl-color-neutral-800); /* Used for the text of a neutral status item in the hover state. */
|
|
465
|
+
--gl-status-neutral-text-color-default: var(--gl-color-neutral-700); /* Used for the text of a neutral status item when static or the default state when linked. */
|
|
466
|
+
--gl-status-neutral-border-color-hover: var(--gl-color-neutral-200); /* Used for the border of a neutral status item in the hover state. */
|
|
467
|
+
--gl-status-neutral-background-color-active: var(--gl-color-neutral-200); /* Used for the background of a neutral status item in the active state. */
|
|
468
|
+
--gl-status-neutral-background-color-default: var(--gl-color-neutral-100); /* Used for the background of a neutral status item when static or the default state when linked. */
|
|
469
|
+
--gl-status-muted-icon-color-active: var(--gl-color-neutral-700); /* Used for the icon of a subtle neutral status item in the active state. */
|
|
470
|
+
--gl-status-muted-icon-color-focus: var(--gl-color-neutral-600); /* Used for the icon of a subtle neutral status item in the focus state. */
|
|
471
|
+
--gl-status-muted-icon-color-hover: var(--gl-color-neutral-600); /* Used for the icon of a subtle neutral status item in the hover state. */
|
|
472
|
+
--gl-status-muted-icon-color-default: var(--gl-color-neutral-500); /* Used for the icon of a subtle neutral status item when static or the default state when linked. */
|
|
473
|
+
--gl-status-muted-text-color-active: var(--gl-color-neutral-800); /* Used for the text of a subtle neutral status item in the active state. */
|
|
474
|
+
--gl-status-muted-text-color-focus: var(--gl-color-neutral-700); /* Used for the text of a subtle neutral status item in the focus state. */
|
|
475
|
+
--gl-status-muted-text-color-hover: var(--gl-color-neutral-700); /* Used for the text of a subtle neutral status item in the hover state. */
|
|
476
|
+
--gl-status-muted-text-color-default: var(--gl-color-neutral-600); /* Used for the text of a subtle neutral status item when static or the default state when linked. */
|
|
477
|
+
--gl-status-muted-border-color-hover: var(--gl-color-neutral-200); /* Used for the border of a subtle neutral status item in the hover state. */
|
|
478
|
+
--gl-status-muted-background-color-active: var(--gl-color-neutral-100); /* Used for the background of a subtle neutral status item in the active state. */
|
|
479
|
+
--gl-status-muted-background-color-default: var(--gl-color-neutral-50); /* Used for the background of a subtle neutral status item when static or the default state when linked. */
|
|
403
480
|
--gl-icon-color-success: var(--gl-color-green-600); /* Used for an icon associated with success or validity. */
|
|
404
481
|
--gl-icon-color-danger: var(--gl-color-red-600); /* Used for an icon associated with an error or danger. */
|
|
405
482
|
--gl-icon-color-warning: var(--gl-color-orange-600); /* Used for an icon associated with a warning. */
|