mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* update greys to use hds tokens * update blue vars * remove unused color vars * replace remaining colors, add hex codes in commnets * update kv rgp color * remove color_variables file and use hds tokens directly
25 lines
470 B
SCSS
25 lines
470 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.form-section {
|
|
padding: 1.75rem 0;
|
|
box-shadow: 0 -1px 0 0 rgba(hsl(0, 0%, 4%), 0.1);
|
|
}
|
|
|
|
.field:first-child .form-section,
|
|
.box > .field > .field.form-section.string-list {
|
|
padding: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
// renders below secret data input to display kv v2 diff when editing
|
|
.visual-diff {
|
|
background-color: black;
|
|
|
|
pre {
|
|
color: var(--token-color-palette-neutral-50);
|
|
}
|
|
}
|