parent
6bda1f8e4d
commit
8ab12ee69e
|
@ -402,6 +402,7 @@ table#otheruserstable {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#connectivitylink,
|
||||||
#connectivity {
|
#connectivity {
|
||||||
z-index: 600 !important;
|
z-index: 600 !important;
|
||||||
}
|
}
|
||||||
|
@ -420,17 +421,17 @@ table#otheruserstable {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#modaloverlay {
|
.toolbar #overlay {
|
||||||
z-index: 500;
|
z-index: 500;
|
||||||
display: none;
|
display: none;
|
||||||
background-repeat: repeat-both;
|
background-repeat: repeat-both;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: 100%;
|
height: inherit;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
* html #modaloverlay {
|
* html #overlay {
|
||||||
/* for IE 6+ */
|
/* for IE 6+ */
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||||
filter: alpha(opacity=100);
|
filter: alpha(opacity=100);
|
||||||
|
|
|
@ -40,7 +40,7 @@ var padmodals = (function()
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
showOverlay: function(duration) {
|
showOverlay: function(duration) {
|
||||||
$("#modaloverlay").show().css(
|
$("#overlay").show().css(
|
||||||
{
|
{
|
||||||
'opacity': 0
|
'opacity': 0
|
||||||
}).animate(
|
}).animate(
|
||||||
|
@ -49,7 +49,7 @@ var padmodals = (function()
|
||||||
}, duration);
|
}, duration);
|
||||||
},
|
},
|
||||||
hideOverlay: function(duration) {
|
hideOverlay: function(duration) {
|
||||||
$("#modaloverlay").animate(
|
$("#overlay").animate(
|
||||||
{
|
{
|
||||||
'opacity': 0
|
'opacity': 0
|
||||||
}, duration, function()
|
}, duration, function()
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
<% e.begin_block("body"); %>
|
<% e.begin_block("body"); %>
|
||||||
<div id="editbar" class="toolbar">
|
<div id="editbar" class="toolbar">
|
||||||
|
<div id="overlay">
|
||||||
|
<div id="overlay-inner"></div>
|
||||||
|
</div>
|
||||||
<ul class="menu_left">
|
<ul class="menu_left">
|
||||||
<% e.begin_block("editbarMenuLeft"); %>
|
<% e.begin_block("editbarMenuLeft"); %>
|
||||||
<li class="acl-write" id="bold" data-key="bold">
|
<li class="acl-write" id="bold" data-key="bold">
|
||||||
|
@ -313,10 +316,6 @@
|
||||||
|
|
||||||
<div id="focusprotector"> </div>
|
<div id="focusprotector"> </div>
|
||||||
|
|
||||||
<div id="modaloverlay">
|
|
||||||
<div id="modaloverlay-inner"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<% e.end_block(); %>
|
<% e.end_block(); %>
|
||||||
|
|
||||||
<% e.begin_block("scripts"); %>
|
<% e.begin_block("scripts"); %>
|
||||||
|
|
Loading…
Reference in New Issue