From a71b6feefccd182931abefbfa778caaa76691c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Mon, 1 Dec 2025 12:35:22 +0100 Subject: [PATCH] Pagination style fix --- DevTools/RESTRequests/test.rest | 16 ++++++++-------- .../Components/LayerListComponent.razor | 6 ++++-- DiunaBI.UI.Web/Components/App.razor | 1 + DiunaBI.UI.Web/wwwroot/app.css | 9 +++++++++ 4 files changed, 22 insertions(+), 10 deletions(-) diff --git a/DevTools/RESTRequests/test.rest b/DevTools/RESTRequests/test.rest index 78a46ae..684230f 100644 --- a/DevTools/RESTRequests/test.rest +++ b/DevTools/RESTRequests/test.rest @@ -1,9 +1,9 @@ -GET http://localhost:5400/tests/ping +PUT https://pedrollopl.diunabi.com/api/DataInbox/Add/8kL2mN4pQ6rojshf8704i34p4eim1hs +Content-Type: application/json +Authorization: Basic cGVkcm9sbG9wbDo0MjU4dlc2eFk4TjRwUQ== -### - -GET https://morska.diunabi.com/api/layers/autoImport/godojshf8704i357yhgdsahjdfh/K5- - -### - -GET http://localhost:5400/layers/autoImport/10763478CB738D4ecb2h76g803478CB738D4e/K5- +{ + "Source": "morska.import", + "Name": "morska.d3.importer", + "Data": "eyJrZXkiOiAidmFsdWUifQ==" +} \ No newline at end of file diff --git a/DiunaBI.UI.Shared/Components/LayerListComponent.razor b/DiunaBI.UI.Shared/Components/LayerListComponent.razor index 4184a9d..891a894 100644 --- a/DiunaBI.UI.Shared/Components/LayerListComponent.razor +++ b/DiunaBI.UI.Shared/Components/LayerListComponent.razor @@ -66,7 +66,9 @@ Selected="layers.Page" SelectedChanged="OnPageChanged" ShowFirstButton="true" - ShowLastButton="true"/> + ShowLastButton="true" + Variant="Variant.Outlined" + /> - } + } \ No newline at end of file diff --git a/DiunaBI.UI.Web/Components/App.razor b/DiunaBI.UI.Web/Components/App.razor index 2b0ab60..0204757 100644 --- a/DiunaBI.UI.Web/Components/App.razor +++ b/DiunaBI.UI.Web/Components/App.razor @@ -9,6 +9,7 @@ + diff --git a/DiunaBI.UI.Web/wwwroot/app.css b/DiunaBI.UI.Web/wwwroot/app.css index a69fc9f..613f145 100644 --- a/DiunaBI.UI.Web/wwwroot/app.css +++ b/DiunaBI.UI.Web/wwwroot/app.css @@ -49,3 +49,12 @@ h1:focus { .darker-border-checkbox.form-check-input { border-color: #929292; } + +/* remove list markers for MudPagination */ +.mud-pagination { + list-style: none; + padding-inline-start: 0; +} +.mud-pagination li::marker { + display: none; +}