mediawiki-skins-Citizen/skinStyles/extensions/VisualEditor/ext.visualEditor.desktopArticleTarget.init.less
alistair3149 1d10b669a6
feat(VisualEditor): update VisualEditor styles
Redo VE styles for 1.39 properly by going through the source code.
Since VE is massive and complex, this might not cover all the use cases but
it should be better than the implementation before.
2023-02-06 17:42:46 -05:00

47 lines
887 B
Plaintext

/*
* Citizen
*
* SkinStyles for Extension:VisualEditor
* Module: ext.visualEditor.desktopArticleTarget.init
* Version: REL1_39 65d89c9
*
* Date: 2023-02-06
*/
.ve-activated {
/*
* Hide various unnessecary elements when VE is active
* - Edit buttons (as you can switch them in VE)
* - ToC button (does nothing in VE)
*/
#ca-ve-edit,
#ca-edit,
.citizen-toc__buttonCheckbox {
display: none;
}
// Body header should have a lower z-index than VE elements
.mw-body-header {
z-index: 1;
}
}
.ve-init-mw-desktopArticleTarget-toolbarPlaceholder {
&-bar {
border-bottom-color: var( --border-color-base );
box-shadow: none;
}
&-floating {
.ve-init-mw-desktopArticleTarget-toolbarPlaceholder-bar {
// z-index: 1;
background: var( --color-surface-0 );
}
}
}
// Reset .oo-ui-widget 14px font size hack
.ve-ui-surface.oo-ui-widget {
font-size: 1rem;
}