From c26d2158a1455e0b6ed6b853dd253a751aa555f2 Mon Sep 17 00:00:00 2001 From: Marc Bernard <59966492+mbtools@users.noreply.github.com> Date: Sat, 6 Feb 2021 03:39:03 -0500 Subject: [PATCH] Fix minor CSS issues (#4492) Fix the following issues to make it CSS3 compliant: - Font-style bold is not a font-style value - Family names containing whitespace should be quoted - Same color for background-color and border-color Co-authored-by: Lars Hvam --- src/ui/zabapgit_css_common.w3mi.data.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ui/zabapgit_css_common.w3mi.data.css b/src/ui/zabapgit_css_common.w3mi.data.css index 0b29de329..0b36f332a 100644 --- a/src/ui/zabapgit_css_common.w3mi.data.css +++ b/src/ui/zabapgit_css_common.w3mi.data.css @@ -209,7 +209,7 @@ span.transport-box { /* STATE BLOCK COMMON*/ span.state-block { margin-left: 1em; - font-family: Consolas, Lucida Console, Courier, monospace; + font-family: Consolas, "Lucida Console", Courier, monospace; font-size: x-small; vertical-align: 13%; display: inline-block; @@ -836,7 +836,7 @@ div.message-panel { } div.message-panel:hover .message-panel-commands { - display: block + display: block; } /* Tooltip text */ @@ -1146,7 +1146,7 @@ settings_tab tr:first-child td { border-top: 0px; } font-size: 14px; height: 2.5em; background-color: #ddd; - border: 1px solid #ddd; + border: 1px solid #ccc; padding: 0px 10px; } .dialog table tbody td { @@ -1181,7 +1181,7 @@ settings_tab tr:first-child td { border-top: 0px; } } .dialog fieldset legend { font-size: large; - font-style: bold; + font-weight: bold; padding-left: 0.5em; padding-right: 0.5em; }