Changeset 87243 in vbox for trunk/src/VBox
- Timestamp:
- Jan 13, 2021 4:32:49 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.cpp
r87240 r87243 95 95 registerField("VCPUCount", this, "VCPUCount"); 96 96 97 m_pToolBox->setStyleSheet("QToolBox::tab:selected { font: bold; }"); 98 //m_pToolBox->setStyleSheet("QToolBox::tab:hover { font: bold; }"); 99 //qApp->setStyleSheet("QWidget#bla { background: blue; }"); 97 m_pToolBox->setStyleSheet(QString::fromUtf8("QToolBox::tab {\n" 98 " background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,\n" 99 " stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,\n" 100 " stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);\n" 101 " border-radius: 5px;\n" 102 " color: black;\n" 103 "}\n" 104 "\n" 105 "QToolBox::tab:selected {\n" 106 " font: bold;\n" 107 "}\n" 108 "\n" 109 "QToolBox::tab:hover {\n" 110 " font: bold;\n" 111 "}\n" 112 "QToolBox::tab:disabled {\n" 113 " font: italic;\n" 114 " color: gray;\n" 115 "}")); 116 100 117 if (m_pEnableUnattendedInstallCheckBox) 101 118 disableEnableUnattendedRelatedWidgets(m_pEnableUnattendedInstallCheckBox->isChecked());
Note:
See TracChangeset
for help on using the changeset viewer.