From 2fd6db5f46208a5aa8fa58d090f795e5b7eb99bb Mon Sep 17 00:00:00 2001 From: Nivesh Rajbhandari Date: Tue, 29 May 2012 10:35:06 -0700 Subject: Sped up user-interaction by moving grid drawing into its own canvas so the layout code doesn't have to be run when modifying selected elements. Signed-off-by: Nivesh Rajbhandari --- scss/imports/scss/_Stage.scss | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'scss/imports') diff --git a/scss/imports/scss/_Stage.scss b/scss/imports/scss/_Stage.scss index ed8d0656..39a98d82 100644 --- a/scss/imports/scss/_Stage.scss +++ b/scss/imports/scss/_Stage.scss @@ -140,7 +140,7 @@ padding: 0px; top: 0px; left: 0px; - z-index: 6; + z-index: 7; } @@ -151,10 +151,20 @@ padding: 0px; top: 0px; left: 0px; - z-index: 5; + z-index: 6; } .layoutCanvas { + position: absolute; + margin: 0px; + border: none; + padding: 0px; + top: 0px; + left: 0px; + z-index: 5; +} + +.gridCanvas { position: absolute; margin: 0px; border: none; -- cgit v1.2.3 From c52bf5141126801cb243ce0d4d93dbbcd29b45f6 Mon Sep 17 00:00:00 2001 From: Nivesh Rajbhandari Date: Fri, 8 Jun 2012 14:43:46 -0700 Subject: Removing iframeContainer scroll styles since the scrollbars are not drawn in the iframeContainer now. Signed-off-by: Nivesh Rajbhandari --- scss/imports/scss/_ScrollBars.scss | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) (limited to 'scss/imports') diff --git a/scss/imports/scss/_ScrollBars.scss b/scss/imports/scss/_ScrollBars.scss index 2e79d9c8..9fa2fcb8 100755 --- a/scss/imports/scss/_ScrollBars.scss +++ b/scss/imports/scss/_ScrollBars.scss @@ -131,7 +131,7 @@ } // These don't seem to be necessary or in some cases, they just seem to be ignored -:-webkit-scrollbar-track:vertical:disabled { +::-webkit-scrollbar-track:vertical:disabled { display: none; } @@ -151,29 +151,5 @@ display: none; } -#iframeContainer::-webkit-resizer:disabled { - display: block; -} - -#iframeContainer::-webkit-scrollbar-track:vertical:disabled { - display: block; -} - -#iframeContainer::-webkit-scrollbar-track:horizontal:disabled { - display: block; -} - -#iframeContainer::-webkit-scrollbar-track-piece:disabled { - display: block; -} - -#iframeContainer::-webkit-scrollbar-corner:disabled { - display: block; -} - -#iframeContainer::-webkit-resizer:disabled { - display: block; -} - // End: Scroll Bar Skinning -- cgit v1.2.3