method to lock and unlock tree (stop receiving clicks and give user visual feedback that we are working on his request

This commit is contained in:
Ralf Becker 2014-01-21 10:25:26 +00:00
parent eaa6376170
commit 598e827b2e

View File

@ -565,6 +565,24 @@ div.mailPreviewHeaders #mail-index_previewAttachmentArea.visible {
.mail_extraEmails.visible > a {
display: list-item;
}
/**
* Lock div for tree to prevent further clicks
*/
#mail-index_nm\[foldertree\] {
position: relative;
}
#mail_folder_lock_div {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 10000;
background-image: url(../../../phpgwapi/templates/default/images/ajax-loader.gif);
background-position: left top;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 0.5);
}
#popupMainDiv {
padding: 5px;
}