vwall / compass-twitter-bootstrap

The twitter bootstrap ported to compass
723 stars 121 forks source link

Modal background opacity is "80", not "0.80" #108

Closed deanbrowne closed 10 years ago

deanbrowne commented 11 years ago

Very minor.

The modal's background is opaque instead of 80%. On line 20 of _modals.scss change:

.modal-backdrop,
.modal-backdrop.fade.in {
  @include ctb-opacity(80);  // Should be 0.80
}

to:

.modal-backdrop,
.modal-backdrop.fade.in {
  @include ctb-opacity(0.80);
}
kelvinleehk commented 10 years ago

+1. Is there any update on this issue?

thetizzo commented 10 years ago

This fix should be in the next release. Thanks @deanbrowne