2025-12-17 16:24:13 +01:00
|
|
|
/* appqss */
|
2025-12-17 13:11:26 +01:00
|
|
|
|
|
|
|
|
/* Alle QWidgets bekommen diesen Font */
|
2025-12-17 16:24:13 +01:00
|
|
|
QWidget
|
|
|
|
|
{
|
2026-01-06 13:05:19 +01:00
|
|
|
font-family: "Calibri", "Carlito", "Open Sans", sans-serif;
|
|
|
|
|
font-size: 6pt;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
2025-12-17 13:11:26 +01:00
|
|
|
}
|
2026-01-06 13:05:19 +01:00
|
|
|
|
2025-12-30 00:15:54 +01:00
|
|
|
/*
|
2026-01-06 13:05:19 +01:00
|
|
|
QToolButton
|
2025-12-22 00:14:42 +01:00
|
|
|
{
|
2026-01-06 13:05:19 +01:00
|
|
|
background-color: white;
|
|
|
|
|
color: #201F1E;
|
|
|
|
|
border: 1px solid #8A8886;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
min-width: 64px;
|
|
|
|
|
max-width: 64px;
|
|
|
|
|
min-height: 64px;
|
|
|
|
|
max-height: 64px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QToolButton:hover
|
|
|
|
|
{
|
|
|
|
|
background-color: #F3F2F1;
|
|
|
|
|
border: 1px solid #323130;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QToolButton:pressed
|
|
|
|
|
{
|
|
|
|
|
background-color: #EDEBE9;
|
|
|
|
|
border: 1px solid #201F1E;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QToolButton:disabled
|
|
|
|
|
{
|
|
|
|
|
background-color: #F3F2F1;
|
|
|
|
|
color: #A19F9D;
|
|
|
|
|
border: 1px solid #EDEBE9;
|
|
|
|
|
}
|
2025-12-30 00:15:54 +01:00
|
|
|
*/
|
2025-12-22 00:14:42 +01:00
|
|
|
|
2026-01-06 13:05:19 +01:00
|
|
|
/* === QToolButton === */
|
|
|
|
|
QToolButton
|
|
|
|
|
{
|
2025-12-22 12:39:38 +01:00
|
|
|
background-color: transparent;
|
2026-01-06 13:05:19 +01:00
|
|
|
color: #000000;
|
|
|
|
|
border: none;
|
2025-12-22 12:39:38 +01:00
|
|
|
border-radius: 4px;
|
2026-01-06 13:05:19 +01:00
|
|
|
padding: 6px;
|
|
|
|
|
|
|
|
|
|
min-width: 64px;
|
|
|
|
|
max-width: 64px;
|
|
|
|
|
min-height: 64px;
|
|
|
|
|
max-height: 64px;
|
2025-12-17 16:24:13 +01:00
|
|
|
}
|
|
|
|
|
|
2026-01-06 13:05:19 +01:00
|
|
|
QToolButton:hover
|
|
|
|
|
{
|
|
|
|
|
background-color: #F9F9F9;
|
|
|
|
|
border: 1px solid #DDDDDD;
|
2025-12-17 16:24:13 +01:00
|
|
|
}
|
|
|
|
|
|
2026-01-06 13:05:19 +01:00
|
|
|
QToolButton:pressed
|
2025-12-17 16:24:13 +01:00
|
|
|
{
|
2026-01-06 13:05:19 +01:00
|
|
|
background-color: #E0E0E0;
|
2025-12-17 16:24:13 +01:00
|
|
|
}
|
|
|
|
|
|
2026-01-06 13:05:19 +01:00
|
|
|
QToolButton:checked
|
2025-12-17 16:24:13 +01:00
|
|
|
{
|
2026-01-06 13:05:19 +01:00
|
|
|
background-color: #0078D4;
|
|
|
|
|
color: #FFFFFF;
|
2025-12-17 16:24:13 +01:00
|
|
|
}
|
|
|
|
|
|
2026-01-06 13:05:19 +01:00
|
|
|
QToolButton:disabled
|
|
|
|
|
{
|
|
|
|
|
color: #A19F9D;
|
|
|
|
|
}
|