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:
LemonNexus 2026-02-13 15:16:51 +00:00
parent 5871ac611b
commit 4ca6657c61
1 changed files with 3 additions and 3 deletions

View File

@ -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):