From 9a342e13d2a5211b23d63322d66b5fe8f200dd4b Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Tue, 19 May 2026 18:44:37 +0530 Subject: [PATCH 1/3] 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/3] 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; } From 1bb4adb8d110256708040e5885ca63a482ac1601 Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Fri, 22 May 2026 15:03:38 +0530 Subject: [PATCH 3/3] fix: adjust height for buttons --- css/library.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/css/library.css b/css/library.css index b9dc82eaf..1ead2e63c 100644 --- a/css/library.css +++ b/css/library.css @@ -435,6 +435,8 @@ input:checked + .visualizer-slider:before { div.visualizer-library-form .viz-filter { vertical-align: middle; + min-height: 30px; + line-height: 1; } button.media-modal-close { @@ -941,6 +943,8 @@ span.viz-view-toggle-group { margin-right: 0; border-top-right-radius: 0; border-bottom-right-radius: 0; + min-height: 30px; + line-height: 2.15384615; } .viz-add-new-toggle { @@ -1019,6 +1023,12 @@ span.viz-view-toggle-group { @media screen and (max-width: 782px) { .viz-add-new-toggle { - min-height: 40px; + min-height: 33px; } +} + +.toplevel_page_visualizer .button, +.toplevel_page_visualizer button { + min-height: 30px; + line-height: 2.15384615; } \ No newline at end of file