diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-11-16 10:00:39 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-11-28 10:53:51 +0100 |
commit | 49baef5df55850a72b9385f7ec2b9eb98486e48a (patch) | |
tree | 6b93f9c4a1ea4116a125f9b2f90d8321494206ee /help3xsl/default.css | |
parent | 949606895b8d46fb97b0bfcda25cfb04f1f61e32 (diff) |
tdf#121797 XHP extensions (Help part)
WIP. This is the Help part.
Extend the XML parser to include new incantations of the <paragraph>
tag, namely
<h1> to <h6>
<note>, <tip> and <warning>
Extension to the <item> tag:
<menuitem>, <input>, <literal>, <widget> and <keycode>
* removed test files
Change-Id: I2a473ee8772606f5e84bb02e651bccc6749598f4
Reviewed-on: https://gerrit.libreoffice.org/63954
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl/default.css')
-rw-r--r-- | help3xsl/default.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index e6a59ad8b8..285d1e9002 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -124,10 +124,23 @@ pre, border-top: 1px solid black; } .emph, -.menuitem, -.keycode { +.menuitem { font-weight: bold; } +.keycode { + /*font-weight: bold;*/ + font-family: Menlo, Consolas, "DejaVu Sans Mono", "Nimbus Mono L", "Lucida Sans Typewriter", "Courier New", Courier, Monaco, monospace; +} +.widget{ + padding: 1px 10px; + background: #f0f0f0; + background: linear-gradient(to bottom,#f0f0f0,#fcfcfc); + border-radius: 3px; + color: #303030; + border: 1px solid #a0a0a0; + border-bottom-width: 2px; + white-space: nowrap; +} /* div's for warning, tip and note */ .note, .tip, |