mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-19 01:31:06 +00:00
2fc809dc17
Replaces hardcoded color hex values with their equivalent values from Codex, via the "mediawiki.skin.variables" system. Bug: T366197 Change-Id: Ia929a1a8d6351222acb454c8ec750e920ae6d072
86 lines
1.3 KiB
Plaintext
86 lines
1.3 KiB
Plaintext
/*!
|
|
* VisualEditor MediaWiki UserInterface MWMediaDialog styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
@import 'mediawiki.skin.variables.less';
|
|
|
|
.ve-ui-mwMediaDialog {
|
|
&-panel-imageinfo {
|
|
padding-top: 2em;
|
|
padding-left: 2em;
|
|
padding-right: 2em;
|
|
|
|
&-thumb {
|
|
text-align: center;
|
|
}
|
|
|
|
&-loadingthumb img {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
&-info {
|
|
padding: 1em 2em;
|
|
|
|
@media ( max-width: 400px ) {
|
|
padding: 1em 0;
|
|
}
|
|
}
|
|
|
|
&-main {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
&-portrait .ve-ui-mwMediaDialog-panel-imageinfo {
|
|
&-thumb img {
|
|
margin-bottom: 1em;
|
|
max-height: none;
|
|
}
|
|
|
|
&-thumb,
|
|
&-info {
|
|
float: left;
|
|
}
|
|
|
|
&-info {
|
|
padding-left: 2em;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
&-title {
|
|
font-size: 1.5em;
|
|
line-height: 1.5em;
|
|
margin-top: -0.2em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
&-details {
|
|
color: @color-subtle;
|
|
}
|
|
|
|
&-separator {
|
|
margin: 0 0.5em;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&-altText {
|
|
width: auto;
|
|
}
|
|
|
|
/* HACK: Override ooui specific 2em top margin */
|
|
&-caption-fieldset.oo-ui-labelElement.oo-ui-fieldsetLayout {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&-description-link {
|
|
font-size: 75%;
|
|
}
|
|
}
|
|
|
|
.mw-widget-mediaSearchWidget .oo-ui-searchWidget-results {
|
|
padding-right: 0;
|
|
}
|