Skip to content

Commit

Permalink
FP-1408: (Frontera) Fix Clickable Area of Article List Link (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar authored Jan 20, 2022
1 parent a7d6d41 commit c2cff4f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,12 @@ Styleguide Trumps.Scopes.ArticleList
.s-article-list--layout-gapless.s-article-list--links p:not(:last-child) a:hover::before {
@extend .x-article-link-hover--gapless;
}

/* Disable link click feedback because `x-article-link-stretch` is used */
/* FP-1249: If <a> wraps list item, then no need to `x-article-link-stretch` */
/* SEE: https://github.com/TACC/Core-CMS/pull/429 */
.s-article-list--links p:not(:last-child) a:active {
position: static; /* override html-elements.css `a:active` */
}


/* Modifiers: Layout */
Expand Down

0 comments on commit c2cff4f

Please sign in to comment.