Skip to content

Commit 99994dc

Browse files
committed
bulk operations fix
1 parent e02e470 commit 99994dc

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

web/css/styles.min.css

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,7 @@ a {
633633
background-size: 450px auto;
634634
background-repeat: no-repeat;
635635
background-position: -232px -9px;
636+
z-index: 99;
636637
}
637638

638639
input[type="checkbox"] {
@@ -672,7 +673,7 @@ input[type="checkbox"] {
672673
margin-bottom: 28px;
673674
position: fixed;
674675
width: 100%;
675-
z-index: 11;
676+
z-index: 100;
676677
}
677678
.l-header a {
678679
font-size: 12px;
@@ -812,7 +813,7 @@ input[type="checkbox"] {
812813
position: fixed;
813814
top: 34px;
814815
width: 351px;
815-
z-index: 21;
816+
z-index: 200;
816817
font-size: 12px;
817818
padding: 0;
818819
color: #7f7f7f;
@@ -906,7 +907,7 @@ input[type="checkbox"] {
906907
margin: 34px auto;
907908
position: fixed;
908909
background-color: #fff;
909-
z-index: 10;
910+
z-index: 100;
910911
padding-top: 30px;
911912
}
912913
.l-stat__col {
@@ -989,21 +990,21 @@ div.l-content > div.l-separator:nth-of-type(2) {
989990
margin-top: 214px;
990991
width: 100%;
991992
position: fixed;
992-
z-index: 20;
993+
z-index: 120;
993994
}
994995

995996
div.l-content > div.l-separator:nth-of-type(4) {
996997
margin-top: 259px;
997998
width: 100%;
998999
position: fixed;
999-
z-index: 5;
1000+
z-index: 100;
10001001
}
10011002

10021003
.l-sort {
10031004
position: fixed;
10041005
width: 998px;
10051006
background-color: #fff;
1006-
z-index: 10;
1007+
z-index: 110;
10071008
margin-top: 215px;
10081009
}
10091010
.l-sort__create-btn {

web/js/templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ App.Templates.html = {
5858
<input type="text" id="copy_dest" value="~!:DST_FILENAME~!" class="new-title">\
5959
</div>\
6060
<div class="results"></div>\
61-
<div class="message">'+App.Constants.FM_EXISTING_FILES_WILL_BE_REPLACED+'</div>\
61+
<div class="warning">'+App.Constants.FM_EXISTING_FILES_WILL_BE_REPLACED+'</div>\
6262
<div class="controls">\
6363
<p class="cancel" onClick="FM.popupClose();">'+App.Constants.FM_CANCEL+'</p>\
6464
<p class="ok" onClick="FM.bulkCopyDo();">'+App.Constants.FM_COPY+'</p>\

web/templates/footer.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,10 @@
448448
});
449449
}
450450

451+
//
452+
$('form#objects').bind('submit', function(evt) {
453+
$('.l-unit.selected').find('.ch-toggle').attr('checked', true);
454+
});
451455

452456

453457
});

0 commit comments

Comments
 (0)