2016-12-09 13:21:02 +00:00
|
|
|
@import 'mediawiki.mixins';
|
2016-02-27 22:39:07 +00:00
|
|
|
|
|
|
|
.group-codeeditor-format,
|
|
|
|
.group-codeeditor-style,
|
|
|
|
.codeEditor-ui-toolbar .group-insert,
|
|
|
|
.codeEditor-ui-toolbar .group-format,
|
|
|
|
.codeEditor-ui-toolbar .tabs span.tab-advanced,
|
|
|
|
.codeEditor-ui-toolbar .tabs span.tab-characters,
|
|
|
|
.codeEditor-ui-toolbar .tabs span.tab-help,
|
|
|
|
.codeEditor-ui-toolbar .sections {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codeEditor-ui-toolbar .group-codeeditor-format,
|
|
|
|
.codeEditor-ui-toolbar .group-codeeditor-style {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-01-04 12:04:01 +00:00
|
|
|
.wikiEditor-ui .ace_editor {
|
|
|
|
/* Same as mw-editfont-monospace, repeated for higher specificity */
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
}
|
|
|
|
|
2016-02-27 22:39:07 +00:00
|
|
|
.wikiEditor-ui-toolbar .group-codeeditor-style {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-02 16:14:21 +00:00
|
|
|
.ace_editor textarea,
|
|
|
|
.ace_editor input {
|
|
|
|
/* Inherit directionality from editor, not sitedir (T186329) */
|
|
|
|
direction: inherit;
|
|
|
|
}
|
|
|
|
|
2016-02-27 22:39:07 +00:00
|
|
|
.codeEditor-status {
|
|
|
|
clear: both;
|
|
|
|
width: 100%;
|
2017-03-16 02:21:07 +00:00
|
|
|
background-color: #f8f9fa;
|
|
|
|
border-top: 1px solid #c8ccd1;
|
2016-02-27 22:39:07 +00:00
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codeEditor-status .codeEditor-status-worker-cell.ace_gutter-cell {
|
2020-04-14 12:14:48 +00:00
|
|
|
position: relative;
|
2016-02-27 22:39:07 +00:00
|
|
|
background-position: 0 center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codeEditor-status-worker {
|
|
|
|
padding: 0 0.3em;
|
|
|
|
user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codeEditor-status-message {
|
2017-03-16 02:21:07 +00:00
|
|
|
border-left: 1px solid #c8ccd1;
|
|
|
|
border-right: 1px solid #c8ccd1;
|
2016-02-27 22:39:07 +00:00
|
|
|
padding: 0 0.3em;
|
|
|
|
width: 100%;
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codeEditor-status-line {
|
|
|
|
padding: 0 0.3em;
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: table-cell;
|
|
|
|
}
|
2017-08-24 20:31:09 +00:00
|
|
|
|
|
|
|
/* Hide vanilla MediaWiki's "Editing help" link, as we provide it in the toolbar */
|
|
|
|
/* Copied from the same code in WikiEditor */
|
|
|
|
.client-js .editButtons {
|
2018-01-10 22:29:04 +00:00
|
|
|
.editHelp {
|
2017-08-24 20:31:09 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|