Add the missing border to the rich embeds
authorAlexander Ebert <ebert@woltlab.com>
Sun, 10 Sep 2023 14:05:09 +0000 (16:05 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Sun, 10 Sep 2023 14:05:09 +0000 (16:05 +0200)
Fixes #5646

wcfsetup/install/files/style/ui/unfurlUrl.scss

index 09a38029204c6fd50e114bfae1cd61bba91af585..76bef568da08405bd5d89e7066dbe8f339a16c59 100644 (file)
@@ -4,7 +4,7 @@
 
 .unfurlUrlCard {
        background-color: var(--wcfContentBackground);
-       border-radius: 3px;
+       border-radius: var(--wcfBorderRadius);
        box-shadow:
                0 0 3px rgba(0, 0, 0, 0.12),
                0 1px 2px rgba(0, 0, 0, 0.24);
        }
 }
 
+html[data-color-scheme="dark"] .unfurlUrlCard {
+       border: 1px solid var(--wcfContentBorderInner);
+}
+
 .unfurlUrlInformation {
        padding: 10px 10px 25px 10px;
 }