mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-31 11:31:07 +02:00
* fix button padding * rename spacing variables using numerical values * fix toggle aligment * remove unused toggle classes * replace margin and padding with spacing vars * increase base font size * remove switch css, use toggle consistently * remaining margin/padding size vars to spacing pixels * add deprecated note, rever changes to size vars * decrease console size * remove function * adjust card size for small selectable cards * fix select to fit to content width * fix toolbar-scroller height * add changelog; * fix checkbox styling
37 lines
669 B
SCSS
37 lines
669 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.control-group,
|
|
.control-group-success {
|
|
@extend .box;
|
|
box-shadow: $box-shadow-middle, 0 0 1px $grey-dark;
|
|
}
|
|
.control-group-success.is-editor {
|
|
background: $grey-lightest;
|
|
}
|
|
|
|
.control-group a {
|
|
color: currentColor;
|
|
}
|
|
.control-group-header {
|
|
box-shadow: 0 0 1px currentColor;
|
|
padding: $spacing-10 $spacing-14;
|
|
background: $grey-lightest;
|
|
color: $grey-dark;
|
|
position: relative;
|
|
strong {
|
|
color: currentColor;
|
|
}
|
|
}
|
|
|
|
.control-group-header.is-success {
|
|
color: $green-dark;
|
|
background: $green-lightest;
|
|
}
|
|
|
|
.control-group .authorizations {
|
|
margin-top: $spacing-10;
|
|
}
|