pmoreno-rodriguez / grav-theme-mundana

Mundana Jekyll theme ported to Grav
MIT License
7 stars 2 forks source link

sc-alert class light wrong color #15

Closed fugo closed 4 months ago

fugo commented 4 months ago

By using in [sc-alert] the class light the text color is white and then invisible.
I found in theme.css and theme.min.css the wrong declarion and changed it to color: #818182;.

.alert-light {
    color:#fff;
    background-color:#f8f9fa;
    border-color:#f8f9fa;
}
pmoreno-rodriguez commented 4 months ago

Mundana original theme seems has modified the bootstrap CSS for some alerts. In this case the CSS classes for alert light are:

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

Well, I'll try to modify this for the next version of theme.

Thanks.

pmoreno-rodriguez commented 4 months ago

Fixed on release 1.3.1