Created
September 12, 2013 17:13
-
-
Save anutron/6540893 to your computer and use it in GitHub Desktop.
Fix for modal-backdrop in Flat-UI Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Background | |
.modal-backdrop { | |
z-index: (@zindex-modal-background - 10); | |
background-color: @modal-backdrop-bg; | |
// Fade for backdrop | |
&.in { .opacity(95); } | |
// previously was: | |
// &.in { .opacity(.95); } | |
// which produced a nearly invisible backdrop with opacity set to .0095 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment