From: Brion Vibber Date: Thu, 16 Feb 2012 20:29:45 +0000 (+0000) Subject: * (bug 34445) section edit and TOC hide/show links are excluded from selection and... X-Git-Tag: 1.31.0-rc.0~24664 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=944848787933205abbcbf405c7be40c09f27c23f;p=lhc%2Fweb%2Fwiklou.git * (bug 34445) section edit and TOC hide/show links are excluded from selection and copy/paste on supporting browsers 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 --- diff --git a/RELEASE-NOTES-1.20 b/RELEASE-NOTES-1.20 index 8ed0ccb246..bb894f86e5 100644 --- a/RELEASE-NOTES-1.20 +++ b/RELEASE-NOTES-1.20 @@ -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. diff --git a/skins/common/shared.css b/skins/common/shared.css index 819215be1f..a1dd3765cb 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -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; +}