From 1617493a9db77353a7c74d11af3498c919f05394 Mon Sep 17 00:00:00 2001 From: Diana Whitten Date: Tue, 22 Dec 2015 10:18:59 -0700 Subject: [PATCH] Clean up horizon.scss - _tables.scss A major part of the css reorg is a better organization of the css styles themselves. horizon.scss should be a global import level file. Move remaining tables classes out of horizon.scss Change-Id: I1d2b44eeaf365046b1265092f7819dc6c113cdb2 Partially-Implements: blueprint horizon-theme-css-reorg --- .../static/dashboard/scss/components/_tables.scss | 7 +++++-- openstack_dashboard/static/dashboard/scss/horizon.scss | 5 ----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/openstack_dashboard/static/dashboard/scss/components/_tables.scss b/openstack_dashboard/static/dashboard/scss/components/_tables.scss index a4cdf87099..e999ade146 100644 --- a/openstack_dashboard/static/dashboard/scss/components/_tables.scss +++ b/openstack_dashboard/static/dashboard/scss/components/_tables.scss @@ -28,8 +28,11 @@ } } - tr.terminated { - color: $gray-light; + tr { + &.deleted, + &.terminated { + color: $gray-light; + } } th.multi_select_column, td.multi_select_column { diff --git a/openstack_dashboard/static/dashboard/scss/horizon.scss b/openstack_dashboard/static/dashboard/scss/horizon.scss index 42f571808e..a3d0192500 100644 --- a/openstack_dashboard/static/dashboard/scss/horizon.scss +++ b/openstack_dashboard/static/dashboard/scss/horizon.scss @@ -112,11 +112,6 @@ a.current_item:hover h4 { } } -/* Tables */ -tr.deleted { - color: #999999; -} - #main_content { min-width: $main-content-min-width; }