mirror of https://github.com/zulip/zulip.git
activity.css: Replace RGB colors with HSL colors.
This commit is contained in:
parent
bd9459f27d
commit
7dd0ae33ad
|
@ -9,19 +9,19 @@
|
|||
}
|
||||
|
||||
.table-striped tr.recently_active td {
|
||||
background-color: #afa;
|
||||
background-color: hsl(120, 97%, 83%);
|
||||
}
|
||||
|
||||
.table-striped tr.recently_active:nth-child(odd) td {
|
||||
background-color: #9e9;
|
||||
background-color: hsl(120, 70%, 76%);
|
||||
}
|
||||
|
||||
.table-striped tr.long_inactive td {
|
||||
background-color: #faa;
|
||||
background-color: hsl(0, 97%, 83%);
|
||||
}
|
||||
|
||||
.table-striped tr.long_inactive:nth-child(odd) td {
|
||||
background-color: #e99;
|
||||
background-color: hsl(0, 70%, 76%);
|
||||
}
|
||||
|
||||
td.number {
|
||||
|
@ -41,10 +41,10 @@ tr.admin td:first-child {
|
|||
|
||||
.good {
|
||||
font-weight: bold;
|
||||
color: #0a0;
|
||||
color: hsl(120, 100%, 33%);
|
||||
}
|
||||
|
||||
.bad {
|
||||
font-weight: bold;
|
||||
color: #c00;
|
||||
color: hsl(0, 100%, 39%);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue