Add Dispatch_V0.1.1

This commit is contained in:
2026-04-29 08:18:54 +04:00
commit a7ede6ded4
404 changed files with 39167 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
# -*- coding: utf-8 -*-
# gui/styles/ticket_refusal_dialog.py
"""Стили dialog-экрана отказа Ticket."""
TICKET_REFUSAL_DIALOG = {
"TICKET_REFUSAL_HEADING_DARK": """
QLabel {
background-color: transparent;
color: #F5F7FA;
font-size: 16px;
font-weight: 700;
}
""",
"TICKET_REFUSAL_HEADING_LIGHT": """
QLabel {
background-color: transparent;
color: #0F2F61;
font-size: 16px;
font-weight: 700;
}
""",
"TICKET_REFUSAL_LOCATION_TITLE_DARK": """
QLabel {
background-color: transparent;
color: #F5F7FA;
font-size: 16px;
font-weight: 700;
}
""",
"TICKET_REFUSAL_LOCATION_TITLE_LIGHT": """
QLabel {
background-color: transparent;
color: #0F2F61;
font-size: 16px;
font-weight: 700;
}
""",
"TICKET_REFUSAL_LOCATION_VALUE_DARK": """
QLabel {
background-color: transparent;
color: #F5F7FA;
font-size: 16px;
font-weight: 400;
}
""",
"TICKET_REFUSAL_LOCATION_VALUE_LIGHT": """
QLabel {
background-color: transparent;
color: #0F2F61;
font-size: 16px;
font-weight: 400;
}
""",
"TICKET_REFUSAL_WARNING_DARK": """
QLabel {
background-color: transparent;
color: #FF8F73;
font-size: 16px;
font-weight: 500;
}
""",
"TICKET_REFUSAL_WARNING_LIGHT": """
QLabel {
background-color: transparent;
color: #0F2F61;
font-size: 16px;
font-weight: 500;
}
""",
}