Add padding css property for td and th

Currently, no margin in the table,
so add small margin to improve readability.

Change-Id: I25dc93686e45fdbc1522cded7ab413cc9d4bb0b8
This commit is contained in:
KATO Tomoyuki
2015-10-31 16:57:51 +09:00
parent 2190744a17
commit 00a1596c69

View File

@@ -1,11 +1,16 @@
html {
overflow-y: scroll; }
/* pad after a table. /* pad after a table.
* bug 1439918 */ * bug 1439918 */
table { table {
margin-bottom: 10px; margin-bottom: 10px; }
}
html { table.docutils th {
overflow-y: scroll; } padding: 2px; }
table.docutils td {
padding: 2px; }
hr { hr {
height: 1px !important; } height: 1px !important; }