John Cowen 7d89e519a2 UI: New ACLs (#4789)
UI to accompany the new ACLs APIs
2018-10-19 08:45:05 -07:00

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;
}