mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
f8720326b0
Change-Id: I195a0e4091cf2d003c325e9c653dd634e7096779
97 lines
1.8 KiB
CSS
97 lines
1.8 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWSaveDialog styles.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwSaveDialog-panel {
|
|
margin: 1.25em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summaryLabel {
|
|
padding: 0.25em 0;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary {
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border: solid 1px #ccc;
|
|
padding: 0.5em;
|
|
border-radius: 0.25em 0.25em 0 0;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary textarea {
|
|
margin: 0;
|
|
padding: 0;
|
|
resize: none;
|
|
height: 80px;
|
|
border: none;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary textarea:focus,
|
|
.ve-ui-mwSaveDialog-summary textarea:active {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-foot {
|
|
margin: 0.5em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-options {
|
|
position: relative;
|
|
background-color: #f7f7f7;
|
|
border: solid 1px #ccc;
|
|
border-top: none;
|
|
border-radius: 0 0 0.25em 0.25em;
|
|
min-height: 3em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-checkboxes {
|
|
margin-right: 3.25em; /* Hack to prevent overlap on edit summary count */
|
|
line-height: 3em;
|
|
padding: 0 0.75em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-checkboxes label {
|
|
padding-right: 0.75em;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-checkboxes input {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-editSummary-count {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
border-left: solid 1px #eee;
|
|
line-height: 3em;
|
|
padding: 0 1em;
|
|
color: #aaa;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-working {
|
|
display: none;
|
|
float: right;
|
|
height: 2.5em;
|
|
width: 128px;
|
|
margin-right: 1em;
|
|
background-position: right center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-license,
|
|
.ve-ui-mwSaveDialog-dirtymsg,
|
|
.ve-ui-mwSaveDialog-report-notice {
|
|
font-size: 0.85em;
|
|
line-height: 1.25em;
|
|
padding: 0;
|
|
margin: 0;
|
|
color: #999;
|
|
}
|