Skip to content

Commit 088e0de

Browse files
authored
Merge pull request #123 from katsar0v/feature/issue-122-full-width-wp-admin
feat: use full width in wp-admin by removing max-width on mskd-wrap (#122)
2 parents fa0472f + 47c2714 commit 088e0de

3 files changed

Lines changed: 6 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-
max-width: $container-max-width;
10+
width: auto;
1111
}

admin/scss/components/_queue.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,20 +72,21 @@
7272

7373
// Queue tables
7474
.mskd-table-responsive {
75+
clear: both;
76+
width: 100%;
7577
overflow-x: auto;
7678
-webkit-overflow-scrolling: touch;
7779
}
7880

7981
.mskd-queue-table {
82+
width: 100%;
8083
min-width: 100%;
8184

8285
.mskd-col-subject {
83-
width: 100%;
84-
min-width: 220px;
86+
width: auto;
8587
}
8688

8789
.mskd-subject-cell {
88-
min-width: 220px;
8990
word-break: normal;
9091
overflow-wrap: anywhere;
9192

0 commit comments

Comments
 (0)