diff --git a/modules/store/src/main/resources/db/migration/h2/V1.35.1__password_length.sql b/modules/store/src/main/resources/db/migration/h2/V1.35.1__password_length.sql new file mode 100644 index 00000000..04f8b4ce --- /dev/null +++ b/modules/store/src/main/resources/db/migration/h2/V1.35.1__password_length.sql @@ -0,0 +1,5 @@ +ALTER TABLE "userimap" +ALTER COLUMN "imap_password" TYPE varchar; + +ALTER TABLE "useremail" +ALTER COLUMN "smtp_password" TYPE varchar; diff --git a/modules/store/src/main/resources/db/migration/mariadb/V1.35.1__password_length.sql b/modules/store/src/main/resources/db/migration/mariadb/V1.35.1__password_length.sql new file mode 100644 index 00000000..bfac339c --- /dev/null +++ b/modules/store/src/main/resources/db/migration/mariadb/V1.35.1__password_length.sql @@ -0,0 +1,5 @@ +ALTER TABLE `userimap` +MODIFY `imap_password` mediumtext; + +ALTER TABLE `useremail` +MODIFY `smtp_password` mediumtext; diff --git a/modules/store/src/main/resources/db/migration/postgresql/V1.35.1__password_length.sql b/modules/store/src/main/resources/db/migration/postgresql/V1.35.1__password_length.sql new file mode 100644 index 00000000..04f8b4ce --- /dev/null +++ b/modules/store/src/main/resources/db/migration/postgresql/V1.35.1__password_length.sql @@ -0,0 +1,5 @@ +ALTER TABLE "userimap" +ALTER COLUMN "imap_password" TYPE varchar; + +ALTER TABLE "useremail" +ALTER COLUMN "smtp_password" TYPE varchar; diff --git a/modules/webapp/src/main/elm/Styles.elm b/modules/webapp/src/main/elm/Styles.elm index 7a9ea3ef..48a866c4 100644 --- a/modules/webapp/src/main/elm/Styles.elm +++ b/modules/webapp/src/main/elm/Styles.elm @@ -395,7 +395,7 @@ editLinkTableCellStyle = dimmer : String dimmer = - " absolute top-0 left-0 w-full h-full bg-black bg-opacity-90 dark:bg-slate-900 dark:bg-opacity-90 z-30 flex flex-col items-center justify-center px-4 md:px-8 py-2 " + " absolute top-0 left-0 w-full h-full bg-black bg-opacity-90 dark:bg-slate-900 dark:bg-opacity-90 z-50 flex flex-col items-center justify-center px-4 md:px-8 py-2 " dimmerLight : String