mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-11 17:01:58 +00:00
dafd7515b3
Replaces hardcoded CSS colors with Codex design tokens for the purposes of improving dark-mode support. These changes resolves issues where text was illegible in dark-mode (white text on white background). Bug: T367362 Change-Id: I6314c8013839ac1e9a67178be7d1cb4bc45a3321
111 lines
1.6 KiB
Plaintext
111 lines
1.6 KiB
Plaintext
@import 'mediawiki.mixins';
|
|
@import 'mediawiki.skin.variables.less';
|
|
|
|
/*
|
|
* CSS for WikiEditor jQuery plugin
|
|
*/
|
|
|
|
.wikiEditor-ui {
|
|
position: relative;
|
|
clear: both;
|
|
width: 100%;
|
|
|
|
textarea {
|
|
width: 100%;
|
|
border: 0;
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
.wikiEditor-ui-clear {
|
|
clear: both;
|
|
}
|
|
|
|
.wikiEditor-ui-view {
|
|
border: @border-subtle;
|
|
}
|
|
|
|
.wikiEditor-ui-top {
|
|
position: relative;
|
|
border-bottom: @border-subtle;
|
|
}
|
|
|
|
.wikiEditor-ui-left {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
|
|
.wikiEditor-ui-right {
|
|
float: right;
|
|
background: @background-color-neutral-subtle;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.wikiEditor-wikitext {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
|
|
.wikiEditor-ui-controls {
|
|
float: left;
|
|
width: 100%;
|
|
background-color: @background-color-base;
|
|
}
|
|
|
|
.wikiEditor-ui-tabs {
|
|
float: left;
|
|
height: 2.5em;
|
|
margin-right: -1px;
|
|
background-color: @background-color-base;
|
|
border-left: @border-subtle;
|
|
border-top: @border-subtle;
|
|
|
|
div {
|
|
float: left;
|
|
height: 2.5em;
|
|
background-color: @background-color-interactive-subtle;
|
|
border-right: @border-subtle;
|
|
border-bottom: @border-subtle;
|
|
|
|
a {
|
|
display: inline-block;
|
|
padding: 0 0.75em;
|
|
line-height: 2.5em;
|
|
color: @color-progressive;
|
|
}
|
|
|
|
&.current {
|
|
border-bottom: 1px solid #fff;
|
|
background-color: @background-color-base;
|
|
|
|
a {
|
|
color: @color-base;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.wikiEditor-ui-buttons {
|
|
float: right;
|
|
height: 2.5em;
|
|
margin-right: -1px;
|
|
background-color: @background-color-base;
|
|
padding-left: 1em;
|
|
border-top: 1px solid #fff;
|
|
|
|
button {
|
|
margin-left: 0.5em;
|
|
}
|
|
}
|
|
|
|
.wikiEditor-view-wikitext {
|
|
line-height: 1em;
|
|
}
|