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
1 changed files with 9 additions and 4 deletions

View File

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