mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Changed which elements had user-select: none so that people can copy the wikitext generated by the editor
This commit is contained in:
parent
f9fd3b1db2
commit
70d5beec71
|
@ -18,7 +18,6 @@
|
|||
margin: 1em 0;
|
||||
padding: 0;
|
||||
overflow-y: scroll;
|
||||
-webkit-user-select: none;
|
||||
background-color: white;
|
||||
}
|
||||
#es-base {
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
font-size: 1em; /* to look more like MediaWiki use: 0.8em */;
|
||||
margin-left: -1em;
|
||||
margin-right: -1em;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.es-surfaceView-textarea {
|
||||
|
|
|
@ -8,6 +8,11 @@
|
|||
background-image: url(../es/images/fade-up.png);
|
||||
background-position: bottom left;
|
||||
background-repeat: repeat-x;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select;
|
||||
user-select: none;
|
||||
}
|
||||
#es-toolbar.float {
|
||||
top: 0;
|
||||
|
|
Loading…
Reference in a new issue