mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-30 02:15:49 +00:00
d1f1f32418
- Update UserLinks data to wrap link content with spans and other markup changes - Use UserLinks__login.mustache and UserLinks__logout.mustache for rendering UserLink stories - Add new SearchBox story to account for search collapse behavior in modern Vector Change-Id: Ib0abce31db60a0c5c88dea17085e2974ac5112b5
19 lines
319 B
Plaintext
19 lines
319 B
Plaintext
// Extends the common MenuDropdown, but allows it to be opened via hover.
|
|
|
|
.vector-menu-dropdown:not( .vector-user-menu ) {
|
|
li {
|
|
font-size: @font-size-tabs;
|
|
}
|
|
|
|
&:hover .vector-menu-content {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
.vector-menu-checkbox {
|
|
&:checked + h3:after {
|
|
transform: scaleY( -1 );
|
|
}
|
|
}
|