* (bug 34445) section edit and TOC hide/show links are excluded from selection and...
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 16 Feb 2012 20:29:45 +0000 (20:29 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 16 Feb 2012 20:29:45 +0000 (20:29 +0000)
Tested on current Firefox, Chrome, Safari, Opera:
* Firefox excludes from select and copy
* Chrome, Safari exclude from select, but they turn up on the copy
* Opera doesn't seem to support the setting (event namespaced)
* IE not tested but 10 should support it if 9 doesn't

RELEASE-NOTES-1.20
skins/common/shared.css

index 8ed0ccb..bb894f8 100644 (file)
@@ -27,6 +27,8 @@ production.
 * (bug 32210) New edit emails for watched pages always provide a link to the
   edit which triggered the mail.
 * (bug 12021) Added user talk link on Special:Listusers
+* (bug 34445) section edit and TOC hide/show links are excluded from selection and
+  copy/paste on supporting browsers
 
 === API changes in 1.20 ===
 * (bug 34316) Add ability to retrieve maximum upload size from MediaWiki API.
index 819215b..a1dd376 100644 (file)
@@ -1038,3 +1038,10 @@ table.floatleft {
        position: absolute;
        z-index: 99;
 }
+
+.editsection, .toctoggle {
+    -moz-user-select: none;
+    -webkit-user-select: none;
+    -ms-user-select: none;
+    user-select: none;
+}