fix: SyntaxError in eu_styles.py - incorrect quote closing
Fixed: 'table' and 'tab' style entries had mismatched quotes Changed: Closing quotes from "' to """ to match opening quotes This was causing: SyntaxError: invalid decimal literal
This commit is contained in:
parent
5871ac611b
commit
4ca6657c61
|
|
@ -146,7 +146,7 @@ EU_STYLES = {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}}
|
}}
|
||||||
""',
|
""",
|
||||||
|
|
||||||
'progress_bar': f"""
|
'progress_bar': f"""
|
||||||
QProgressBar {{
|
QProgressBar {{
|
||||||
|
|
@ -181,7 +181,7 @@ EU_STYLES = {
|
||||||
background-color: rgba(45, 50, 70, 240);
|
background-color: rgba(45, 50, 70, 240);
|
||||||
color: {EU_COLORS['text_secondary']};
|
color: {EU_COLORS['text_secondary']};
|
||||||
}}
|
}}
|
||||||
""',
|
""",
|
||||||
|
|
||||||
'floating_icon': f"""
|
'floating_icon': f"""
|
||||||
QLabel {{
|
QLabel {{
|
||||||
|
|
@ -197,7 +197,7 @@ EU_STYLES = {
|
||||||
border: 1px solid {EU_COLORS['accent_orange']};
|
border: 1px solid {EU_COLORS['accent_orange']};
|
||||||
border-radius: {EU_RADIUS['small']};
|
border-radius: {EU_RADIUS['small']};
|
||||||
}}
|
}}
|
||||||
""',
|
""",
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_eu_style(style_name):
|
def get_eu_style(style_name):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue