source: vlo/branches/vlo-3.0/vlo-solr/src/main/webapp/css/styles/cloud.css @ 4734

Last change on this file since 4734 was 4734, checked in by teckart@informatik.uni-leipzig.de, 10 years ago

Added files for Solr admin interface (directories: css, img, js, tpl + admin.html), updated web.xml

File size: 6.6 KB
Line 
1/*
2
3Licensed to the Apache Software Foundation (ASF) under one or more
4contributor license agreements.  See the NOTICE file distributed with
5this work for additional information regarding copyright ownership.
6The ASF licenses this file to You under the Apache License, Version 2.0
7(the "License"); you may not use this file except in compliance with
8the License.  You may obtain a copy of the License at
9
10http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17
18*/
19
20#content #cloud
21{
22  position: relative;
23}
24
25#content #cloud #frame .content
26{
27  display: none;
28}
29
30#content #cloud .loader
31{
32  background-position: 0 50%;
33  padding-left: 21px;
34}
35
36#content #cloud #error
37{
38  background-color: #f00;
39  background-image: url( ../../img/ico/construction.png );
40  background-position: 10px 12px;
41  color: #fff;
42  font-weight: bold;
43  margin-bottom: 20px;
44  padding: 10px;
45  padding-left: 35px;
46}
47
48#content #cloud #error .msg
49{
50  font-style: italic;
51  font-weight: normal;
52  margin-top: 10px;
53}
54
55#content #cloud #debug
56{
57  background-color: #fff;
58  box-shadow: 0px 0px 10px #c0c0c0;
59  -moz-box-shadow: 0px 0px 10px #c0c0c0;
60  -webkit-box-shadow: 0px 0px 10px #c0c0c0;
61  display: none;
62  padding: 20px;
63  position: absolute;
64  left: 50px;
65  top: 10px;
66}
67
68#content #cloud #debug ul
69{
70  margin-bottom: 5px;
71}
72
73#content #cloud #debug ul a
74{
75  background-position: 4px 50%;
76  border-right: 0;
77  display: block;
78  padding: 2px 4px;
79  padding-left: 25px;
80}
81
82#content #cloud #debug ul a:hover,
83#content #cloud #debug ul a.hover
84{
85  background-color: #f0f0f0;
86}
87
88#content #cloud #debug .clipboard
89{
90  float: left;
91  position: relative;
92}
93
94#content #cloud #debug .clipboard a
95{
96  background-image: url( ../../img/ico/clipboard-paste.png );
97  z-index: 98;
98}
99
100#content #cloud #debug .clipboard a:hover,
101#content #cloud #debug .clipboard a.hover,
102#content #cloud #debug .clipboard.copied a
103{
104  background-image: url( ../../img/ico/clipboard-paste-document-text.png );
105}
106
107#content #cloud #debug .close
108{
109  float: right;
110}
111
112#content #cloud #debug .close a
113{
114  background-image: url( ../../img/ico/cross-0.png );
115  padding-left: 21px;
116}
117
118#content #cloud #debug .close a:hover
119{
120  background-image: url( ../../img/ico/cross-1.png );
121}
122
123#content #cloud #debug .debug
124{
125  border: 1px solid #f0f0f0;
126  max-height: 350px;
127  overflow: auto;
128  padding: 5px;
129  width: 500px;
130}
131
132#content #cloud #debug .debug .loader
133{
134  background-position: 5px 50%;
135  display: block;
136  padding: 10px 26px;
137}
138
139#content #cloud .content
140{
141  padding-left: 0;
142  padding-right: 0;
143}
144
145#content #cloud .content.show
146{
147  background-image: url( ../../img/div.gif );
148  background-repeat: repeat-y;
149  background-position: 31% 0;
150}
151
152#content #cloud #tree
153{
154  float: left;
155  width: 30%;
156}
157
158#content #cloud .show #tree
159{
160  overflow: hidden;
161}
162
163#content #cloud #file-content
164{
165  display: none;
166  float: right;
167  position: relative;
168  width: 68%;
169  min-height: 100px
170}
171
172#content #cloud .show #file-content
173{
174  display: block;
175}
176
177#content #cloud #file-content .close
178{
179  background-image: url( ../../img/ico/cross-0.png );
180  background-position: 50% 50%;
181  display: block;
182  height: 20px;
183  position: absolute;
184  right: 0;
185  top: 0;
186  width: 20px;
187}
188
189#content #cloud #file-content .close:hover
190{
191  background-image: url( ../../img/ico/cross-1.png );
192}
193
194#content #cloud #file-content .close span
195{
196  display: none;
197}
198
199#content #cloud #file-content #data
200{
201  border-top: 1px solid #c0c0c0;
202  margin-top: 10px;
203  padding-top: 10px;
204}
205
206#content #cloud #file-content #data pre
207{
208  display: block;
209  max-height: 600px;
210  overflow: auto;
211}
212
213#content #cloud #file-content #data em
214{
215  color: #c0c0c0;
216}
217
218#content #cloud #file-content #prop
219{
220}
221
222#content #cloud #file-content li
223{
224  padding-top: 3px;
225  padding-bottom: 3px;
226}
227
228#content #cloud #file-content li.odd
229{
230  background-color: #F8F8F8;
231}
232
233#content #cloud #file-content li dt
234{
235  float: left;
236  width: 19%;
237}
238
239#content #cloud #file-content li dd
240{
241  float: right;
242  width: 80%;
243}
244
245/* tree */
246
247#content #cloud .tree a.active
248{
249  background-color: #f0f0f0;
250  color: #00f;
251}
252
253#content #cloud #legend
254{
255  border: 1px solid #f0f0f0;
256  padding: 10px;
257  position: absolute;
258  right: 0;
259  bottom: 0;
260}
261
262#content #cloud #legend li
263{
264  padding-left: 15px;
265  position: relative;
266}
267
268#content #cloud #legend li svg
269{
270  position: absolute;
271  left: 0;
272  top: 2px;
273}
274
275#content #graph-content
276{
277  min-height: 400px;
278}
279
280#content #graph-content .node
281{
282  fill: #333;
283}
284
285#content #cloud #legend circle,
286#content #graph-content .node circle
287{
288  fill: #fff;
289  stroke: #c0c0c0;
290  stroke-width: 1.5px;
291}
292
293#content #graph-content .node.lvl-3 text
294{
295  cursor: pointer;
296}
297
298#content #graph-content .node.lvl-3:hover circle
299{
300  stroke: #000 !important;
301}
302
303#content #graph-content .node.lvl-3:hover text
304{
305  fill: #000 !important;
306}
307
308#content #graph-content .link
309{
310  fill: none;
311  stroke: #e0e0e0;
312  stroke-width: 1.5px;
313}
314
315#content #cloud #legend .gone circle,
316#content #graph-content .node.gone circle,
317#content #graph-content .link.gone
318{
319  stroke: #f0f0f0;
320}
321
322#content #graph-content .node.gone text
323{
324  fill: #f0f0f0;
325}
326
327#content #cloud #legend ul .gone
328{
329  color: #e0e0e0;
330}
331
332#content #cloud #legend .recovery_failed,
333#content #cloud #legend .recovery_failed circle,
334#content #graph-content .node.recovery_failed circle
335{
336  color: #C43C35;
337  stroke: #C43C35;
338}
339
340#content #graph-content .node.recovery_failed text
341{
342  fill: #C43C35;
343}
344
345#content #cloud #legend .down,
346#content #cloud #legend .down circle,
347#content #graph-content .node.down circle
348{
349  color: #c48f00;
350  stroke: #c48f00;
351}
352
353#content #graph-content .node.down text
354{
355  fill: #c48f00;
356}
357
358#content #cloud #legend .recovering,
359#content #cloud #legend .recovering circle,
360#content #graph-content .node.recovering circle
361{
362  color: #d5dd00;
363  stroke: #d5dd00;
364}
365
366#content #graph-content .node.recovering text
367{
368  fill: #d5dd00;
369}
370
371#content #cloud #legend .active,
372#content #cloud #legend .active circle,
373#content #graph-content .node.active circle
374{
375  color: #57A957;
376  stroke: #57A957;
377}
378
379#content #graph-content .node.active text
380{
381  fill: #57A957;
382}
383
384#content #cloud #legend .leader circle,
385#content #graph-content .node.leader circle
386{
387  fill: #000;
388}
389
390#content #cloud #legend .leader circle
391{
392  stroke: #fff;
393}
394
395#content #graph-content .link.lvl-2,
396#content #graph-content .link.leader
397{
398  stroke: #c0c0c0;
399}
400
401#content #graph-content .node.lvl-0 circle
402{
403  stroke: #fff;
404}
405
406#content #graph-content .link.lvl-1
407{
408  stroke: #fff;
409}
Note: See TracBrowser for help on using the repository browser.