Created
July 3, 2015 04:29
-
-
Save aviogreen/a4b8f1c3d3a02fdb6210 to your computer and use it in GitHub Desktop.
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
/************************************************* | |
* Modal Full Screen (.modal.modal-fullscreen) | |
*************************************************/ | |
.modal-fullscreen { | |
z-index: 99999999; | |
padding-right: 0!important; | |
overflow: hidden; | |
.modal-dialog { | |
margin: 0; | |
width: 100%; | |
height: 100%; | |
padding: 0; | |
} | |
.modal-body { | |
min-height: 100%; | |
.loading { | |
position: absolute; | |
left: 50%; | |
top: 40%; | |
margin-top: -25px; | |
margin-left: -25px; | |
} | |
} | |
.modal-content { | |
height: 100%; | |
border-radius: 0; | |
border: none; | |
overflow-y: auto; | |
background-color: @body-bg-color; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment