Rename colour variables

This commit is contained in:
David Cook
2023-06-23 16:02:53 +10:00
parent 748cdaaa52
commit efcaab5deb
6 changed files with 105 additions and 94 deletions

View File

@@ -12,19 +12,19 @@
margin-top: 25px;
h1 {
color: $color-8;
color: $near-black;
}
.ofn-drop-down {
border: 0;
background-color: $spree-blue;
color: $color-1;
color: $white;
float: none;
margin-left: 3px;
&:hover,
&.expanded {
border: 0;
color: $color-1;
color: $white;
}
}
@@ -97,7 +97,7 @@
// Header
//---------------------------------------------------
#header {
background-color: $color-1;
background-color: $white;
padding: 5px 0;
}
@@ -107,14 +107,14 @@
.page-title {
i {
color: $color-2;
color: $green;
}
}
// Content
//---------------------------------------------------
#content {
background-color: $color-1;
background-color: $white;
position: relative;
z-index: 0;
padding: 0;

View File

@@ -44,7 +44,7 @@ table {
[class*="icon-"].no-text {
font-size: 120%;
background-color: very-light($color-3);
background-color: very-light($teal);
border: 1px solid $color-border;
border-radius: 15px;
width: 29px;
@@ -74,29 +74,29 @@ table {
padding-left: 0px;
&:hover {
background-color: $color-3;
color: $color-1;
background-color: $teal;
color: $white;
}
}
.icon-trash:hover,
.icon-void:hover {
background-color: $color-error;
color: $color-1;
color: $white;
}
.icon-cancel:hover {
background-color: $color-notice;
color: $color-1;
color: $white;
}
.icon-edit:hover,
.icon-capture:hover,
.icon-ok:hover,
.icon-plus:hover {
background-color: $color-success;
color: $color-1;
color: $white;
}
.icon-copy:hover {
background-color: $color-notice;
color: $color-1;
color: $white;
}
}
@@ -144,7 +144,7 @@ table {
}
&:hover td {
background-color: very-light($color-3, 5);
background-color: very-light($teal, 5);
img {
border: 1px solid $color-border;
@@ -157,7 +157,7 @@ table {
}
&.ui-sortable-placeholder td {
border: 1px solid $color-2 !important;
border: 1px solid $green !important;
visibility: visible !important;
&.actions {
@@ -165,7 +165,7 @@ table {
border-right: none !important;
border-top: none !important;
border-bottom: none !important;
border-left: 1px solid $color-2 !important;
border-left: 1px solid $green !important;
}
}
@@ -173,7 +173,7 @@ table {
width: 100%;
td {
background-color: lighten($color-3, 33);
background-color: lighten($teal, 33);
border-bottom: 1px solid $color-border;
&.actions {
@@ -189,15 +189,15 @@ table {
&.grand-total {
td {
border-color: $color-2 !important;
border-color: $green !important;
text-transform: uppercase;
font-size: 110%;
font-weight: 600;
background-color: lighten($color-2, 50);
background-color: lighten($green, 50);
}
.total {
background-color: $color-2;
color: $color-1;
background-color: $green;
color: $white;
}
}
}