From 81ed0c74c2fce88e0498acdacc8494468afa8360 Mon Sep 17 00:00:00 2001 From: shibakaneki Date: Mon, 9 Jan 2012 10:49:17 +0100 Subject: [PATCH] Stylized the teacher bar preview --- resources/style.qss | 13 +++++++++++-- src/gui/UBTeacherBarWidget.cpp | 6 ++++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/resources/style.qss b/resources/style.qss index 384ece67..e279c597 100644 --- a/resources/style.qss +++ b/resources/style.qss @@ -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 diff --git a/src/gui/UBTeacherBarWidget.cpp b/src/gui/UBTeacherBarWidget.cpp index 43c9859f..3b311908 100644 --- a/src/gui/UBTeacherBarWidget.cpp +++ b/src/gui/UBTeacherBarWidget.cpp @@ -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; } }