Merge pull request #2115 from ONLYOFFICE/fix/search-scroll
Fix/search scroll
This commit is contained in:
commit
a9bfaffdbe
|
@ -3,6 +3,7 @@
|
||||||
<label id="search-adv-title"></label>
|
<label id="search-adv-title"></label>
|
||||||
<div id="search-btn-close"></div>
|
<div id="search-btn-close"></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="search-container">
|
||||||
<div id="search-adv-settings">
|
<div id="search-adv-settings">
|
||||||
<table cols="1">
|
<table cols="1">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -60,4 +61,5 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="search-results" class="ps-container oo">
|
<div id="search-results" class="ps-container oo">
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -176,6 +176,13 @@ define([
|
||||||
this.$resultsContainer = $('#search-results');
|
this.$resultsContainer = $('#search-results');
|
||||||
this.$resultsContainer.hide();
|
this.$resultsContainer.hide();
|
||||||
|
|
||||||
|
this.$searchContainer = $('#search-container');
|
||||||
|
this.$searchContainer.scroller = new Common.UI.Scroller({
|
||||||
|
el : $('#search-container'),
|
||||||
|
useKeyboard : true,
|
||||||
|
minScrollbarLength: 40
|
||||||
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.on('search:updateresults', _.bind(this.disableNavButtons, this));
|
Common.NotificationCenter.on('search:updateresults', _.bind(this.disableNavButtons, this));
|
||||||
if (window.SSE) {
|
if (window.SSE) {
|
||||||
this.cmbWithin = new Common.UI.ComboBox({
|
this.cmbWithin = new Common.UI.ComboBox({
|
||||||
|
@ -327,10 +334,23 @@ define([
|
||||||
ChangeSettings: function(props) {
|
ChangeSettings: function(props) {
|
||||||
},
|
},
|
||||||
|
|
||||||
|
updateScrollers: function () {
|
||||||
|
this.$resultsContainer.scroller.update({alwaysVisibleY: true});
|
||||||
|
this.$searchContainer.scroller.update({alwaysVisibleY: true});
|
||||||
|
|
||||||
|
setTimeout(_.bind(function () {
|
||||||
|
if (this.$searchContainer.find('> .ps-scrollbar-y-rail').is(':visible')) {
|
||||||
|
this.$resultsContainer.find('.ps-scrollbar-y-rail').addClass('set-left');
|
||||||
|
} else {
|
||||||
|
this.$resultsContainer.find('.ps-scrollbar-y-rail').removeClass('set-left');
|
||||||
|
}
|
||||||
|
}, this), 100);
|
||||||
|
},
|
||||||
|
|
||||||
updateResultsContainerHeight: function () {
|
updateResultsContainerHeight: function () {
|
||||||
if (this.$resultsContainer) {
|
if (this.$resultsContainer) {
|
||||||
this.$resultsContainer.outerHeight($('#search-box').outerHeight() - $('#search-header').outerHeight() - $('#search-adv-settings').outerHeight());
|
this.$resultsContainer.outerHeight(Math.max($('#search-box').outerHeight() - $('#search-header').outerHeight() - $('#search-adv-settings').outerHeight(), 112));
|
||||||
this.$resultsContainer.scroller.update({alwaysVisibleY: true});
|
this.updateScrollers();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -136,10 +136,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#search-adv-settings {
|
#search-adv-settings {
|
||||||
position: absolute;
|
position: relative;
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
top: 45px;
|
|
||||||
padding: 10px 15px 0 15px;
|
padding: 10px 15px 0 15px;
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
@ -238,10 +235,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#search-results {
|
#search-results {
|
||||||
position: absolute;
|
position: relative;
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-top: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
border-top: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
||||||
border-top: @scaled-one-px-value solid @border-toolbar;
|
border-top: @scaled-one-px-value solid @border-toolbar;
|
||||||
|
@ -268,6 +262,21 @@
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ps-scrollbar-y-rail {
|
||||||
|
&.set-left {
|
||||||
|
right: 11px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#search-container {
|
||||||
|
position: absolute;
|
||||||
|
overflow: hidden;
|
||||||
|
top: 45px;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -333,7 +333,7 @@ define([
|
||||||
onEndTextAroundSearch: function () {
|
onEndTextAroundSearch: function () {
|
||||||
if (this.view) {
|
if (this.view) {
|
||||||
this._state.isStartedAddingResults = false;
|
this._state.isStartedAddingResults = false;
|
||||||
this.view.$resultsContainer.scroller.update({alwaysVisibleY: true});
|
this.view.updateScrollers();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -299,7 +299,7 @@ define([
|
||||||
onEndTextAroundSearch: function () {
|
onEndTextAroundSearch: function () {
|
||||||
if (this.view) {
|
if (this.view) {
|
||||||
this._state.isStartedAddingResults = false;
|
this._state.isStartedAddingResults = false;
|
||||||
this.view.$resultsContainer.scroller.update({alwaysVisibleY: true});
|
this.view.updateScrollers();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -429,7 +429,7 @@ define([
|
||||||
onEndTextAroundSearch: function () {
|
onEndTextAroundSearch: function () {
|
||||||
if (this.view) {
|
if (this.view) {
|
||||||
this._state.isStartedAddingResults = false;
|
this._state.isStartedAddingResults = false;
|
||||||
this.view.$resultsContainer.scroller.update({alwaysVisibleY: true});
|
this.view.updateScrollers();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -779,6 +779,7 @@
|
||||||
top: 28px;
|
top: 28px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
padding-bottom: 10px;
|
||||||
.item {
|
.item {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in a new issue