mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 22:57:02 +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
24 lines
474 B
SCSS
24 lines
474 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.autocomplete-input {
|
|
background: hsl(0, 0%, 100%) !important;
|
|
border: 1px solid var(--token-color-palette-neutral-300);
|
|
box-sizing: border-box;
|
|
border-radius: 3px;
|
|
width: 99%;
|
|
padding: 4px 0;
|
|
margin-left: 0.5%;
|
|
margin-top: -4px;
|
|
}
|
|
|
|
.autocomplete-input-option {
|
|
padding: 12px;
|
|
&:hover {
|
|
background-color: var(--token-color-palette-neutral-50);
|
|
cursor: pointer;
|
|
}
|
|
}
|