mdbootstrap / material-design-for-bootstrap

Important! A new UI Kit version for Bootstrap 5 is available. Access the latest free version via the link below.
https://mdbootstrap.com/docs/standard/
MIT License
9.34k stars 1.15k forks source link

Typo in _forms-basic.scss #51

Closed Apeopex closed 7 years ago

Apeopex commented 7 years ago

Label styling has an errant space that causes SASS compiled code to not apply Darken function.

https://github.com/mdbootstrap/bootstrap-material-design/blame/master/sass/mdb/free/_forms-basic.scss#L102

https://github.com/mdbootstrap/bootstrap-material-design/blame/master/css/mdb.css#L5893

label {
    font-size: $label-font-size;
    color: darken ($input-border-color, 90%);
}

The space between darken and the parenthesis open is invalid and causes the following incorrect css:

label {
font-size: 0.8rem;
color: darken #ccc, 90%; }
mattonit commented 7 years ago

fixed