blob: d26a9ba7070b4acb76ad7a26505d1d0cb6f78ee7 (
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.8);
}
button.disposition-friendly {
background-color: shade(@green_1, 1);
}
button:checked.disposition-friendly {
background-color: shade(@green_1, 0.8);
}
|