mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
2f8b3e0d96
Change-Id: Ie92dab7411116d3410195c3fb0a3513c664c0c30
78 lines
1.3 KiB
CSS
78 lines
1.3 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWSaveDialog styles.
|
|
*
|
|
* @copyright 2011-2015 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-savePanel {
|
|
/* Make room for input box shadow */
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary {
|
|
width: 100%;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-summary textarea {
|
|
display: block;
|
|
resize: none;
|
|
height: 4em;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-foot {
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.ve-ui-mwSaveDialog-options {
|
|
position: relative;
|
|
background-color: #f7f7f7;
|
|
border: solid 1px #ccc;
|
|
border-top: none;
|
|
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-license {
|
|
font-size: 0.85em;
|
|
line-height: 1.25em;
|
|
padding: 0;
|
|
margin: 0;
|
|
color: #999;
|
|
}
|