mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
7b8e947acd
Allow for strings of whitespace characters to be displayed in chat messages without them being truncated. Original work by TheSpiritXIII.
42 lines
429 B
CSS
42 lines
429 B
CSS
p {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
p.msg {
|
|
color: @black;
|
|
font: @big;
|
|
}
|
|
|
|
p.action {
|
|
color: #1818FF;
|
|
font: @big;
|
|
}
|
|
|
|
p.typing {
|
|
color: @mediumGreyLight;
|
|
font: @big;
|
|
}
|
|
|
|
span.quote {
|
|
color: #279419;
|
|
}
|
|
|
|
p.alert {
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
color: @black;
|
|
background-color: @orange;
|
|
font: @big;
|
|
}
|
|
|
|
p.alert_name {
|
|
color: @black;
|
|
background-color: @orange;
|
|
font: @bigBold;
|
|
}
|
|
|
|
a {
|
|
color: blue;
|
|
}
|
|
|