diff options
author | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-06-02 21:29:22 -0500 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-06-04 06:39:48 +0200 |
commit | a21e560274a8c1be3944df93f54612bc02d66f02 (patch) | |
tree | 9f8c5033c3ad43799b894e6670a0447e0a06c9ff /help3xsl | |
parent | ac2e145b210aa8ab70ef3e2ea1c7a45bd964a43e (diff) |
Colored boxes for .note, .tip and .warning
Change-Id: I067100546ac669fa34e59cf9401796a4d166718f
Reviewed-on: https://gerrit.libreoffice.org/55239
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
(cherry picked from commit 94e09fd49d6b8803b481bde0693c5deb534d82d0)
Reviewed-on: https://gerrit.libreoffice.org/55259
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/default.css | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index 67b8c261e2..a4aa1f3a58 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -135,9 +135,20 @@ pre, display:flex; align-items: center; padding:0.3em; - box-shadow: rgba(0,0,0,0.1) 0px 1px 3px 0px; - border-bottom: 1px solid #E8E8E8; - background: #fefefe; + border-bottom: 1px solid rgba(0,0,0,0.05); + border-radius: 0 4px 4px 0; +} +.note { + border-left: 4px solid #FFE74C; + background-color: #FFFADE; +} +.tip { + border-left: 4px solid #38618C; + background-color: #DAE2EA; +} +.warning { + border-left: 4px solid #FF5964; + background-color: #FFE0E2; } .noteicon { padding:0.3em; |