mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-15 03:35:58 +00:00
3f692d9e15
* This patch convert .css to .less * Semantic changes are avoided, but there are minor tweaks such as capitalization and ordering. Change-Id: Iebff0f8e3d87bb792093a10d87f33540aca301d5
61 lines
940 B
Plaintext
61 lines
940 B
Plaintext
/**
|
|
* CSS for WikiEditor Dialogs jQuery plugin
|
|
*/
|
|
|
|
.wikiEditor-toolbar-dialog {
|
|
border: none;
|
|
|
|
.ui-dialog-content {
|
|
fieldset {
|
|
border: none !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
input[type=text] {
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-khtml-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input {
|
|
&[type="radio"],
|
|
&[type="checkbox"] {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui-dialog-titlebar-close {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
/* Put suggestions (default z-index 99) on top of dialogs (z-index 1002) */
|
|
div.suggestions {
|
|
z-index: 1099;
|
|
}
|
|
|
|
body {
|
|
.wikiEditor-toolbar-dialog {
|
|
.ui-dialog-titlebar-close {
|
|
right: 0.9em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.wikieditor-toolbar-field-wrapper {
|
|
padding: 0 0 25px 0;
|
|
}
|
|
|
|
.wikieditor-toolbar-floated-field-wrapper {
|
|
float: left;
|
|
margin-right: 2em;
|
|
}
|
|
|
|
.wikieditor-toolbar-dialog-hint {
|
|
color: #999999;
|
|
}
|