diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2019-03-10 10:57:34 +0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2019-03-10 19:22:22 +0100 |
commit | 54e3236790baca8a55d0bea3b1dd3e8de5ec5dd5 (patch) | |
tree | 09b8aac4732136f114a20b3304154eb4d384d9a7 /help3xsl/default.css | |
parent | 3013fcc8dd2ca6407c6bf17a36a34741d0c9c968 (diff) |
Show module & lang navigation on mobile
Module & languages menus were not shown on screen widths < 960.
Changed module & languages menu background to span the whole
width, when on mobile.
An arrow function was used in help2.js, which means it was broken
on IE.
Moved all src .js files to head and used defer for all.
Moved inline Piwik & system info JS into help2.js and added a
test for onlineness targeting the first meta element in the body.
Change-Id: Ic1a928b53ce9029f9f655117977cd511b7e3246d
Reviewed-on: https://gerrit.libreoffice.org/69005
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl/default.css')
-rw-r--r-- | help3xsl/default.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index 75798d2db0..5c68d41185 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -600,12 +600,16 @@ li.disabled a { } .modules { border-bottom: 2px solid #f3f3f3; + background-color: #233336; } .modules label:after, .lang label:after { font-size: 30px; color: #fff; content:"⌄"; } +.lang { + background-color: #233336; +} .lang label, .modules label { display: none; } @@ -796,6 +800,7 @@ li.disabled a { position: absolute; top: 0; left: 200px; + background-color: transparent; } .modules { width: 120px; @@ -803,6 +808,7 @@ li.disabled a { top: 0; left: 80px; border: none; + background-color: transparent; } #DisplayArea { box-shadow: 0 2px 8px 0 rgba(0,0,0,.05); |