Style improvements, moved connection-related JavaScript code to own file.

This commit is contained in:
Michael Jumper
2011-11-08 12:28:46 -08:00
parent 67412b8666
commit 57a95042e2
3 changed files with 58 additions and 38 deletions

View File

@@ -177,14 +177,15 @@ div#connection-list-ui table tbody tr {
div#connection-list-ui table td {
padding: 0.25em;
text-align: center;
font-size: 0.9em;
}
div#connection-list-ui table td.name {
text-align: left;
}
div#connection-list-ui table tbody tr:nth-child(even) { background: #CCC; }
div#connection-list-ui table tbody tr:nth-child(odd) { background: #EEE; }
div#connection-list-ui table tbody tr:nth-child(even) { background: #CCC; }
div#connection-list-ui table tbody tr:nth-child(odd) { background: #EEE; }
div#connection-list-ui table td.description {
text-align: left;
@@ -205,8 +206,19 @@ div#connection-list-ui img {
vertical-align: middle;
}
div#logout {
padding: 0.5em;
div#logout-panel {
padding: 0.25em;
text-align: right;
float: right;
}
div#connection-list-ui a[href] {
text-decoration: none;
color: black;
font-weight: bold;
font-size: 0.9em;
}
div#connection-list-ui a[href]:hover {
text-decoration: underline;
}