Move user status color to CSS, refactor ContactListCell

This commit is contained in:
2020-06-21 17:25:24 +02:00
parent d389637259
commit bb81ec6042
2 changed files with 28 additions and 26 deletions

View File

@ -12,3 +12,19 @@
-fx-opacity: 1;
-fx-background-color: transparent;
}
.online {
-fx-text-fill: limegreen;
}
.away {
-fx-text-fill: orangered;
}
.busy {
-fx-text-fill: red;
}
.offline {
-fx-text-fill: gray;
}