2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2020-05-01 08:50:13 +00:00
|
|
|
%empty-state {
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
color: var(--token-color-foreground-faint);
|
|
|
|
background-color: var(--token-color-surface-faint);
|
2020-05-01 08:50:13 +00:00
|
|
|
}
|
2020-04-08 17:03:18 +00:00
|
|
|
%empty-state-header {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2021-01-26 17:53:45 +00:00
|
|
|
%empty-state-header {
|
|
|
|
@extend %h200;
|
|
|
|
}
|
2020-05-01 08:50:13 +00:00
|
|
|
/* Icons */
|
2020-04-08 17:03:18 +00:00
|
|
|
%empty-state header::before {
|
|
|
|
font-size: 2.6em;
|
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
%empty-state-anchor::before {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2020-05-01 08:50:13 +00:00
|
|
|
%empty-state[class*='status-'] header::before {
|
|
|
|
@extend %as-pseudo;
|
|
|
|
}
|
2022-04-11 09:05:02 +00:00
|
|
|
%empty-state[class*='status-'] header::before {
|
2020-05-01 08:50:13 +00:00
|
|
|
@extend %with-alert-circle-outline-mask;
|
|
|
|
}
|
|
|
|
%empty-state.status-404 header::before {
|
|
|
|
@extend %with-help-circle-outline-mask;
|
|
|
|
}
|
|
|
|
%empty-state.status-403 header::before {
|
|
|
|
@extend %with-disabled-mask;
|
2020-04-08 17:03:18 +00:00
|
|
|
}
|
2020-05-27 10:23:21 +00:00
|
|
|
%empty-state li[class*='-link'] > *::after {
|
|
|
|
@extend %as-pseudo;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
%empty-state .docs-link > *::after {
|
|
|
|
@extend %with-docs-mask;
|
2020-04-08 17:03:18 +00:00
|
|
|
}
|
2020-05-27 10:23:21 +00:00
|
|
|
%empty-state .back-link > *::after {
|
|
|
|
@extend %with-chevron-left-mask;
|
2020-05-01 08:50:13 +00:00
|
|
|
}
|
2020-05-27 10:23:21 +00:00
|
|
|
%empty-state .learn-link > *::after {
|
|
|
|
@extend %with-learn-mask;
|
2020-04-08 17:03:18 +00:00
|
|
|
}
|