2018-10-19 15:17:02 +00:00
|
|
|
%secret-button {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
%secret-button input {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-01-16 09:10:32 +00:00
|
|
|
%secret-button input ~ em {
|
2018-10-19 15:17:02 +00:00
|
|
|
visibility: hidden;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2020-01-16 09:10:32 +00:00
|
|
|
%secret-button input:checked ~ em {
|
2018-10-19 15:17:02 +00:00
|
|
|
@extend %user-select-text;
|
|
|
|
visibility: visible;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
2020-01-16 09:10:32 +00:00
|
|
|
%secret-button input ~ em::before {
|
2018-10-19 15:17:02 +00:00
|
|
|
display: inline;
|
|
|
|
visibility: visible;
|
|
|
|
content: '■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■';
|
|
|
|
}
|
2020-01-16 09:10:32 +00:00
|
|
|
%secret-button input:checked ~ em::before {
|
2018-10-19 15:17:02 +00:00
|
|
|
display: none;
|
|
|
|
}
|