Коррекция pushButton

This commit is contained in:
2025-09-15 13:31:49 +03:00
parent 8c3e636d27
commit bffbd0fe81
14 changed files with 245 additions and 258 deletions

View File

@@ -73,6 +73,7 @@ QPushButton, QToolButton {
}
QPushButton {
height: 25px;
width: 75px;
}
QToolButton {
width: 180px;
@@ -89,7 +90,7 @@ QPushButton:flat, QToolButton:flat {
border: none; /* no border for a flat push button */
}
QPushButton:default, QToolButton:default {
border-color: navy; /* make the default button prominent */
border-color: darkblue; /*make the default button prominent */
}
QPushButton:hover , QToolButton:hover {
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
@@ -106,6 +107,15 @@ QPushButton:checked, QToolButton:checked {
stop: 0 #dadbde, stop: 1 #f6f7fa);
border-style: inset;
}
/*
QDialogButtonBox {
border: 2px solid #8f8f91;
border-style: outset;
border-radius: 5px;
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #f6f7fa, stop: 1 #dadbde);
}
*/
QCheckBox {