mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-21 03:22:41 +00:00
30 lines
527 B
Plaintext
30 lines
527 B
Plaintext
|
@import 'mediawiki.ui/variables';
|
||
|
|
||
|
.mwe-popups-settings-icon {
|
||
|
// For purpose of active and hover states
|
||
|
border-radius: @borderRadius;
|
||
|
// Icon sizes are relative to font size. Override any parents.
|
||
|
font-size: 16px;
|
||
|
// position icon
|
||
|
/* stylelint-disable value-keyword-case */
|
||
|
margin-right: -@iconSize / 2;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: @colorGray14;
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
background-color: @colorGray12;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.mwe-popups {
|
||
|
.mwe-popups-container {
|
||
|
footer {
|
||
|
.mwe-popups-settings-icon {
|
||
|
float: right;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|