SOLR-8911: Enable scrolling in Admin UI overflows

In the dashboard screen, scroll horizontally the Versions and JVM
property values strings.
This commit is contained in:
Alexandre Rafalovitch 2016-08-14 00:28:40 +10:00
parent 1d9be84cb6
commit c9faa102f9
2 changed files with 12 additions and 1 deletions

View File

@ -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-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 Optimizations
---------------------- ----------------------

View File

@ -110,6 +110,17 @@ limitations under the License.
width: 40%; width: 40%;
} }
#content #index .data
{
padding-bottom: 12px;
overflow: hidden;
}
#content #index .data:hover
{
overflow-x: auto;
}
#content #index .data li #content #index .data li
{ {
padding-top: 3px; padding-top: 3px;
@ -127,7 +138,6 @@ limitations under the License.
{ {
float: right; float: right;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap; white-space: nowrap;
width: 80% width: 80%
} }