1
0
mirror of https://github.com/djohnlewis/stackdump synced 2026-02-13 01:13:32 +00:00

Upgrade Apache Solr to 4.5.0 and PySolr to 3.1.0.

All Solr indexes will need to be re-created.
This commit is contained in:
Sam
2013-10-22 08:44:37 +11:00
parent e88e6a31a0
commit 436b86b234
567 changed files with 90092 additions and 14401 deletions

View File

@@ -0,0 +1,421 @@
/*
Chosen
- by Patrick Filler for Harvest http://getharvest.com
- Copyright (c) 2011-2013 by Harvest
Available for use under the MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* @group Base */
.chzn-container {
font-size: 13px;
position: relative;
display: inline-block;
zoom: 1;
*display: inline;
}
.chzn-container .chzn-drop {
background: #fff;
border: 1px solid #aaa;
border-top: 0;
position: absolute;
top: 29px;
left: 0;
-webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
-moz-box-shadow : 0 4px 5px rgba(0,0,0,.15);
-o-box-shadow : 0 4px 5px rgba(0,0,0,.15);
box-shadow : 0 4px 5px rgba(0,0,0,.15);
z-index: 999;
}
/* @end */
/* @group Single Chosen */
.chzn-container-single .chzn-single {
background-color: #ffffff;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
-webkit-border-radius: 5px;
-moz-border-radius : 5px;
border-radius : 5px;
-moz-background-clip : padding;
-webkit-background-clip: padding-box;
background-clip : padding-box;
border: 1px solid #aaaaaa;
-webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
-moz-box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
display: block;
overflow: hidden;
white-space: nowrap;
position: relative;
height: 23px;
line-height: 24px;
padding: 0 0 0 8px;
color: #444444;
text-decoration: none;
}
.chzn-container-single .chzn-default {
color: #999;
}
.chzn-container-single .chzn-single span {
margin-right: 26px;
display: block;
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.chzn-container-single .chzn-single abbr {
display: block;
position: absolute;
right: 26px;
top: 6px;
width: 12px;
height: 13px;
font-size: 1px;
background: url(../img/chosen-sprite.png) right top no-repeat;
}
.chzn-container-single .chzn-single abbr:hover {
background-position: right -11px;
}
.chzn-container-single .chzn-single div {
position: absolute;
right: 0;
top: 0;
display: block;
height: 100%;
width: 18px;
}
.chzn-container-single .chzn-single div b {
background: url('../img/chosen-sprite.png') no-repeat 0 0;
display: block;
width: 100%;
height: 100%;
}
.chzn-container-single .chzn-search {
padding: 3px 4px;
position: relative;
margin: 0;
white-space: nowrap;
z-index: 1010;
}
.chzn-container-single .chzn-search input {
background: #fff url('../img/chosen-sprite.png') no-repeat 100% -22px;
background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
margin: 1px 0;
padding: 4px 20px 4px 5px;
outline: 0;
border: 1px solid #aaa;
font-family: sans-serif;
font-size: 1em;
}
.chzn-container-single .chzn-drop {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius : 0 0 4px 4px;
border-radius : 0 0 4px 4px;
-moz-background-clip : padding;
-webkit-background-clip: padding-box;
background-clip : padding-box;
}
/* @end */
.chzn-container-single-nosearch .chzn-search input {
position: absolute;
left: -9000px;
}
/* @group Multi Chosen */
.chzn-container-multi .chzn-choices {
background-color: #fff;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
border: 1px solid #aaa;
margin: 0;
padding: 0;
cursor: text;
overflow: hidden;
height: auto !important;
height: 1%;
position: relative;
}
.chzn-container-multi .chzn-choices li {
float: left;
list-style: none;
}
.chzn-container-multi .chzn-choices .search-field {
white-space: nowrap;
margin: 0;
padding: 0;
}
.chzn-container-multi .chzn-choices .search-field input {
color: #666;
background: transparent !important;
border: 0 !important;
font-family: sans-serif;
font-size: 100%;
height: 15px;
padding: 5px;
margin: 1px 0;
outline: 0;
-webkit-box-shadow: none;
-moz-box-shadow : none;
-o-box-shadow : none;
box-shadow : none;
}
.chzn-container-multi .chzn-choices .search-field .default {
color: #999;
}
.chzn-container-multi .chzn-choices .search-choice {
-webkit-border-radius: 3px;
-moz-border-radius : 3px;
border-radius : 3px;
-moz-background-clip : padding;
-webkit-background-clip: padding-box;
background-clip : padding-box;
background-color: #e4e4e4;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 );
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
-webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
-moz-box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
color: #333;
border: 1px solid #aaaaaa;
line-height: 13px;
padding: 3px 20px 3px 5px;
margin: 3px 0 3px 5px;
position: relative;
cursor: default;
}
.chzn-container-multi .chzn-choices .search-choice-focus {
background: #d4d4d4;
}
.chzn-container-multi .chzn-choices .search-choice .search-choice-close {
display: block;
position: absolute;
right: 3px;
top: 4px;
width: 12px;
height: 13px;
font-size: 1px;
background: url(../img/chosen-sprite.png) right top no-repeat;
}
.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
background-position: right -11px;
}
.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {
background-position: right -11px;
}
/* @end */
/* @group Results */
.chzn-container .chzn-results {
margin: 0 4px 4px 0;
max-height: 240px;
padding: 0 0 0 4px;
position: relative;
overflow-x: hidden;
overflow-y: auto;
}
.chzn-container-multi .chzn-results {
margin: -1px 0 0;
padding: 0;
}
.chzn-container .chzn-results li {
display: none;
line-height: 15px;
padding: 5px 6px;
margin: 0;
list-style: none;
}
.chzn-container .chzn-results .active-result {
cursor: pointer;
display: list-item;
}
.chzn-container .chzn-results .highlighted {
background-color: #3875d7;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);
color: #fff;
}
.chzn-container .chzn-results li em {
background: #feffde;
font-style: normal;
}
.chzn-container .chzn-results .highlighted em {
background: transparent;
}
.chzn-container .chzn-results .no-results {
background: #f4f4f4;
display: list-item;
}
.chzn-container .chzn-results .group-result {
cursor: default;
color: #999;
font-weight: bold;
}
.chzn-container .chzn-results .group-option {
padding-left: 15px;
}
.chzn-container-multi .chzn-drop .result-selected {
display: none;
}
.chzn-container .chzn-results-scroll {
background: white;
margin: 0 4px;
position: absolute;
text-align: center;
width: 321px; /* This should by dynamic with js */
z-index: 1;
}
.chzn-container .chzn-results-scroll span {
display: inline-block;
height: 17px;
text-indent: -5000px;
width: 9px;
}
.chzn-container .chzn-results-scroll-down {
bottom: 0;
}
.chzn-container .chzn-results-scroll-down span {
background: url('../img/chosen-sprite.png') no-repeat -4px -3px;
}
.chzn-container .chzn-results-scroll-up span {
background: url('../img/chosen-sprite.png') no-repeat -22px -3px;
}
/* @end */
/* @group Active */
.chzn-container-active .chzn-single {
-webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
-moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
-o-box-shadow : 0 0 5px rgba(0,0,0,.3);
box-shadow : 0 0 5px rgba(0,0,0,.3);
border: 1px solid #5897fb;
}
.chzn-container-active .chzn-single-with-drop {
border: 1px solid #aaa;
-webkit-box-shadow: 0 1px 0 #fff inset;
-moz-box-shadow : 0 1px 0 #fff inset;
-o-box-shadow : 0 1px 0 #fff inset;
box-shadow : 0 1px 0 #fff inset;
background-color: #eee;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);
-webkit-border-bottom-left-radius : 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomleft : 0;
-moz-border-radius-bottomright: 0;
border-bottom-left-radius : 0;
border-bottom-right-radius: 0;
}
.chzn-container-active .chzn-single-with-drop div {
background: transparent;
border-left: none;
}
.chzn-container-active .chzn-single-with-drop div b {
background-position: -18px 1px;
}
.chzn-container-active .chzn-choices {
-webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
-moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
-o-box-shadow : 0 0 5px rgba(0,0,0,.3);
box-shadow : 0 0 5px rgba(0,0,0,.3);
border: 1px solid #5897fb;
}
.chzn-container-active .chzn-choices .search-field input {
color: #111 !important;
}
/* @end */
/* @group Disabled Support */
.chzn-disabled {
cursor: default;
opacity:0.5 !important;
}
.chzn-disabled .chzn-single {
cursor: default;
}
.chzn-disabled .chzn-choices .search-choice .search-choice-close {
cursor: default;
}
/* @group Right to Left */
.chzn-rtl { text-align: right; }
.chzn-rtl .chzn-single { padding: 0 8px 0 0; overflow: visible; }
.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; direction: rtl; }
.chzn-rtl .chzn-single div { left: 3px; right: auto; }
.chzn-rtl .chzn-single abbr {
left: 26px;
right: auto;
}
.chzn-rtl .chzn-choices .search-field input { direction: rtl; }
.chzn-rtl .chzn-choices li { float: right; }
.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }
.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}
.chzn-rtl.chzn-container-single .chzn-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; }
.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 15px; }
.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }
.chzn-rtl .chzn-search input {
background: #fff url('../img/chosen-sprite.png') no-repeat -38px -22px;
background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
background: url('../img/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
padding: 4px 5px 4px 20px;
direction: rtl;
}
/* @end */

View File

@@ -0,0 +1,311 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #analysis-holder
{
background-image: url( ../../img/div.gif );
background-position: 50% 0;
background-repeat: repeat-y;
}
#content #analysis #field-analysis
{
margin-bottom: 0;
}
#content #analysis #field-analysis .content
{
padding-bottom: 0;
}
#content #analysis .settings-holder
{
clear: both;
padding-top: 15px;
}
#content #analysis .settings
{
background-color: #fff;
border-top: 1px solid #fafafa;
border-bottom: 1px solid #fafafa;
padding-top: 10px;
padding-bottom: 10px;
}
#content #analysis .settings select.loader
{
background-position: 3px 50%;
padding-left: 21px;
}
#content #analysis .settings select optgroup
{
font-style: normal;
padding: 5px;
}
#content #analysis .settings select option
{
padding-left: 10px;
}
#content #analysis .settings #tor_schema
{
background-image: url( ../../img/ico/question-white.png );
background-position: 0 50%;
color: #c0c0c0;
margin-left: 5px;
padding-left: 21px;
}
#content #analysis .settings #tor_schema:hover
{
background-image: url( ../../img/ico/question.png );
}
#content #analysis .settings #tor_schema span
{
display: none;
}
#content #analysis .settings #tor_schema:hover span
{
display: inline;
}
#content #analysis .settings .buttons
{
float: right;
width: 47%;
}
#content #analysis .settings button
{
float: right;
}
#content #analysis .settings button span
{
background-image: url( ../../img/ico/funnel.png );
}
#content #analysis .settings .verbose_output
{
float: left;
width: auto;
}
#content #analysis .settings .verbose_output a
{
background-image: url( ../../img/ico/ui-check-box-uncheck.png );
background-position: 0 50%;
color: #999;
display: block;
padding-left: 21px;
}
#content #analysis .settings .verbose_output.active a
{
background-image: url( ../../img/ico/ui-check-box.png );
}
#content #analysis .index label,
#content #analysis .query label
{
display: block;
}
#content #analysis .index textarea,
#content #analysis .query textarea
{
display: block;
width: 100%;
}
#content #analysis .index
{
float: left;
margin-right: 0.5%;
min-width: 47%;
max-width: 99%;
}
#content #analysis .query
{
float: right;
margin-left: 0.5%;
min-width: 47%;
max-width: 99%;
}
#content #analysis .analysis-error
{
background-color: #f00;
background-image: url( ../../img/ico/construction.png );
background-position: 10px 50%;
color: #fff;
display: none;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
padding-left: 35px;
}
#content #analysis .analysis-error .head a
{
color: #fff;
cursor: auto;
}
#content #analysis #analysis-result
{
overflow: auto;
}
#content #analysis #analysis-result .index,
#content #analysis #analysis-result .query
{
background-color: #fff;
padding-top: 20px;
}
#content #analysis #analysis-result table
{
border-collapse: collapse;
}
#content #analysis #analysis-result td
{
vertical-align: top;
white-space: nowrap;
}
#content #analysis #analysis-result td.part.analyzer div,
#content #analysis #analysis-result td.part.spacer .holder,
#content #analysis #analysis-result td td td
{
padding-top: 1px;
padding-bottom: 1px;
}
#content #analysis #analysis-result td.legend,
#content #analysis #analysis-result td.data tr.verbose_output
{
display: none;
}
#content #analysis #analysis-result.verbose_output td.legend
{
display: table-cell;
}
#content #analysis #analysis-result.verbose_output td.data tr.verbose_output
{
display: table-row;
}
#content #analysis #analysis-result .match
{
background-color: #e9eff7;
background-color: #f2f2ff;
}
#content #analysis #analysis-result td.part
{
padding-bottom: 10px;
}
#content #analysis #analysis-result td.part.analyzer div
{
border-right: 1px solid #f0f0f0;
padding-right: 10px;
}
#content #analysis #analysis-result td.part.analyzer abbr
{
color: #c0c0c0;
}
#content #analysis #analysis-result td.part.legend .holder,
#content #analysis #analysis-result td.part.data .holder
{
padding-left: 10px;
padding-right: 10px;
border-right: 1px solid #c0c0c0;
}
#content #analysis #analysis-result td.part.legend td
{
color: #c0c0c0;
}
#content #analysis #analysis-result td.part.legend .holder
{
border-right-color: #f0f0f0;
}
#content #analysis #analysis-result td.part.data:last-child .holder
{
padding-right: 0;
border-right: 0;
}
#content #analysis #analysis-result td.details
{
padding-left: 10px;
padding-right: 10px;
border-left: 1px solid #f0f0f0;
border-right: 1px solid #f0f0f0;
}
#content #analysis #analysis-result td.details:first-child
{
padding-left: 0;
border-left: 0;
}
#content #analysis #analysis-result td.details:last-child
{
padding-right: 0;
border-right: 0;
}
#content #analysis #analysis-result td.details tr.empty td
{
color: #f0f0f0;
}
#content #analysis #analysis-result td.details tr.raw_bytes td
{
letter-spacing: -1px;
}
#content #analysis #analysis-result .part table table td
{
border-top: 1px solid #f0f0f0;
}
#content #analysis #analysis-result .part table table tr:first-child td
{
border-top: 0;
}
#content #analysis #field-analysis h2 { background-image: url( ../../img/ico/receipt.png ); }
#content #analysis .analysis-result h2 { background-image: url( ../../img/ico/receipt-invoice.png ); }

View File

@@ -0,0 +1,409 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #cloud
{
position: relative;
}
#content #cloud #frame .content
{
display: none;
}
#content #cloud .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #cloud #error
{
background-color: #f00;
background-image: url( ../../img/ico/construction.png );
background-position: 10px 12px;
color: #fff;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
padding-left: 35px;
}
#content #cloud #error .msg
{
font-style: italic;
font-weight: normal;
margin-top: 10px;
}
#content #cloud #debug
{
background-color: #fff;
box-shadow: 0px 0px 10px #c0c0c0;
-moz-box-shadow: 0px 0px 10px #c0c0c0;
-webkit-box-shadow: 0px 0px 10px #c0c0c0;
display: none;
padding: 20px;
position: absolute;
left: 50px;
top: 10px;
}
#content #cloud #debug ul
{
margin-bottom: 5px;
}
#content #cloud #debug ul a
{
background-position: 4px 50%;
border-right: 0;
display: block;
padding: 2px 4px;
padding-left: 25px;
}
#content #cloud #debug ul a:hover,
#content #cloud #debug ul a.hover
{
background-color: #f0f0f0;
}
#content #cloud #debug .clipboard
{
float: left;
position: relative;
}
#content #cloud #debug .clipboard a
{
background-image: url( ../../img/ico/clipboard-paste.png );
z-index: 98;
}
#content #cloud #debug .clipboard a:hover,
#content #cloud #debug .clipboard a.hover,
#content #cloud #debug .clipboard.copied a
{
background-image: url( ../../img/ico/clipboard-paste-document-text.png );
}
#content #cloud #debug .close
{
float: right;
}
#content #cloud #debug .close a
{
background-image: url( ../../img/ico/cross-0.png );
padding-left: 21px;
}
#content #cloud #debug .close a:hover
{
background-image: url( ../../img/ico/cross-1.png );
}
#content #cloud #debug .debug
{
border: 1px solid #f0f0f0;
max-height: 350px;
overflow: auto;
padding: 5px;
width: 500px;
}
#content #cloud #debug .debug .loader
{
background-position: 5px 50%;
display: block;
padding: 10px 26px;
}
#content #cloud .content
{
padding-left: 0;
padding-right: 0;
}
#content #cloud .content.show
{
background-image: url( ../../img/div.gif );
background-repeat: repeat-y;
background-position: 31% 0;
}
#content #cloud #tree
{
float: left;
width: 30%;
}
#content #cloud .show #tree
{
overflow: hidden;
}
#content #cloud #file-content
{
display: none;
float: right;
position: relative;
width: 68%;
min-height: 100px
}
#content #cloud .show #file-content
{
display: block;
}
#content #cloud #file-content .close
{
background-image: url( ../../img/ico/cross-0.png );
background-position: 50% 50%;
display: block;
height: 20px;
position: absolute;
right: 0;
top: 0;
width: 20px;
}
#content #cloud #file-content .close:hover
{
background-image: url( ../../img/ico/cross-1.png );
}
#content #cloud #file-content .close span
{
display: none;
}
#content #cloud #file-content #data
{
border-top: 1px solid #c0c0c0;
margin-top: 10px;
padding-top: 10px;
}
#content #cloud #file-content #data pre
{
display: block;
max-height: 600px;
overflow: auto;
}
#content #cloud #file-content #data em
{
color: #c0c0c0;
}
#content #cloud #file-content #prop
{
}
#content #cloud #file-content li
{
padding-top: 3px;
padding-bottom: 3px;
}
#content #cloud #file-content li.odd
{
background-color: #F8F8F8;
}
#content #cloud #file-content li dt
{
float: left;
width: 19%;
}
#content #cloud #file-content li dd
{
float: right;
width: 80%;
}
/* tree */
#content #cloud .tree a.active
{
background-color: #f0f0f0;
color: #00f;
}
#content #cloud #legend
{
border: 1px solid #f0f0f0;
padding: 10px;
position: absolute;
right: 0;
bottom: 0;
}
#content #cloud #legend li
{
padding-left: 15px;
position: relative;
}
#content #cloud #legend li svg
{
position: absolute;
left: 0;
top: 2px;
}
#content #graph-content
{
min-height: 400px;
}
#content #graph-content .node
{
fill: #333;
}
#content #cloud #legend circle,
#content #graph-content .node circle
{
fill: #fff;
stroke: #c0c0c0;
stroke-width: 1.5px;
}
#content #graph-content .node.lvl-3 text
{
cursor: pointer;
}
#content #graph-content .node.lvl-3:hover circle
{
stroke: #000 !important;
}
#content #graph-content .node.lvl-3:hover text
{
fill: #000 !important;
}
#content #graph-content .link
{
fill: none;
stroke: #e0e0e0;
stroke-width: 1.5px;
}
#content #cloud #legend .gone circle,
#content #graph-content .node.gone circle,
#content #graph-content .link.gone
{
stroke: #f0f0f0;
}
#content #graph-content .node.gone text
{
fill: #f0f0f0;
}
#content #cloud #legend ul .gone
{
color: #e0e0e0;
}
#content #cloud #legend .recovery_failed,
#content #cloud #legend .recovery_failed circle,
#content #graph-content .node.recovery_failed circle
{
color: #C43C35;
stroke: #C43C35;
}
#content #graph-content .node.recovery_failed text
{
fill: #C43C35;
}
#content #cloud #legend .down,
#content #cloud #legend .down circle,
#content #graph-content .node.down circle
{
color: #c48f00;
stroke: #c48f00;
}
#content #graph-content .node.down text
{
fill: #c48f00;
}
#content #cloud #legend .recovering,
#content #cloud #legend .recovering circle,
#content #graph-content .node.recovering circle
{
color: #d5dd00;
stroke: #d5dd00;
}
#content #graph-content .node.recovering text
{
fill: #d5dd00;
}
#content #cloud #legend .active,
#content #cloud #legend .active circle,
#content #graph-content .node.active circle
{
color: #57A957;
stroke: #57A957;
}
#content #graph-content .node.active text
{
fill: #57A957;
}
#content #cloud #legend .leader circle,
#content #graph-content .node.leader circle
{
fill: #000;
}
#content #cloud #legend .leader circle
{
stroke: #fff;
}
#content #graph-content .link.lvl-2,
#content #graph-content .link.leader
{
stroke: #c0c0c0;
}
#content #graph-content .node.lvl-0 circle
{
stroke: #fff;
}
#content #graph-content .link.lvl-1
{
stroke: #fff;
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,244 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #cores
{
position: relative;
}
#content #cores #ui-block
{
background-color: #fff;
height: 200px;
display: none;
position: absolute;
left: -5px;
top: 35px;
width: 500px;
}
#content #cores.empty .requires-core
{
display: none;
}
#content #cores #frame
{
float: right;
width: 86%;
}
#content #cores #navigation
{
padding-top: 50px;
width: 12%;
}
#content #cores #navigation a
{
padding-left: 5px;
}
#content #cores #frame .actions
{
margin-bottom: 20px;
min-height: 30px;
}
#content #cores .actions div.action
{
width: 300px;
}
#content #cores .actions div.action .cloud
{
display: none;
}
#content #cores .actions form .directory-note
{
background-image: url( ../../img/ico/information-white.png );
background-position: 22% 1px;
color: #c0c0c0;
}
#content #cores .actions form .error
{
background-image: url( ../../img/ico/cross-button.png );
background-position: 22% 1px;
color: #c00;
font-weight: bold;
display: none;
}
#content #cores .actions form p
{
padding-bottom: 8px;
}
#content #cores .actions form label
{
float: left;
padding-top: 3px;
padding-bottom: 3px;
text-align: right;
width: 25%;
}
#content #cores .actions form input,
#content #cores .actions form select,
#content #cores .actions form .buttons,
#content #cores .actions form .note span
{
float: right;
width: 71%;
}
#content #cores .actions form .note span
{
padding-left: 3px;
padding-right: 3px;
}
#content #cores .actions form .buttons
{
padding-top: 10px;
}
#content #cores .actions form button.submit
{
margin-right: 20px;
}
#content #cores .actions form button.submit span
{
background-image: url( ../../img/ico/tick.png );
}
#content #cores .actions form button.reset span
{
background-image: url( ../../img/ico/cross.png );
}
#content #cores .actions #add
{
left: 0;
position: absolute;
}
#content #cores .actions #add span
{
background-image: url( ../../img/ico/plus-button.png );
}
#content #cores .actions #unload
{
margin-right: 20px;
}
#content #cores .actions #unload span
{
background-image: url( ../../img/ico/cross.png );
}
#content #cores .actions #reload span
{
background-image: url( ../../img/ico/arrow-circle.png );
}
#content #cores .actions #rename span
{
background-image: url( ../../img/ico/ui-text-field-select.png );
}
#content #cores .actions #swap span
{
background-image: url( ../../img/ico/arrow-switch.png );
}
#content #cores .actions #optimize
{
display: none;
}
#content #cores .actions #optimize span
{
background-image: url( ../../img/ico/hammer-screwdriver.png );
}
#content #cores .actions div.action
{
background-color: #fff;
border: 1px solid #f0f0f0;
box-shadow: 5px 5px 10px #c0c0c0;
-moz-box-shadow: 5px 5px 10px #c0c0c0;
-webkit-box-shadow: 5px 5px 10px #c0c0c0;
display: none;
position: absolute;
left: -50px;
top: 40px;
padding: 10px;
}
#content #cores #data #core-data h2 { background-image: url( ../../img/ico/box.png ); }
#content #cores #data #index-data h2 { background-image: url( ../../img/ico/chart.png ); }
#content #cores #data #index-data
{
margin-top: 10px;
}
#content #cores #data li
{
padding-bottom: 3px;
padding-top: 3px;
}
#content #cores #data li.odd
{
background-color: #f8f8f8;
}
#content #cores #data li dt
{
float: left;
width: 17%;
}
#content #cores #data li dd
{
float: right;
width: 82%;
}
#content #cores #data li dd.ico
{
background-image: url( ../../img/ico/slash.png );
height: 20px;
}
#content #cores #data li dd.ico.ico-1
{
background-image: url( ../../img/ico/tick.png );
}
#content #cores #data li dd.ico span
{
display: none;
}

View File

@@ -0,0 +1,155 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #dashboard .block
{
background-image: none;
width: 49%;
}
#content #dashboard .fieldlist
{
float: left;
}
#content #dashboard .fieldlist dt,
#content #dashboard .fieldlist dd
{
display: block;
float: left;
}
#content #dashboard .fieldlist dt
{
clear: left;
margin-right: 2%;
text-align: right;
width: 23%;
}
#content #dashboard .fieldlist dd
{
width: 74%;
}
#content #dashboard .fieldlist .index_optimized
{
margin-top: 10px;
}
#content #dashboard .fieldlist .ico
{
background-image: url( ../../img/ico/slash.png );
height: 20px;
}
#content #dashboard .fieldlist .ico.ico-1
{
background-image: url( ../../img/ico/tick.png );
}
#content #dashboard .fieldlist .ico span
{
display: none;
}
#content #dashboard #statistics .index_optimized.value a
{
display: none;
}
#content #dashboard #statistics .index_optimized.value.ico-0 a
{
background-color: #f0f0f0;
background-image: url( ../../img/ico/hammer-screwdriver.png );
background-position: 5px 50%;
border: 1px solid #c0c0c0;
display: block;
float: left;
margin-left: 50px;
padding: 1px 5px;
padding-left: 26px;
}
#content #dashboard #statistics .index_has-deletions
{
display: none;
}
#content #dashboard #statistics .index_has-deletions.value.ico-0
{
background-image: url( ../../img/ico/tick-red.png );
}
#content #dashboard #replication
{
float: left;
}
#content #dashboard #replication .is-replicating
{
background-position: 99% 50%;
display: block;
}
#content #dashboard #replication #details table thead td span
{
display: none;
}
#content #dashboard #instance
{
float: right;
}
#content #dashboard #instance .dir_impl
{
margin-top: 10px;
}
#content #dashboard #admin-extra
{
float: left;
}
#content #dashboard #healthcheck
{
float: right;
}
#content #dashboard #healthcheck .ico
{
background-image: url( ../../img/ico/slash.png );
height: 20px;
padding-left: 20px;
width: 60%;
}
#content #dashboard #healthcheck .ico.ico-1
{
background-image: url( ../../img/ico/tick.png );
}
#content #dashboard #system h2 { background-image: url( ../../img/ico/server.png ); }
#content #dashboard #statistics h2 { background-image: url( ../../img/ico/chart.png ); }
#content #dashboard #replication h2 { background-image: url( ../../img/ico/node.png ); }
#content #dashboard #replication.master h2 { background-image: url( ../../img/ico/node-master.png ); }
#content #dashboard #replication.slave h2 { background-image: url( ../../img/ico/node-slave.png ); }
#content #dashboard #instance h2 { background-image: url( ../../img/ico/server.png ); }
#content #dashboard #admin-extra h2 { background-image: url( ../../img/ico/plus-button.png ); }

View File

@@ -0,0 +1,403 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #dataimport
{
background-image: url( ../../img/div.gif );
background-position: 21% 0;
background-repeat: repeat-y;
}
#content #dataimport #frame
{
float: right;
width: 78%;
}
#content #dataimport #form
{
float: left;
width: 20%;
}
#content #dataimport #form #navigation
{
border-right: 0;
}
#content #dataimport #form #navigation a
{
background-image: url( ../../img/ico/status-offline.png );
}
#content #dataimport #form #navigation .current a
{
background-image: url( ../../img/ico/status.png );
}
#content #dataimport #form form
{
display: none;
border-top: 1px solid #f0f0f0;
margin-top: 10px;
padding-top: 5px;
}
#content #dataimport.error #form form
{
display: none !important;
}
#content #dataimport #form label
{
cursor: pointer;
display: block;
margin-top: 5px;
}
#content #dataimport #form input,
#content #dataimport #form select,
#content #dataimport #form textarea
{
margin-bottom: 2px;
width: 100%;
}
#content #dataimport #form input
{
width: 98%;
}
#content #dataimport #form button
{
margin-top: 10px;
}
#content #dataimport #form .execute span
{
background-image: url( ../../img/ico/document-import.png );
}
#content #dataimport #form .refresh-status span
{
background-image: url( ../../img/ico/arrow-circle.png );
}
#content #dataimport #form .refresh-status span.success
{
background-image: url( ../../img/ico/tick.png );
}
#content #dataimport #form #start
{
float: left;
width: 47%;
}
#content #dataimport #form #rows
{
float: right;
width: 47%;
}
#content #dataimport #form .checkbox input
{
margin-bottom: 0;
width: auto;
}
#content #dataimport #form #auto-refresh-status
{
margin-top: 20px;
}
#content #dataimport #form #auto-refresh-status a
{
background-image: url( ../../img/ico/ui-check-box-uncheck.png );
background-position: 0 50%;
color: #c0c0c0;
display: block;
padding-left: 21px;
}
#content #dataimport #form #auto-refresh-status a.on,
#content #dataimport #form #auto-refresh-status a:hover
{
color: #333;
}
#content #dataimport #form #auto-refresh-status a.on
{
background-image: url( ../../img/ico/ui-check-box.png );
}
#content #dataimport #current_state
{
padding: 10px;
margin-bottom: 20px;
}
#content #dataimport.error #current_state
{
display: none !important;
}
#content #dataimport #current_state .last_update,
#content #dataimport #current_state .info
{
display: block;
padding-left: 21px;
}
#content #dataimport #current_state .last_update
{
color: #c0c0c0;
font-size: 11px;
}
#content #dataimport #current_state .info
{
background-position: 0 1px;
position: relative;
}
#content #dataimport #current_state .info .details span
{
color: #c0c0c0;
}
#content #dataimport #current_state .info .abort-import
{
display: none;
position: absolute;
right: 0px;
top: 0px;
}
#content #dataimport #current_state .info .abort-import span
{
background-image: url( ../../img/ico/cross.png );
}
#content #dataimport #current_state .info .abort-import.success span
{
background-image: url( ../../img/ico/tick.png );
}
#content #dataimport #current_state.indexing
{
background-color: #f9f9f9;
}
#content #dataimport #current_state.indexing .info
{
background-image: url( ../../img/ico/hourglass.png );
}
#content #dataimport #current_state.indexing .info .abort-import
{
display: block;
}
#content #dataimport #current_state.success
{
background-color: #e6f3e6;
}
#content #dataimport #current_state.success .info
{
background-image: url( ../../img/ico/tick-circle.png );
}
#content #dataimport #current_state.success .info strong
{
color: #080;
}
#content #dataimport #current_state.aborted
{
background-color: #f3e6e6;
}
#content #dataimport #current_state.aborted .info
{
background-image: url( ../../img/ico/slash.png );
}
#content #dataimport #current_state.aborted .info strong
{
color: #800;
}
#content #dataimport #current_state.failure
{
background-color: #f3e6e6;
}
#content #dataimport #current_state.failure .info
{
background-image: url( ../../img/ico/cross-button.png );
}
#content #dataimport #current_state.failure .info strong
{
color: #800;
}
#content #dataimport #current_state.idle
{
background-color: #e6e6ff;
}
#content #dataimport #current_state.idle .info
{
background-image: url( ../../img/ico/information.png );
}
#content #dataimport #error
{
background-color: #f00;
background-image: url( ../../img/ico/construction.png );
background-position: 10px 50%;
color: #fff;
display: none;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
padding-left: 35px;
}
#content #dataimport .block h2
{
border-color: #c0c0c0;
padding-left: 5px;
position: relative;
}
#content #dataimport .block.hidden h2
{
border-color: #fafafa;
}
#content #dataimport .block h2 a.toggle
{
background-image: url( ../../img/ico/toggle-small.png );
background-position: 0 50%;
padding-left: 21px;
}
#content #dataimport .block.hidden h2 a.toggle
{
background-image: url( ../../img/ico/toggle-small-expand.png );
}
#content #dataimport #config h2 a.r
{
background-position: 3px 50%;
display: block;
float: right;
margin-left: 10px;
padding-left: 24px;
padding-right: 3px;
}
#content #dataimport #config h2 a.reload_config
{
background-image: url( ../../img/ico/arrow-circle.png );
}
#content #dataimport #config h2 a.reload_config.success
{
background-image: url( ../../img/ico/tick.png );
}
#content #dataimport #config h2 a.reload_config.error
{
background-image: url( ../../img/ico/slash.png );
}
#content #dataimport #config h2 a.debug_mode
{
background-image: url( ../../img/ico/hammer.png );
color: #c0c0c0;
}
#content #dataimport #config.debug_mode h2 a.debug_mode
{
background-color: #ff0;
background-image: url( ../../img/ico/hammer-screwdriver.png );
color: #333;
}
#content #dataimport .block.hidden .content
{
display: none;
}
#content #dataimport #config .content
{
padding: 5px 2px;
}
#content #dataimport #dataimport_config .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #dataimport #dataimport_config .formatted
{
border: 1px solid #fff;
display: block;
padding: 2px;
}
#content #dataimport .debug_mode #dataimport_config .formatted
{
display: none;
}
#content #dataimport #dataimport_config .editable
{
display: none;
}
#content #dataimport .debug_mode #dataimport_config .editable
{
display: block;
}
#content #dataimport #dataimport_config .editable textarea
{
font-family: monospace;
height: 120px;
min-height: 60px;
width: 100%;
}
#content #dataimport #debug_response
{
display: none;
}
#content #dataimport #debug_response em
{
color: #c0c0c0;
font-style: normal;
}

View File

@@ -0,0 +1,197 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #documents
{
background-image: url( ../../img/div.gif );
background-position: 45% 0;
background-repeat: repeat-y;
}
#content #documents #form
{
float: left;
/*width: 21%;*/
}
#content #documents #form label
{
cursor: pointer;
display: block;
margin-top: 5px;
}
#content #documents #form input,
#content #documents #form select,
#content #documents #form textarea
{
margin-bottom: 2px;
/*width: 100%;*/
}
#content #documents #form input,
#content #documents #form textarea
{
margin-bottom: 2px;
/*width: 98%;*/
}
#content #documents #form #start
{
float: left;
/*width: 45%;*/
}
#content #documents #form #rows
{
float: right;
/* width: 45%;*/
}
#content #documents #form .checkbox input
{
margin-bottom: 0;
width: auto;
}
#content #documents #form fieldset,
#content #documents #form .optional.expanded
{
border: 1px solid #fff;
border-top: 1px solid #c0c0c0;
margin-bottom: 5px;
}
#content #documents #form fieldset.common
{
margin-top: 10px;
}
#content #documents #form fieldset legend,
#content #documents #form .optional.expanded legend
{
display: block;
margin-left: 10px;
padding: 0px 5px;
}
#content #documents #form fieldset legend label
{
margin-top: 0;
}
#content #documents #form fieldset .fieldset
{
border-bottom: 1px solid #f0f0f0;
margin-bottom: 5px;
padding-bottom: 10px;
}
#content #documents #form .optional
{
border: 0;
}
#content #documents #form .optional .fieldset
{
display: none;
}
#content #documents #form .optional legend
{
margin-left: 0;
padding-left: 0;
}
#content #documents #form .optional.expanded .fieldset
{
display: block;
}
#content #documents #file-upload{
display: none;
}
#content #documents #result
{
display: none;
float: right;
width: 54%;
}
#content #documents #result #url
{
margin-bottom: 10px;
background-image: url( ../../img/ico/ui-address-bar.png );
background-position: 5px 50%;
border: 1px solid #f0f0f0;
box-shadow: 1px 1px 0 #f0f0f0;
-moz-box-shadow: 1px 1px 0 #f0f0f0;
-webkit-box-shadow: 1px 1px 0 #f0f0f0;
color: #c0c0c0;
display: block;
overflow: hidden;
padding: 5px;
padding-left: 26px;
white-space: nowrap;
}
#content #documents #result #url:focus,
#content #documents #result #url:hover
{
border-color: #c0c0c0;
box-shadow: 1px 1px 0 #d8d8d8;
-moz-box-shadow: 1px 1px 0 #d8d8d8;
-webkit-box-shadow: 1px 1px 0 #d8d8d8;
color: #333;
}
#content #documents #result #response
{
}
#content #documents #result #response pre
{
padding-left: 20px;
}
.description{
font-weight: bold;
}
#upload-only{
display: none;
}
#document-type{
padding-bottom: 5px;
}
#wizard{
display: none;
}
#wizard-fields div{
padding-top: 5px;
padding-bottom: 5px;
}
#wiz-field-data, #wiz-field-data span{
vertical-align: top;
}

View File

@@ -0,0 +1,207 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #index .bar-desc
{
color: #c0c0c0;
font-weight: normal;
margin-left: 10px;
white-space: pre;
}
#content #index .bar-holder
{
box-shadow: 5px 5px 10px #c0c0c0;
-moz-box-shadow: 5px 5px 10px #c0c0c0;
-webkit-box-shadow: 5px 5px 10px #c0c0c0;
height: 35px;
}
#content #index .bar-holder .bar
{
height: 100%;
position: relative;
}
#content #index .bar-holder div .val
{
border-right: 1px solid #f00;
display: block;
padding-right: 5px;
position: absolute;
right: 0;
top: 35px;
white-space: nowrap;
}
#content #index .bar-holder .bar-max.bar
{
background-color: #f0f0f0;
}
#content #index .bar-holder .bar-max.val
{
border-color: #f0f0f0;
color: #d6d6d6;
}
#content #index .bar-holder .bar-total.bar
{
background-color: #c0c0c0;
}
#content #index .bar-holder .bar-total.val
{
border-color: #c0c0c0;
color: #c0c0c0;
}
#content #index .bar-holder .bar-used.bar
{
background-color: #969696;
}
#content #index .bar-holder .bar-used.val
{
border-color: #969696;
color: #969696;
}
#content #index .bar-holder.bar-lvl-2 .bar-max.val { padding-top: 25px; }
#content #index .bar-holder.bar-lvl-2 .bar-total.val { padding-top: 5px; }
#content #index .bar-holder.bar-lvl-2 { margin-bottom: 45px; }
#content #index .bar-holder.bar-lvl-3 .bar-max.val { padding-top: 45px; }
#content #index .bar-holder.bar-lvl-3 .bar-total.val { padding-top: 25px; }
#content #index .bar-holder.bar-lvl-3 .bar-used.val { padding-top: 5px; }
#content #index .bar-holder.bar-lvl-3 { margin-bottom: 65px; }
#content #index .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #index .index-left
{
float: left;
width: 55%;
}
#content #index .index-right
{
float: right;
width: 40%;
}
#content #index .data li
{
display: none;
padding-top: 3px;
padding-bottom: 3px;
}
#content #index .data li dt
{
float: left;
white-space: nowrap;
width: 20%;
}
#content #index .data li dd
{
float: right;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: 80%
}
#content #index .data li dd.odd
{
color: #999;
}
#content #index .data dt span
{
background-position: 1px 50%;
display: block;
padding-left: 22px;
}
#content #index #instance h2 { background-image: url( ../../img/ico/server.png ); }
#content #index #instance .start_time dt span { background-image: url( ../../img/ico/clock-select.png ); }
#content #index #versions h2 { background-image: url( ../../img/ico/property.png ); }
#content #index #versions .solr span { background-image: url( ../../img/solr-ico.png ); }
#content #index #versions .lucene span { background-image: url( ../../img/lucene-ico.png ); }
#content #index #jvm h2 { background-image: url( ../../img/ico/jar.png ); }
#content #index #jvm .jvm_version dt span { background-image: url( ../../img/ico/jar.png ); }
#content #index #jvm .processors dt span { background-image: url( ../../img/ico/processor.png ); }
#content #index #jvm .command_line_args dt span { background-image: url( ../../img/ico/terminal.png ); }
#content #index #system h2 { background-image: url( ../../img/ico/system-monitor.png ); }
#content #index #system
{
position: relative;
}
#content #index #system .reload
{
background-image: url( ../../img/ico/arrow-circle.png );
background-position: 50% 50%;
display: block;
height: 30px;
position: absolute;
right: 0;
top: 0;
width: 30px;
}
#content #index #system .reload.loader
{
padding-left: 0;
}
#content #index #system .reload span
{
display: none;
}
#content #index #system .content p
{
margin-top: 10px;
margin-bottom: 5px;
}
#content #index #system .content .no-info
{
color: #c0c0c0;
display: none;
font-style: italic;
}
#content #index #jvm-memory h2 { background-image: url( ../../img/ico/memory.png ); }
#content #index #jvm-memory-bar
{
margin-top: 20px;
}

