Commit 81ed0c74 authored by shibakaneki's avatar shibakaneki

Stylized the teacher bar preview

parent 8cbd8a8a
......@@ -44,14 +44,23 @@ QWidget#UBLibWebView
QWidget#UBActionPreviewOwner
{
color: #555555;
font-size : 10px;
font-weight:bold;
font-size : 12px;
font-weight: bold;
}
QWidget#UBTeacherBarPreviewComments
{
border-radius: 10px;
border: white 2px solid;
padding: 5px 5px 5px 5px;
background-color: white;
}
QWidget#UBActionPreviewContent
{
border-radius : 10px;
border: 2px solid;
padding: 5px 5px 5px 5px;
}
QWebView#SearchEngineView
......
......@@ -900,6 +900,7 @@ void UBTeacherBarPreviewWidget::hideElements()
mpCommentsLabel->setObjectName("UBTeacherBarPreviewSubtitle");
mpComments = new QLabel(this);
mpComments->setWordWrap(true);
mpComments->setObjectName("UBTeacherBarPreviewComments");
mpLinksLabel = new QLabel(tr("Links"), this);
mpLinksLabel->setObjectName("UBTeacherBarPreviewSubtitle");
......@@ -1032,6 +1033,7 @@ UBActionPreview::UBActionPreview(QWidget *parent, const char *name):QWidget(pare
mpContent->setObjectName("UBActionPreviewContent");
mpContent->setWordWrap(true);
mLayout.addWidget(mpContent);
setContentsMargins(-9, -9, -9, -9);
}
UBActionPreview::~UBActionPreview()
......@@ -1052,12 +1054,12 @@ void UBActionPreview::setOwner(const QString &owner)
switch(owner.toInt()){
case eActionOwner_Teacher:
mpOwner->setText(tr("Teacher"));
mpContent->setStyleSheet("background:lightblue;");
mpContent->setStyleSheet("background:lightblue; border:lightblue;");
break;
case eActionOwner_Student:
mpOwner->setText(tr("Student"));
mpContent->setStyleSheet("background:lightgreen;");
mpContent->setStyleSheet("background:lightgreen; border:lightgreen;");
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment