Skip to content

Instantly share code, notes, and snippets.

@anutron
Created September 12, 2013 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anutron/6540893 to your computer and use it in GitHub Desktop.
Save anutron/6540893 to your computer and use it in GitHub Desktop.
Fix for modal-backdrop in Flat-UI Pro
// 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