bug/loadimage-dump

This commit is contained in:
2025-03-26 18:37:05 +08:00
parent c69a6899cb
commit 8b8b70c671
28 changed files with 816 additions and 363 deletions

View File

@@ -284,3 +284,66 @@ QWidget#FrmUpload > QLabel#labTitle {
font-size: 30px;
}
QProgressBar {
border: 2px solid #3A3A3A;
border-radius: 5px;
background-color: #D3D3D3;
}
QProgressBar::chunk {
background-color: #1E90FF;
border-radius: 3px;
}
QCheckBox {
spacing: 0px;
padding: 0px;
margin: 0px;
}
QCheckBox::indicator {
width: 18px;
height: 18px;
}
QCheckBox::indicator:unchecked {
image: url(:/qrc/image/checkbox_unchecked.png)
}
QCheckBox::indicator:checked {
image: url(:/qrc/image/checkbox_checked.png)
}
QCheckBox::indicator:indeterminate {
image: url(:/qrc/image/checkbox_parcial.png)
}
QComboBox QAbstractItemView {
border-style: none;
border-radius: 10px;
outline: 0;
}
QComboBox QAbstractItemView::item {
padding: 0px;
margin: 0px;
border-style: none;
}
QComboBox QAbstractItemView::item:selected {
padding: 0px;
margin: 0px;
border-style: none;
color: black;
background-color: #F5F7FA;
}
QComboBox QAbstractItemView::item:hover {
padding: 0px;
margin: 0px;
background-color: #F5F7FA;
color: black;
border-style: none;
}