ryanahamilton commented on pull request #18461: URL: https://github.com/apache/airflow/pull/18461#issuecomment-925812344
@bbovenzi I forgot we also output these classes globally in the document `<head>` here: https://github.com/apache/airflow/blob/2a3cbabbf8a21123e0b9c35866226087c3cebc4c/airflow/www/templates/airflow/main.html#L41-L47 Might be ideal to replace it with CSS variable definitions and then key everything else off of those? ```jinja <style type="text/css"> :root { {% for state, state_color in state_color_mapping.items() %} --status-color-{{state}}: {{state_color}}; {% endfor %} } </style> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
