Stylized the teacher bar preview

preferencesAboutTextFull
shibakaneki 13 years ago
parent 8cbd8a8a73
commit 81ed0c74c2
  1. 13
      resources/style.qss
  2. 6
      src/gui/UBTeacherBarWidget.cpp

@ -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;
}
}

Loading…
Cancel
Save