mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 02:41:54 +00:00
a3efca1582
* truncated-text is only used in MainMenu, last modified bar, a few special pages Making this a mixin and limiting it to mobile.startup skinStyles and mobile.special.styles thus makes sense * cloaked-element is only ever added by Skin.js in mobile.startup * position-fixed is only ever added by Skin.js Change-Id: Iaf7061e9dda87eb25c963f8a281175af08f358e5
18 lines
265 B
Plaintext
18 lines
265 B
Plaintext
.cloaked-element {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
.position-fixed {
|
|
// use !important to override more specific rules (e.g. in Overlay.less)
|
|
position: fixed !important;
|
|
}
|
|
.touch-events {
|
|
:focus {
|
|
outline: 0;
|
|
}
|
|
}
|