mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-03 19:57:19 +00:00
12 lines
443 B
Plaintext
12 lines
443 B
Plaintext
|
// Add padding around uls trigger when in user links.
|
||
|
// !important as we always want to add extra margin when the uls trigger is inside the user links.
|
||
|
// Using !important is cleaner than having to rely on specificity.
|
||
|
.vector-user-links {
|
||
|
.uls-trigger {
|
||
|
// stylelint-disable-next-line declaration-no-important
|
||
|
margin-left: 12px !important;
|
||
|
// stylelint-disable-next-line declaration-no-important
|
||
|
margin-right: 12px !important;
|
||
|
}
|
||
|
}
|