diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-02-11 14:52:28 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-02-15 12:18:30 +0100 |
commit | 87eb7db7edac63fb82f0f144d08a12c409609800 (patch) | |
tree | f8a6f8600a9f7909df07f640e2f09c9a6764a7f6 /views/chat.pug | |
parent | b967bfc72c54ceafe800e44568aa4fa20fabd675 (diff) | |
download | server-87eb7db7edac63fb82f0f144d08a12c409609800.tar.gz |
Add explicit thead/tbody/tfoot tags to tables.
Diffstat (limited to 'views/chat.pug')
-rw-r--r-- | views/chat.pug | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/chat.pug b/views/chat.pug index dfe6f25..15d99df 100644 --- a/views/chat.pug +++ b/views/chat.pug @@ -12,8 +12,8 @@ html table { border: 1px solid black; } td { border: none; } td a { text-decoration: none; color: black; } - tr { background-color: white; } - tr.me { background-color: aliceblue; } + tbody tr { background-color: white !important; } + tbody tr.me { background-color: aliceblue !important; } body include header article |