From c9faa102f99d7e19df5bcd63e16e699f52f2b1db Mon Sep 17 00:00:00 2001 From: Alexandre Rafalovitch Date: Sun, 14 Aug 2016 00:28:40 +1000 Subject: [PATCH] SOLR-8911: Enable scrolling in Admin UI overflows In the dashboard screen, scroll horizontally the Versions and JVM property values strings. --- solr/CHANGES.txt | 1 + solr/webapp/web/css/angular/index.css | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index eddb7fba206..cf934481af9 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -210,6 +210,7 @@ Bug Fixes * SOLR-8715: Admin UI's Schema screen now works for fields with stored=false and some content indexed (Alexandre Rafalovitch) +* SOLR-8911: In Admin UI, enable scrolling for overflowing Versions and JVM property values Optimizations ---------------------- diff --git a/solr/webapp/web/css/angular/index.css b/solr/webapp/web/css/angular/index.css index 5b77a15a866..e07b8d62686 100644 --- a/solr/webapp/web/css/angular/index.css +++ b/solr/webapp/web/css/angular/index.css @@ -110,6 +110,17 @@ limitations under the License. width: 40%; } +#content #index .data +{ + padding-bottom: 12px; + overflow: hidden; +} + +#content #index .data:hover +{ + overflow-x: auto; +} + #content #index .data li { padding-top: 3px; @@ -127,7 +138,6 @@ limitations under the License. { float: right; text-overflow: ellipsis; - overflow: hidden; white-space: nowrap; width: 80% }