mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
54fc920622
* Fix focus and resize/scroll into view after the captcha has loaded (so after the image has loaded for FancyCaptch). * Add margin between input and captcha * Enable enter-to-submit on captch input field. * Unify code for simple/math/questy and correctly render math as HTML (by looking at the mime type) Change-Id: I10433cefbfea8569674c120dde5b489570e20966
96 lines
1.7 KiB
CSS
96 lines
1.7 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWSaveDialog styles.
|
|
*
|
|
* @copyright 2011-2017 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwSaveDialog-summaryLabel {
|
|
padding: 0.25em 0;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary {
|
|
width: 100%;
|
|
max-width: none;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary textarea {
|
|
height: 4em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-foot {
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-options {
|
|
position: relative;
|
|
background-color: #f8f9fa;
|
|
border: solid 1px #c8ccd1;
|
|
border-top: 0;
|
|
min-height: 3em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-checkboxes {
|
|
margin-right: 3.25em; /* Hack to prevent overlap on edit summary count */
|
|
padding: 0.7em 0.7em 0 0.7em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-checkboxes .oo-ui-fieldLayout {
|
|
display: inline-block;
|
|
margin: 0 1.5em 0 0;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-editSummary-count {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
border-left: solid 1px #eaecf0;
|
|
line-height: 3em;
|
|
padding: 0 1em;
|
|
color: #54595d;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-license {
|
|
font-size: 0.9em;
|
|
line-height: 1.4em;
|
|
padding: 0;
|
|
margin: 0;
|
|
color: #54595d;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-messages {
|
|
/* Make a top border that spans the whole width of the dialog */
|
|
margin: 0 -1.25em;
|
|
padding: 0 1.25em;
|
|
border-top: solid 1px rgba( 0, 0, 0, 0.2 );
|
|
/* Ew */
|
|
margin-top: 1em;
|
|
padding-top: 0.5em;
|
|
margin-bottom: -0.5em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-messages:empty {
|
|
display: none;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-reviewMode {
|
|
float: right;
|
|
margin: 0 0 0 1em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-viewer {
|
|
margin-top: 1em;
|
|
clear: both;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-no-changes {
|
|
color: #72777d;
|
|
font-style: italic;
|
|
}
|
|
|
|
.ve-ui-saveDialog-captchaInput {
|
|
margin-top: 0.5em;
|
|
}
|