View File

@@ -0,0 +1,52 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #java-properties .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #java-properties li
{
padding-top: 3px;
padding-bottom: 3px;
}
#content #java-properties li.odd
{
background-color: #f8f8f8;
}
#content #java-properties li dt
{
float: left;
width: 29%;
}
#content #java-properties li dd
{
float: right;
width: 70%
}
#content #java-properties li dd.odd
{
color: #999;
}

View File

@@ -0,0 +1,355 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #logging .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #logging .block h2
{
background-image: url( ../../img/ico/document-text.png );
margin-bottom: 10px;
}
#content #logging .block h2 span span
{
color: #c0c0c0;
font-weight: normal;
margin-left: 10px;
}
#content #logging #viewer
{
position: relative;
}
#content #logging #viewer #state
{
background-position: 0 50%;
color: #c0c0c0;
margin-top: 20px;
padding-left: 21px;
}
#content #logging #viewer table
{
border-collapse: collapse;
width: 100%;
}
#content #logging #viewer th,
#content #logging #viewer td a,
#content #logging #viewer tbody .trace td
{
padding: 3px 10px;
}
#content #logging #viewer td
{
vertical-align: top;
}
#content #logging #viewer td a
{
display: block;
}
#content #logging #viewer thead th
{
font-weight: bold;
text-align: left;
}
#content #logging #viewer tbody td,
#content #logging #viewer tfoot td
{
border-top: 1px solid #f0f0f0;
}
#content #logging #viewer thead th.message
{
width:100%;
}
#content #logging #viewer tbody td.span a
{
padding-left: 0;
padding-right: 0;
}
#content #logging #viewer tbody span
{
display: block;
padding-left: 10px;
padding-right: 10px;
}
#content #logging #viewer tbody .level-info .level span { background-color: #ebf5eb; }
#content #logging #viewer tbody .level-warning span { background-color: #FFD930; }
#content #logging #viewer tbody .level-severe span { background-color: #c43c35; color: #fff; }
#content #logging #viewer tbody .level-debug span { background-color: #ebf5eb; }
#content #logging #viewer tbody .level-warn span { background-color: #FFD930; }
#content #logging #viewer tbody .level-error span { background-color: #FF6130; }
#content #logging #viewer tbody .level-fatal span { background-color: #c43c35; }
#content #logging #viewer tbody .has-trace a
{
cursor: pointer;
}
#content #logging #viewer tbody .has-trace a:hover
{
color: #008;
}
#content #logging #viewer tbody .has-trace .message a
{
background-image: url( ../../img/ico/information.png );
background-position: 100% 50%;
display: block;
padding-right: 21px;
}
#content #logging #viewer tbody .has-trace.open .message a
{
background-image: url( ../../img/ico/information-white.png );
}
#content #logging #viewer tbody .trace
{
display: none;
}
#content #logging #viewer tbody .trace td
{
border-top: 0;
color: #c0c0c0;
}
#content #logging #viewer .has-data tfoot
{
display: none;
}
#content #logging #viewer tfoot td
{
color: #c0c0c0;
}
#content #logging .jstree > li
{
margin-left: 0;
}
#content #logging .jstree li
{
position: relative;
}
#content #logging .jstree .level-finest { background-color: #d5e5fc; }
#content #logging .jstree .level-fine { background-color: #d5fafc; }
#content #logging .jstree .level-config { background-color: #e6fded; }
#content #logging .jstree .level-info { background-color: #fafcd7; }
#content #logging .jstree .level-warning { background-color: #fcecd5; }
#content #logging .jstree .level-severe { background-color: #fcdcda; }
#content #logging .jstree .level-off { background-color: #ffffff; }
/* Log4j */
#content #logging .jstree .level-all { background-color: #9EDAFF; }
#content #logging .jstree .level-trace { background-color: #d5e5fc; }
#content #logging .jstree .level-debug { background-color: #d5fafc; }
#content #logging .jstree .level-warn { background-color: #e6fded; }
#content #logging .jstree .level-error { background-color: #fcecd5; }
#content #logging .jstree .level-fatal { background-color: #fcdcda; }
#content #logging .jstree a
{
height: 17px;
line-height: 17px;
padding: 0;
width: 90%;
}
#content #logging .jstree a:hover
{
color: #008;
}
#content #logging .jstree a span.ns
{
display: none;
}
#content #logging.ns .jstree a span.ns
{
display: inline;
}
#content #logging .jstree a span.name
{
background-position: 100% 50%;
cursor: pointer;
padding-right: 21px;
}
#content #logging .jstree a span.name em
{
color: #f00;
font-style: normal;
text-transform: uppercase;
}
#content #logging .jstree a.trigger.set
{
font-weight: bold;
}
#content #logging .jstree a:hover span.name
{
background-image: url( ../../img/ico/pencil-small.png );
}
#content #logging .jstree .selector-holder
{
position: absolute;
top: -2px;
z-index: 700;
}
#content #logging .jstree .selector-holder.open
{
background-color: #fff;
margin-left: -19px;
z-index: 800;
}
#content #logging .jstree li .selector-holder { left: 440px; }
#content #logging .jstree li li .selector-holder { left: 422px; }
#content #logging .jstree li li li .selector-holder { left: 404px; }
#content #logging .jstree li li li li .selector-holder { left: 386px; }
#content #logging .jstree li li li li li .selector-holder { left: 368px; }
#content #logging .jstree li li li li li li .selector-holder { left: 350px; }
#content #logging .jstree li li li li li li li .selector-holder { left: 332px; }
#content #logging .jstree li li li li li li li li .selector-holder { left: 314px; }
#content #logging .jstree .selector
{
border: 1px solid transparent;
position: relative;
}
#content #logging .jstree .open .selector
{
border-color: #f0f0f0;
box-shadow: 5px 5px 10px #c0c0c0;
-moz-box-shadow: 5px 5px 10px #c0c0c0;
-webkit-box-shadow: 5px 5px 10px #c0c0c0;
}
#content #logging .jstree .selector a
{
display: block;
padding: 2px;
width: auto;
}
#content #logging .jstree .selector .close
{
display: none;
}
#content #logging .jstree .open .selector .close
{
background-image: url( ../../img/ico/cross-0.png );
background-position: 50% 50%;
display: block;
position: absolute;
right: -25px;
top: 0;
width: 20px;
}
#content #logging .jstree .open .selector .close:hover
{
background-image: url( ../../img/ico/cross-1.png );
}
#content #logging .jstree .open .selector .close span
{
display: none;
}
#content #logging .jstree .open .selector a.trigger
{
display: none;
}
#content #logging .jstree .selector ul
{
display: none;
}
#content #logging .jstree .open .selector ul
{
display: block;
}
#content #logging .jstree .selector ul li
{
background: none;
margin-left: 0;
}
#content #logging .jstree .selector ul li a
{
background-image: url( ../../img/ico/ui-radio-button-uncheck.png );
background-position: 2px 50%;
padding-left: 21px;
}
#content #logging .jstree .selector ul li a.level
{
background-color: #f0f0f0;
}
#content #logging .jstree .selector ul li a:hover
{
background-image: url( ../../img/ico/ui-radio-button.png );
}
#content #logging .jstree .selector li.unset
{
border-top: 1px solid #f0f0f0;
}
#content #logging .jstree .selector li.unset a
{
background-image: url( ../../img/ico/cross-0.png );
background-position: 4px 50%;
}
#content #logging .jstree .selector li.unset a:hover
{
background-image: url( ../../img/ico/cross-1.png );
color: #800;
}

