Specify for edit, capture, ok and plus icons: background is always blue

The previously success color (which is green) is doesn't fit the v2 design
This commit is contained in:
Jean-Baptiste Bellet
2022-12-02 11:52:06 +01:00
parent 5f7f7c78b0
commit 3175f0f68c
2 changed files with 34 additions and 0 deletions

View File

@@ -71,6 +71,13 @@ table td.actions {
}
}
}
.icon-edit:hover,
.icon-capture:hover,
.icon-ok:hover,
.icon-plus:hover {
background-color: $v2-blue;
color: $color-1;
}
}
table#listing_orders {

View File

@@ -28,4 +28,31 @@
&.sw:before {
border-right-color: $v2-blue;
}
&.edit,
&.green,
&.capture,
&.save,
&.add {
background-color: $v2-blue;
&.n:before,
&.ne:before,
&.nw:before {
border-top-color: $v2-blue;
}
&.e:before,
&.nw:before,
&.sw:before {
border-right-color: $v2-blue;
}
&.s:before,
&.se:before,
&.sw:before {
border-bottom-color: $v2-blue;
}
&.w:before {
border-left-color: $v2-blue;
}
}
}