blob: 88ec242ce6018bbef0d564e98178671d7ebc3bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
button.disposition-hostile {
background-color: shade(@orange_1, 1);
}
button:checked.disposition-hostile {
background-color: shade(@orange_1, 0.6);
}
button.disposition-friendly {
background-color: shade(@green_1, 1);
}
button:checked.disposition-friendly {
background-color: shade(@green_1, 0.6);
}
|