SOLR-8911: Enable scrolling in Admin UI overflows

This commit is contained in:
Alexandre Rafalovitch 2016-08-14 00:43:16 +10:00
parent 45f9b6b1ff
commit 7a2b268261
2 changed files with 13 additions and 1 deletions

View File

@ -175,6 +175,8 @@ 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
----------------------

View File

@ -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%
}