mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
a1ba65cc31
Change-Id: I4b2ed55289be5dceee3e3fbdf305b4ff81d80189
240 lines
5.9 KiB
CSS
240 lines
5.9 KiB
CSS
/**
|
|
* VisualEditor initialization ViewPageTarget styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/* VisualEditor */
|
|
|
|
.ve-init-mw-viewPageTarget-pageTitle {
|
|
-webkit-transition: opacity 200ms ease-out;
|
|
-moz-transition: opacity 200ms ease-out;
|
|
-o-transition: opacity 200ms ease-out;
|
|
transition: opacity 200ms ease-out;
|
|
cursor: default;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-pageToc {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-loadingSpinner {
|
|
/* @embed */
|
|
background-image: url(images/loading.gif);
|
|
width: 128px;
|
|
height: 15px;
|
|
float: right;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-feedbackButton {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
vertical-align: top;
|
|
padding: 0.25em;
|
|
height: 22px;
|
|
margin-right: 0.25em;
|
|
border: solid 1px transparent;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-feedbackButton a {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
height: 32px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton {
|
|
display: inline-block;
|
|
border: solid 1px #c3e59a;
|
|
-webkit-border-radius: 0.25em;
|
|
-moz-border-radius: 0.25em;
|
|
-o-border-radius: 0.25em;
|
|
border-radius: 0.25em;
|
|
cursor: pointer;
|
|
vertical-align: top;
|
|
font-size: 1em;
|
|
padding: 0.25em 0.5em;
|
|
height: 22px;
|
|
margin-right: 0.25em;
|
|
/* Fancy CSS background */
|
|
background-image: -webkit-gradient(
|
|
linear,
|
|
left bottom,
|
|
left top,
|
|
color-stop(0, #c3e59a),
|
|
color-stop(1, #f0fbe1)
|
|
);
|
|
background-image: -webkit-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: -moz-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: -ms-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: -o-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton:before {
|
|
content: " ";
|
|
position: absolute;
|
|
display: block;
|
|
height: 22px;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton:hover {
|
|
border-color: #eee;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton:active,
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton-down {
|
|
border-color: #ddd;
|
|
-webkit-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
|
|
-moz-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
|
|
box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton-disabled {
|
|
filter: alpha(opacity=50);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton-label {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
height: 32px;
|
|
padding-left: 4px;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
/* mini save button */
|
|
.ve-init-mw-viewPageTarget-saveDialog-closeButton {
|
|
right: .025em;
|
|
width: 22px;
|
|
/* @embed */
|
|
background-image: url(../../../ui/styles/images/close.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
border: 1px solid #c3e59a;
|
|
margin-top: 10px;
|
|
right: 10px;
|
|
font-size: 1em;
|
|
padding: 0.5em 1em;
|
|
-webkit-border-radius: 0.25em;
|
|
-moz-border-radius: 0.25em;
|
|
-o-border-radius: 0.25em;
|
|
border-radius: 0.25em;
|
|
/* Fancy CSS background */
|
|
background-image: -webkit-gradient(
|
|
linear,
|
|
left bottom,
|
|
left top,
|
|
color-stop(0, #c3e59a),
|
|
color-stop(1, #f0fbe1)
|
|
);
|
|
background-image: -webkit-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: -moz-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: -ms-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: -o-linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
background-image: linear-gradient(bottom, #c3e59a 0%, #f0fbe1 100%);
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton:active,
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-down {
|
|
/* Fancy CSS background */
|
|
background-image: -webkit-gradient(
|
|
linear,
|
|
left bottom,
|
|
left top,
|
|
color-stop(0, #f0fbe1),
|
|
color-stop(1, #c3e59a)
|
|
);
|
|
background-image: -webkit-linear-gradient(bottom, #f0fbe1 0%, #c3e59a 100%);
|
|
background-image: -moz-linear-gradient(bottom, #f0fbe1 0%, #c3e59a 100%);
|
|
background-image: -ms-linear-gradient(bottom, #f0fbe1 0%, #c3e59a 100%);
|
|
background-image: -o-linear-gradient(bottom, #f0fbe1 0%, #c3e59a 100%);
|
|
background-image: linear-gradient(bottom, #f0fbe1 0%, #c3e59a 100%);
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton:hover {
|
|
border-color: #a7cd76;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-saving,
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-saving:hover {
|
|
background-color: #e6f2cc;
|
|
background-image: none;
|
|
color: #ccc;
|
|
border-color: #e3f0c6;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar-saveButton-icon,
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-icon {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
height: 2em;
|
|
width: 28px;
|
|
margin-right: -4px;
|
|
background: transparent;
|
|
/* @embed */
|
|
background-image: url(../../../ui/styles/images/accept-clear.png);
|
|
background-position: right top;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-label {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
height: 32px;
|
|
line-height: 2.125em;
|
|
padding-left: 4px;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-saving
|
|
.ve-init-mw-viewPageTarget-saveDialog-saveButton-icon {
|
|
/* @embed */
|
|
background-image: url(images/saving.gif);
|
|
background-position: right 46%;
|
|
}
|
|
|
|
/* Save dialog styles */
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog {
|
|
display: none;
|
|
top: 0.25em;
|
|
right: 0.5em;
|
|
width: 29em;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-body {
|
|
border-top: 1px solid #ddd;
|
|
padding: 10px 0;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-license {
|
|
font-size: 0.7em;
|
|
color: #999;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog-options {
|
|
float: left;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog input[type="text"] {
|
|
width: 98%;
|
|
font-size: 12px;
|
|
padding: 4px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-saveDialog input[type="checkbox"] {
|
|
margin-right: 5px;
|
|
}
|