Commit 3905d4f1660647748273825ee539939fdedcd055

Authored by William Daniau
1 parent 3e021ae7f3
Exists in master

Variables pour le souligné et exemple commenté pour la version stabilo

Showing 2 changed files with 9 additions and 2 deletions Side-by-side Diff

templates/html/common/zim-style.css
... ... @@ -13,8 +13,8 @@
13 13  
14 14 strike { color: var(--main-strike-color);}
15 15  
16   - u { text-decoration: underline;
17   - /*background-color: white*/ }
  16 + u { text-decoration: var(--main-menu-u-decoration);
  17 + background-color: var(--main-menu-u-background-color);}
18 18  
19 19 tt { color: var(--main-tt-color);
20 20 font-family: monospace;
templates/html/common/zim-variables.css
... ... @@ -11,6 +11,13 @@
11 11 --main-code-color: saddlebrown; /* Code color (if hljs not used) */
12 12 --main-body-color: lightslategrey; /* Color of the background body */
13 13 --main-menu-background-color: #fafafa; /* Backroung color of side menu */
  14 + /* Underline really underlined */
  15 + --main-menu-u-decoration: underline;
  16 + --main-menu-u-background-color: white;
  17 + /* Underline Stabilo Version */
  18 + /*--main-menu-u-decoration: none;
  19 + --main-menu-u-background-color: yellow;*/
  20 +
14 21  
15 22 /* Tables */
16 23 /* Table headers */