View File

@@ -0,0 +1,323 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#menu-wrapper
{
position: fixed;
top: 120px;
width: 150px;
}
.has-environment #menu-wrapper
{
top: 160px;
}
#menu-wrapper a
{
display: block;
padding: 4px 2px;
overflow: hidden;
text-overflow: ellipsis;
}
#core-selector
{
margin-top: 20px;
padding-right: 10px;
}
#core-selector a
{
padding: 0;
padding-left: 8px;
}
#core-selector select
{
width: 100%;
}
#core-selector #has-no-cores
{
display: none;
}
#core-selector #has-no-cores a
{
background-image: url( ../../img/ico/database--plus.png );
}
#core-selector #has-no-cores span
{
color: #c0c0c0;
display: block;
}
#menu-wrapper .active p
{
background-color: #fafafa;
border-color: #c0c0c0;
}
#menu-wrapper p a,
#menu a
{
background-position: 5px 50%;
padding-left: 26px;
padding-top: 5px;
padding-bottom: 5px;
}
#menu-wrapper p a:hover
{
background-color: #f0f0f0;
}
#menu-wrapper .active p a
{
background-color: #c0c0c0;
font-weight: bold;
}
#menu p.loader
{
background-position: 5px 50%;
color: #c0c0c0;
margin-top: 5px;
padding-left: 26px;
}
#menu p a small
{
color: #b5b5b5;
font-weight: normal;
}
#menu p a small span.txt
{
display: none;
}
#menu p a small:hover span.txt
{
display: inline;
}
#menu .busy
{
border-right-color: #f6f5d9;
}
#menu .busy p a
{
background-color: #f6f5d9;
background-image: url( ../../img/ico/status-away.png );
}
#menu .offline
{
border-right-color: #eccfcf;
}
#menu .offline p a
{
background-color: #eccfcf;
background-image: url( ../../img/ico/status-busy.png );
}
#menu .online
{
border-right-color: #cfecd3;
}
#menu .online p a
{
background-color: #cfecd3;
background-image: url( ../../img/ico/status.png );
}
#menu .ping small
{
color: #000
}
#menu li
{
border-bottom: 1px solid #f0f0f0;
}
#menu li:last-child
{
border-bottom: 0;
}
#menu li.optional
{
display: none;
}
#core-menu p
{
border-top: 1px solid #f0f0f0;
}
#core-menu li:first-child p
{
border-top: 0;
}
#core-menu p a
{
background-image: url( ../../img/ico/status-offline.png );
}
#core-menu .active p a
{
background-image: url( ../../img/ico/box.png );
}
#core-menu ul,
#menu ul
{
display: none;
padding-top: 5px;
padding-bottom: 10px;
}
#core-menu .active ul,
#menu .active ul
{
display: block;
}
#menu ul li
{
border-bottom: 0;
}
#core-menu ul li a,
#menu ul li a
{
background-position: 7px 50%;
border-bottom: 1px solid #f0f0f0;
color: #bbb;
margin-left: 15px;
padding-left: 26px;
}
#core-menu ul li:last-child a,
#menu ul li:last-child a
{
border-bottom: 0;
}
#core-menu ul li a:hover,
#menu ul li a:hover
{
background-color: #f0f0f0;
color: #333;
}
#core-menu ul li.active a,
#menu ul li.active a
{
background-color: #d0d0d0;
border-color: #d0d0d0;
color: #333;
}
#menu #index.global p a { background-image: url( ../../img/ico/dashboard.png ); }
#menu #logging.global p a { background-image: url( ../../img/ico/inbox-document-text.png ); }
#menu #logging.global .level a { background-image: url( ../../img/ico/gear.png ); }
#menu #java-properties.global p a { background-image: url( ../../img/ico/jar.png ); }
#menu #threads.global p a { background-image: url( ../../img/ico/ui-accordion.png ); }
#menu #cores.global p a { background-image: url( ../../img/ico/databases.png ); }
#menu #cloud.global p a { background-image: url( ../../img/ico/network-cloud.png ); }
#menu #cloud.global .tree a { background-image: url( ../../img/ico/folder-tree.png ); }
#menu #cloud.global .graph a { background-image: url( ../../img/ico/molecule.png ); }
#menu #cloud.global .rgraph a { background-image: url( ../../img/ico/asterisk.png ); }
#menu #cloud.global .dump a { background-image: url( ../../img/ico/download-cloud.png ); }
#core-menu .ping.error a
{
background-color: #ffcccc;
background-image: url( ../../img/ico/system-monitor--exclamation.png );
border-color: #ffcccc;
cursor: help;
}
#core-menu .overview a { background-image: url( ../../img/ico/home.png ); }
#core-menu .query a { background-image: url( ../../img/ico/magnifier.png ); }
#core-menu .schema a { background-image: url( ../../img/ico/table.png ); }
#core-menu .config a { background-image: url( ../../img/ico/gear.png ); }
#core-menu .analysis a { background-image: url( ../../img/ico/funnel.png ); }
#core-menu .documents a { background-image: url( ../../img/ico/documents-stack.png ); }
#core-menu .schema-browser a { background-image: url( ../../img/ico/book-open-text.png ); }
#core-menu .replication a { background-image: url( ../../img/ico/node.png ); }
#core-menu .distribution a { background-image: url( ../../img/ico/node-select.png ); }
#core-menu .ping a { background-image: url( ../../img/ico/system-monitor.png ); }
#core-menu .logging a { background-image: url( ../../img/ico/inbox-document-text.png ); }
#core-menu .plugins a { background-image: url( ../../img/ico/block.png ); }
#core-menu .dataimport a { background-image: url( ../../img/ico/document-import.png ); }
#content #navigation
{
border-right: 1px solid #e0e0e0;
}
#content #navigation a
{
display: block;
padding: 4px 2px;
}
#content #navigation .current
{
border-color: #e0e0e0;
}
#content #navigation a
{
background-position: 5px 50%;
padding-left: 26px;
padding-top: 5px;
padding-bottom: 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#content #navigation a:hover
{
background-color: #f0f0f0;
}
#content #navigation .current a
{
background-color: #e0e0e0;
font-weight: bold;
}

View File

@@ -0,0 +1,194 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #plugins #navigation
{
width: 20%;
}
#content #plugins #navigation .cache a { background-image: url( ../../img/ico/disk-black.png ); }
#content #plugins #navigation .core a { background-image: url( ../../img/ico/wooden-box.png ); }
#content #plugins #navigation .other a { background-image: url( ../../img/ico/zone.png ); }
#content #plugins #navigation .highlighting a { background-image: url( ../../img/ico/highlighter-text.png ); }
#content #plugins #navigation .updatehandler a{ background-image: url( ../../img/ico/arrow-circle.png ); }
#content #plugins #navigation .queryhandler a { background-image: url( ../../img/ico/magnifier.png ); }
#content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; }
#content #plugins #navigation .PLUGINCHANGES a { background-image: url( ../../img/ico/eye.png ); }
#content #plugins #navigation .RELOAD a { background-image: url( ../../img/ico/arrow-circle.png ); }
#content #plugins #navigation a
{
position: relative;
}
#content #plugins #navigation a span
{
background-color: #bba500;
border-radius: 5px;
color: #fff;
font-size: 10px;
font-weight: normal;
line-height: 1.4em;
padding-left: 4px;
padding-right: 4px;
position: absolute;
right: 5px;
top: 7px;
}
#content #plugins #frame
{
float: right;
width: 78%;
}
#content #plugins #frame .entry
{
margin-bottom: 10px;
}
#content #plugins #frame .entry:last-child
{
margin-bottom: 0;
}
#content #plugins #frame .entry a
{
background-image: url( ../../img/ico/chevron-small-expand.png );
background-position: 0 50%;
display: block;
font-weight: bold;
padding-left: 21px;
}
#content #plugins #frame .entry.changed a span
{
color: #bba500;
}
#content #plugins #frame .entry.expanded a
{
background-image: url( ../../img/ico/chevron-small.png );
}
#content #plugins #frame .entry.expanded ul
{
display: block;
}
#content #plugins #frame .entry ul
{
border-left: 9px solid #f0f3ff;
display: none;
margin-left: 3px;
padding-top: 5px;
padding-left: 10px;
}
#content #plugins #frame .entry li
{
padding-top: 2px;
padding-bottom: 2px;
}
#content #plugins #frame .entry li.stats
{
border-top: 1px solid #c0c0c0;
margin-top: 5px;
padding-top: 5px;
}
#content #plugins #frame .entry li.odd
{
background-color: #f8f8f8;
}
#content #plugins #frame .entry dt,
#content #plugins #frame .entry .stats span
{
float: left;
width: 11%;
}
#content #plugins #frame .entry dd,
#content #plugins #frame .entry .stats ul
{
float: right;
width: 88%;
}
#content #plugins #frame .entry .stats ul
{
border-left: 0;
margin: 0;
padding: 0;
}
#content #plugins #frame .entry .stats dt
{
width: 27%;
}
#content #plugins #frame .entry .stats dd
{
width: 72%;
}
#content #plugins #frame .entry.expanded a.linker {
background-image: none;
background-position: 0 0;
display: inline;
font-weight: normal;
padding:0px;
}
#content #plugins #frame .entry.expanded a.linker:hover {
background-color:#F0F3FF;
}
#recording
{
display: none;
}
#recording .wrapper
{
padding: 30px;
}
#recording p
{
background-position: 0 50%;
float: left;
padding-left: 21px;
padding-top: 7px;
padding-bottom: 7px;
}
#recording button
{
float: right;
}
#recording button span
{
background-image: url( ../../img/ico/new-text.png );
}

