From 9a342e13d2a5211b23d63322d66b5fe8f200dd4b Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Tue, 19 May 2026 18:44:37 +0530 Subject: [PATCH 1/2] fix: make layout compatible with wp7.0 --- css/library.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/css/library.css b/css/library.css index d5f74ee2f..940bfbf4f 100644 --- a/css/library.css +++ b/css/library.css @@ -185,6 +185,7 @@ body { } .visualizer-chart-action.visualizer-chart-edit .dashicons { margin-right: 0; + line-height: 1; } .visualizer-chart-action.visualizer-chart-edit .tooltip-text { display: none; @@ -1014,3 +1015,9 @@ span.viz-view-toggle-group { background: #f6f7f7; outline: none; } + +@media screen and (max-width: 782px) { + .viz-add-new-toggle { + min-height: 40px; + } +} \ No newline at end of file From e87f77f82a42e0fa159ae2f48ac69e2141bf3ec4 Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Tue, 19 May 2026 18:50:53 +0530 Subject: [PATCH 2/2] fix: update dashicons layout for edit action --- css/library.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/library.css b/css/library.css index 940bfbf4f..b9dc82eaf 100644 --- a/css/library.css +++ b/css/library.css @@ -183,7 +183,8 @@ body { padding: 0 10px; gap: 6px; } -.visualizer-chart-action.visualizer-chart-edit .dashicons { +.visualizer-chart-action.visualizer-chart-edit .dashicons, +.visualizer-chart-action.visualizer-nochart-edit .dashicons { margin-right: 0; line-height: 1; }