diff --git a/app/views/spree/admin/overview/_order_cycles.html.haml b/app/views/spree/admin/overview/_order_cycles.html.haml index 3d26daa37f..8ce3ff3d73 100644 --- a/app/views/spree/admin/overview/_order_cycles.html.haml +++ b/app/views/spree/admin/overview/_order_cycles.html.haml @@ -1,4 +1,4 @@ -- color_class = @order_cycle_count > 0 ? "blue" : "orange" +- color_class = @order_cycle_count > 0 ? "blue" : "red" - icon_class = @order_cycle_count > 0 ? "icon-ok-sign" : "icon-warning-sign" %div.dashboard_item.seven.columns.omega#order_cycles %div.header.sixteen.columns.alpha{class: color_class} diff --git a/app/webpacker/css/admin_v3/dashboard/dashboard_item.scss b/app/webpacker/css/admin_v3/dashboard/dashboard_item.scss index 3316704ef1..17fd5c8015 100644 --- a/app/webpacker/css/admin_v3/dashboard/dashboard_item.scss +++ b/app/webpacker/css/admin_v3/dashboard/dashboard_item.scss @@ -21,10 +21,6 @@ div.dashboard_item { &.red { background-color: $color-warning; } - - &.orange { - background-color: $color-warning; - } } div.header { @@ -48,15 +44,6 @@ div.dashboard_item { } } - &.orange { - border-color: $color-warning; - border-width: 3px; - - h3 { - color: $color-warning; - } - } - h3.alpha { height: 100%; padding: 10px 5px 0px 3%; @@ -156,18 +143,9 @@ div.dashboard_item { font-size: 30px; } - &.orange { - color: $color-warning; - border: solid $color-warning; - } - &.red { color: $color-warning; border: solid $color-warning; - } - - &.orange, - &.red { border-width: 0px 3px 0px 3px; } @@ -217,10 +195,6 @@ div.dashboard_item { font-weight: bold; text-align: center; - &.orange { - background-color: $color-warning; - } - &.blue { background-color: $spree-blue; }