Replace 'orange' class with 'red'

It was the same colour anyway
This commit is contained in:
David Cook
2023-12-14 10:03:18 +11:00
committed by drummer83
parent eb70eb4bc8
commit e9fe66748a
2 changed files with 1 additions and 27 deletions

View File

@@ -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}

View File

@@ -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;
}