mirror of https://github.com/apache/lucene.git
SOLR-8911: Enable scrolling in Admin UI overflows
This commit is contained in:
parent
45f9b6b1ff
commit
7a2b268261
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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%
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue