help3xsl/default.css |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

New commits:
commit c6cea6707879ad1c8f5bd11ff26b774f2e59b013
Author:     Adolfo Jayme Barrientos <fit...@ubuntu.com>
AuthorDate: Mon Jan 30 14:46:07 2023 -0600
Commit:     Adolfo Jayme Barrientos <fit...@ubuntu.com>
CommitDate: Mon Jan 30 14:46:07 2023 -0600

    tdf#142380 Use CSS variable for background color
    
    Change-Id: Ia70389ced5e8b698c034f9eec8cb4f030d27dd81

diff --git a/help3xsl/default.css b/help3xsl/default.css
index abf75f69c1..7ce0da75f3 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -31,6 +31,7 @@ do not break anything related to layout by scaling.
 :root {
   --font_mono: Menlo, "Cascadia Mono", "Cascadia Code", Consolas, "DejaVu Sans 
Mono", monospace;
   --font_body: Ubuntu, Cantarell, "Segoe UI Variable", "Segoe UI", "Noto 
Sans", "DejaVu Sans", "Lucida Grande", sans-serif, FreeSerif, NanumGothic, 
"Noto Sans Tibetan", Taprom;
+  --background-color: #f7f8f7;
 }
 
 body,
@@ -90,7 +91,7 @@ h6,
     pointer-events: auto;
 }
 body {
-    background-color: #F7F8F7;
+    background-color: var(--background-color);
     margin: 0;
     line-height: normal;
 }
@@ -400,10 +401,10 @@ h6 {
 }
 /* You Tube matters */
 .youtube_placeholder{
-    border: 1px solid #eee;
+    border: 1px dashed #eee;
     max-width:700px;
     padding: 10px;
-    background-color: #eee;
+    background-color: var(--background-color);
     text-align: center;
 }
 .youtube_button {

Reply via email to