open-vault/ui/app/styles/components/sidebar.scss
hc-github-team-secure-vault-core 49b9a35e01
backport of commit ce4b2675b1ed50e9aa08c78c1a94f5e63c693277 (#22391)
Co-authored-by: Jordan Reimer <zofskeez@gmail.com>
2023-08-17 09:24:12 -06:00

53 lines
1,020 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.sidebar-user-menu {
align-self: center;
.popup-menu-content {
.menu-label {
color: $black;
font-size: 14px;
font-weight: $font-weight-bold;
text-transform: unset;
}
.token-alert {
padding: $spacing-xs;
}
}
.confirm-action-message p {
padding-top: $size-10;
font-weight: $font-weight-semibold;
color: $black;
}
}
.link-status {
height: 40px;
display: flex;
justify-content: center;
align-items: center;
font-size: $size-7;
font-weight: $font-weight-semibold;
&.connected {
background-color: var(--token-color-surface-action);
color: var(--token-color-foreground-action-active);
a {
color: var(--token-color-foreground-action-active);
}
}
&.warning {
background-color: var(--token-color-surface-warning);
color: var(--token-color-palette-amber-300);
a {
color: var(--token-color-palette-amber-300);
}
}
}