mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
95111d2b73
With apologies to anyone who gets a hundred merge conflicts because of this :) We had several different prefix styles (mlb-, mw-mlb-, mw-mmv-, mw-mmv-mmv-, a few unprefixed), which was getting annoying, and will be confusing to wiki editors who are trying to figure out where a given style comes from. Such changes are better done before going live because it breaks all local CSS tweaks on the wiki, so I am renaming things now (also removing some stuff which wasnt used anywhere). Change-Id: I00447a25f0028e234169c6db941bedc99622eb8d
89 lines
1.4 KiB
Plaintext
89 lines
1.4 KiB
Plaintext
@import "mediawiki.mixins";
|
|
@import "mmv.mixins";
|
|
|
|
.mw-mmv-permission-box {
|
|
position: relative;
|
|
|
|
width: 90%;
|
|
margin: 10px 20px 0;
|
|
|
|
&.empty {
|
|
display: none;
|
|
}
|
|
|
|
h3 {
|
|
margin: 10px;
|
|
padding: 0;
|
|
color: #565656;
|
|
font-size: 0.95em;
|
|
}
|
|
|
|
.mw-mmv-permission-close {
|
|
display: none;
|
|
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 8px;
|
|
|
|
width: 16px;
|
|
height: 16px;
|
|
.background-image('img/x_gray.svg');
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mw-mmv-permission-text {
|
|
@text-font-size: 0.9em;
|
|
@text-line-height: 1.4;
|
|
@lines-shown: 3;
|
|
|
|
position: relative;
|
|
|
|
max-height: @lines-shown * @text-line-height * @text-font-size;
|
|
overflow: hidden;
|
|
margin: 0 10px 10px;
|
|
font-size: @text-font-size;
|
|
line-height: @text-line-height;
|
|
color: #555555;
|
|
|
|
.mw-mmv-permission-text-fader {
|
|
position: absolute;
|
|
top: (@lines-shown - 1) * @text-line-height * @text-font-size;
|
|
width: 100%;
|
|
height: @text-line-height * @text-font-size;
|
|
|
|
.fade-out();
|
|
|
|
text-align: right;
|
|
|
|
a {
|
|
padding: 3px 0 0 1em;
|
|
background-color: white;
|
|
font-size: 1em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-mmv-permission-html {
|
|
padding: 0 15px 15px;
|
|
display: none;
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
}
|
|
|
|
&.full-size {
|
|
.mw-mmv-permission-close {
|
|
display: block;
|
|
}
|
|
|
|
.mw-mmv-permission-text {
|
|
display: none;
|
|
}
|
|
|
|
.mw-mmv-permission-html {
|
|
display: block;
|
|
border-top: 1px solid #f0f0f0;
|
|
}
|
|
}
|
|
}
|