mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-11 22:16:15 +00:00
ba0ca0f0e3
Using 'mediawiki.skin.variables.less' with Codex tokens now that it's available. Also removing a comment that's OOUI variable specific. Bug: T334934 Change-Id: Id697baa9537013c9e240dbfaa9ead1eb15280133
36 lines
709 B
Plaintext
36 lines
709 B
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
|
|
.ve-ui-mwTransclusionOutlineControlsWidget {
|
|
background-color: @background-color-base;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2.5em;
|
|
border-top: @border-width-base @border-style-base @border-color-subtle;
|
|
padding: 2px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: left;
|
|
|
|
&-items,
|
|
&-movers {
|
|
box-sizing: border-box;
|
|
|
|
> .oo-ui-buttonWidget.oo-ui-iconElement {
|
|
// Override OOUI defaults
|
|
margin-left: 4px;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
&-items > .oo-ui-buttonWidget:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
&-movers > .oo-ui-buttonWidget:nth-child( 2 ) {
|
|
// Move arrow controls closer together
|
|
margin-left: -4px;
|
|
}
|
|
}
|