From 3cc65866959eb1030e8a81b44a0de7a2dc5cc3c1 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 7 Mar 2022 13:03:59 +0100 Subject: [PATCH] Make table header font size the same as content --- changedetectionio/static/styles/styles.css | 4 ++-- changedetectionio/static/styles/styles.scss | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changedetectionio/static/styles/styles.css b/changedetectionio/static/styles/styles.css index 3a3459ec..9f626c9c 100644 --- a/changedetectionio/static/styles/styles.css +++ b/changedetectionio/static/styles/styles.css @@ -39,13 +39,13 @@ section.content { /* table related */ .watch-table { - width: 100%; } + width: 100%; + font-size: 80%; } .watch-table tr.unviewed { font-weight: bold; } .watch-table .error { color: #a00; } .watch-table td { - font-size: 80%; white-space: nowrap; } .watch-table td.title-col { word-break: break-all; diff --git a/changedetectionio/static/styles/styles.scss b/changedetectionio/static/styles/styles.scss index df393c4f..a5b88250 100644 --- a/changedetectionio/static/styles/styles.scss +++ b/changedetectionio/static/styles/styles.scss @@ -45,6 +45,7 @@ section.content { /* table related */ .watch-table { width: 100%; + font-size: 80%; tr.unviewed { font-weight: bold; @@ -55,7 +56,6 @@ section.content { } td { - font-size: 80%; white-space: nowrap; }