no more mixin, use regular property

This commit is contained in:
Mark Otto 2014-10-26 22:34:08 -07:00
parent d664ceaac8
commit 72a92f556d
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@
left: 0; left: 0;
background-color: @modal-backdrop-bg; background-color: @modal-backdrop-bg;
// Fade for backdrop // Fade for backdrop
&.fade { .opacity(0); } &.fade { opacity: 0; }
&.in { .opacity(@modal-backdrop-opacity); } &.in { opacity: @modal-backdrop-opacity; }
} }
// Modal header // Modal header