diff options
| author | Mark Otto <[email protected]> | 2014-10-26 22:34:08 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-10-26 22:34:08 -0700 |
| commit | 72a92f556d52423350fe63d1c3cc34ff5a74240f (patch) | |
| tree | 15dd44191543e53182b58fc6411d1391e7552952 | |
| parent | d664ceaac890e6b42c2888792d0b3e0db7a9c04c (diff) | |
| download | bootstrap-72a92f556d52423350fe63d1c3cc34ff5a74240f.tar.xz bootstrap-72a92f556d52423350fe63d1c3cc34ff5a74240f.zip | |
no more mixin, use regular property
| -rw-r--r-- | less/_modal.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/_modal.less b/less/_modal.less index 456c0449c..fb05445d3 100644 --- a/less/_modal.less +++ b/less/_modal.less @@ -68,8 +68,8 @@ left: 0; background-color: @modal-backdrop-bg; // Fade for backdrop - &.fade { .opacity(0); } - &.in { .opacity(@modal-backdrop-opacity); } + &.fade { opacity: 0; } + &.in { opacity: @modal-backdrop-opacity; } } // Modal header |
