From 47b4155caf646cfb5795c062a6a3c7229d86bfaa Mon Sep 17 00:00:00 2001 From: Artem Kozynets Date: Mon, 23 Feb 2026 16:15:18 +0100 Subject: [PATCH 1/6] refactor: fields label, control top gap, paypal reports page --- web/css/source/extend/forms/_fields.less | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web/css/source/extend/forms/_fields.less b/web/css/source/extend/forms/_fields.less index b0fd258..c66e011 100644 --- a/web/css/source/extend/forms/_fields.less +++ b/web/css/source/extend/forms/_fields.less @@ -96,6 +96,10 @@ max-width: unset; } } + + .control-value { + padding-top: .7rem; + } } .admin__form-field-control, @@ -118,6 +122,11 @@ // --------------------------------------------- .admin__field-label { + .admin__field:not(.admin__field-option) > & { + padding-top: .6rem; + line-height: @line-height__base; + } + .required > &, ._required > & { span { From 1bf256d3edfa657527d8da062749bf65ec741683 Mon Sep 17 00:00:00 2001 From: Artem Kozynets Date: Mon, 23 Feb 2026 16:19:28 +0100 Subject: [PATCH 2/6] refactor: modal message gaps, colors --- .../web/css/source/_extend.less | 41 +++++++++++++++++++ .../extend/components/_modals_extend.less | 9 ++++ 2 files changed, 50 insertions(+) create mode 100644 Magento_LoginAsCustomerAdminUi/web/css/source/_extend.less diff --git a/Magento_LoginAsCustomerAdminUi/web/css/source/_extend.less b/Magento_LoginAsCustomerAdminUi/web/css/source/_extend.less new file mode 100644 index 0000000..8ec6835 --- /dev/null +++ b/Magento_LoginAsCustomerAdminUi/web/css/source/_extend.less @@ -0,0 +1,41 @@ + +// +// Customers > | Customers | All Customers > Customer > Login as Customer +// _____________________________________________ + +// +// Variables +// _____________________________________________ + +// @lac-confirm-popup-title-background-color: #ccc; +@lac-confirm-popup-content-color: @neutral-20; + + +// +// Common +// _____________________________________________ + +& when (@media-common = true) { + .modal-popup.confirm.lac-confirm { + .modal-title { + border-bottom: unset; + padding-bottom: unset; + } + + .modal-content { + .message { + margin-bottom: @indent__s; + + &:last-child { + margin-bottom: 0; + } + } + + .message-warning { + &:before { + left: @alert__padding-left; + } + } + } + } +} diff --git a/web/css/source/extend/components/_modals_extend.less b/web/css/source/extend/components/_modals_extend.less index eda45ca..285d625 100644 --- a/web/css/source/extend/components/_modals_extend.less +++ b/web/css/source/extend/components/_modals_extend.less @@ -272,6 +272,15 @@ } } + &.confirm, + &.prompt { + .modal-inner-wrap { + .message.message-warning { + background: @alert__warning__background-color; + } + } + } + .modal-footer { button.action-primary { &:extend(.abs-action-primary all); From ffee4123f34300feb0393fba2eaf4760a71454e2 Mon Sep 17 00:00:00 2001 From: Artem Kozynets Date: Mon, 23 Feb 2026 16:21:22 +0100 Subject: [PATCH 3/6] style: newsletter problem page, customer newsletter grid --- Magento_Customer/web/css/source/_extend.less | 8 +++++++ .../web/css/source/_extend.less | 21 +++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/Magento_Customer/web/css/source/_extend.less b/Magento_Customer/web/css/source/_extend.less index e58ce82..56e5d88 100644 --- a/Magento_Customer/web/css/source/_extend.less +++ b/Magento_Customer/web/css/source/_extend.less @@ -40,6 +40,14 @@ .admin__data-grid-wrap { padding: 0; } + + .data-grid { + .a-center { + &:not(.col-action) { + text-align: unset; + } + } + } } .customer-address-form { diff --git a/Magento_Newsletter/web/css/source/_extend.less b/Magento_Newsletter/web/css/source/_extend.less index fb97fb2..4e7ddf6 100644 --- a/Magento_Newsletter/web/css/source/_extend.less +++ b/Magento_Newsletter/web/css/source/_extend.less @@ -78,3 +78,24 @@ height: 100%; } } + +// +// Newsletter Problems +// _____________________________________________ + +.newsletter-problem-index { + .admin__old { + .main-col { + .form-buttons { + button { + &:extend(.action-secondary all); + margin-right: @indent__m; + } + } + + > .form-buttons { + margin-top: @indent__l; + } + } + } +} From 58f9e71ab4547fbf37ef14d61f64d7822b81cb31 Mon Sep 17 00:00:00 2001 From: Artem Kozynets Date: Mon, 23 Feb 2026 16:22:39 +0100 Subject: [PATCH 4/6] refactor: action switch to ds --- web/css/source/expand/_actions.less | 4 ++++ web/css/source/extend/actions/_actions-switcher.less | 12 ++++++++++++ 2 files changed, 16 insertions(+) diff --git a/web/css/source/expand/_actions.less b/web/css/source/expand/_actions.less index cbbec9b..8965b79 100644 --- a/web/css/source/expand/_actions.less +++ b/web/css/source/expand/_actions.less @@ -2,6 +2,10 @@ // Variables // _____________________________________________ +@actions-switcher-handler-default__background-color: @neutral-70; +@actions-switcher-handler-default__height: 12px; +@actions-switcher-handler-default__width: 12px; + @actions-switcher__active__background-color: @blue-50; @actions-switcher__active__border-color: @blue-50; diff --git a/web/css/source/extend/actions/_actions-switcher.less b/web/css/source/extend/actions/_actions-switcher.less index 01e7e65..d142123 100644 --- a/web/css/source/extend/actions/_actions-switcher.less +++ b/web/css/source/extend/actions/_actions-switcher.less @@ -23,6 +23,18 @@ .admin__actions-switch-checkbox { &:extend(.abs-visually-hidden all); + &:not(:checked) { + + .admin__actions-switch-label { + &:before { + background: @actions-switcher-handler-default__background-color; + height: @actions-switcher-handler-default__height; + width: @actions-switcher-handler-default__height; + top: .6rem; + left: .6rem; + } + } + } + &:checked { + .admin__actions-switch-label { &::before { From 2023f8fc68f4e29bbf18bf89ea793d1f4f22dec6 Mon Sep 17 00:00:00 2001 From: Artem Kozynets Date: Mon, 23 Feb 2026 18:25:06 +0100 Subject: [PATCH 5/6] docs: update CHANGELOG, README --- CHANGELOG.md | 10 ++++++++++ README.md | 26 +++++++++++++------------- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a74b21..69d813a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.3.4] - 2026-03-23 + +### Changed + +- Refactor `.actions-split` button, pagebuilder standard/connected buttons to `M137 Design System` v1.1.0 +- Refactor `.admin__field-label` and `.control-value` top gap, paypal reports page +- Refactor modal `.message` gaps, colors +- Style `Newsletter Problems Report` and customer newsletter grid +- Refactor `.admin__actions-switch` to to `M137 Design System` v1.1.0 + ## [1.3.3] - 2026-02-03 ### Changed diff --git a/README.md b/README.md index 2e3594a..8143369 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ ### Feature/Page Coverage - [x] Dashboard -- [ ] Sales +- [x] Sales - [x] Orders - [x] Order - [x] Billing Address Edit @@ -52,10 +52,10 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ - [x] Shipment - [x] Credit Memos - [x] Credit Memo - - [ ] Billing Agreements - - [ ] Billing Agreement - - [ ] Transactions - - [ ] Transaction + - [x] Billing Agreements + - [x] Billing Agreement + - [x] Transactions + - [x] Transaction - [x] Catalog - [x] Products - [x] Product @@ -83,7 +83,7 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ - [x] Icons (folder, chevron) - [x] Category State Icons / Colour - [x] Media Gallery -- [ ] Customers +- [x] Customers - [x] All Customers - [x] Customer - [x] Section gaps @@ -92,8 +92,8 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ - [x] Addresses - [x] Orders - [x] Shopping cart - - [ ] Newsletter - - [ ] Billing Agreements + - [x] Newsletter + - [x] Billing Agreements - [x] Product Reviews - [x] Wish List - [x] Now Online @@ -192,14 +192,13 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ - [x] Theme - [x] Schedule - [x] Design Change -- [ ] Reports +- [x] Reports - Marketing - [x] Products in Cart - [x] Search Terms - [x] Search Term - [x] Abandoned Carts - - [ ] Newsletter Problem Reports - - [ ] Newsletter Problem Report + - [x] Newsletter Problem Reports - Reviews - [x] By Customers - [x] Customer Review @@ -212,7 +211,8 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ - [x] Shipping - [x] Refunds - [x] Coupons - - [ ] PayPal Settlement + - [x] PayPal Settlement + - [x] View Transaction - Customers - [x] Order Total - [x] Order Count @@ -358,7 +358,7 @@ git clone git@github.com:mage-os/module-theme-adminhtml-switcher.git ./app/code/ - [x] Stores > Configuration: Catalog > Catalog > Catalog Search > Button:Test Connection - [x] Catalog > Products > Product > Customizable Options: gaps, state bgc - [x] Stores > Attributes > Attribute Set > Icons -- [ ] Refactor Switch +- [x] Refactor Switch ## Changelog From dcb9752d2291447d05bb7f23ea7f72e980b826cb Mon Sep 17 00:00:00 2001 From: Artem Kozynets Date: Tue, 24 Feb 2026 00:02:09 +0100 Subject: [PATCH 6/6] docs: update CHANGELOG, README --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69d813a..12d288b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [1.3.4] - 2026-03-23 +## [1.3.4] - 2026-02-23 ### Changed