diff options
author | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-04-23 07:03:21 -0500 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2018-04-23 07:25:40 -0500 |
commit | e81f1e1ff611df348bf3fa627737b968831106cf (patch) | |
tree | 15bef771ed98a128e3addee0457875b4c45ff0cf /help3xsl | |
parent | b6dd08ef07f38d81928b595f3af43c2b8dd151e1 (diff) |
Helponline: Add some styling to the tables
Change-Id: Iafef063c594142efeec56b96b1e508da3ac0d8b7
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/default.css | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index c376844777..a31eea1c40 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -84,7 +84,7 @@ h6, pointer-events: auto; } body { - background-color: #FDFDFD; + background-color: #FCFCFC; margin: 0; line-height: normal; } @@ -116,15 +116,26 @@ pre, .keycode { font-weight: bold; } +table { + box-shadow: rgba(0,0,0,0.1) 0px 1px 3px 0px; + border-collapse: collapse; + background: #fefefe; +} +table, th, td { + border-top: 0; + border-bottom: 1px solid #E8E8E8; + border-left: 0; + border-right: 0; + padding: 0.3em; +} .tablehead, .tableheadintable { font-weight: bold; margin-top: 0px; - background: #CCF4C6; - text-align: center; } .tableheadcell { - background: #CCF4C6; + background: #18A303; + color: white; vertical-align:top; } |