mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 00:18:12 +00:00
For whatever reason, it makes it easier to compare the detail pages when they are full width, since each column is in a more or less consistent place every time. (imported from commit cba47ac1a370884c0397d26d6028248f0b9cc9d7)
35 lines
545 B
CSS
35 lines
545 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;
|
|
}
|
|
|
|
.summary-table {
|
|
width: auto;
|
|
margin: 0px auto;
|
|
}
|