Create dummy devices, part I

This commit is contained in:
2025-12-22 12:39:38 +01:00
parent e17a2d6d09
commit 4bd8f30a09
5 changed files with 51 additions and 18 deletions

View File

@@ -36,6 +36,42 @@ QPushButton:pressed
background-color: #005a9e;
}
/* Normal */
QToolButton {
background-color: transparent;
border: 1px solid transparent;
border-radius: 4px;
padding: 4px;
}
/* Hover */
QToolButton:hover {
background-color: #E3F2FD;
border: 1px solid #2196F3;
}
/* Pressed/Clicked */
QToolButton:pressed {
background-color: #BBDEFB;
}
/* Checked (bei checkable buttons) */
QToolButton:checked {
background-color: #2196F3;
color: white;
}
/* Checked + Hover */
QToolButton:checked:hover {
background-color: #1976D2;
}
/* Disabled */
QToolButton:disabled {
color: #BDBDBD;
background-color: transparent;
}
/* Styling anhand von Objektnamen (ID) */
#loginButton
{