mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-26 15:24:22 +00:00
ba825daa9a
* Update variables.less * Update cssvariables.less * Update content.body.less * Update mediawiki.special.changeslist.less * Update mediawiki.special.changeslist.less * Update ext.scribunto.edit.less * Update ext.echo.ui.less * Create mediawiki.interface.helpers.styles.less * Update skin.json * Update oojs-ui-core.less * Update oojs-ui-core.less * Update variables.less * Update cssvariables.less * Update variables.less * Update mediawiki.special.changeslist.less * Update cssvariables.less * Update variables.less * Update variables.less * Update README.md * Update README.md * Update mediawiki.special.changeslist.less
113 lines
2.2 KiB
Plaintext
113 lines
2.2 KiB
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Extension:Scribunto
|
|
* Module: ext.scribunto.edit
|
|
* Version: REL1_39 ebb91f2
|
|
*
|
|
* Date: 2023-05-29
|
|
*/
|
|
|
|
.mw-scribunto-console-fieldset {
|
|
color: var( --color-base );
|
|
font-size: 0.875rem;
|
|
|
|
input[ type='button' ] {
|
|
width: 100%;
|
|
padding: var( --space-xs ) var( --space-sm );
|
|
border-top: 0;
|
|
border-bottom-left-radius: var( --border-radius--small );
|
|
border-bottom-right-radius: var( --border-radius--small );
|
|
cursor: pointer;
|
|
font-weight: var( --font-weight-semibold );
|
|
|
|
&:hover {
|
|
background: var( --color-surface-2--hover );
|
|
}
|
|
|
|
&:active {
|
|
background: var( --color-surface-2--active );
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-scribunto-console-fieldset,
|
|
.mw-scribunto-input,
|
|
.mw-scribunto-normalOutput,
|
|
.mw-scribunto-print,
|
|
.mw-scribunto-message,
|
|
.mw-scribunto-error,
|
|
.mw-scribunto-propList,
|
|
.mw-scribunto-tabcomplete,
|
|
.mw-scribunto-clear {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.mw-scribunto-message {
|
|
color: var( --color-base--subtle );
|
|
}
|
|
|
|
.mw-scribunto-message + div {
|
|
padding-top: var( --space-sm );
|
|
border-top: 1px solid var( --border-color-base );
|
|
}
|
|
|
|
#mw-scribunto-input {
|
|
border: 1px solid var( --border-color-base );
|
|
background-color: transparent;
|
|
border-top-left-radius: var( --border-radius--small );
|
|
border-top-right-radius: var( --border-radius--small );
|
|
color: var( --color-base--emphasized );
|
|
|
|
&:hover {
|
|
border-color: var( --color-primary--hover );
|
|
}
|
|
|
|
&:focus {
|
|
border-color: var( --color-primary );
|
|
box-shadow: inset 0 0 0 1px var( --color-primary );
|
|
outline: 1px solid transparent;
|
|
}
|
|
}
|
|
|
|
.mw-scribunto-input {
|
|
display: block;
|
|
margin-top: var( --space-md );
|
|
color: var( --color-base--emphasized );
|
|
font-weight: normal;
|
|
|
|
// Fake terminal input indicator
|
|
&:not( #mw-scribunto-input )::before {
|
|
color: var( --color-base--subtle );
|
|
content: '> ';
|
|
}
|
|
}
|
|
|
|
#mw-scribunto-output p {
|
|
margin: 0;
|
|
}
|
|
|
|
.mw-scribunto-normalOutput {
|
|
color: var( --color-base );
|
|
}
|
|
|
|
.mw-scribunto-print {
|
|
color: var( --color-syntax-brown );
|
|
}
|
|
|
|
.mw-scribunto-error {
|
|
color: var( --color-text-error );
|
|
}
|
|
|
|
.mw-scribunto-clear {
|
|
color: var( --color-syntax-red );
|
|
}
|
|
|
|
.mw-scribunto-propList {
|
|
color: var( --color-syntax-green );
|
|
}
|
|
|
|
.mw-scribunto-tabcomplete {
|
|
color: var( --color-syntax-violet );
|
|
}
|