diff --git a/zero.Debug/Controllers/TestController.cs b/zero.Debug/Controllers/TestController.cs index 13934452..5acd21f6 100644 --- a/zero.Debug/Controllers/TestController.cs +++ b/zero.Debug/Controllers/TestController.cs @@ -215,19 +215,19 @@ namespace zero.Debug.Controllers TrackingUrl = "https://www.post.at/sv/sendungsdetails?snr=1035304005500970252807", Description = "Waren sind im Lager 2 (Regal 23)", ShipmentDate = DateTimeOffset.Now.AddDays(2), - Items = new Dictionary() + Items = new List() { - { order.Items[0].Id, 2 }, - { order.Items[1].Id, 1 } + new OrderDeliveryProduct() { Id = order.Items[0].Id, Quantity = 2 }, + new OrderDeliveryProduct() { Id = order.Items[1].Id, Quantity = 1 } } }, new OrderDelivery() { CreatedDate = DateTimeOffset.Now, ShipmentDate = DateTimeOffset.Now.AddDays(4), - Items = new Dictionary() + Items = new List() { - { order.Items[0].Id, 1 } + new OrderDeliveryProduct() { Id = order.Items[0].Id, Quantity = 1 } } } } diff --git a/zero.Web.UI/Sass/Modules/_button.scss b/zero.Web.UI/Sass/Modules/_button.scss index 7cc24a04..972c4fa6 100644 --- a/zero.Web.UI/Sass/Modules/_button.scss +++ b/zero.Web.UI/Sass/Modules/_button.scss @@ -250,7 +250,7 @@ button::-moz-focus-inner { @extend .ui-button; background: var(--color-button-light); - padding: 0; + padding: 0 !important; height: 32px; width: 32px; border-radius: 16px; @@ -278,6 +278,7 @@ button::-moz-focus-inner .ui-button-icon { font-size: 13px; + margin: 0 !important; } } }