Line numbers on blob pages

This commit is contained in:
Eivind Uggedal
2015-12-10 22:24:18 +00:00
committed by Hiltjo Posthuma
parent 3f77fb211d
commit 0a4451bc15
2 changed files with 38 additions and 6 deletions

View File

@@ -21,6 +21,15 @@ a:hover {
text-decoration: underline;
}
#blob a {
color: #777;
}
#blob a:hover {
color: blue;
text-decoration: none;
}
table thead td {
font-weight: bold;
}
@@ -29,10 +38,14 @@ table td {
padding: 0 0.4em;
}
#content table tr:hover td {
#log tr:hover td, #files tr:hover td {
background-color: #eee;
}
td.num {
text-align: right;
}
.desc {
color: #777;
}