Merge pull request #19518 from owncloud/checkboxes-file-restore

Display checkboxes properly after file restore
This commit is contained in:
VicDeo 2015-10-02 00:20:40 +03:00
commit f891b91cf8
2 changed files with 3 additions and 2 deletions

View File

@ -268,12 +268,12 @@
enableActions: function() {
this.$el.find('.action').css('display', 'inline');
this.$el.find(':input:checkbox').css('display', 'inline');
this.$el.find('input:checkbox').removeClass('u-hidden');
},
disableActions: function() {
this.$el.find('.action').css('display', 'none');
this.$el.find(':input:checkbox').css('display', 'none');
this.$el.find('input:checkbox').addClass('u-hidden');
},
updateStorageStatistics: function() {

View File

@ -183,6 +183,7 @@ html:not(.ie8) input[type="checkbox"].checkbox + label:before {
html:not(.ie8) input[type="checkbox"].checkbox:disabled +label:before { opacity: .6; }
html:not(.ie8) input[type="checkbox"].checkbox.u-left +label:before { float: left; }
html:not(.ie8) input[type="checkbox"].checkbox.u-hidden + label:before { display: none; }
html:not(.ie8) input[type="checkbox"].checkbox--white + label:before {
background-image: url('../img/actions/checkbox-white.svg');