mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-12-18 11:01:36 +00:00
1d20fd47a3
Bug: T380034 Change-Id: I041ae16f5916a51697aabd1a31d6f7fbc051b8e4
46 lines
604 B
Plaintext
46 lines
604 B
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;
|
|
}
|
|
}
|