Merge pull request #23831 from owncloud/backport-23511
[9.0] sidebar click modification
This commit is contained in:
commit
e2a274fdd3
|
@ -468,6 +468,7 @@ html.ie8 #fileList tr.selected td.filename>.selectCheckBox {
|
|||
position: relative;
|
||||
width: 100%;
|
||||
padding-left: 0;
|
||||
padding-right:0;
|
||||
-webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms;
|
||||
}
|
||||
|
||||
|
@ -572,13 +573,26 @@ html.ie8 .column-mtime .selectedActions {
|
|||
opacity: 0;
|
||||
display:none;
|
||||
}
|
||||
#fileList a.action.action-share,
|
||||
#fileList a.action.action-menu {
|
||||
#fileList a.action.action-share {
|
||||
padding: 17px 14px;
|
||||
}
|
||||
|
||||
#fileList a.action.action-menu {
|
||||
padding-top: 17px;
|
||||
padding-bottom: 17px;
|
||||
padding-left:14px;
|
||||
padding-right:0px;
|
||||
}
|
||||
|
||||
#fileList .filesize {
|
||||
padding-top:0px;
|
||||
padding-bottom:0px;
|
||||
padding-left:60px;
|
||||
padding-right:15px;
|
||||
}
|
||||
|
||||
#fileList .popovermenu {
|
||||
margin-right: 21px;
|
||||
margin-right: -5px;
|
||||
}
|
||||
.ie8 #fileList .popovermenu {
|
||||
margin-top: -10px;
|
||||
|
|
|
@ -271,7 +271,8 @@
|
|||
|
||||
this.updateSearch();
|
||||
|
||||
this.$fileList.on('click','td.filename>a.name', _.bind(this._onClickFile, this));
|
||||
this.$fileList.on('click','td.filename>a.name, td.filesize, td.date', _.bind(this._onClickFile, this));
|
||||
|
||||
this.$fileList.on('change', 'td.filename>.selectCheckBox', _.bind(this._onClickFileCheckbox, this));
|
||||
this.$el.on('urlChanged', _.bind(this._onUrlChanged, this));
|
||||
this.$el.find('.select-all').click(_.bind(this._onClickSelectAll, this));
|
||||
|
|
Loading…
Reference in New Issue