mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
beaa19dc91
The media dialog used a css hiding hack to make the panels work in the stack layout. The ooui change in Ibf7c99aa makes this hack not work and be unnecessary. This fix deletes it. Depends on ooui change Ibf7c99aa Change-Id: I57243f9e87c0fde90e069a311e22e96a5b207326
75 lines
1.6 KiB
CSS
75 lines
1.6 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWMediaDialog styles.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo {
|
|
padding-top: 2em;
|
|
padding-left: 2em;
|
|
padding-right: 2em;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-thumb {
|
|
text-align: center;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-loadingthumb img {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-info {
|
|
padding: 1em 2em;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-main {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-portrait .ve-ui-mwMediaDialog-panel-imageinfo-thumb img {
|
|
margin-bottom: 1em;
|
|
max-height: none;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-portrait .ve-ui-mwMediaDialog-panel-imageinfo-thumb,
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-portrait .ve-ui-mwMediaDialog-panel-imageinfo-info {
|
|
float: left;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-portrait .ve-ui-mwMediaDialog-panel-imageinfo-info {
|
|
padding-left: 2em;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-title {
|
|
font-size: 1.5em;
|
|
line-height: 1.5em;
|
|
margin-top: -0.2em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-details {
|
|
color: #666;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-panel-imageinfo-separator {
|
|
margin: 0 0.5em;
|
|
display: inline-block;
|
|
}
|
|
|
|
.ve-ui-mwMediaDialog-altText {
|
|
width: auto;
|
|
}
|
|
|
|
.ve-ui-mwMediaSearchWidget .oo-ui-searchWidget-results {
|
|
padding-right: 0;
|
|
}
|
|
|
|
/* HACK: Override ooui specific 2em top margin */
|
|
.ve-ui-mwMediaDialog-caption-fielset.oo-ui-labelElement.oo-ui-fieldsetLayout {
|
|
margin-top: 0;
|
|
}
|