mediawiki-skins-Citizen/skinStyles/mediawiki/action/mediawiki.action.edit.styles.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

48 lines
907 B
Plaintext

/*
* Citizen
*
* SkinStyles for MediaWiki core
* Module: mediawiki.action.edit.styles.less
* Version: REL1_39 3baf9e1
*
* Date: 2022-11-08
*/
// Needed the specificity
.skin-citizen {
.mw-editform {
#wpTextbox1 {
padding: 0;
padding-bottom: var( --space-lg );
background-color: transparent;
border: 0;
&:focus {
outline: 0;
}
}
.editOptions {
padding: var( --space-lg );
font-size: var( --font-size-small );
color: var( --color-base );
background-color: var( --color-surface-2 );
border: 0;
border-radius: var( --border-radius--large );
}
#editpage-copywarn {
margin-top: var( --space-sm );
margin-bottom: var( --space-sm );
font-size: var( --font-size-x-small );
line-height: var( --line-height-sm );
color: var( --color-base--subtle );
}
}
}
// Disable sticky header
#citizen-page-header-sticky-sentinel {
display: none;
}