From bea0fa5b9c83559112671a2c9caffae5a05199ab Mon Sep 17 00:00:00 2001 From: schlagmichdoch Date: Wed, 3 Jan 2024 17:11:38 +0100 Subject: [PATCH] Fix color of URLs on receive text dialog --- public/styles/styles-deferred.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/styles/styles-deferred.css b/public/styles/styles-deferred.css index 6fbf811..0d81761 100644 --- a/public/styles/styles-deferred.css +++ b/public/styles/styles-deferred.css @@ -384,10 +384,6 @@ x-dialog:not([show]) x-paper { transform: scale(0.1); } -x-dialog a { - color: var(--primary-color); -} - /* Pair Devices Dialog & Public Room Dialog */ .input-key-container { @@ -786,7 +782,7 @@ x-dialog x-paper { background-color: var(--bg-color-secondary) !important; } -.textarea * { +.textarea *:not(a) { margin: 0 !important; padding: 0 !important; color: unset !important; @@ -799,6 +795,10 @@ x-dialog x-paper { font-weight: unset !important; } +x-dialog a { + color: var(--primary-color); +} + /* Image/Video/Audio Preview */ .file-preview { margin-bottom: 15px;