mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-25 08:35:29 +00:00
9291a0d6e2
Replacing colors with ones from current WCAG 2.0 level AA compliant color palette. Also improving SVG files by svgo optimization where easily applicable and cleaning up some minor Less shortcomings. Bug: T149769 Change-Id: I3d46c95a61112ba808c6ec664a95c94e9cb42c5e
38 lines
781 B
Plaintext
38 lines
781 B
Plaintext
@import '../mmv.mixins';
|
|
@import '../mmv.globals';
|
|
|
|
.mw-mmv-download-dialog {
|
|
@divider-border-height: 1px;
|
|
@dialog-height: 230px;
|
|
|
|
height: @dialog-height;
|
|
|
|
// positioned relative to the download button
|
|
position: fixed;
|
|
bottom: @metadatabar-above-fold-height + @progress-bar-height + 35px;
|
|
|
|
.mw-mmv-download-size .oo-ui-optionWidget {
|
|
@tab-border-height: 3px;
|
|
@highlighted-tab-color: rgb( 225, 243, 255 );
|
|
@selected-tab-color: rgb( 0, 113, 188 );
|
|
|
|
display: inline-block;
|
|
padding: 10px 25px;
|
|
|
|
font-size: 16px;
|
|
|
|
&.oo-ui-optionWidget-selected {
|
|
border: 0;
|
|
}
|
|
|
|
&:first-child {
|
|
.box-round( @border-radius 0 0 0 );
|
|
}
|
|
}
|
|
|
|
.mw-mmv-dialog-down-arrow {
|
|
bottom: @metadatabar-above-fold-height + @progress-bar-height + 45px;
|
|
background-color: #f8f9fa;
|
|
}
|
|
}
|