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