2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor user interface Inspector styles.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2011-12-09 01:28:44 +00:00
|
|
|
.es-inspector {
|
2012-06-20 01:20:28 +00:00
|
|
|
font-family: sans-serif;
|
2011-12-09 01:28:44 +00:00
|
|
|
position: absolute;
|
|
|
|
border: solid 1px #cccccc;
|
|
|
|
-webkit-border-radius: 0.25em;
|
|
|
|
-moz-border-radius: 0.25em;
|
|
|
|
-o-border-radius: 0.25em;
|
|
|
|
border-radius: 0.25em;
|
|
|
|
background-color: rgba(255,255,255,0.95);
|
|
|
|
-webkit-box-shadow: 0 0.25em 1em 0 rgba(0,0,0,0.25);
|
|
|
|
-moz-box-shadow: 0 0.25em 1em 0 rgba(0,0,0,0.25);
|
|
|
|
box-shadow: 0 0.25em 1em 0 rgba(0,0,0,0.25);
|
|
|
|
padding: 0.75em;
|
|
|
|
padding-top: 2.5em;
|
|
|
|
min-width: 15em;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
2011-12-09 23:04:55 +00:00
|
|
|
.es-inspector-button {
|
2011-12-09 01:28:44 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0.25em;
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: pointer;
|
2011-12-09 01:56:19 +00:00
|
|
|
-moz-opacity: 0.75;
|
|
|
|
filter:alpha(opacity=75);
|
|
|
|
opacity: 0.75;
|
2011-12-09 01:28:44 +00:00
|
|
|
}
|
|
|
|
|
2011-12-09 23:04:55 +00:00
|
|
|
.es-inspector-button:hover {
|
|
|
|
-moz-opacity: 1;
|
|
|
|
filter:alpha(opacity=100);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-inspector-button.es-inspector-button-disabled,
|
|
|
|
.es-inspector-button.es-inspector-button-disabled:hover {
|
|
|
|
-moz-opacity: 0.25;
|
|
|
|
filter:alpha(opacity=25);
|
|
|
|
opacity: 0.25;
|
|
|
|
}
|
2012-07-06 21:50:19 +00:00
|
|
|
|
|
|
|
.es-inspector-close-button {
|
2011-12-09 01:28:44 +00:00
|
|
|
right: 0.25em;
|
2012-02-06 23:50:56 +00:00
|
|
|
background-image: url(images/close.png);
|
2011-12-09 01:28:44 +00:00
|
|
|
}
|
|
|
|
|
2012-07-06 21:50:19 +00:00
|
|
|
.es-inspector-accept-button {
|
2011-12-09 01:28:44 +00:00
|
|
|
right: 2.25em;
|
2012-02-06 23:50:56 +00:00
|
|
|
background-image: url(images/accept.png);
|
2011-12-09 01:28:44 +00:00
|
|
|
}
|
|
|
|
|
2012-07-06 21:50:19 +00:00
|
|
|
.es-inspector-clear-button {
|
2011-12-09 23:04:55 +00:00
|
|
|
right: 4.25em;
|
2012-02-06 23:50:56 +00:00
|
|
|
background-image: url(images/clear.png);
|
2011-12-09 01:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.es-inspector form {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0.75em 0 0 0;
|
|
|
|
border-top: solid 1px #dddddd;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-inspector form input {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14em;
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-inspector form label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.es-inspector-title {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0.75em;
|
|
|
|
height: 2.5em;
|
|
|
|
line-height: 2.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #666666;
|
|
|
|
}
|