diff --git a/.gitignore b/.gitignore index 76d65f17..162a9448 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,7 @@ next-env.d.ts /data/ # Local private data -/local-data/ \ No newline at end of file +/local-data/ + +# Sibling repos +/repos/ \ No newline at end of file diff --git a/COMMIT_MSG.txt b/COMMIT_MSG.txt new file mode 100644 index 00000000..b2214fdc --- /dev/null +++ b/COMMIT_MSG.txt @@ -0,0 +1,16 @@ +refactor: update styling and color classes across components + +- Changed error message styling in ICalImportModal to use new color classes. +- Updated task completion styling in TaskListView to use new success color classes. +- Modified selected styling in ContactListItem tests to reflect new background class. +- Adjusted duplicate warning styling in ContactImportDialog to use new warning color classes. +- Refactored background and border colors in CalendarInvitationBanner for various statuses. +- Updated email list item and viewer components to use new warning and success color classes. +- Refined styling for unread indicators in email components. +- Enhanced error fallback styling in error components to use new warning color classes. +- Updated filter rule modal button hover styles to use new destructive color classes. +- Added experimental feature descriptions in Plugins and Themes settings. +- Refined vacation settings validation warning styling to use new warning color classes. +- Updated toast component styles to use new color classes for different states. +- Introduced a new built-in theme 'Qui' with specific color variables. +- Adjusted email security status colors to use new warning color classes. diff --git a/app/[locale]/login/page.tsx b/app/[locale]/login/page.tsx index 53123ee7..31ec1213 100644 --- a/app/[locale]/login/page.tsx +++ b/app/[locale]/login/page.tsx @@ -733,9 +733,9 @@ export default function LoginPage() { )} ) : oauthDiscoveryDone ? ( -
+
{t("error.oauth_discovery_failed")}
+
{t("error.oauth_discovery_failed")}
{msg}
+{msg}
First login detected
-+
First login detected
+Remember to remove ADMIN_PASSWORD from your .env file now that the hash is stored securely.
{calendar.name}
{event.status === "tentative" && (
-
+
{t("detail.tentative")}
)}
@@ -507,8 +507,8 @@ export function EventDetailPopover({
onClick={() => onRsvp("accepted")}
className={
userCurrentStatus === "accepted"
- ? "bg-green-600 hover:bg-green-700 text-white dark:bg-green-500 dark:hover:bg-green-600"
- : "text-green-600 dark:text-green-400 border-green-300 dark:border-green-700 hover:bg-green-50 dark:hover:bg-green-950"
+ ? "bg-success hover:bg-success/80 text-success-foreground"
+ : "text-success border-success/30 hover:bg-success/10"
}
>
{userCurrentStatus === "accepted" &&