mirror of https://github.com/apache/lucene.git
SOLR-3597: admin ui using less whitespace at the top
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1381494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c71800de26
commit
db6badeb11
|
@ -61,6 +61,9 @@ New Features
|
|||
|
||||
* SOLR-3238: Numerous small improvements to the Admin UI (steffkes)
|
||||
|
||||
* SOLR-3597: seems like a lot of wasted whitespace at the top of the admin screens
|
||||
(steffkes)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -163,6 +163,7 @@ ul
|
|||
|
||||
#wrapper
|
||||
{
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 30px;
|
||||
text-align: left;
|
||||
|
@ -171,7 +172,8 @@ ul
|
|||
#header
|
||||
{
|
||||
padding-bottom: 10px;
|
||||
position: relative;
|
||||
position: absolute;
|
||||
z-index: 42;
|
||||
}
|
||||
|
||||
#header #solr
|
||||
|
@ -207,6 +209,7 @@ ul
|
|||
background-position: 10px 50%;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
margin-left: 150px;
|
||||
margin-bottom: 20px;
|
||||
padding: 10px;
|
||||
padding-left: 35px;
|
||||
|
@ -254,34 +257,33 @@ ul
|
|||
#environment
|
||||
{
|
||||
background-image: url( ../../img/ico/box.png );
|
||||
background-position: 10px 50%;
|
||||
border: 1px solid #c0c0c0;
|
||||
background-position: 5px 50%;
|
||||
display: none;
|
||||
font-weight: bold;
|
||||
margin-top: 10px;
|
||||
padding: 5px 10px;
|
||||
padding-left: 31px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding-left: 26px;
|
||||
}
|
||||
|
||||
.has-environment #environment
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
|
||||
#environment.prod
|
||||
{
|
||||
background-color: #c37f7f;
|
||||
border-color: #b15757;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#environment.test
|
||||
{
|
||||
background-color: #f5f5b2;
|
||||
border-color: #e4e433;
|
||||
}
|
||||
|
||||
#environment.dev
|
||||
{
|
||||
background-color: #cce7cc;
|
||||
border-color: #66b866;
|
||||
}
|
||||
|
||||
#init-failures
|
||||
|
@ -292,11 +294,6 @@ ul
|
|||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#main.error #init-failures
|
||||
{
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#init-failures h2,
|
||||
#init-failures ul,
|
||||
#init-failures p
|
||||
|
|
|
@ -1,10 +1,15 @@
|
|||
#menu-wrapper
|
||||
{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
top: 90px;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.has-environment #menu-wrapper
|
||||
{
|
||||
top: 130px;
|
||||
}
|
||||
|
||||
#menu-wrapper a
|
||||
{
|
||||
display: block;
|
||||
|
|
|
@ -294,11 +294,12 @@ var solr_admin = function( app_config )
|
|||
|
||||
// environment
|
||||
|
||||
var wrapper = $( '#wrapper' );
|
||||
var environment_element = $( '#environment' );
|
||||
if( environment_args )
|
||||
{
|
||||
environment_element
|
||||
.show();
|
||||
wrapper
|
||||
.addClass( 'has-environment' );
|
||||
|
||||
if( environment_args[1] )
|
||||
{
|
||||
|
@ -314,8 +315,8 @@ var solr_admin = function( app_config )
|
|||
}
|
||||
else
|
||||
{
|
||||
environment_element
|
||||
.remove();
|
||||
wrapper
|
||||
.removeClass( 'has-environment' );
|
||||
}
|
||||
|
||||
// cloud
|
||||
|
|
Loading…
Reference in New Issue