1
0
Fork 0

background set to transparent and color to white for waitModal dialog

This commit is contained in:
gschwab 2014-03-03 12:01:46 +01:00
parent 9ec7a10a4c
commit 04a7a047e0
3 changed files with 1118 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<script id="waitModal.ejs" type="text/template">
<div id="waitModalLayer" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display:none">
<div id="waitModalLayer" class="modal hide fade waitModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display:none">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">

View File

@ -2,4 +2,11 @@
height : 70%;
width : 70%;
margin-left: 0px;
}
.waitModal {
background: transparent;
color: $c_white;
box-shadow: none;
border: none;
}

File diff suppressed because one or more lines are too long