sidebar click modification
This commit is contained in:
parent
54fc92c372
commit
35d044c121
|
@ -468,6 +468,7 @@ html.ie8 #fileList tr.selected td.filename>.selectCheckBox {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-left: 0;
|
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;
|
-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;
|
opacity: 0;
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
#fileList a.action.action-share,
|
#fileList a.action.action-share {
|
||||||
#fileList a.action.action-menu {
|
|
||||||
padding: 17px 14px;
|
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 {
|
#fileList .popovermenu {
|
||||||
margin-right: 21px;
|
margin-right: -5px;
|
||||||
}
|
}
|
||||||
.ie8 #fileList .popovermenu {
|
.ie8 #fileList .popovermenu {
|
||||||
margin-top: -10px;
|
margin-top: -10px;
|
||||||
|
|
|
@ -271,7 +271,8 @@
|
||||||
|
|
||||||
this.updateSearch();
|
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.$fileList.on('change', 'td.filename>.selectCheckBox', _.bind(this._onClickFileCheckbox, this));
|
||||||
this.$el.on('urlChanged', _.bind(this._onUrlChanged, this));
|
this.$el.on('urlChanged', _.bind(this._onUrlChanged, this));
|
||||||
this.$el.find('.select-all').click(_.bind(this._onClickSelectAll, this));
|
this.$el.find('.select-all').click(_.bind(this._onClickSelectAll, this));
|
||||||
|
|
Loading…
Reference in New Issue