This is an automated email from the ASF dual-hosted git repository.
nvazquez pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git.
from 6581a1b test/vmware: add live migratevmwithvolume test and fix (#5289)
add fb0dedc ui: fix display host hypervisorversion (#5301)
add 8680f7d UI: Dark mode toggle button on Management Server (#5052)
new 0011d45 Merge branch '4.15' into main
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
ui/public/locales/en.json | 23 +
ui/src/App.vue | 7 +-
ui/src/assets/icons/dark.svg | 39 +
ui/src/assets/icons/light.svg | 40 +
ui/src/components/page/GlobalFooter.vue | 10 -
ui/src/components/page/GlobalLayout.vue | 41 +-
ui/src/components/view/DetailSettings.vue | 6 +-
ui/src/components/view/InfoCard.vue | 12 +-
ui/src/components/view/ListView.vue | 8 -
ui/src/components/view/SearchView.vue | 6 +-
ui/src/components/view/Setting.vue | 406 +++++++++
ui/src/components/view/SettingItem.vue | 185 +++++
ui/src/components/view/TreeView.vue | 2 -
ui/src/components/widgets/Drawer.vue | 170 ++++
ui/src/components/widgets/OsLogo.vue | 15 +-
ui/src/layouts/UserLayout.vue | 17 +-
ui/src/store/getters.js | 4 +-
ui/src/store/modules/user.js | 30 +-
ui/src/store/mutation-types.js | 2 +
ui/src/style/dark-mode.less | 904 +++++++++++++++++++++
ui/src/style/index.less | 1 +
ui/src/style/vars.less | 99 ++-
ui/src/views/auth/Login.vue | 6 +-
.../views/compute/wizard/NetworkConfiguration.vue | 4 +-
ui/src/views/dashboard/UsageDashboardChart.vue | 2 +-
ui/src/views/iam/AddLdapAccount.vue | 8 +
ui/src/views/infra/HostInfo.vue | 16 +-
ui/src/views/infra/zone/ZoneWizardZoneTypeStep.vue | 2 -
ui/src/views/network/CreateIsolatedNetworkForm.vue | 1 -
ui/src/views/network/CreateL2NetworkForm.vue | 1 -
ui/src/views/network/CreateSharedNetworkForm.vue | 7 +-
ui/src/views/network/PortForwarding.vue | 6 +-
ui/src/views/network/VpcTiersTab.vue | 2 +-
ui/src/views/project/iam/ProjectRoleTab.vue | 2 +-
ui/src/views/storage/CreateVolume.vue | 2 +-
ui/src/views/storage/FormSchedule.vue | 9 +-
ui/src/views/storage/TakeSnapshot.vue | 9 +-
37 files changed, 2035 insertions(+), 69 deletions(-)
create mode 100644 ui/src/assets/icons/dark.svg
create mode 100644 ui/src/assets/icons/light.svg
create mode 100644 ui/src/components/view/Setting.vue
create mode 100644 ui/src/components/view/SettingItem.vue
create mode 100644 ui/src/components/widgets/Drawer.vue
create mode 100644 ui/src/style/dark-mode.less