Skip to content
Snippets Groups Projects

Fix CSS styling for buttons in customizeSlaveTrade

Merged Arkerthan requested to merge Arkerthan/fc-pregmod:fix into pregmod-master
1 file
+ 10
8
Compare changes
  • Side-by-side
  • Inline
@@ -25,40 +25,42 @@
}
.plus-button {
button.plus-button {
background: rgba(0, 139, 0, 0.2);
border-color: rgba(0, 139, 0, 0.3);
}
.minus-button {
button.minus-button {
background: rgba(184, 0, 0, 0.2);
border-color: rgba(184, 0, 0, 0.3);
}
.zero-button {
button.zero-button {
background: rgba(0, 0, 255, 0.2);
border-color: rgba(0, 0, 255, 0.3);
}
.set-button {
button.set-button {
background: rgba(255, 210, 0, 0.2);
border-color: rgba(255, 210, 0, 0.3);
}
.plus-button:hover {
button.plus-button:hover {
background: rgba(0, 139, 0, 0.4);
border-color: rgba(0, 139, 0, 0.3);
}
.minus-button:hover {
button.minus-button:hover {
background: rgba(184, 0, 0, 0.4);
border-color: rgba(184, 0, 0, 0.3);
}
.zero-button:hover {
button.zero-button:hover {
background: rgba(0, 0, 255, 0.4);
border-color: rgba(0, 0, 255, 0.3);
}
.set-button:hover {
button.set-button:hover {
background: rgba(255, 210, 0, 0.4);
border-color: rgba(255, 210, 0, 0.3);
}
Loading