From f4f8042a5bbdf95d5335548fd8fcdde883482d86 Mon Sep 17 00:00:00 2001 From: Tomas Zulberti Date: Thu, 23 Aug 2018 16:23:47 -0300 Subject: [PATCH 1/2] AIRFLOW-2949: Add syntax highlight for single quote strings --- airflow/www/static/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/www/static/main.css b/airflow/www/static/main.css index 57164b94e5ccf..147695c4a9591 100644 --- a/airflow/www/static/main.css +++ b/airflow/www/static/main.css @@ -262,3 +262,4 @@ div.square { .sc { color: #BA2121 } /* Literal.String.Char */ .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .s2 { color: #BA2121 } /* Literal.String.Double */ +.s1 { color: #BA2121 } /* Literal.String.Single */ From 6e6fc26f2820667ac7773d26d6f816656ca8a376 Mon Sep 17 00:00:00 2001 From: Tomas Zulberti Date: Thu, 23 Aug 2018 18:04:46 -0300 Subject: [PATCH 2/2] AIRFLOW-2949: Also updated new UI main.css --- airflow/www_rbac/static/css/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/www_rbac/static/css/main.css b/airflow/www_rbac/static/css/main.css index ac6189938cb3b..d3d198356e8db 100644 --- a/airflow/www_rbac/static/css/main.css +++ b/airflow/www_rbac/static/css/main.css @@ -265,3 +265,4 @@ div.square { .sc { color: #BA2121 } /* Literal.String.Char */ .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .s2 { color: #BA2121 } /* Literal.String.Double */ +.s1 { color: #BA2121 } /* Literal.String.Single */