From 45e6902502368f056bf3138fc00ef1e2754c6384 Mon Sep 17 00:00:00 2001 From: Valentin Delaye Date: Tue, 13 Sep 2022 16:00:15 +0200 Subject: [PATCH] Fix grey and light blue theme console --- src/main/webapp/material-theme.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/material-theme.css b/src/main/webapp/material-theme.css index 49ec062..24a525d 100644 --- a/src/main/webapp/material-theme.css +++ b/src/main/webapp/material-theme.css @@ -198,7 +198,7 @@ this doesn't look great, but I think it's less bad than when it's left white. */ } [data-theme=material-red] .console-output, [data-theme=material-indigo] .console-output, -[data-theme=material-red] .console-output *, [data-theme=material-indigo] .console-output * +[data-theme=material-red] .console-output *, [data-theme=material-indigo] .console-output *, [data-theme=material-grey] .console-output, [data-theme=material-light-blue] .console-output, [data-theme=material-grey] .console-output *, [data-theme=material-light-blue] .console-output * { @@ -209,7 +209,7 @@ this doesn't look great, but I think it's less bad than when it's left white. */ cursor: text; } -[data-theme=material-red] pre.console-output, [data-theme=material-indigo] pre.console-output +[data-theme=material-red] pre.console-output, [data-theme=material-indigo] pre.console-output, [data-theme=material-grey] pre.console-output, [data-theme=material-light-blue] pre.console-output { color: #e9eded!important; }