mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
03da361b97
- 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>
47 lines
892 B
Plaintext
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;
|
|
}
|