Trevor Parscal has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/146980

Change subject: Bring back global/local specific CSS classes
......................................................................

Bring back global/local specific CSS classes

This way we can target them individually.

Change-Id: I26782282d172d5ec3f484932157f4c67e3a19a91
---
M modules/ve/ui/ve.ui.Surface.js
1 file changed, 6 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/VisualEditor/VisualEditor 
refs/changes/80/146980/1

diff --git a/modules/ve/ui/ve.ui.Surface.js b/modules/ve/ui/ve.ui.Surface.js
index 95ed050..960b2c7 100644
--- a/modules/ve/ui/ve.ui.Surface.js
+++ b/modules/ve/ui/ve.ui.Surface.js
@@ -56,8 +56,12 @@
        this.$element
                .addClass( 've-ui-surface' )
                .append( this.view.$element );
-       this.localOverlay.$element.append( this.$blockers, this.$controls );
-       this.globalOverlay.$element.append( this.dialogs.$element );
+       this.localOverlay.$element
+               .addClass( 've-ui-surface-localOverlay' )
+               .append( this.$blockers, this.$controls );
+       this.globalOverlay.$element
+               .addClass( 've-ui-surface-globalOverlay' )
+               .append( this.dialogs.$element );
 
        // Make instance globally accessible for debugging
        ve.instances.push( this );

-- 
To view, visit https://gerrit.wikimedia.org/r/146980
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I26782282d172d5ec3f484932157f4c67e3a19a91
Gerrit-PatchSet: 1
Gerrit-Project: VisualEditor/VisualEditor
Gerrit-Branch: master
Gerrit-Owner: Trevor Parscal <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to