mirror of https://github.com/apache/lucene.git
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:
parent
1d9be84cb6
commit
c9faa102f9
|
@ -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
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -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%
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue