* switched to QGridLayout for wizzard content layouting * distinguish scrollable windows based on content * content can define window size * removed QtApplicationSettingsScreen, now done via QtProjectWizzardWindow and QtProjectWizzardContentPreferences * added new project icon
73 lines
1.2 KiB
CSS
73 lines
1.2 KiB
CSS
QtDirectoryListBox {
|
|
background-color: rgba(255, 255, 255, 200);
|
|
border: 1px solid lightgray;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
QListWidget {
|
|
background: transparent;
|
|
border: none;
|
|
margin: 2px 0 2px 0;
|
|
}
|
|
|
|
QListWidget::item {
|
|
height: 20px;
|
|
border-bottom: 1px solid lightgray;
|
|
}
|
|
|
|
QListWidget::item:selected {
|
|
background-color: #EEE;
|
|
}
|
|
|
|
QtListItemWidget #field {
|
|
background-color: transparent;
|
|
border: none;
|
|
font-size: 12px;
|
|
margin-top: 2px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
#bar {
|
|
border-top: 1px solid lightgray;
|
|
}
|
|
|
|
#plusButton, #minusButton, #dotsButton {
|
|
color: white;
|
|
height: 16px;
|
|
margin-right: 3px;
|
|
width: 16px;
|
|
border: none;
|
|
}
|
|
|
|
#dotsButton {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
#plusButton {
|
|
border-image: url(<setting:gui_path>setting_window/plus.png);
|
|
}
|
|
|
|
#plusButton:hover {
|
|
border-image: url(<setting:gui_path>setting_window/plus_hover.png);
|
|
}
|
|
|
|
#minusButton {
|
|
border-image: url(<setting:gui_path>setting_window/minus.png);
|
|
}
|
|
|
|
#minusButton:hover {
|
|
border-image: url(<setting:gui_path>setting_window/minus_hover.png);
|
|
}
|
|
|
|
#dotsButton {
|
|
border-image: url(<setting:gui_path>setting_window/dots.png);
|
|
}
|
|
|
|
#dotsButton:hover {
|
|
border-image: url(<setting:gui_path>setting_window/dots_hover.png);
|
|
}
|
|
|
|
#dropInfo {
|
|
color: lightgray;
|
|
}
|