From 875a41b1cb541741548a5149c043c974ee3f2e86 Mon Sep 17 00:00:00 2001 From: Alexander Preibisch Date: Wed, 6 Dec 2023 17:28:19 +0100 Subject: [PATCH] Update Bootstrap, Redesign of Navigation Menu and Footer --- CHANGELOG.md | 1 + OpenBudgeteer.Blazor/App.razor | 16 +- OpenBudgeteer.Blazor/Pages/Import.razor | 3 +- OpenBudgeteer.Blazor/Shared/MainLayout.razor | 65 +- OpenBudgeteer.Blazor/Shared/NavMenu.razor | 73 +- .../wwwroot/css/StickyFooter.css | 18 - .../wwwroot/css/bootstrap/bootstrap-icons.css | 150 +- .../css/bootstrap/bootstrap-icons.json | 142 +- .../css/bootstrap/cerulean/bootstrap.css | 7204 ++++----- .../css/bootstrap/cerulean/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/cosmo/bootstrap.css | 6834 +++++---- .../css/bootstrap/cosmo/bootstrap.min.css | 16 +- .../css/bootstrap/cyborg/bootstrap.css | 7168 ++++----- .../css/bootstrap/cyborg/bootstrap.min.css | 16 +- .../css/bootstrap/darkly/bootstrap.css | 7182 ++++----- .../css/bootstrap/darkly/bootstrap.min.css | 16 +- .../css/bootstrap/default/bootstrap.css | 12068 ++++++++++++++++ .../css/bootstrap/default/bootstrap.min.css | 7 +- .../bootstrap/default/bootstrap.min.css.map | 1 - .../css/bootstrap/flatly/bootstrap.css | 7184 ++++----- .../css/bootstrap/flatly/bootstrap.min.css | 16 +- .../css/bootstrap/fonts/bootstrap-icons.woff | Bin 164352 -> 176088 bytes .../css/bootstrap/fonts/bootstrap-icons.woff2 | Bin 121296 -> 130648 bytes .../css/bootstrap/journal/bootstrap.css | 7209 ++++----- .../css/bootstrap/journal/bootstrap.min.css | 16 +- .../css/bootstrap/litera/bootstrap.css | 7222 ++++----- .../css/bootstrap/litera/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/lumen/bootstrap.css | 7167 ++++----- .../css/bootstrap/lumen/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/lux/bootstrap.css | 6726 +++++---- .../css/bootstrap/lux/bootstrap.min.css | 16 +- .../css/bootstrap/materia/bootstrap.css | 7798 +++++----- .../css/bootstrap/materia/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/minty/bootstrap.css | 7233 ++++----- .../css/bootstrap/minty/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/morph/bootstrap.css | 7310 +++++----- .../css/bootstrap/morph/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/pulse/bootstrap.css | 6915 +++++---- .../css/bootstrap/pulse/bootstrap.min.css | 16 +- .../css/bootstrap/quartz/bootstrap.css | 7156 ++++----- .../css/bootstrap/quartz/bootstrap.min.css | 16 +- .../css/bootstrap/sandstone/bootstrap.css | 6995 +++++---- .../css/bootstrap/sandstone/bootstrap.min.css | 16 +- .../css/bootstrap/simplex/bootstrap.css | 7208 ++++----- .../css/bootstrap/simplex/bootstrap.min.css | 16 +- .../css/bootstrap/sketchy/bootstrap.css | 7301 +++++----- .../css/bootstrap/sketchy/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/slate/bootstrap.css | 7351 +++++----- .../css/bootstrap/slate/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/solar/bootstrap.css | 7183 ++++----- .../css/bootstrap/solar/bootstrap.min.css | 16 +- .../css/bootstrap/spacelab/bootstrap.css | 7234 ++++----- .../css/bootstrap/spacelab/bootstrap.min.css | 16 +- .../css/bootstrap/superhero/bootstrap.css | 7192 ++++----- .../css/bootstrap/superhero/bootstrap.min.css | 16 +- .../css/bootstrap/united/bootstrap.css | 7154 ++++----- .../css/bootstrap/united/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/vapor/bootstrap.css | 7173 ++++----- .../css/bootstrap/vapor/bootstrap.min.css | 16 +- .../wwwroot/css/bootstrap/yeti/bootstrap.css | 7188 ++++----- .../css/bootstrap/yeti/bootstrap.min.css | 16 +- .../css/bootstrap/zephyr/bootstrap.css | 7066 +++++---- .../css/bootstrap/zephyr/bootstrap.min.css | 16 +- OpenBudgeteer.Blazor/wwwroot/css/custom.css | 105 - OpenBudgeteer.Blazor/wwwroot/css/site.css | 166 +- .../js/bootstrap/bootstrap.bundle.min.js | 6 +- .../js/bootstrap/bootstrap.bundle.min.js.map | 2 +- 67 files changed, 110374 insertions(+), 82202 deletions(-) delete mode 100644 OpenBudgeteer.Blazor/wwwroot/css/StickyFooter.css create mode 100644 OpenBudgeteer.Blazor/wwwroot/css/bootstrap/default/bootstrap.css delete mode 100644 OpenBudgeteer.Blazor/wwwroot/css/bootstrap/default/bootstrap.min.css.map delete mode 100644 OpenBudgeteer.Blazor/wwwroot/css/custom.css mode change 100755 => 100644 OpenBudgeteer.Blazor/wwwroot/js/bootstrap/bootstrap.bundle.min.js mode change 100755 => 100644 OpenBudgeteer.Blazor/wwwroot/js/bootstrap/bootstrap.bundle.min.js.map diff --git a/CHANGELOG.md b/CHANGELOG.md index 3988868..a55db7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * [Changed] Buttons that appeared in the past only via hovering are now always displayed (was not working well, maybe additional rework in future) [#155](https://github.com/TheAxelander/OpenBudgeteer/issues/155) * [Changed] More responsive navigation bar [#175](https://github.com/TheAxelander/OpenBudgeteer/issues/175) * [Changed] Enable editing of imported file [#196](https://github.com/TheAxelander/OpenBudgeteer/issues/196) +* [Changed] Redesign of Navigation Menu and Footer * [Fixed] UI alignment for large numbers [#189](https://github.com/TheAxelander/OpenBudgeteer/issues/189) * [Fixed] Mapping Rules using the Account Name instead of Account Id [#199](https://github.com/TheAxelander/OpenBudgeteer/pull/199) Thanks [Lucaber](https://github.com/Lucaber) * [Fixed] Adding a Mapping Rule to an existing Rule Set failed [#200](https://github.com/TheAxelander/OpenBudgeteer/pull/200) Thanks [Lucaber](https://github.com/Lucaber) diff --git a/OpenBudgeteer.Blazor/App.razor b/OpenBudgeteer.Blazor/App.razor index 02a095e..08feb91 100644 --- a/OpenBudgeteer.Blazor/App.razor +++ b/OpenBudgeteer.Blazor/App.razor @@ -10,11 +10,9 @@ OpenBudgeteer - + - -