Adjust color for edit action to $teal

This commit is contained in:
Jean-Baptiste Bellet
2023-09-14 10:50:14 +02:00
parent 241dbd1ded
commit a59c8adbbf
3 changed files with 8 additions and 8 deletions

View File

@@ -49,8 +49,8 @@ $color-btn-red-bg: $red !default;
$color-btn-red-hover-bg: $roof-terracotta !default;
// Actions colors
$color-action-edit-bg: very-light($color-success, 5 ) !default;
$color-action-edit-brd: very-light($color-success, 20 ) !default;
$color-action-edit-bg: very-light($teal) !default;
$color-action-edit-brd: #81B4BC !default;
$color-action-clone-bg: very-light($color-notice, 5 ) !default;
$color-action-clone-brd: very-light($color-notice, 15 ) !default;
$color-action-remove-bg: very-light($color-error, 5 ) !default;

View File

@@ -70,25 +70,25 @@
&.capture,
&.save,
&.add {
background-color: $color-success;
background-color: $teal;
&.n:before,
&.ne:before,
&.nw:before {
border-top-color: $color-success;
border-top-color: $teal;
}
&.e:before,
&.nw:before,
&.sw:before {
border-right-color: $color-success;
border-right-color: $teal;
}
&.s:before,
&.se:before,
&.sw:before {
border-bottom-color: $color-success;
border-bottom-color: $teal;
}
&.w:before {
border-left-color: $color-success;
border-left-color: $teal;
}
}
&.remove,

View File

@@ -99,7 +99,7 @@ table {
.icon-capture:hover,
.icon-ok:hover,
.icon-plus:hover {
background-color: $color-success;
background-color: $teal;
color: $white;
}
.icon-copy:hover {