194 lines
3.0 KiB
Plaintext
194 lines
3.0 KiB
Plaintext
.QWidget {
|
|
background-color: #F9F9F9;
|
|
}
|
|
|
|
/* Customize the toolbar. */
|
|
QToolBar {
|
|
border-image: url(qss/black/backgroundblack.png);
|
|
|
|
}
|
|
|
|
QToolButton {
|
|
color: white;
|
|
}
|
|
|
|
QPushButton {
|
|
color: white;
|
|
min-height: 22px;
|
|
|
|
}
|
|
|
|
|
|
QPushButton#ok_Button {
|
|
color: white;
|
|
min-height: 25px;
|
|
min-width: 77px;
|
|
}
|
|
|
|
QPushButton#help_Button {
|
|
|
|
min-height: 25px;
|
|
min-width: 77px;
|
|
}
|
|
|
|
QPushButton#cancel_Button {
|
|
|
|
min-height: 25px;
|
|
min-width: 77px;
|
|
}
|
|
|
|
QDialogButtonBox#buttonBox {
|
|
min-height: 25px;
|
|
min-width: 177px;
|
|
}
|
|
|
|
QPushButton
|
|
{
|
|
border-image: url(qss/black/button.png) ;
|
|
}
|
|
|
|
QPushButton:hover
|
|
{
|
|
border-image: url(qss/black/button_hover.png);
|
|
}
|
|
|
|
QPushButton:pressed
|
|
{
|
|
border-image: url(qss/black/button_pressedAndHover.png) ;
|
|
}
|
|
|
|
QPushButton:checked
|
|
{
|
|
border-image: url(qss/black/button_pressed.png) ;
|
|
}
|
|
|
|
QSplitter
|
|
{
|
|
background-color: #F9F9F9;
|
|
}
|
|
|
|
QLineEdit
|
|
{
|
|
border-image: url(qss/black/border.png) 4;
|
|
border-width: 3;
|
|
}
|
|
|
|
QLabel
|
|
{
|
|
color: #306090;
|
|
}
|
|
|
|
|
|
QGroupBox
|
|
{
|
|
color: #306090;
|
|
font: bold;
|
|
}
|
|
|
|
|
|
QRadioButton::indicator::unchecked {
|
|
image: url(qss/black/checkBox.png);
|
|
}
|
|
|
|
QRadioButton::indicator:unchecked:hover {
|
|
image: url(qss/black/checkBox_hover.png);
|
|
}
|
|
|
|
|
|
|
|
QRadioButton::indicator::checked {
|
|
image: url(qss/black/checkBox_selected.png);
|
|
}
|
|
|
|
QRadioButton::indicator:checked:hover {
|
|
image: url(qss/black/checkBox_hoverAndSelected.png);
|
|
}
|
|
|
|
|
|
QCheckBox::indicator:unchecked {
|
|
image: url(qss/black/checkBox.png);
|
|
}
|
|
|
|
QCheckBox::indicator:unchecked:hover {
|
|
image: url(qss/black/checkBox_hover.png);
|
|
}
|
|
|
|
|
|
QCheckBox::indicator:checked {
|
|
image: url(qss/black/checkBox_selected.png);
|
|
}
|
|
|
|
QCheckBox::indicator:checked:hover {
|
|
image: url(qss/black/checkBox_hoverAndSelected.png);
|
|
}
|
|
|
|
QMenu {
|
|
background-color: #F9F9F9;
|
|
|
|
}
|
|
|
|
|
|
QMenu::item {
|
|
/* sets background of menu item. set this to something non-transparent
|
|
if you want menu color and menu item color to be different */
|
|
background-color: transparent;
|
|
}
|
|
|
|
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
|
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
|
stop:0 #848D9B, stop:1 #394152);
|
|
}
|
|
|
|
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
|
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
|
stop:0 #848D9B, stop:1 #394152);
|
|
}
|
|
|
|
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
|
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
|
stop:0 #848D9B, stop:1 #394152);
|
|
}
|
|
|
|
QFrame#messengerframetop{
|
|
|
|
border-image: url(qss/black/backgroundblack.png);
|
|
|
|
}
|
|
|
|
QFrame#Chatbuttonframe{
|
|
|
|
border-image: url(qss/black/backgroundblack.png);
|
|
|
|
}
|
|
|
|
QLabel#subjectText{
|
|
font: bold 12px;
|
|
|
|
}
|
|
|
|
QLabel#subjectlabel{
|
|
font: bold 12px;
|
|
|
|
}
|
|
|
|
QLabel#fromlabel{
|
|
font: bold 12px;
|
|
|
|
}
|
|
|
|
QLabel#datelabel{
|
|
font: bold 12px;
|
|
|
|
}
|
|
|
|
QLabel#tolabel{
|
|
font: bold 12px;
|
|
|
|
}
|
|
|
|
QLabel#fromText{
|
|
font: bold ;
|
|
color: blue;
|
|
|
|
}
|
|
|