From 9c68c15c51bc601421780ec35f908b8fdaee36a1 Mon Sep 17 00:00:00 2001 From: saman bb Date: Sun, 20 Jan 2013 18:50:05 -0500 Subject: [PATCH] experiment with hiding UI during drawing. --- css/app.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/css/app.css b/css/app.css index 7bfad5293..f57611633 100644 --- a/css/app.css +++ b/css/app.css @@ -481,6 +481,21 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;} right:0; height:60px; border-radius: 0; + -webkit-transition: opacity .25s, z-index 0 0s; + -moz-transition: opacity .25s, z-index 0 0s; + transition: opacity .25s, z-index 0 0s; +} + +.mode-add-point #bar, +.mode-add-line #bar, +.mode-draw-line #bar, +.mode-draw-area #bar, +.mode-add-area #bar { + opacity:0; + z-index: -9999; + -webkit-transition: opacity .25s, z-index 0 .5s; + -moz-transition: opacity .25s, z-index 0 .5s; + transition: opacity .25s, z-index 0 .5s; } /* Inspector */