Files
zulip/zephyr/static/styles/activity.css
Keegan McAllister c256fcca15 activity: Right-align numeric columns
(imported from commit a09e961247a8747c96f23b8468c1a0dd5a4edbb8)
2012-12-05 11:42:09 -05:00

30 lines
486 B
CSS

.activity_head {
background-color: aliceblue;
}
.table td {
padding-top: 2px;
padding-bottom: 2px;
white-space: nowrap;
}
.table-striped tr.recently_active td {
background-color: #afa;
}
.table-striped tr.recently_active:nth-child(odd) td {
background-color: #9e9;
}
.table-striped tr.long_inactive td {
background-color: #faa;
}
.table-striped tr.long_inactive:nth-child(odd) td {
background-color: #e99;
}
td.number {
text-align: right;
}