mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-04 20:18:57 +00:00
12 lines
367 B
Plaintext
12 lines
367 B
Plaintext
|
/**
|
||
|
* Less mixins shared between both legacy and Vector 2022.
|
||
|
*/
|
||
|
|
||
|
// Defines the arrow beside dropdown headings.
|
||
|
.mixin-vector-menu-heading-arrow() {
|
||
|
content: '';
|
||
|
background: url( ../common/images/arrow-down.svg ) 100% 50% no-repeat;
|
||
|
width: unit( 16 / @font-size-tabs / @font-size-browser, em );
|
||
|
height: unit( 16 / @font-size-tabs / @font-size-browser, em );
|
||
|
}
|