From b54845fb9d2276360c21ae39c23eed3e2332054e Mon Sep 17 00:00:00 2001 From: Evonne Date: Tue, 10 Sep 2019 11:12:12 +1200 Subject: [PATCH] Bug #1833348 Heading on tags page can't be selected On My tags page, the link next to "Search results for" is not clickable due to the Edit this tag button floating on top of it in a transparent layer. Fix give the button group a margin-left to move it away from the search title. Both the link and the edit button (sometimes doesn't display) should now be clickable. behatnotneeded Change-Id: Idecfbaaf8965b1908a8b6edd3c3300b36da33929 --- htdocs/theme/raw/sass/components/_tags.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/htdocs/theme/raw/sass/components/_tags.scss b/htdocs/theme/raw/sass/components/_tags.scss index b939b5a605..ba4583d8f0 100644 --- a/htdocs/theme/raw/sass/components/_tags.scss +++ b/htdocs/theme/raw/sass/components/_tags.scss @@ -37,8 +37,13 @@ } .tag-results .btn-top-right { margin-right: -1px; - margin-top: -41px; + margin-top: -42px; height: 40px; + margin-left: 70%; + + @include media-breakpoint-down(xs) { + margin: 0; + } } .tag-filters { @extend .clearfix; -- GitLab