From f23834973950f208c870e4172844612b4096c546 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 21 Feb 2023 17:32:03 +0100 Subject: [PATCH] Fix the rendering of query explanation with Postgresql Postgresql (and some other platforms) provide a textual query explanation rather than a tabular one. The previous styles were working only for a tabular display. For text allowing to break words, `min-content` is the width of a single letter. --- .../Resources/views/Profiler/profiler.css.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig index 7fc32f99352cb..953ee53f8d2f9 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig @@ -2079,7 +2079,7 @@ tr.log-status-silenced > td:first-child:before { max-width: 888px; } .width-full .sql-explain { - max-width: min-content; + max-width: unset; } .sql-explain table td, .sql-explain table tr { word-break: normal;