efdae83a87
* ui: Delete a bunch of CSS that we recently moved elsewhere * ui: Add some masking placeholders * Switch out hashicorp logo for one from structure-icons * Change copy-button to use new copy-action icon * Change secret-button to use new visibility-hide/show icons * New folder icon for KVs * Cleanup some of the icons we no longer use * Switch from %with-exit to standard-like %with-exit-icon * Move all chevrons to use structure-icons properly * Use star-fill as much as possible * Remove the remaining icons from icons/index plus the file itself
27 lines
525 B
SCSS
27 lines
525 B
SCSS
// TODO: Move this out of here and into probably modal
|
|
.type-dialog {
|
|
@extend %anchor;
|
|
cursor: pointer;
|
|
float: right;
|
|
}
|
|
%token-yours {
|
|
color: $blue-500;
|
|
}
|
|
%token-yours::before {
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
|
background-color: $blue-500;
|
|
margin-right: 5px;
|
|
}
|
|
.me ~ :nth-last-child(2) {
|
|
@extend %token-yours;
|
|
}
|
|
.template-token.template-list main .notice {
|
|
margin-top: -20px;
|
|
}
|
|
.template-token.template-edit dd {
|
|
display: flex;
|
|
}
|
|
.template-token.template-edit dl {
|
|
@extend %form-row;
|
|
}
|