Skip to content

Commit 9303c56

Browse files
release: fixes
- Improved layout compatibility with WP 7.0
2 parents cb4934b + 5a19ac3 commit 9303c56

3 files changed

Lines changed: 23 additions & 5 deletions

File tree

css/library.css

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,10 @@ body {
183183
padding: 0 10px;
184184
gap: 6px;
185185
}
186-
.visualizer-chart-action.visualizer-chart-edit .dashicons {
186+
.visualizer-chart-action.visualizer-chart-edit .dashicons,
187+
.visualizer-chart-action.visualizer-nochart-edit .dashicons {
187188
margin-right: 0;
189+
line-height: 1;
188190
}
189191
.visualizer-chart-action.visualizer-chart-edit .tooltip-text {
190192
display: none;
@@ -433,6 +435,8 @@ input:checked + .visualizer-slider:before {
433435

434436
div.visualizer-library-form .viz-filter {
435437
vertical-align: middle;
438+
min-height: 30px;
439+
line-height: 1;
436440
}
437441

438442
button.media-modal-close {
@@ -939,6 +943,8 @@ span.viz-view-toggle-group {
939943
margin-right: 0;
940944
border-top-right-radius: 0;
941945
border-bottom-right-radius: 0;
946+
min-height: 30px;
947+
line-height: 2.15384615;
942948
}
943949

944950
.viz-add-new-toggle {
@@ -1014,3 +1020,15 @@ span.viz-view-toggle-group {
10141020
background: #f6f7f7;
10151021
outline: none;
10161022
}
1023+
1024+
@media screen and (max-width: 782px) {
1025+
.viz-add-new-toggle {
1026+
min-height: 33px;
1027+
}
1028+
}
1029+
1030+
.toplevel_page_visualizer .button,
1031+
.toplevel_page_visualizer button {
1032+
min-height: 30px;
1033+
line-height: 2.15384615;
1034+
}

readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
=== Visualizer: Tables and Charts Manager for WordPress ===
1+
=== VisualizerTables & Charts Manager with Built-in AI Generator ===
22
Contributors: codeinwp,themeisle,marius2012,marius_codeinwp,hardeepasrani,rozroz,Madalin_ThemeIsle
3-
Tags: tables, charts, pie, visualization, graphs
3+
Tags: charts, tables, datatable, data-visualization, ai-charts
44
Requires at least: 5.2
55
Tested up to: 7.0
66
Requires PHP: 7.4
77
Stable tag: trunk
88
License: GPL v2.0 or later
99
License URI: http://www.opensource.org/licenses/gpl-license.php
1010

11-
Create responsive charts and tables manually or let the built-in AI build them from a simple text prompt. Supports multiple chart types and flexible data sources.
11+
Create responsive charts and tables manually or let the built-in AI build them from a text prompt. Supports multiple chart types and flexible data.
1212

1313
## Description ##
1414

tests/e2e/specs/library-view.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ test.describe( 'Library View Toggle', () => {
137137
await waitForLibraryToLoad( page );
138138

139139
// Submit the filter form — the hidden view input should carry list view through.
140-
await page.getByRole( 'button', { name: 'Apply Filters' } ).click();
140+
await page.getByRole( 'button', { name: 'Apply Filters' } ).click( { force: true } );
141141
await waitForLibraryToLoad( page );
142142

143143
await expect( page.locator( '#visualizer-library.view-list' ) ).toBeVisible();

0 commit comments

Comments
 (0)