style: give table more space (#7560)

This commit is contained in:
Frédéric Péters 2015-06-13 20:45:24 +02:00
parent 9c631e6718
commit d13f30948a
1 changed files with 8 additions and 3 deletions

View File

@ -234,15 +234,21 @@ div#appbar a {
table.main {
width: 100%;
border: 1px solid #bcbcbc;
border-collapse: collapse;
}
table.main th {
font-weight: normal;
border-bottom: 1px solid #888;
padding: 1em 1ex;
border-bottom: 1px solid #bcbcbc;
background: #FCFCFC;
}
table.main td {
text-align: center;
padding: 1em 1ex;
border-bottom: 1px solid #bcbcbc;
}
table.main tr td.checkbox {
@ -250,11 +256,10 @@ table.main tr td.checkbox {
}
table.main tr:nth-child(odd) td {
background: #eee;
}
table.main tr:hover td {
background: #ccf;
background: #ccc;
cursor: pointer;
}