mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-12-02 03:36:17 +00:00
7157729ae8
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
79 lines
1.2 KiB
Plaintext
79 lines
1.2 KiB
Plaintext
@switch-color: #f8f9fa;
|
|
@active-switch-color: #54595d;
|
|
@embed-dimensions-color: #72777d;
|
|
@textarea-text-color: #222;
|
|
|
|
.mw-mmv-reuse-pane {
|
|
.mw-mmv-embed-text-html,
|
|
.mw-mmv-embed-text-wikitext {
|
|
display: none;
|
|
width: auto;
|
|
|
|
&.active {
|
|
display: block;
|
|
}
|
|
|
|
// The selector has to be that deep and include [readonly] to override OOJS UI's definition
|
|
textarea[readonly] {
|
|
color: @textarea-text-color;
|
|
text-shadow: none;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-mmv-reuse-dialog .mw-mmv-embed-pane {
|
|
padding: 20px 27px;
|
|
|
|
.mw-mmv-embed-explanation {
|
|
margin: 10px 0 20px 0;
|
|
padding: 0;
|
|
}
|
|
|
|
p,
|
|
textarea {
|
|
margin: 0;
|
|
}
|
|
|
|
.mw-mmv-dialog-copy {
|
|
float: right;
|
|
width: 1em;
|
|
height: 1em;
|
|
margin: 10px 0.5em 20px 0;
|
|
padding: 0 0 0 5px;
|
|
}
|
|
}
|
|
|
|
.mw-mmv-embed-switch {
|
|
div {
|
|
padding: 1px 3px;
|
|
background-color: @switch-color;
|
|
|
|
&.active {
|
|
background-color: @active-switch-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-mmv-embed-size {
|
|
display: none;
|
|
margin: 10px 0 0 0;
|
|
|
|
&.active {
|
|
display: block;
|
|
}
|
|
|
|
.oo-ui-widget-disabled {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mw-mmv-embed-dimensions {
|
|
color: @embed-dimensions-color;
|
|
font-size: small;
|
|
|
|
.oo-ui-optionWidget-selected & {
|
|
color: lighten( @embed-dimensions-color, 20% ); // selected option has dark background
|
|
}
|
|
}
|