From fbf3de52cd948cb7a69806640c2a203c5e30ac9a Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Fri, 5 May 2023 09:01:54 +0000 Subject: [PATCH] Remove mixin 'mx_Dialog_link' (#10787) There is not a component named 'mx_Dialog_link', and removing a mixin is good for pushing our style codebase toward vanilla CSS. --- res/css/_common.pcss | 5 ----- res/css/views/auth/_AuthBody.pcss | 3 ++- res/css/views/auth/_CompleteSecurityBody.pcss | 3 ++- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/res/css/_common.pcss b/res/css/_common.pcss index 40436720445..dd09d912a37 100644 --- a/res/css/_common.pcss +++ b/res/css/_common.pcss @@ -857,8 +857,3 @@ legend { } } } - -@define-mixin mx_Dialog_link { - color: $accent; - text-decoration: none; -} diff --git a/res/css/views/auth/_AuthBody.pcss b/res/css/views/auth/_AuthBody.pcss index 0c55637df63..b5736e644dd 100644 --- a/res/css/views/auth/_AuthBody.pcss +++ b/res/css/views/auth/_AuthBody.pcss @@ -53,7 +53,8 @@ limitations under the License. a:link, a:hover, a:visited { - @mixin mx_Dialog_link; + color: $accent; + text-decoration: none; } fieldset { diff --git a/res/css/views/auth/_CompleteSecurityBody.pcss b/res/css/views/auth/_CompleteSecurityBody.pcss index dbc6849c13b..644a9a2d375 100644 --- a/res/css/views/auth/_CompleteSecurityBody.pcss +++ b/res/css/views/auth/_CompleteSecurityBody.pcss @@ -37,6 +37,7 @@ limitations under the License. a:link, a:hover, a:visited { - @mixin mx_Dialog_link; + color: $accent; + text-decoration: none; } }