mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.permission.less
Volker E 7157729ae8 Align to WikimediaUI style guide and code cleanup
Aligning to WikimediaUI style guide by replacing colors with
standard color palette equivalents, merging close colors
(ex: `#E6E6E6` & `#eee` become `#eaecf0` ) and slightly increase
contrast on a few to meet WCAG 2.0 level AA criteria.
Also:
- following other code bases like MobileFrontend or OOjs UI in
using `border-radius` property instead of obsolete mixin
- removing non-existing browser vendor prefixes in mixins
- removing non-used Less variables
- bringing CSS/Less code closer to coding standards and
- simplifying Less code where applicable

Change-Id: Icb936e14ff613471ea1da6df6341ec1b0543cfaf
2017-03-02 15:55:01 -08:00

82 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: #54595d;
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: #54595d;
.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-vertical();
text-align: right;
a {
padding: 3px 0 0 1em;
background-color: #fff;
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 #f8f9fa;
}
}
}