diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-18 14:57:22 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:39 +0100 |
commit | 2251bab21f032ef8b3f3a1c7d2d977b163da6161 (patch) | |
tree | d44d039af1de41fc854f23612b217deb11951aae /play.html | |
parent | b57213961673547fa53b1148fe9537727359948d (diff) | |
download | nevsky-2251bab21f032ef8b3f3a1c7d2d977b163da6161.tar.gz |
"Bad" and "Select" action colors for Calendar service markers.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 49 |
1 files changed, 11 insertions, 38 deletions
@@ -951,44 +951,17 @@ body.shift .mustered_vassals { pointer-events: none; } -.service_marker.teutonic.lord.selected { - box-shadow: 0 0 0 1px #111, 0 0 0 3px yellow; -} - -.service_marker.russian.lord.selected { - box-shadow: 0 0 0 1px #555, 0 0 0 3px yellow; -} - -.service_marker.teutonic.vassal.selected { - box-shadow: 0 0 0 1px #0f0d0d, 0 0 0 3px yellow; -} - -.service_marker.russian.vassal.selected { - box-shadow: 0 0 0 1px #736e5e, 0 0 0 3px yellow; -} - -.service_marker.teutonic.lord.action { - box-shadow: 0 0 0 1px #111, 0 0 0 3px red; -} - -.service_marker.russian.lord.action { - box-shadow: 0 0 0 1px #555, 0 0 0 3px red; -} - -.service_marker.teutonic.vassal.action { - box-shadow: 0 0 0 1px #0f0d0d, 0 0 0 3px white; -} - -.service_marker.russian.vassal.action { - box-shadow: 0 0 0 1px #736e5e, 0 0 0 3px white; -} - -.service_marker.teutonic.lord.selected, -.service_marker.teutonic.vassal.selected, -.service_marker.russian.lord.selected, -.service_marker.russian.vassal.selected { - box-shadow: 0 0 0 3px yellow; -} +.service_marker.teutonic.lord.selected { box-shadow: 0 0 0 1px #111, 0 0 0 4px yellow; } +.service_marker.russian.lord.selected { box-shadow: 0 0 0 1px #555, 0 0 0 4px yellow; } +.service_marker.teutonic.lord.action { box-shadow: 0 0 0 1px #111, 0 0 0 4px white; } +.service_marker.russian.lord.action { box-shadow: 0 0 0 1px #555, 0 0 0 4px white; } +.service_marker.teutonic.lord.action.bad { box-shadow: 0 0 0 1px #111, 0 0 0 4px tomato; } +.service_marker.russian.lord.action.bad { box-shadow: 0 0 0 1px #555, 0 0 0 4px tomato; } + +.service_marker.teutonic.vassal.selected { box-shadow: 0 0 0 1px #0f0d0d, 0 0 0 4px yellow; } +.service_marker.russian.vassal.selected { box-shadow: 0 0 0 1px #736e5e, 0 0 0 4px yellow; } +.service_marker.teutonic.vassal.action { box-shadow: 0 0 0 1px #0f0d0d, 0 0 0 4px white; } +.service_marker.russian.vassal.action { box-shadow: 0 0 0 1px #736e5e, 0 0 0 4px white; } .service_marker.lord { background-size: 90px 252px } .service_marker.vassal { background-size: 270px 210px } |