1
0
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:
dubslow 2014-10-06 03:21:47 -05:00
parent 9e2195c03c
commit 200c6d30e9
2 changed files with 8 additions and 8 deletions

View File

@ -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 {

View File

@ -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),