SOLR-13907: Cloud view tree - fixed placement

This commit is contained in:
Tomas Fernandez Lobbe 2019-11-20 10:56:18 -08:00
parent 58d5680a90
commit 4a3c15f118
2 changed files with 9 additions and 4 deletions

View File

@ -70,6 +70,8 @@ Improvements
* SOLR-13898: Use the new SolrCache.computeIfAbsent instead of non-atomic get / put in order to * SOLR-13898: Use the new SolrCache.computeIfAbsent instead of non-atomic get / put in order to
improve cache hit ratios. (ab, Ben Manes) improve cache hit ratios. (ab, Ben Manes)
* SOLR-13907: In the Cloud/tree section of the Admin UI, fix metadata panel and force an horizontal scrollbar for the tree
(Richard Goodman via Tomás Fernández Löbbe)
Optimizations Optimizations
--------------------- ---------------------

View File

@ -147,6 +147,8 @@ limitations under the License.
{ {
float: left; float: left;
width: 30%; width: 30%;
overflow-x: overlay;
overflow-y: hidden;
} }
#content #cloud .show #tree #content #cloud .show #tree
@ -156,10 +158,10 @@ limitations under the License.
#content #cloud #file-content #content #cloud #file-content
{ {
float: right; position: fixed;
position: relative; width: 55%;
width: 68%; min-height: 100px;
min-height: 100px right: 5%;
} }
#content #cloud .show #file-content #content #cloud .show #file-content
@ -647,6 +649,7 @@ limitations under the License.
::-webkit-scrollbar { ::-webkit-scrollbar {
-webkit-appearance: none; -webkit-appearance: none;
width: 7px; width: 7px;
height: 7px;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {