diff options
-rw-r--r-- | play.html | 2 | ||||
-rw-r--r-- | ui.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ .two .role_name { background-color: darkseagreen; } #turn_info { background-color: gainsboro; } -#log { background-color: ghostwhite; } +#log { background-color: whitesmoke; } #log .st { background-color: #246; color: white; font-weight: bold; } #log .F { background-color: khaki; } #log .S { background-color: darkseagreen; } @@ -67,7 +67,7 @@ create_log_entry = function (text) { else if (text.match(/^Start Saracen turn/)) p.className = 'S'; else if (text.match(/^Start /)) - p.className = 'st'; + p.className = 'st', text = text.replace(/\.$/, ""); else if (text.match(/^(Battle in)/)) p.className = 'bs'; |