[PR #42] frontend branding #42

Open
opened 2026-03-02 02:12:30 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/tacticalrmm-web/pull/42
Author: @sadnub
Created: 9/18/2025
Status: 🔄 Open

Base: developHead: feat-branding


📝 Commits (10+)

  • d803a49 frontend branding init
  • aade829 fix favicon upload
  • 5567584 package-lock.json
  • 95b07f5 modify themebuilder and prompt for reload of UI when successful
  • 8035173 make branding settings window taller
  • 58942de allow setting transparency
  • 00e8a49 fix some static colors and login page. Calculate table headers in dark mode
  • de33c1a fix subtable tab colors in light mode
  • e132a1c remove some hardcoded colors and improve the theme preview
  • 3b75399 added light and light page color

📊 Changes

22 files changed (+1079 additions, -84 deletions)

View changed files

📝 package-lock.json (+2 -21)
📝 src/App.vue (+31 -6)
📝 src/components/SubTableTabs.vue (+3 -6)
📝 src/components/agents/AssetsTab.vue (+0 -1)
📝 src/components/agents/SummaryTab.vue (+2 -8)
📝 src/components/automation/AutomationManager.vue (+0 -1)
📝 src/components/core/APIKeysTable.vue (+1 -2)
📝 src/components/modals/coresettings/CustomFields.vue (+1 -3)
📝 src/components/modals/coresettings/EditCoreSettings.vue (+24 -6)
📝 src/components/modals/coresettings/KeyStoreTable.vue (+2 -4)
📝 src/components/modals/coresettings/URLActionsTable.vue (+1 -2)
📝 src/components/ui/TacticalTable.vue (+6 -6)
📝 src/core/dashboard/ui/TacticalTable.vue (+2 -2)
📝 src/core/settings/components/ScheduleTable.vue (+1 -2)
📝 src/css/quasar.variables.sass (+7 -1)
📝 src/ee/sso/components/SSOProvidersTable.vue (+1 -2)
src/ee/whitelabel/api.ts (+115 -0)
src/ee/whitelabel/components/BrandSettings.vue (+815 -0)
src/ee/whitelabel/types.ts (+23 -0)
📝 src/layouts/MainLayout.vue (+25 -5)

...and 2 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/amidaware/tacticalrmm-web/pull/42 **Author:** [@sadnub](https://github.com/sadnub) **Created:** 9/18/2025 **Status:** 🔄 Open **Base:** `develop` ← **Head:** `feat-branding` --- ### 📝 Commits (10+) - [`d803a49`](https://github.com/amidaware/tacticalrmm-web/commit/d803a4921c272a072caf5b3fe6ca4d0bb0a5a797) frontend branding init - [`aade829`](https://github.com/amidaware/tacticalrmm-web/commit/aade82997ff1c8a814659afb4bd87b47d49081aa) fix favicon upload - [`5567584`](https://github.com/amidaware/tacticalrmm-web/commit/5567584747390c45145adc41d257de95a67bc75a) package-lock.json - [`95b07f5`](https://github.com/amidaware/tacticalrmm-web/commit/95b07f5c2c1c8dcf68f366a2e3a9bf8d2f785fea) modify themebuilder and prompt for reload of UI when successful - [`8035173`](https://github.com/amidaware/tacticalrmm-web/commit/80351733770bba5ae9bb89e2dec35152dd6b038a) make branding settings window taller - [`58942de`](https://github.com/amidaware/tacticalrmm-web/commit/58942de29e64462d90e25065c3b517a6376954ba) allow setting transparency - [`00e8a49`](https://github.com/amidaware/tacticalrmm-web/commit/00e8a49c2d1cd1c68c81d1e831bade35374d696f) fix some static colors and login page. Calculate table headers in dark mode - [`de33c1a`](https://github.com/amidaware/tacticalrmm-web/commit/de33c1a921dfe8ffe3283429f917920300f6807d) fix subtable tab colors in light mode - [`e132a1c`](https://github.com/amidaware/tacticalrmm-web/commit/e132a1ca14e7cffd5c22e2346ea6ca177e8d68cf) remove some hardcoded colors and improve the theme preview - [`3b75399`](https://github.com/amidaware/tacticalrmm-web/commit/3b75399e8071f9f9a23d537a2131f56f4924a047) added light and light page color ### 📊 Changes **22 files changed** (+1079 additions, -84 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+2 -21) 📝 `src/App.vue` (+31 -6) 📝 `src/components/SubTableTabs.vue` (+3 -6) 📝 `src/components/agents/AssetsTab.vue` (+0 -1) 📝 `src/components/agents/SummaryTab.vue` (+2 -8) 📝 `src/components/automation/AutomationManager.vue` (+0 -1) 📝 `src/components/core/APIKeysTable.vue` (+1 -2) 📝 `src/components/modals/coresettings/CustomFields.vue` (+1 -3) 📝 `src/components/modals/coresettings/EditCoreSettings.vue` (+24 -6) 📝 `src/components/modals/coresettings/KeyStoreTable.vue` (+2 -4) 📝 `src/components/modals/coresettings/URLActionsTable.vue` (+1 -2) 📝 `src/components/ui/TacticalTable.vue` (+6 -6) 📝 `src/core/dashboard/ui/TacticalTable.vue` (+2 -2) 📝 `src/core/settings/components/ScheduleTable.vue` (+1 -2) 📝 `src/css/quasar.variables.sass` (+7 -1) 📝 `src/ee/sso/components/SSOProvidersTable.vue` (+1 -2) ➕ `src/ee/whitelabel/api.ts` (+115 -0) ➕ `src/ee/whitelabel/components/BrandSettings.vue` (+815 -0) ➕ `src/ee/whitelabel/types.ts` (+23 -0) 📝 `src/layouts/MainLayout.vue` (+25 -5) _...and 2 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tacticalrmm-web#42
No description provided.