diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-15 22:38:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-15 22:39:46 +0200 |
commit | cf359eb1008ae8bc22c7a8bd67e6862718e1351f (patch) | |
tree | 9d4cb0e693b5ee9ada621f5656e1fdfba3529030 /userContent | |
parent | af3663a95adb346b02efe09ae7e12c03c0a7277d (diff) | |
download | jenkins.debian.net-cf359eb1008ae8bc22c7a8bd67e6862718e1351f.tar.xz |
reproducible: use two css classes for tables
Diffstat (limited to 'userContent')
-rw-r--r-- | userContent/static/style.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/userContent/static/style.css b/userContent/static/style.css index 3325edaf..3f83a3a6 100644 --- a/userContent/static/style.css +++ b/userContent/static/style.css @@ -116,7 +116,6 @@ h3 { } table { - width: 100%; border: 1px solid #ddd; border-radius: 0.5em; border-collapse: collapse; @@ -124,6 +123,14 @@ table { padding: 0 } +table.head { + width: 100%; +} + +table.body { + margin: 0.75em 0.25em 0em 0em; +} + tr:nth-child(odd) { background-color: #fafafa; } |