SOLR-14038: Admin UI display for "state.json" should be in a scollable region

Signed-off-by: Kevin Risden <krisden@apache.org>
This commit is contained in:
Kevin Risden 2020-01-24 22:14:27 -05:00
parent 8df7f379a4
commit 056e2cc5da
No known key found for this signature in database
GPG Key ID: 040FAE3292C5F73F
3 changed files with 32 additions and 32 deletions

View File

@ -192,6 +192,8 @@ Bug Fixes
* SOLR-13887: Use default idleTimeout instead of 0 for HTTP2 requests. (Houston Putman) * SOLR-13887: Use default idleTimeout instead of 0 for HTTP2 requests. (Houston Putman)
* SOLR-14038: Admin UI display for "state.json" should be in a scollable region (Kevin Risden)
Other Changes Other Changes
--------------------- ---------------------

View File

@ -158,10 +158,8 @@ limitations under the License.
#content #cloud #file-content #content #cloud #file-content
{ {
position: fixed; float: right;
width: 55%; width: 68%;
min-height: 100px;
right: 5%;
} }
#content #cloud .show #file-content #content #cloud .show #file-content
@ -568,7 +566,7 @@ limitations under the License.
padding-left: 0; padding-left: 0;
} }
#content #cloud .details-button #content #cloud .details-button
{ {
background-image: url(../../img/ico/ui-check-box-uncheck.png); background-image: url(../../img/ico/ui-check-box-uncheck.png);
background-position: 0 50%; background-position: 0 50%;
@ -593,27 +591,27 @@ limitations under the License.
/* Disk usage details d3 chart bars style */ /* Disk usage details d3 chart bars style */
.chart { .chart {
background: #eee; background: #eee;
padding: 1px; padding: 1px;
} }
.chart div { .chart div {
width:90%; width:90%;
} }
.chart div div { .chart div div {
display:inline-block; display:inline-block;
} }
.chart div div.rect { .chart div div.rect {
transition: all 0.5s ease-out; transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;
-webkit-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out;
width:0; width:0;
font: 10px sans-serif; font: 10px sans-serif;
background-color: #4CAF50; background-color: #4CAF50;
text-align: left; text-align: left;
padding: 3px; padding: 3px;
margin: 2px; margin: 2px;
color: #000000; color: #000000;
box-shadow: 1px 1px 1px #666; box-shadow: 1px 1px 1px #666;
} }
#content #nodes-content .leader #content #nodes-content .leader
@ -647,18 +645,18 @@ limitations under the License.
::-webkit-scrollbar { ::-webkit-scrollbar {
-webkit-appearance: none; -webkit-appearance: none;
width: 7px; width: 7px;
height: 7px; height: 7px;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
border-radius: 4px; border-radius: 4px;
background-color: rgba(0,0,0,.5); background-color: rgba(0,0,0,.5);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5); -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
} }
#content #cloud #zk-table td, #content #cloud #zk-table td,
#content #cloud #zk-table th #content #cloud #zk-table th
{ {
border: 0px solid #ddd; border: 0px solid #ddd;
border-bottom: 0.50px solid #eee; border-bottom: 0.50px solid #eee;
@ -666,7 +664,7 @@ limitations under the License.
padding-left: 5px; padding-left: 5px;
} }
#content #cloud #zk-table th #content #cloud #zk-table th
{ {
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
@ -684,7 +682,7 @@ limitations under the License.
font-weight: bold; font-weight: bold;
} }
#content #cloud #zk-table #detail-divider #content #cloud #zk-table #detail-divider
{ {
background-color: #f8f8f8; background-color: #f8f8f8;
height: 10px; height: 10px;
@ -704,7 +702,7 @@ limitations under the License.
margin-bottom: 10px; margin-bottom: 10px;
} }
.zookeeper-errors li::before .zookeeper-errors li::before
{ {
content: "- "; content: "- ";
} }

View File

@ -36,9 +36,7 @@ limitations under the License.
#content #files #file-content #content #files #file-content
{ {
float: right; float: right;
position: relative;
width: 78%; width: 78%;
min-height: 100px
} }
#content #files .show #file-content #content #files .show #file-content
@ -50,4 +48,6 @@ limitations under the License.
{ {
border: 1px solid transparent; border: 1px solid transparent;
padding: 2px; padding: 2px;
overflow: auto;
max-height: 600px;
} }