Setting form style fix

This commit is contained in:
kradchen
2023-09-11 10:53:01 +08:00
parent 100dec7770
commit 99b862735b
2 changed files with 15 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ SettingFormWidget::SettingFormWidget(QWidget* aParent, Qt::WindowFlags f)
layout->setContentsMargins(0, 0, 0, 0); layout->setContentsMargins(0, 0, 0, 0);
ui->contentWidget->setObjectName("settingContentWidget"); ui->contentWidget->setObjectName("settingContentWidget");
QListWidget* widget = new QListWidget(ui->contentWidget); QListWidget* widget = new QListWidget(ui->contentWidget);
widget->setObjectName("LeftBtnBar");
widget->setFixedWidth(250); widget->setFixedWidth(250);
QStringList menus; QStringList menus;
menus << tr("General") << tr("Account") << tr("System") << tr("About") << tr("Operation Log"); menus << tr("General") << tr("Account") << tr("System") << tr("About") << tr("Operation Log");

View File

@@ -572,7 +572,7 @@ QLabel#protocolPanelTitle {
} }
QLabel#parameterTitle,#protocolTitle,#patientTitle{ QLabel#parameterTitle,#protocolTitle,#patientTitle{
font-size: 20px; font-size: 26px;
margin: 0; margin: 0;
border-bottom: 1px solid silver border-bottom: 1px solid silver
} }
@@ -833,6 +833,7 @@ ListBox {
qproperty-icon:url(":/icons/arrow-down.png"); qproperty-icon:url(":/icons/arrow-down.png");
} }
/*--------keyvboard------------------------------------------------------------*/
QWidget#KeyBoard QWidget { QWidget#KeyBoard QWidget {
background: #eff0f1; background: #eff0f1;
} }
@@ -987,3 +988,15 @@ QWidget#RadioButtonArea
{ {
border-bottom: 1px solid grey; border-bottom: 1px solid grey;
} }
/*-------LeftBtnBar-------------------------------------------------------------*/
QListView#LeftBtnBar::item
{
border:2px solid grey;
min-height: 50px;
max-height: 50px;
}
QWidget#settingContentWidget QWidget{
font-size:26px;
}