2013-07-03 01:30:10 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor MediaWiki UserInterface Dialog styles.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ve.ui.MWTransclusionDialog */
|
|
|
|
|
|
|
|
.ve-ui-mwTransclusionDialog-input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwTransclusionDialog-input textarea {
|
|
|
|
height: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwTransclusionDialog-addTemplateFieldset .ve-ui-widget {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2013-10-02 00:00:57 +00:00
|
|
|
.ve-ui-mwTransclusionDialog-addTemplateFieldset .ve-ui-pushButtonWidget {
|
2013-07-03 01:30:10 +00:00
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwTransclusionDialog-placeholder-label {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwTransclusionDialog-addParameterFieldset .ve-ui-mwParameterSearchWidget {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0 0 0.5em rgba(0,0,0,0.2);
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwTransclusionDialog-addParameterFieldset .ve-ui-searchWidget-results {
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ve.ui.MWMetaDialog */
|
|
|
|
|
|
|
|
.ve-ui-mwMetaDialog-languages-table {
|
|
|
|
margin: 2em 0 0 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwMetaDialog-languages-table th {
|
|
|
|
border-bottom: solid 1px #ddd;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwMetaDialog-languages-table th,
|
|
|
|
.ve-ui-mwMetaDialog-languages-table td {
|
|
|
|
padding: 0.75em 1em;
|
|
|
|
border-bottom: solid 1px white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwMetaDialog-languages-table tr td:first-child {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwMetaDialog-languages-table tr:nth-child(odd) td {
|
|
|
|
background: #F0F0F0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ui-mwMetaDialog-languages-table tr:nth-child(even) td {
|
|
|
|
background: #F8F8F8;
|
|
|
|
}
|
|
|
|
|
2013-08-01 20:18:33 +00:00
|
|
|
/* ve.ui.MWBetaWelcomeDialog */
|
|
|
|
|
|
|
|
.ve-ui-mwBetaWelcomeDialog-content {
|
2013-08-19 16:13:19 +00:00
|
|
|
line-height: 1.5em;
|
2013-08-01 20:18:33 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
2013-07-03 01:30:10 +00:00
|
|
|
/* ve.ui.MWMediaInsertDialog */
|
|
|
|
|
|
|
|
.ve-ui-mwMediaInsertDialog-select {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2013-10-07 10:01:43 +00:00
|
|
|
|
|
|
|
/* ve.ui.MWSaveDialog */
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|