Merge "Improved the appearance of the warning at the top of the editor"

This commit is contained in:
Catrope 2012-04-17 20:36:44 +00:00 committed by Gerrit Code Review
commit fa9e02cfad
2 changed files with 23 additions and 2 deletions

View file

@ -1,5 +1,5 @@
<!-- VisualEditor Sandbox -->
<div id="es-warning" class="es-warning">This an experimental deployment of the current visual editor codebase. It is still highly unstable and should be expected to break at any time.
<div id="es-warning" class="es-warning">WARNING: This an experimental deployment of the current visual editor codebase. It is still highly unstable and should be expected to break at any time.
<a href="#" id="es-warning-dismiss">Dismiss</a></div>
<div id="es-docs" style="visibility: hidden">

View file

@ -257,4 +257,25 @@
text-align: center;
margin-bottom: 1em;
display: none;
border: solid 1px #ffbbbb;
padding: 0.5em 0.75em;
-webkit-border-radius: 0.25em;
-moz-border-radius: 0.25em;
-o-border-radius: 0.25em;
border-radius: 0.25em;
}
#es-warning-dismiss {
float: right;
color: white;
}
#es-warning-dismiss:hover {
text-decoration: none;
color: silver;
}
#es-warning-dismiss:after {
content: ' ✖';
color: black;
}