mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 08:36:52 +08:00
46 lines
493 B
CSS
46 lines
493 B
CSS
/** style sheet for content !!! **/
|
|
/** does not(!) affect text edit **/
|
|
/** http://doc.qt.io/qt-5/richtext-html-subset.html **/
|
|
|
|
table {
|
|
font-size: 8pt;
|
|
}
|
|
|
|
tr {
|
|
}
|
|
|
|
td {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
td.timestamp {
|
|
color: green;
|
|
}
|
|
|
|
td.recipient{
|
|
color: yellow;
|
|
}
|
|
|
|
.sent td.recipient{
|
|
color: blue;
|
|
}
|
|
|
|
.supervisor td.recipient{
|
|
background-color: red;
|
|
}
|
|
|
|
td.sender{
|
|
color: yellow;
|
|
}
|
|
|
|
.sent td.sender{
|
|
color: blue;
|
|
}
|
|
|
|
.supervisor td.sender{
|
|
background-color: red;
|
|
}
|
|
|
|
td.message{
|
|
}
|