+
openUser(status.account.id)}>
- @{status.account.acct}
+ @{status.account.acct}
-
+
-
+
{!spoilered && (
<>
{status.poll &&
}
diff --git a/renderer/pages/_app.tsx b/renderer/pages/_app.tsx
index 6f920cf122..c2ed211a6d 100644
--- a/renderer/pages/_app.tsx
+++ b/renderer/pages/_app.tsx
@@ -23,8 +23,12 @@ export default function MyApp({ Component, pageProps }: AppProps) {
outlined: {
base: {
input: {
+ borderWidth: 'placeholder-shown:border dark:placeholder-shown:border',
+ borderColor:
+ 'placeholder-shown:border-blue-gray-200 placeholder-shown:border-t-blue-gray-200 dark:placeholder-shown:border-blue-gray-700 dark:placeholder-shown:border-t-blue-gray-700',
floated: {
- borderWidth: 'border focus:border'
+ borderWidth: 'border focus:border dark:focus:border',
+ borderColor: 'border-t-transparent focus:border-t-transparent dark:border-t-transparent dark:focus:border-t-transparent'
}
},
label: {
@@ -41,6 +45,15 @@ export default function MyApp({ Component, pageProps }: AppProps) {
}
}
}
+ },
+ colors: {
+ input: {
+ 'blue-gray': {
+ color: 'text-blue-gray-900 dark:text-white',
+ borderColor: 'border-blue-gray-200',
+ borderColorFocused: 'focus:border-blue-gray-500 dark:focus:border-blue-gray-500'
+ }
+ }
}
}
}
@@ -52,8 +65,12 @@ export default function MyApp({ Component, pageProps }: AppProps) {
outlined: {
base: {
textarea: {
+ borderWidth: 'placeholder-shown:border dark:placeholder-shown:border',
+ borderColor:
+ 'placeholder-shown:border-blue-gray-200 placeholder-shown:border-t-blue-gray-200 dark:placeholder-shown:border-blue-gray-700 dark:placeholder-shown:border-t-blue-gray-700',
floated: {
- borderWidth: 'border focus:border'
+ borderWidth: 'border focus:border dark:focus:border',
+ borderColor: 'border-t-transparent focus:border-t-transparent dark:border-t-transparent dark:focus:border-t-transparent'
}
},
label: {
@@ -70,6 +87,15 @@ export default function MyApp({ Component, pageProps }: AppProps) {
}
}
}
+ },
+ colors: {
+ textarea: {
+ 'blue-gray': {
+ color: 'text-blue-gray-900 dark:text-white',
+ borderColor: 'border-blue-gray-200',
+ borderColorFocused: 'focus:border-blue-gray-500 dark:focus:border-blue-gray-500'
+ }
+ }
}
}
}
@@ -99,6 +125,23 @@ export default function MyApp({ Component, pageProps }: AppProps) {
}
}
}
+ },
+ dialog: {
+ styles: {
+ base: {
+ container: {
+ bg: 'bg-white dark:bg-gray-900',
+ color: 'text-blue-gray-500 dark:text-blue-gray-400'
+ }
+ }
+ }
+ },
+ dialogHeader: {
+ styles: {
+ base: {
+ color: 'text-blue-gray-900 dark:text-blue-gray-100'
+ }
+ }
}
}