mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
DesktopTarget: Fix opacity of #siteSub and #contentSub
siteSub and contentSub are both children of bodyContent so no need to give them opacity directly. Bonus: Make them user-select:none to avoid confusion as they are in the edit area. Bug: T116755 Change-Id: Iea4c35abc1eedb892e02c54b61e40726fa2b096e
This commit is contained in:
parent
bc5e827ffb
commit
b222696675
|
@ -38,11 +38,13 @@
|
|||
}
|
||||
|
||||
.ve-activated #bodyContent,
|
||||
.ve-activated #firstHeading,
|
||||
.ve-activated #siteSub,
|
||||
.ve-activated #contentSub {
|
||||
.ve-activated #firstHeading {
|
||||
opacity: 0.6;
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.ve-activated #firstHeading {
|
||||
|
|
Loading…
Reference in a new issue