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-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
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -163,6 +163,7 @@ ul
|
||||||
|
|
||||||
#wrapper
|
#wrapper
|
||||||
{
|
{
|
||||||
|
position: relative;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -171,7 +172,8 @@ ul
|
||||||
#header
|
#header
|
||||||
{
|
{
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
position: relative;
|
position: absolute;
|
||||||
|
z-index: 42;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header #solr
|
#header #solr
|
||||||
|
@ -207,6 +209,7 @@ ul
|
||||||
background-position: 10px 50%;
|
background-position: 10px 50%;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-left: 150px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
padding-left: 35px;
|
padding-left: 35px;
|
||||||
|
@ -254,34 +257,33 @@ ul
|
||||||
#environment
|
#environment
|
||||||
{
|
{
|
||||||
background-image: url( ../../img/ico/box.png );
|
background-image: url( ../../img/ico/box.png );
|
||||||
background-position: 10px 50%;
|
background-position: 5px 50%;
|
||||||
border: 1px solid #c0c0c0;
|
|
||||||
display: none;
|
display: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-top: 10px;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
padding-left: 31px;
|
padding-left: 26px;
|
||||||
position: absolute;
|
}
|
||||||
top: 0;
|
|
||||||
right: 0;
|
.has-environment #environment
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#environment.prod
|
#environment.prod
|
||||||
{
|
{
|
||||||
background-color: #c37f7f;
|
background-color: #c37f7f;
|
||||||
border-color: #b15757;
|
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#environment.test
|
#environment.test
|
||||||
{
|
{
|
||||||
background-color: #f5f5b2;
|
background-color: #f5f5b2;
|
||||||
border-color: #e4e433;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#environment.dev
|
#environment.dev
|
||||||
{
|
{
|
||||||
background-color: #cce7cc;
|
background-color: #cce7cc;
|
||||||
border-color: #66b866;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#init-failures
|
#init-failures
|
||||||
|
@ -292,11 +294,6 @@ ul
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main.error #init-failures
|
|
||||||
{
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#init-failures h2,
|
#init-failures h2,
|
||||||
#init-failures ul,
|
#init-failures ul,
|
||||||
#init-failures p
|
#init-failures p
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
#menu-wrapper
|
#menu-wrapper
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 90px;
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.has-environment #menu-wrapper
|
||||||
|
{
|
||||||
|
top: 130px;
|
||||||
|
}
|
||||||
|
|
||||||
#menu-wrapper a
|
#menu-wrapper a
|
||||||
{
|
{
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
@ -294,11 +294,12 @@ var solr_admin = function( app_config )
|
||||||
|
|
||||||
// environment
|
// environment
|
||||||
|
|
||||||
|
var wrapper = $( '#wrapper' );
|
||||||
var environment_element = $( '#environment' );
|
var environment_element = $( '#environment' );
|
||||||
if( environment_args )
|
if( environment_args )
|
||||||
{
|
{
|
||||||
environment_element
|
wrapper
|
||||||
.show();
|
.addClass( 'has-environment' );
|
||||||
|
|
||||||
if( environment_args[1] )
|
if( environment_args[1] )
|
||||||
{
|
{
|
||||||
|
@ -314,8 +315,8 @@ var solr_admin = function( app_config )
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
environment_element
|
wrapper
|
||||||
.remove();
|
.removeClass( 'has-environment' );
|
||||||
}
|
}
|
||||||
|
|
||||||
// cloud
|
// cloud
|
||||||
|
|
Loading…
Reference in New Issue