1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
@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;
}
|