Skip to content

Commit 47c2714

Browse files
author
Kilo
committed
fix: prevent queue page horizontal overflow
1 parent 015e1f1 commit 47c2714

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
- The compose controller now delegates recipient resolution, Bcc validation and scheduling to the shared `Campaign_Service` rather than duplicating that logic.
2222

2323
### Fixed
24+
- **Full-width admin queue layout (#122)** — the queue table now clears the floated status filters and uses the available WordPress admin content width without forcing page-level horizontal scrolling.
2425
- **Fresh-install schema drift** — a brand-new installation's campaigns table was missing the `bcc`, `bcc_sent`, `from_email`, and `from_name` columns that every campaign insert expects, and the queue `status` enum omitted the `cancelled` state that cancellation code writes. The canonical schema now includes them, and an upgrade path (schema version 1.9.0) repairs existing installs.
2526

2627
### Security

admin/scss/base/_base.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
// General wrapper
99
.mskd-wrap {
10-
width: 100%;
10+
width: auto;
1111
}

admin/scss/components/_queue.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,14 @@
7979
}
8080

8181
.mskd-queue-table {
82+
width: 100%;
8283
min-width: 100%;
8384

8485
.mskd-col-subject {
85-
width: 100%;
86-
min-width: 220px;
86+
width: auto;
8787
}
8888

8989
.mskd-subject-cell {
90-
min-width: 220px;
9190
word-break: normal;
9291
overflow-wrap: anywhere;
9392

0 commit comments

Comments
 (0)