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:
Ed Sanders 2015-10-23 17:03:32 +01:00 committed by Esanders
parent bc5e827ffb
commit b222696675

View file

@ -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 {