Skip to content
Snippets Groups Projects
Commit 0d5655d1 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fix' into 'pregmod-master'

Fix CSS styling for buttons in customizeSlaveTrade

See merge request !12360
parents 0d661f7d 4539bb12
No related branches found
No related tags found
1 merge request!12360Fix CSS styling for buttons in customizeSlaveTrade
Pipeline #95641 passed
...@@ -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