mediawiki-skins-Citizen/skinStyles/extensions/VisualEditor/ext.visualEditor.desktopArticleTarget.init.less
alistair3149 03da361b97
feat(components): rewrite template data partials into CitizenComponent components (#846)
- Refactor existing template data-related partials into CitizenComponent components
- Re-implement user menu header as UserInfo
- Add description text for anon and temp user in UserMenu
---------

Co-authored-by: github-actions <github-actions@users.noreply.github.com>
2024-05-15 01:24:43 -04:00

47 lines
892 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
.citizen-page-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;
}