From 3c654c67e280612bf1ef803fb154ac62f51fd414 Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Fri, 1 Feb 2013 08:59:17 -0800 Subject: [PATCH] use background-color just in case --- src/packages/editor-stats/src/editor-stats-view.coffee | 2 +- src/packages/editor-stats/stylesheets/editor-stats.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/packages/editor-stats/src/editor-stats-view.coffee b/src/packages/editor-stats/src/editor-stats-view.coffee index 4132792c6..f3d56f4ba 100644 --- a/src/packages/editor-stats/src/editor-stats-view.coffee +++ b/src/packages/editor-stats/src/editor-stats-view.coffee @@ -37,7 +37,7 @@ class EditorStatsView extends ScrollView @command 'core:cancel', @detach @statusBar = @rootView.find('.status-bar') - @css 'background', @statusBar.css('background') + @css 'background', @statusBar.css('background-color') date = new Date(startDate) future = new Date(date.getTime() + (36e5 * hours)) diff --git a/src/packages/editor-stats/stylesheets/editor-stats.css b/src/packages/editor-stats/stylesheets/editor-stats.css index 781959197..a7d5e3ff2 100644 --- a/src/packages/editor-stats/stylesheets/editor-stats.css +++ b/src/packages/editor-stats/stylesheets/editor-stats.css @@ -2,6 +2,7 @@ padding: 5px; box-sizing: border-box; border-top: 1px solid rgba(255, 255, 255, 0.05); + z-index: 9999; } .editor-stats {