You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ar...@apache.org on 2016/08/13 14:31:18 UTC

lucene-solr:master: SOLR-8911: Enable scrolling in Admin UI overflows In the dashboard screen, scroll horizontally the Versions and JVM property values strings.

Repository: lucene-solr
Updated Branches:
  refs/heads/master 1d9be84cb -> c9faa102f


SOLR-8911: Enable scrolling in Admin UI overflows
In the dashboard screen, scroll horizontally the Versions and JVM
property values strings.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/c9faa102
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/c9faa102
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/c9faa102

Branch: refs/heads/master
Commit: c9faa102f99d7e19df5bcd63e16e699f52f2b1db
Parents: 1d9be84
Author: Alexandre Rafalovitch <ar...@apache.org>
Authored: Sun Aug 14 00:28:40 2016 +1000
Committer: Alexandre Rafalovitch <ar...@apache.org>
Committed: Sun Aug 14 00:28:40 2016 +1000

----------------------------------------------------------------------
 solr/CHANGES.txt                      |  1 +
 solr/webapp/web/css/angular/index.css | 12 +++++++++++-
 2 files changed, 12 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c9faa102/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index eddb7fb..cf93448 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
 ----------------------
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c9faa102/solr/webapp/web/css/angular/index.css
----------------------------------------------------------------------
diff --git a/solr/webapp/web/css/angular/index.css b/solr/webapp/web/css/angular/index.css
index 5b77a15..e07b8d6 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%
 }