mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-11 14:06:19 +00:00
f1d4793862
Includes moving CSS that already moved from the TemplateDialog CSS file to the DialogLayout LESS file. Width and height had no effect. Neither on desktop/mobile. I guess the control's height covers for that. Float could be removed due to the flex layout. Some more specific rules could cover for the !important overrides. Change-Id: I7f22e4be37c8f227845aed97281faefe26241091
32 lines
634 B
Plaintext
32 lines
634 B
Plaintext
.ve-ui-mwTwoPaneTransclusionDialogLayout {
|
|
&-stackLayout {
|
|
/* We don't want anything to collapse left/right, so shouldn't use margin */
|
|
padding: 0 48px;
|
|
|
|
&.oo-ui-stackLayout-continuous > .oo-ui-panelLayout-scrollable {
|
|
// Override from PanelLayout; only the StackLayout must be scrollable
|
|
overflow: hidden;
|
|
}
|
|
|
|
> .oo-ui-panelLayout {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 48px 0 20px 0;
|
|
|
|
&:last-child {
|
|
margin-bottom: 48px;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .oo-ui-menuLayout-menu {
|
|
width: 240px;
|
|
// @border-dialog-bar
|
|
border-right: 1px solid #c8ccd1;
|
|
}
|
|
|
|
> .oo-ui-menuLayout-content {
|
|
left: 240px;
|
|
}
|
|
}
|