From 3905d4f1660647748273825ee539939fdedcd055 Mon Sep 17 00:00:00 2001 From: William Daniau Date: Tue, 8 Oct 2019 22:41:46 +0200 Subject: [PATCH] =?UTF-8?q?Variables=20pour=20le=20soulign=C3=A9=20et=20ex?= =?UTF-8?q?emple=20comment=C3=A9=20pour=20la=20version=20stabilo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/html/common/zim-style.css | 4 ++-- templates/html/common/zim-variables.css | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/templates/html/common/zim-style.css b/templates/html/common/zim-style.css index 61b38a8..a9065c6 100644 --- a/templates/html/common/zim-style.css +++ b/templates/html/common/zim-style.css @@ -13,8 +13,8 @@ strike { color: var(--main-strike-color);} - u { text-decoration: underline; - /*background-color: white*/ } + u { text-decoration: var(--main-menu-u-decoration); + background-color: var(--main-menu-u-background-color);} tt { color: var(--main-tt-color); font-family: monospace; diff --git a/templates/html/common/zim-variables.css b/templates/html/common/zim-variables.css index 764bf4a..0436ff6 100644 --- a/templates/html/common/zim-variables.css +++ b/templates/html/common/zim-variables.css @@ -11,6 +11,13 @@ --main-code-color: saddlebrown; /* Code color (if hljs not used) */ --main-body-color: lightslategrey; /* Color of the background body */ --main-menu-background-color: #fafafa; /* Backroung color of side menu */ + /* Underline really underlined */ + --main-menu-u-decoration: underline; + --main-menu-u-background-color: white; + /* Underline Stabilo Version */ + /*--main-menu-u-decoration: none; + --main-menu-u-background-color: yellow;*/ + /* Tables */ /* Table headers */ -- 2.16.4