bulk operations fix

This commit is contained in:
Serghey Rodin 2015-11-06 00:43:06 +02:00
parent e02e470d34
commit 99994dc865
3 changed files with 12 additions and 7 deletions

View file

@ -633,6 +633,7 @@ a {
background-size: 450px auto; background-size: 450px auto;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: -232px -9px; background-position: -232px -9px;
z-index: 99;
} }
input[type="checkbox"] { input[type="checkbox"] {
@ -672,7 +673,7 @@ input[type="checkbox"] {
margin-bottom: 28px; margin-bottom: 28px;
position: fixed; position: fixed;
width: 100%; width: 100%;
z-index: 11; z-index: 100;
} }
.l-header a { .l-header a {
font-size: 12px; font-size: 12px;
@ -812,7 +813,7 @@ input[type="checkbox"] {
position: fixed; position: fixed;
top: 34px; top: 34px;
width: 351px; width: 351px;
z-index: 21; z-index: 200;
font-size: 12px; font-size: 12px;
padding: 0; padding: 0;
color: #7f7f7f; color: #7f7f7f;
@ -906,7 +907,7 @@ input[type="checkbox"] {
margin: 34px auto; margin: 34px auto;
position: fixed; position: fixed;
background-color: #fff; background-color: #fff;
z-index: 10; z-index: 100;
padding-top: 30px; padding-top: 30px;
} }
.l-stat__col { .l-stat__col {
@ -989,21 +990,21 @@ div.l-content > div.l-separator:nth-of-type(2) {
margin-top: 214px; margin-top: 214px;
width: 100%; width: 100%;
position: fixed; position: fixed;
z-index: 20; z-index: 120;
} }
div.l-content > div.l-separator:nth-of-type(4) { div.l-content > div.l-separator:nth-of-type(4) {
margin-top: 259px; margin-top: 259px;
width: 100%; width: 100%;
position: fixed; position: fixed;
z-index: 5; z-index: 100;
} }
.l-sort { .l-sort {
position: fixed; position: fixed;
width: 998px; width: 998px;
background-color: #fff; background-color: #fff;
z-index: 10; z-index: 110;
margin-top: 215px; margin-top: 215px;
} }
.l-sort__create-btn { .l-sort__create-btn {

View file

@ -58,7 +58,7 @@ App.Templates.html = {
<input type="text" id="copy_dest" value="~!:DST_FILENAME~!" class="new-title">\ <input type="text" id="copy_dest" value="~!:DST_FILENAME~!" class="new-title">\
</div>\ </div>\
<div class="results"></div>\ <div class="results"></div>\
<div class="message">'+App.Constants.FM_EXISTING_FILES_WILL_BE_REPLACED+'</div>\ <div class="warning">'+App.Constants.FM_EXISTING_FILES_WILL_BE_REPLACED+'</div>\
<div class="controls">\ <div class="controls">\
<p class="cancel" onClick="FM.popupClose();">'+App.Constants.FM_CANCEL+'</p>\ <p class="cancel" onClick="FM.popupClose();">'+App.Constants.FM_CANCEL+'</p>\
<p class="ok" onClick="FM.bulkCopyDo();">'+App.Constants.FM_COPY+'</p>\ <p class="ok" onClick="FM.bulkCopyDo();">'+App.Constants.FM_COPY+'</p>\

View file

@ -448,6 +448,10 @@
}); });
} }
//
$('form#objects').bind('submit', function(evt) {
$('.l-unit.selected').find('.ch-toggle').attr('checked', true);
});
}); });