baltimorecounty / baltimorecountymd.gov-assets

Baltimore County Government Website Assets
3 stars 1 forks source link

Current Page Link Is Obscured in Site Search Results Pager #273

Open jdomasky opened 5 years ago

jdomasky commented 5 years ago

https://dev.baltimorecountymd.gov/search/results.html?q=storm

Current behavior: Current page link in results pager is displayed as a dark block instead of a number. It has gray20 (#cccccc) as the background color.

Expected behavior: Current page link should have a transparent background color.

This issue can only be seen on the .gov dev site. It was temporarily resolved in prod by overriding the background color in the head section.

martypowell commented 5 years ago

@jdomasky please don't submit issues vs dev, i believe this is a result of @sdurphy testing.

danfox01 commented 5 years ago

@martypowell The issue occurs in both prod and dev. The only place you can still see it is dev, because we added a line to the head section as a quick fix in prod.

martypowell commented 5 years ago

ok @jdomasky and @danfox01 that makes sense, do you mind pointing us to the fix?

jdomasky commented 5 years ago

@martypowell We added this CSS to the Properties tab in the HEAD section of results.html (in the /search folder in SE prod):

<style type="text/css"> .gsc-cursor-current-page {background-color: transparent !important;} </style>

It didn't override without !important.

martypowell commented 5 years ago

perfect thanks @jdomasky