From c79e5c7e8be21eb9e58fe0883fb132fd43659a13 Mon Sep 17 00:00:00 2001 From: hadi Date: Thu, 4 May 2023 12:41:30 +0200 Subject: [PATCH] Fix readonly links styling --- api/js/etemplate/Et2Url/Et2UrlReadonly.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/js/etemplate/Et2Url/Et2UrlReadonly.ts b/api/js/etemplate/Et2Url/Et2UrlReadonly.ts index aac995309b..4f9c1a8a2a 100644 --- a/api/js/etemplate/Et2Url/Et2UrlReadonly.ts +++ b/api/js/etemplate/Et2Url/Et2UrlReadonly.ts @@ -22,9 +22,11 @@ export class Et2UrlReadonly extends Et2Description return [ ...super.styles, css` - :host { + + a { cursor: pointer; - color: #26537c; + color: #26537c !important; + text-decoration: none !important; }` ]; }