Skip to content
Snippets Groups Projects
Commit 4539bb12 authored by Arkerthan's avatar Arkerthan
Browse files

Fix CSS styling for buttons in customizeSlaveTrade

parent 84ea454e
No related branches found
No related tags found
1 merge request!12360Fix CSS styling for buttons in customizeSlaveTrade
...@@ -25,40 +25,42 @@ ...@@ -25,40 +25,42 @@
} }
.plus-button { button.plus-button {
background: rgba(0, 139, 0, 0.2); background: rgba(0, 139, 0, 0.2);
border-color: rgba(0, 139, 0, 0.3); border-color: rgba(0, 139, 0, 0.3);
} }
.minus-button { button.minus-button {
background: rgba(184, 0, 0, 0.2); background: rgba(184, 0, 0, 0.2);
border-color: rgba(184, 0, 0, 0.3); border-color: rgba(184, 0, 0, 0.3);
} }
.zero-button { button.zero-button {
background: rgba(0, 0, 255, 0.2); background: rgba(0, 0, 255, 0.2);
border-color: rgba(0, 0, 255, 0.3); border-color: rgba(0, 0, 255, 0.3);
} }
.set-button {
button.set-button {
background: rgba(255, 210, 0, 0.2); background: rgba(255, 210, 0, 0.2);
border-color: rgba(255, 210, 0, 0.3); border-color: rgba(255, 210, 0, 0.3);
} }
.plus-button:hover { button.plus-button:hover {
background: rgba(0, 139, 0, 0.4); background: rgba(0, 139, 0, 0.4);
border-color: rgba(0, 139, 0, 0.3); border-color: rgba(0, 139, 0, 0.3);
} }
.minus-button:hover { button.minus-button:hover {
background: rgba(184, 0, 0, 0.4); background: rgba(184, 0, 0, 0.4);
border-color: rgba(184, 0, 0, 0.3); border-color: rgba(184, 0, 0, 0.3);
} }
.zero-button:hover { button.zero-button:hover {
background: rgba(0, 0, 255, 0.4); background: rgba(0, 0, 255, 0.4);
border-color: rgba(0, 0, 255, 0.3); border-color: rgba(0, 0, 255, 0.3);
} }
.set-button:hover {
button.set-button:hover {
background: rgba(255, 210, 0, 0.4); background: rgba(255, 210, 0, 0.4);
border-color: rgba(255, 210, 0, 0.3); border-color: rgba(255, 210, 0, 0.3);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment