72 lines
1.8 KiB
Python
72 lines
1.8 KiB
Python
# -*- 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;
|
|
}
|
|
""",
|
|
}
|