mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
reduce font size and space between chat lines
This commit is contained in:
parent
9e2195c03c
commit
200c6d30e9
|
@ -1,36 +1,36 @@
|
|||
div.name {
|
||||
color: @black;
|
||||
font: @bigBold;
|
||||
font: @mediumBold;
|
||||
}
|
||||
|
||||
div.message {
|
||||
color: @black;
|
||||
font: @big;
|
||||
font: @medium;
|
||||
}
|
||||
|
||||
div.action {
|
||||
color: #1818FF;
|
||||
font: @big;
|
||||
font: @medium;
|
||||
}
|
||||
|
||||
div.date {
|
||||
color: @black;
|
||||
font: @big;
|
||||
font: @medium;
|
||||
}
|
||||
|
||||
div.name_me {
|
||||
color: @mediumGrey;
|
||||
font: @big;
|
||||
font: @medium;
|
||||
}
|
||||
|
||||
div.message_me {
|
||||
color: @black;
|
||||
font: @big;
|
||||
font: @medium;
|
||||
}
|
||||
|
||||
div.date_me {
|
||||
color: @black;
|
||||
font: @big;
|
||||
font: @medium;
|
||||
}
|
||||
|
||||
span.quote {
|
||||
|
|
|
@ -38,7 +38,7 @@ ChatAreaWidget::ChatAreaWidget(QWidget *parent)
|
|||
setFrameStyle(QFrame::NoFrame);
|
||||
|
||||
QTextTableFormat tableFormat;
|
||||
tableFormat.setCellSpacing(15);
|
||||
tableFormat.setCellSpacing(5);
|
||||
tableFormat.setBorderStyle(QTextFrameFormat::BorderStyle_None);
|
||||
tableFormat.setColumnWidthConstraints({QTextLength(QTextLength::FixedLength,nameWidth),
|
||||
QTextLength(QTextLength::PercentageLength,100),
|
||||
|
|
Loading…
Reference in New Issue
Block a user