@gitlab/ui 84.0.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 +15 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +79 -1
- package/dist/tokens/build/js/tokens.js +79 -1
- package/dist/tokens/css/tokens.css +78 -0
- package/dist/tokens/css/tokens.dark.css +78 -0
- package/dist/tokens/js/tokens.dark.js +78 -0
- package/dist/tokens/js/tokens.js +78 -0
- package/dist/tokens/json/tokens.dark.json +2002 -0
- package/dist/tokens/json/tokens.json +2002 -0
- package/dist/tokens/scss/_tokens.dark.scss +78 -0
- package/dist/tokens/scss/_tokens.scss +78 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +78 -0
- package/package.json +1 -1
- package/src/components/base/badge/badge.scss +63 -63
- package/src/components/base/breadcrumb/breadcrumb.scss +3 -3
- package/src/tokens/build/css/tokens.css +78 -0
- package/src/tokens/build/css/tokens.dark.css +78 -0
- package/src/tokens/build/js/tokens.dark.js +78 -0
- package/src/tokens/build/js/tokens.js +78 -0
- package/src/tokens/build/json/tokens.dark.json +2002 -0
- package/src/tokens/build/json/tokens.json +2002 -0
- package/src/tokens/build/scss/_tokens.dark.scss +78 -0
- package/src/tokens/build/scss/_tokens.scss +78 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +78 -0
- package/src/tokens/contextual/breadcrumb.tokens.json +14 -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.
|
|
@@ -407,6 +484,7 @@ $gl-icon-color-disabled: $gl-color-neutral-500; // Used for an icon within a dis
|
|
|
407
484
|
$gl-icon-color-strong: $gl-color-neutral-10; // Used for an icon with the highest contrast.
|
|
408
485
|
$gl-icon-color-subtle: $gl-color-neutral-300; // Used for a static or decorational icon. Can be paired with subtle text.
|
|
409
486
|
$gl-icon-color-default: $gl-color-neutral-100; // Used for the default icon color. Can be paired with default text.
|
|
487
|
+
$gl-breadcrumb-separator-color: $gl-color-neutral-700; // Used for the breadcrumb level separator.
|
|
410
488
|
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
411
489
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
412
490
|
$gl-border-color-subtle: $gl-color-neutral-900; // Used for a border that has a little more definition, or is used in combination with a subtle background.
|
|
@@ -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.
|
|
@@ -407,6 +484,7 @@ $gl-icon-color-disabled: $gl-color-neutral-300; // Used for an icon within a dis
|
|
|
407
484
|
$gl-icon-color-strong: $gl-color-neutral-900; // Used for an icon with the highest contrast.
|
|
408
485
|
$gl-icon-color-subtle: $gl-color-neutral-500; // Used for a static or decorational icon. Can be paired with subtle text.
|
|
409
486
|
$gl-icon-color-default: $gl-color-neutral-700; // Used for the default icon color. Can be paired with default text.
|
|
487
|
+
$gl-breadcrumb-separator-color: $gl-color-neutral-200; // Used for the breadcrumb level separator.
|
|
410
488
|
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
411
489
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
412
490
|
$gl-border-color-subtle: $gl-color-neutral-50; // Used for a border that has a little more definition, or is used in combination with a subtle background.
|
|
@@ -386,6 +386,7 @@ $t-white-a-02: var(--t-white-a-02);
|
|
|
386
386
|
$t-white-a-04: var(--t-white-a-04);
|
|
387
387
|
$t-white-a-06: var(--t-white-a-06);
|
|
388
388
|
$t-white-a-08: var(--t-white-a-08);
|
|
389
|
+
$gl-breadcrumb-separator-color: var(--gl-breadcrumb-separator-color);
|
|
389
390
|
$gl-icon-color-default: var(--gl-icon-color-default);
|
|
390
391
|
$gl-icon-color-subtle: var(--gl-icon-color-subtle);
|
|
391
392
|
$gl-icon-color-strong: var(--gl-icon-color-strong);
|
|
@@ -405,6 +406,83 @@ $gl-line-height-36: var(--gl-line-height-36);
|
|
|
405
406
|
$gl-line-height-42: var(--gl-line-height-42);
|
|
406
407
|
$gl-line-height-44: var(--gl-line-height-44);
|
|
407
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);
|
|
408
486
|
$gl-text-primary: var(--gl-text-primary);
|
|
409
487
|
$gl-text-secondary: var(--gl-text-secondary);
|
|
410
488
|
$gl-text-tertiary: var(--gl-text-tertiary);
|