mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
Improved the appearance of the warning at the top of the editor
Change-Id: I38e2295f38ab8be101dba2dca251ed27ae65e5c2
This commit is contained in:
parent
3e6e736cc0
commit
51b479f04f
|
@ -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">
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue