forked from LiveCarta/BookConverter
Remove processing css in lowercase
This commit is contained in:
@@ -215,7 +215,7 @@ def update_css_styles_to_livecarta_convention(css_rule: cssutils.css.CSSStyleRul
|
||||
|
||||
def build_css_file_content(css_content: str) -> str:
|
||||
"""Build css content with livecarta convention"""
|
||||
sheet = cssutils.parseString(css_content.lower(), validate=False)
|
||||
sheet = cssutils.parseString(css_content, validate=False)
|
||||
|
||||
for css_rule in sheet:
|
||||
if css_rule.type == css_rule.STYLE_RULE:
|
||||
|
||||
Reference in New Issue
Block a user