web-illinois / illinois_framework_theme

An Illinois branded Drupal theme based off of the bootstrap4 theme.
5 stars 1 forks source link

Fix il-blue buttons on hero #489

Closed wrg20 closed 2 years ago

wrg20 commented 2 years ago

image

The illinois framework button code is interfering with the toolkit button code.

robgasc commented 2 years ago

I knew I should have added a note here too; this a problem with the overrides on the il-blue style; it only shows the text white when the link is visited. I initially thought it was something with the toolkit, but it looks like we do a local override.

I believe the culprit is

a.il-button.il-blue {
    color: var(--il-blue) !important;
}

in _web-components.buttons.scss. Color should be white. Not sure what color visited should be then, as visited links show white text.

github-actions[bot] commented 2 years ago

Branch wrg20/issue-489-fix-il-blue-buttons-on-hero created!

wrg20 commented 2 years ago

Merge #508 should fix this

wrg20 commented 2 years ago

Need to remove the .btn class image