mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-11 22:16:15 +00:00
a4dac831d9
Proof of concept: while flex is – well – flexible, it feels like this should be possible with some good old block containers and margins. It's pixel-perfect in my test. Bug: T288465 Change-Id: I1458900fff197e08ce318398524a3cf2b6b9ee2a
43 lines
1.2 KiB
CSS
43 lines
1.2 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface TemplatePage styles.
|
|
*
|
|
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwTemplatePage-more {
|
|
display: none;
|
|
margin: 2.25em 0 0.5em 0;
|
|
}
|
|
|
|
.ve-ui-mwTemplatePage:last-child .ve-ui-mwTemplatePage-more {
|
|
display: block;
|
|
}
|
|
|
|
.ve-ui-mwTemplatePage-description {
|
|
color: #54595d;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.ve-ui-mwTemplatePage-description-extra,
|
|
.ve-ui-mwTemplatePage-description-missing {
|
|
font-style: italic;
|
|
}
|
|
|
|
.ve-ui-mwTransclusionDialog-newSidebar .oo-ui-menuLayout-content > .oo-ui-bookletLayout-stackLayout {
|
|
/* Wo don't want anything to collapse left/right, so shouldn't use margin */
|
|
padding: 0 48px;
|
|
}
|
|
|
|
.ve-ui-mwTransclusionDialog-newSidebar .oo-ui-bookletLayout-stackLayout > .oo-ui-panelLayout,
|
|
.ve-ui-mwTransclusionDialog-newSidebar .ve-ui-mwTransclusionDialog-multipart-message {
|
|
/* This top/bottom margin is meant to collapse with the next one */
|
|
margin: 48px 0;
|
|
}
|
|
|
|
.ve-ui-mwTransclusionDialog-newSidebar .oo-ui-bookletLayout-stackLayout > .oo-ui-panelLayout,
|
|
.ve-ui-mwTransclusionDialog-newSidebar .ve-ui-mwParameterPage-info,
|
|
.ve-ui-mwTransclusionDialog-newSidebar .ve-ui-mwParameterPage-field {
|
|
padding: 0;
|
|
}
|