View File

@@ -0,0 +1,173 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #query
{
background-image: url( ../../img/div.gif );
background-position: 22% 0;
background-repeat: repeat-y;
}
#content #query #form
{
float: left;
width: 21%;
}
#content #query #form label
{
cursor: pointer;
display: block;
margin-top: 5px;
}
#content #query #form input,
#content #query #form select,
#content #query #form textarea
{
margin-bottom: 2px;
width: 100%;
}
#content #query #form input,
#content #query #form textarea
{
width: 98%;
}
#content #query #form .multiple input
{
float: left;
width: 80%
}
#content #query #form .multiple .buttons
{
float: right;
width: 16%;
}
#content #query #form .multiple a
{
background-position: 50% 50%;
display: block;
height: 25px;
width: 49%;
}
#content #query #form .multiple a span
{
display: none;
}
#content #query #form .multiple a.add
{
background-image: url( ../../img/ico/plus-button.png );
float: right;
}
#content #query #form .multiple a.rem
{
background-image: url( ../../img/ico/minus-button.png );
float: left;
}
#content #query #form #start
{
float: left;
width: 45%;
}
#content #query #form #rows
{
float: right;
width: 45%;
}
#content #query #form .checkbox input
{
margin-bottom: 0;
width: auto;
}
#content #query #form fieldset,
#content #query #form .optional.expanded
{
border: 1px solid #fff;
border-top: 1px solid #c0c0c0;
margin-bottom: 5px;
}
#content #query #form fieldset.common
{
margin-top: 10px;
}
#content #query #form fieldset legend,
#content #query #form .optional.expanded legend
{
display: block;
margin-left: 10px;
padding: 0px 5px;
}
#content #query #form fieldset legend label
{
margin-top: 0;
}
#content #query #form fieldset .fieldset
{
border-bottom: 1px solid #f0f0f0;
margin-bottom: 5px;
padding-bottom: 10px;
}
#content #query #form .optional
{
border: 0;
}
#content #query #form .optional .fieldset
{
display: none;
}
#content #query #form .optional legend
{
margin-left: 0;
padding-left: 0;
}
#content #query #form .optional.expanded .fieldset
{
display: block;
}
#content #query #result
{
display: none;
float: right;
width: 77%;
}
#content #query #result #response
{
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,172 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#content #threads .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #threads #thread-dump table
{
border-collapse: collapse;
width: 100%;
}
#content #threads #thread-dump table .spacer,
#content #threads #thread-dump tbody .state
{
background-color: #fff;
}
#content #threads #thread-dump table th,
#content #threads #thread-dump table td
{
padding: 5px 3px;
vertical-align: top;
}
#content #threads #thread-dump thead th
{
background-color: #c8c8c8;
font-weight: bold;
text-align: left;
}
#content #threads #thread-dump thead th.name
{
width: 85%;
}
#content #threads #thread-dump thead th.time
{
text-align: right;
width: 15%;
}
#content #threads #thread-dump tbody .odd
{
background-color: #f0f0f0;
}
#content #threads #thread-dump tbody .RUNNABLE a
{
background-image: url( ../../img/ico/tick-circle.png );
}
#content #threads #thread-dump tbody .WAITING a,
#content #threads #thread-dump tbody .TIMED_WAITING .a
{
background-image: url( ../../img/ico/hourglass.png );
}
#content #threads #thread-dump tbody .WAITING.lock a,
#content #threads #thread-dump tbody .TIMED_WAITING.lock a
{
background-image: url( ../../img/ico/hourglass--exclamation.png );
}
#content #threads #thread-dump tbody .name a
{
background-position: 0 50%;
cursor: auto;
display: block;
padding-left: 21px;
}
#content #threads #thread-dump tbody .stacktrace .name a
{
cursor: pointer;
}
#content #threads #thread-dump tbody .stacktrace .name a span
{
background-image: url( ../../img/ico/chevron-small-expand.png );
background-position: 100% 50%;
padding-right: 21px;
}
#content #threads #thread-dump tbody .stacktrace.open .name a span
{
background-image: url( ../../img/ico/chevron-small.png );
}
#content #threads #thread-dump tbody .name p
{
background-image: url( ../../img/ico/arrow-000-small.png );
background-position: 0 50%;
color: #c0c0c0;
font-size: 11px;
margin-left: 21px;
padding-left: 21px;
}
#content #threads #thread-dump tbody .name div
{
border-top: 1px solid #c0c0c0;
display: none;
margin-left: 21px;
margin-top: 5px;
padding-top: 5px;
}
#content #threads #thread-dump tbody .open .name div
{
display: block;
}
#content #threads #thread-dump tbody .name ul
{
list-style-type: disc;
margin-left: 0.7em;
padding-left: 0.7em;
}
#content #threads #thread-dump tbody .time
{
text-align: right;
}
#content #threads #thread-dump tbody .details
{
display: none;
}
#content #threads .controls
{
padding-top: 5px;
padding-bottom: 5px;
}
#content #threads .controls a
{
background-image: url( ../../img/ico/chevron-small-expand.png );
padding-left: 21px;
}
#content #threads.expanded .controls a
{
background-image: url( ../../img/ico/chevron-small.png );
}
#content #threads.expanded .controls .expand,
#content #threads.collapsed .controls .collapse
{
display: none;
}