Merge "Allow page title heading to be selected while editor is active"

This commit is contained in:
jenkins-bot 2019-02-27 12:50:21 +00:00 committed by Gerrit Code Review
commit d17d9ae768

View file

@ -54,6 +54,17 @@
opacity: 0.5;
}
.ve-activated #firstHeading {
/* Override the styles above to allow the heading to be selected, because people enjoy
copy-pasting it. Overriding pointer-events is surprisingly not required, and not desirable,
because of section 0 edit links and other stuff inserted inside this element by gadgets,
which should remain inactive. */
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.ve-activated #catlinks {
cursor: pointer;
}