mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.permission.less
Gergő Tisza 47a8bda392 Create StripeButtons class, convert reuse button to use it
Also do a bunch of refactoring to:
* keep LESS rules in more sane locations so it is not as hard to get an overview
  (most of the metadata panel rules were in mmv.less)
* move mmv.mixins.less up one directory as it is not specific to the UI
* move the SVG icons as all of them were related to the UI
* remove the marging-right hack which was used to keep the title text from
  overflowing the button; instead use a float and overflow properties to make
  sure text that is too long gets hidden

Change-Id: Icc8ea2e766be67d86ae98c734721b2185bd6c36e
2014-04-03 23:13:12 +00:00

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;
}
}
}