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:
parent
2190744a17
commit
00a1596c69
@ -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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user