mediawiki-skins-Citizen/resources/skins.citizen.styles/Drawer__button.less
github-actions 0d63257e86 ci: lint code to MediaWiki standards
Check commit and GitHub actions for more details
2022-09-28 21:02:56 +00:00

84 lines
1.4 KiB
Plaintext

.citizen-drawer__button {
position: relative; // To make background hover state visible
&Icon {
display: grid;
place-content: center;
> div {
display: block;
width: 1.125rem;
height: 0.125rem;
border-radius: var( --border-radius--large );
margin: 0.09375rem 0;
background-color: #000;
transform-origin: 0.25rem 0;
transition: inherit;
&:first-child {
transform-origin: 0 0;
}
&:nth-child( 2 ) {
transform-origin: 0 100%;
}
}
}
&:hover {
> .citizen-drawer__buttonIcon {
> div {
&:first-child {
transform: translate3d( -50%, 0, 0 );
}
}
}
}
}
// RTL
.rtl {
.citizen-drawer__button:hover {
&Icon {
> div {
&:first-child {
transform: translate3d( 50%, 0, 0 );
}
}
}
}
}
// Checkbox hack
#citizen-drawer__checkbox:checked {
// Transform all the slices of the button into a crossmark
~ .citizen-drawer__button {
> .citizen-drawer__buttonIcon {
> div {
&:first-child {
opacity: 0;
/* @noflip */
transform: rotate( 0deg ) scale( 0.2, 0.2 );
}
// Reflect line
&:nth-child( 2 ) {
/* @noflip */
transform: rotate( -45deg ) translate3d( -0.125rem, 0.375rem, 0 );
}
// Hide line
&:last-child {
/* @noflip */
transform: rotate( 45deg ) translate3d( -0.3125rem, -0.4375rem, 0 );
}
}
}
&:hover {
> .citizen-drawer__buttonIcon {
transform: scale( 0.85 );
}
}
}
}