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
24 lines
465 B
SCSS
24 lines
465 B
SCSS
%secret-button {
|
|
cursor: pointer;
|
|
}
|
|
%secret-button input {
|
|
display: none;
|
|
}
|
|
%secret-button input ~ em {
|
|
visibility: hidden;
|
|
font-style: normal;
|
|
}
|
|
%secret-button input:checked ~ em {
|
|
@extend %user-select-text;
|
|
visibility: visible;
|
|
cursor: auto;
|
|
}
|
|
%secret-button input ~ em::before {
|
|
display: inline;
|
|
visibility: visible;
|
|
content: '■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■';
|
|
}
|
|
%secret-button input:checked ~ em::before {
|
|
display: none;
|
|
}
|