From bb212688047cc84cbee86023bd49a52027f01a11 Mon Sep 17 00:00:00 2001 From: Martin Rivard Date: Sat, 20 Feb 2021 02:12:13 -0500 Subject: [PATCH] Fixes VChat HTML export text colours. (#7900) * Changes the CSS so that regular 'say' and 'me' actions are directly set to black text colour. * Changes debug info message CSS to also set to black text. * Adds inverted colours. --- code/modules/vchat/css/ss13styles.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/vchat/css/ss13styles.css b/code/modules/vchat/css/ss13styles.css index f5e6b468752..fd2ca74569c 100644 --- a/code/modules/vchat/css/ss13styles.css +++ b/code/modules/vchat/css/ss13styles.css @@ -120,8 +120,10 @@ body.inverted { /* Miscellaneous */ .name {font-weight: bold;} -.say {} -.emote {} +.say {color: #000000;} +.inverted .say {color: #FFFFFF;} +.emote {color: #000000;} +.inverted .emote {color: #FFFFFF;} .alert {color: #ff0000;} h1.alert, h2.alert {color: #000000;} .nif {} /* VOREStation Add */ @@ -212,7 +214,8 @@ img.icon.bigicon {max-height: 32px;} /* Debug Logs */ .debug_error {color:#FF0000; font-weight:bold} .debug_warning {color:#FF0000;} -.debug_info {} +.debug_info {color:#000000;} +.inverted .debug_info {color: #FFFFFF;} .debug_debug {color:#0000FF;} .debug_trace {color:#888888;}