diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-09-29 13:46:17 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-09-29 13:46:17 -0400 |
| commit | 704fbb9156299cfa49fc9c514b641dd77423c121 (patch) | |
| tree | 90e9c0ac55a0e00d089828baff176d6a29826941 | |
| parent | a140d347c7e4e1a6c17ab117832056e3d7f7e512 (diff) | |
fix z-index on saving indicator
| -rw-r--r-- | public/assets/javascripts/rectangles/util/minotaur.js | 4 | ||||
| -rwxr-xr-x | public/assets/stylesheets/app.css | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/public/assets/javascripts/rectangles/util/minotaur.js b/public/assets/javascripts/rectangles/util/minotaur.js index e6a37e0..0fcc766 100644 --- a/public/assets/javascripts/rectangles/util/minotaur.js +++ b/public/assets/javascripts/rectangles/util/minotaur.js @@ -53,7 +53,9 @@ } base.hide = function () { - base.$el.removeClass() + setTimeout(function(){ + base.$el.removeClass() + }, 500) } base.init(); diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 17a7dc0..8712a41 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -652,7 +652,7 @@ iframe.embed { #minotaur { position: absolute; - top: 26px; + top: 25px; right: 260px; opacity: 0; } @@ -662,8 +662,11 @@ iframe.embed { font-weight: 300; } #minotaur.saving { - background: #8fd; + background: white; opacity: 1; + z-index: 20; + font-size: 13px; + border: 1px solid; } #minotaur.saving .label:after { content: 'SAVING'; |
