diff --git a/dashboard/src/pages/InstallApp.vue b/dashboard/src/pages/InstallApp.vue
index 368ce9ac5b6..064a5b6cbe3 100644
--- a/dashboard/src/pages/InstallApp.vue
+++ b/dashboard/src/pages/InstallApp.vue
@@ -81,7 +81,7 @@
:class="[
cluster === c.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'bg-white text-gray-900 hover:bg-gray-50',
+ : 'bg-white text-gray-900 hover:bg-surface-gray-1',
'flex w-full items-center rounded border p-3 text-left text-base text-gray-900',
]"
>
diff --git a/dashboard/src/pages/NewReleaseGroup.vue b/dashboard/src/pages/NewReleaseGroup.vue
index 92cdbe663ce..b8cc66f7bb0 100644
--- a/dashboard/src/pages/NewReleaseGroup.vue
+++ b/dashboard/src/pages/NewReleaseGroup.vue
@@ -51,7 +51,7 @@
:class="[
benchVersion === version.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'bg-white text-gray-900 hover:bg-gray-50',
+ : 'bg-white text-gray-900 hover:bg-surface-gray-1',
'flex cursor-pointer items-center justify-between rounded border border-gray-400 p-3 text-sm focus:outline-none',
]"
@click="benchVersion = version.name"
@@ -80,7 +80,7 @@
:class="[
benchRegion === c.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded border p-3 text-left text-base text-gray-900',
]"
>
diff --git a/dashboard/src/pages/NewServer.vue b/dashboard/src/pages/NewServer.vue
index 5ddf989e7ed..f511fce7bc4 100644
--- a/dashboard/src/pages/NewServer.vue
+++ b/dashboard/src/pages/NewServer.vue
@@ -41,7 +41,7 @@
:class="[
serverType === c.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded-md border p-3 text-left text-base text-gray-900',
]"
>
@@ -100,7 +100,7 @@
:class="[
serverProvider === provider.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded-md border p-2 text-left text-base text-gray-900',
]"
>
@@ -148,7 +148,7 @@
:class="[
serverRegion === r.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded-md border p-2 text-left text-base text-gray-900',
]"
>
@@ -195,7 +195,7 @@
:class="[
unifiedServer == c.unifiedServer
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded-md border p-2.5 text-left text-base text-gray-900',
]"
>
@@ -254,7 +254,7 @@
:class="[
serviceType === c.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded-md border p-2.5 text-left text-base text-gray-900',
]"
>
@@ -345,7 +345,7 @@
: index === availableAppPlanTypes.length - 1
? 'rounded-b-md sm:rounded-r-md sm:rounded-bl-none'
: 'rounded-none',
- 'relative flex w-full flex-col overflow-hidden border text-left hover:bg-gray-50',
+ 'relative flex w-full flex-col overflow-hidden border text-left hover:bg-surface-gray-1',
]"
>
@@ -451,7 +451,7 @@
: index === availableDbPlanTypes.length - 1
? 'rounded-b-md sm:rounded-r-md sm:rounded-bl-none'
: 'rounded-none',
- 'relative flex w-full flex-col overflow-hidden border text-left hover:bg-gray-50',
+ 'relative flex w-full flex-col overflow-hidden border text-left hover:bg-surface-gray-1',
]"
>
@@ -560,7 +560,9 @@
Auto Add-on Storage
-
+
This feature will automatically increases the storage as it reaches
over 90% of its capacity.
diff --git a/dashboard/src/pages/NewSite.vue b/dashboard/src/pages/NewSite.vue
index 080a7bbb2b6..114c2e52893 100644
--- a/dashboard/src/pages/NewSite.vue
+++ b/dashboard/src/pages/NewSite.vue
@@ -52,7 +52,7 @@
:class="[
version === v.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'bg-white text-gray-900 hover:bg-gray-50',
+ : 'bg-white text-gray-900 hover:bg-surface-gray-1',
v.disabled && 'opacity-50 hover:cursor-default',
'flex w-full cursor-pointer items-center justify-between rounded border border-gray-400 p-3 text-sm focus:outline-none',
]"
@@ -161,7 +161,7 @@
:class="[
provider === p.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-gray-50',
+ : 'border-gray-400 bg-white text-gray-900 ring-gray-200 hover:bg-surface-gray-1',
'flex w-full items-center rounded-md border p-2 text-left text-base text-gray-900',
]"
>
@@ -202,7 +202,7 @@
:class="[
cluster === c.name
? 'border-gray-900 ring-1 ring-gray-900 hover:bg-gray-100'
- : 'bg-white text-gray-900 hover:bg-gray-50',
+ : 'bg-white text-gray-900 hover:bg-surface-gray-1',
'flex w-full items-center rounded border p-3 text-left text-base text-gray-900',
]"
>
@@ -259,7 +259,7 @@
diff --git a/dashboard/src/pages/NewSiteProgress.vue b/dashboard/src/pages/NewSiteProgress.vue
index af7e63b8025..cc9693cc7f9 100644
--- a/dashboard/src/pages/NewSiteProgress.vue
+++ b/dashboard/src/pages/NewSiteProgress.vue
@@ -46,7 +46,7 @@
-
+
diff --git a/dashboard/src/pages/PartnerNewPayout.vue b/dashboard/src/pages/PartnerNewPayout.vue
index 902f49c4ca3..db56275b708 100644
--- a/dashboard/src/pages/PartnerNewPayout.vue
+++ b/dashboard/src/pages/PartnerNewPayout.vue
@@ -94,13 +94,13 @@
>
Summary
-
+
Total Amount
{{ formatCurrency(total_amount) }}
-
+
Commission ({{ partnerCommission }}%)
@@ -108,7 +108,7 @@
{{ formatCurrency(commission) }}
-
+
Net Amount
{{ formatCurrency(net_amount) }}
diff --git a/dashboard/src/pages/Subscription.vue b/dashboard/src/pages/Subscription.vue
index 7f48c766525..c2d0cf25a7f 100644
--- a/dashboard/src/pages/Subscription.vue
+++ b/dashboard/src/pages/Subscription.vue
@@ -1,5 +1,5 @@
-
+
Manage Subscription
diff --git a/dashboard/src/pages/devtools/database/DatabaseAnalyzer.vue b/dashboard/src/pages/devtools/database/DatabaseAnalyzer.vue
index ed3fb95a2ff..b01d8914eaf 100644
--- a/dashboard/src/pages/devtools/database/DatabaseAnalyzer.vue
+++ b/dashboard/src/pages/devtools/database/DatabaseAnalyzer.vue
@@ -61,7 +61,7 @@
-
${this.selectedQuery}
+
${this.selectedQuery}
`,
primaryAction: {
label: 'Run Query',
diff --git a/dashboard/src/pages/devtools/log-browser/LogList.vue b/dashboard/src/pages/devtools/log-browser/LogList.vue
index 2368909926b..f7703d0e1b8 100644
--- a/dashboard/src/pages/devtools/log-browser/LogList.vue
+++ b/dashboard/src/pages/devtools/log-browser/LogList.vue
@@ -25,7 +25,7 @@
-
+
|
Loading
-
+
-
+
-
+
-
+
Date: Sat, 21 Mar 2026 19:00:12 +0530
Subject: [PATCH 03/18] feat(dark-theme): rename bg-white -> bg-surface-white
---
.../src/components/AddressableErrorDialog.vue | 2 +-
dashboard/src/components/Autocomplete.vue | 4 ++--
dashboard/src/components/ClickToCopyField.vue | 16 ++++++++--------
dashboard/src/components/CustomToast.vue | 2 +-
dashboard/src/components/Header.vue | 2 +-
.../src/components/MarketplaceAppListing.vue | 2 +-
dashboard/src/components/MobileNavItem.vue | 2 +-
dashboard/src/components/ObjectList.vue | 2 +-
.../src/components/OnboardingWithoutPayment.vue | 2 +-
dashboard/src/components/PhoneInput.vue | 4 ++--
dashboard/src/components/auth/LoginBox.vue | 4 +++-
dashboard/src/components/auth/SaaSLoginBox.vue | 2 +-
.../devtools/database/BinlogResultTable.vue | 2 +-
dashboard/src/components/global/Card.vue | 6 +++---
dashboard/src/components/global/SuccessCard.vue | 4 ++--
.../src/components/marketplace/CodeReview.vue | 2 +-
.../src/components/navigation/sidebar/Item.vue | 17 +++++++++++------
.../components/navigation/sidebar/Sidebar.vue | 2 +-
.../server/SecondaryServerPlanDialog.vue | 2 +-
.../src/components/server/ServerPlansDialog.vue | 2 +-
dashboard/src/components/site/SiteAnalytics.vue | 2 +-
.../SiteDatabaseColumnsSelector.vue | 2 +-
dashboard/src/pages/DetailPage.vue | 2 +-
dashboard/src/pages/InstallApp.vue | 2 +-
dashboard/src/pages/NewReleaseGroup.vue | 4 ++--
dashboard/src/pages/NewServer.vue | 14 +++++++-------
dashboard/src/pages/NewSite.vue | 6 +++---
dashboard/src/pages/PartnerNewPayout.vue | 6 +++---
dashboard/src/pages/PrivateStatusPage.vue | 2 +-
dashboard/src/pages/Settings.vue | 2 +-
.../pages/devtools/database/BinlogBrowser.vue | 10 +++++-----
.../devtools/database/DatabaseAnalyzer.vue | 2 +-
.../devtools/database/DatabaseSQLPlayground.vue | 2 +-
.../pages/devtools/log-browser/LogBrowser.vue | 2 +-
34 files changed, 73 insertions(+), 66 deletions(-)
diff --git a/dashboard/src/components/AddressableErrorDialog.vue b/dashboard/src/components/AddressableErrorDialog.vue
index 69ab9cb7c84..96640723880 100644
--- a/dashboard/src/components/AddressableErrorDialog.vue
+++ b/dashboard/src/components/AddressableErrorDialog.vue
@@ -17,7 +17,7 @@
@@ -43,7 +43,7 @@
class="bg-surface-white absolute right-0 z-[999] max-h-[15rem] w-full overflow-y-auto rounded-lg p-0 shadow-2xl"
v-show="filteredOptions.length"
>
-
+
@@ -31,16 +31,16 @@ export default {
props: {
textContent: {
type: String,
- required: true
+ required: true,
},
breakLines: {
type: Boolean,
- default: true
- }
+ default: true,
+ },
},
data() {
return {
- copied: false
+ copied: false,
};
},
methods: {
@@ -53,7 +53,7 @@ export default {
}, 4000);
toast.success('Copied to clipboard!');
});
- }
- }
+ },
+ },
};
diff --git a/dashboard/src/components/CustomToast.vue b/dashboard/src/components/CustomToast.vue
index 98367eb860b..69ba2e61df9 100644
--- a/dashboard/src/components/CustomToast.vue
+++ b/dashboard/src/components/CustomToast.vue
@@ -13,7 +13,7 @@ defineProps({
{{ title }}
diff --git a/dashboard/src/components/Header.vue b/dashboard/src/components/Header.vue
index bffea2683ed..12cf014ef9f 100644
--- a/dashboard/src/components/Header.vue
+++ b/dashboard/src/components/Header.vue
@@ -1,6 +1,6 @@