Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / public / pithos.css @ 73a93609

History | View | Annotate | Download (12.6 kB)

1 cae2a8db Christos Stathis
/*
2 cae2a8db Christos Stathis
 * Copyright 2011-2012 GRNET S.A. All rights reserved.
3 cae2a8db Christos Stathis
 *
4 cae2a8db Christos Stathis
 * Redistribution and use in source and binary forms, with or
5 cae2a8db Christos Stathis
 * without modification, are permitted provided that the following
6 cae2a8db Christos Stathis
 * conditions are met:
7 cae2a8db Christos Stathis
 *
8 cae2a8db Christos Stathis
 *   1. Redistributions of source code must retain the above
9 cae2a8db Christos Stathis
 *      copyright notice, this list of conditions and the following
10 cae2a8db Christos Stathis
 *      disclaimer.
11 cae2a8db Christos Stathis
 *
12 cae2a8db Christos Stathis
 *   2. Redistributions in binary form must reproduce the above
13 cae2a8db Christos Stathis
 *      copyright notice, this list of conditions and the following
14 cae2a8db Christos Stathis
 *      disclaimer in the documentation and/or other materials
15 cae2a8db Christos Stathis
 *      provided with the distribution.
16 cae2a8db Christos Stathis
 *
17 cae2a8db Christos Stathis
 * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18 cae2a8db Christos Stathis
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 cae2a8db Christos Stathis
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 cae2a8db Christos Stathis
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21 cae2a8db Christos Stathis
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 cae2a8db Christos Stathis
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 cae2a8db Christos Stathis
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24 cae2a8db Christos Stathis
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 cae2a8db Christos Stathis
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 cae2a8db Christos Stathis
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 cae2a8db Christos Stathis
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 cae2a8db Christos Stathis
 * POSSIBILITY OF SUCH DAMAGE.
29 cae2a8db Christos Stathis
 *
30 cae2a8db Christos Stathis
 * The views and conclusions contained in the software and
31 cae2a8db Christos Stathis
 * documentation are those of the authors and should not be
32 cae2a8db Christos Stathis
 * interpreted as representing official policies, either expressed
33 cae2a8db Christos Stathis
 * or implied, of GRNET S.A.
34 cae2a8db Christos Stathis
 */
35 a57faaf0 Christos Stathis
body {
36 a57faaf0 Christos Stathis
        color: black;
37 b25fcaca Christos Stathis
        font: 13px Verdana, 'PT Sans', sans-serif;
38 a57faaf0 Christos Stathis
        margin: 8px;
39 a57faaf0 Christos Stathis
        margin-top: 3px;
40 0549e173 Christos Stathis
        background-color: transparent;
41 a7b6e464 Christos Stathis
}
42 a7b6e464 Christos Stathis
43 d7be6c23 Christos Stathis
table td {
44 b25fcaca Christos Stathis
        font: 13px Verdana, 'PT Sans', sans-serif;
45 d7be6c23 Christos Stathis
}
46 d7be6c23 Christos Stathis
47 a7b6e464 Christos Stathis
.pithos-outer {
48 a76065b6 Christos Stathis
        background: url(images/background.png) repeat-x;
49 a57faaf0 Christos Stathis
}
50 a57faaf0 Christos Stathis
51 a57faaf0 Christos Stathis
a {
52 9578b580 Christos Stathis
        color: white;
53 9578b580 Christos Stathis
        text-decoration: none;
54 9578b580 Christos Stathis
}
55 9578b580 Christos Stathis
56 9578b580 Christos Stathis
a:hover {
57 9578b580 Christos Stathis
        color: white;
58 a57faaf0 Christos Stathis
}
59 a57faaf0 Christos Stathis
60 a57faaf0 Christos Stathis
a:visited {
61 9578b580 Christos Stathis
        color: white;
62 a57faaf0 Christos Stathis
}
63 a57faaf0 Christos Stathis
64 bbdd34ef Christos Stathis
a.info {
65 bbdd34ef Christos Stathis
        position: relative; /*this is the key*/
66 bbdd34ef Christos Stathis
        z-index: 24;
67 bbdd34ef Christos Stathis
        color: black;
68 bbdd34ef Christos Stathis
        text-decoration: none
69 a57faaf0 Christos Stathis
}
70 a57faaf0 Christos Stathis
71 bbdd34ef Christos Stathis
a.info:hover {
72 bbdd34ef Christos Stathis
        z-index: 25;
73 bbdd34ef Christos Stathis
        background-color: yellow;
74 a57faaf0 Christos Stathis
}
75 a57faaf0 Christos Stathis
76 bbdd34ef Christos Stathis
a.info div {
77 bbdd34ef Christos Stathis
        display: none
78 a57faaf0 Christos Stathis
}
79 a57faaf0 Christos Stathis
80 bbdd34ef Christos Stathis
a.info:hover span {
81 bbdd34ef Christos Stathis
        cursor: pointer;
82 a57faaf0 Christos Stathis
}
83 a57faaf0 Christos Stathis
84 bbdd34ef Christos Stathis
/* The span will only display on :hover state. */
85 bbdd34ef Christos Stathis
a.info:hover div {
86 bbdd34ef Christos Stathis
        display: block;
87 bbdd34ef Christos Stathis
        position: absolute;
88 bbdd34ef Christos Stathis
        bottom: 2em;
89 bbdd34ef Christos Stathis
        right: 1em;
90 bbdd34ef Christos Stathis
        width: 10em;
91 bbdd34ef Christos Stathis
        border: 1px solid lightblue;
92 bbdd34ef Christos Stathis
        background-color: #D0E4F6;
93 bbdd34ef Christos Stathis
        color: black;
94 bbdd34ef Christos Stathis
        text-align: center
95 a57faaf0 Christos Stathis
}
96 a57faaf0 Christos Stathis
97 fd1da2eb Christos Stathis
.pithos-DialogBox .inner form {
98 fd1da2eb Christos Stathis
        margin: 0px;
99 f2f3b019 Christos Stathis
        clip: 
100 fd1da2eb Christos Stathis
}
101 fd1da2eb Christos Stathis
102 fd1da2eb Christos Stathis
.pithos-dialogbox .inner form input,
103 fd1da2eb Christos Stathis
.pithos-dialogbox .inner form textarea
104 fd1da2eb Christos Stathis
{
105 fd1da2eb Christos Stathis
    border: 1px solid #aaa;
106 fd1da2eb Christos Stathis
    padding:4px;
107 29c80d38 Christos Stathis
}
108 29c80d38 Christos Stathis
109 29c80d38 Christos Stathis
.pithos-DialogBox .button {
110 29c80d38 Christos Stathis
        background: none;
111 29c80d38 Christos Stathis
        background-color: #4085A5;
112 29c80d38 Christos Stathis
        color: white;
113 29c80d38 Christos Stathis
        padding: 5px 6px;
114 969a4d94 Christos Stathis
        white-space: nowrap;
115 29c80d38 Christos Stathis
}
116 29c80d38 Christos Stathis
117 29c80d38 Christos Stathis
.pithos-DialogBox .Caption {
118 29c80d38 Christos Stathis
        color: white;
119 29c80d38 Christos Stathis
        background-color: #4085a5;
120 fd1da2eb Christos Stathis
        padding: 20px;
121 29c80d38 Christos Stathis
        border-bottom: 1px solid white;
122 29c80d38 Christos Stathis
}
123 29c80d38 Christos Stathis
124 29c80d38 Christos Stathis
.pithos-DialogBox .close {
125 29c80d38 Christos Stathis
        background: url(images/close-popup.png) no-repeat;
126 29c80d38 Christos Stathis
        cursor: pointer;
127 29c80d38 Christos Stathis
        position: absolute;
128 29c80d38 Christos Stathis
        width: 13px;
129 29c80d38 Christos Stathis
        height: 13px;
130 fd1da2eb Christos Stathis
        top: 12px;
131 29c80d38 Christos Stathis
        right: 7px;
132 29c80d38 Christos Stathis
}
133 29c80d38 Christos Stathis
134 29c80d38 Christos Stathis
.pithos-DialogBox .dialogMiddleCenter {
135 29c80d38 Christos Stathis
        background: url(images/popup-bg.png) repeat-x;
136 29c80d38 Christos Stathis
        background-color: white;
137 29c80d38 Christos Stathis
        padding: 3px;
138 29c80d38 Christos Stathis
}
139 29c80d38 Christos Stathis
140 29c80d38 Christos Stathis
.pithos-DialogBox .dialogBottomCenter {
141 29c80d38 Christos Stathis
        border-bottom: 5px solid #4085A5;
142 a57faaf0 Christos Stathis
}
143 a57faaf0 Christos Stathis
144 4420a247 Christos Stathis
.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopLeft {
145 4420a247 Christos Stathis
  background-position: 0px -55px;
146 4420a247 Christos Stathis
}
147 4420a247 Christos Stathis
.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopRight {
148 4420a247 Christos Stathis
  background-position: -6px -55px;
149 4420a247 Christos Stathis
}
150 4420a247 Christos Stathis
.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopCenter {
151 4420a247 Christos Stathis
        background: #D0E4F6;
152 4420a247 Christos Stathis
}
153 4420a247 Christos Stathis
.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleLeft,
154 4420a247 Christos Stathis
.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleCenter,
155 4420a247 Christos Stathis
.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleRight {
156 4420a247 Christos Stathis
        background: #D0E4F6;
157 4420a247 Christos Stathis
        color:#d45500;
158 4420a247 Christos Stathis
}
159 4420a247 Christos Stathis
.pithos-TabPanelBottom {
160 4420a247 Christos Stathis
        border: none;
161 4420a247 Christos Stathis
}
162 4420a247 Christos Stathis
163 bbdd34ef Christos Stathis
table.pithos-permList {
164 bbdd34ef Christos Stathis
        border-spacing: 3px;
165 bbdd34ef Christos Stathis
        border-collapse: collapse;
166 bbdd34ef Christos Stathis
167 a57faaf0 Christos Stathis
}
168 a57faaf0 Christos Stathis
169 bbdd34ef Christos Stathis
table.pithos-permList td {
170 bbdd34ef Christos Stathis
        padding: 5px 5px 5px 5px;
171 bbdd34ef Christos Stathis
        font-size:80%;
172 a57faaf0 Christos Stathis
}
173 a57faaf0 Christos Stathis
174 bbdd34ef Christos Stathis
table.pithos-permList.props-labels {
175 bbdd34ef Christos Stathis
        font-weight: bold;
176 a57faaf0 Christos Stathis
}
177 a57faaf0 Christos Stathis
178 bbdd34ef Christos Stathis
.props-labels {
179 a57faaf0 Christos Stathis
        font-size: 80%;
180 a57faaf0 Christos Stathis
        font-weight: bold;
181 a57faaf0 Christos Stathis
}
182 a57faaf0 Christos Stathis
183 bbdd34ef Christos Stathis
.props-toplabels {
184 bbdd34ef Christos Stathis
        font-size: 80%;
185 a57faaf0 Christos Stathis
        font-weight: bold;
186 a57faaf0 Christos Stathis
        font-style: italic;
187 a57faaf0 Christos Stathis
}
188 a57faaf0 Christos Stathis
189 bbdd34ef Christos Stathis
.props-values {
190 a57faaf0 Christos Stathis
        font-size: 80%;
191 a57faaf0 Christos Stathis
}
192 a57faaf0 Christos Stathis
193 bbdd34ef Christos Stathis
.hidden-link {
194 bbdd34ef Christos Stathis
        text-decoration: none !important;
195 bbdd34ef Christos Stathis
        color: black !important;
196 a57faaf0 Christos Stathis
}
197 a57faaf0 Christos Stathis
198 bbdd34ef Christos Stathis
.hidden-link:visited {
199 bbdd34ef Christos Stathis
        text-decoration: none !important;
200 bbdd34ef Christos Stathis
        color: black !important;
201 a57faaf0 Christos Stathis
}
202 a57faaf0 Christos Stathis
203 bbdd34ef Christos Stathis
.pithos-topPanel {
204 bbdd34ef Christos Stathis
        background-color: #4085a5;
205 a7b6e464 Christos Stathis
        font-size: 75%;
206 a7b6e464 Christos Stathis
        height: 59px;
207 9578b580 Christos Stathis
        border-bottom: 1px solid white;
208 a57faaf0 Christos Stathis
}
209 a57faaf0 Christos Stathis
210 969a4d94 Christos Stathis
.gwt-MenuBar-vertical {
211 969a4d94 Christos Stathis
        background: #D0E3ED;
212 969a4d94 Christos Stathis
}
213 969a4d94 Christos Stathis
214 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupTopLeft {
215 969a4d94 Christos Stathis
        background: none;
216 969a4d94 Christos Stathis
        background-color: #D0E3ED;
217 969a4d94 Christos Stathis
}
218 969a4d94 Christos Stathis
219 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupTopCenter {
220 969a4d94 Christos Stathis
        background: none;
221 969a4d94 Christos Stathis
        background-color: #D0E3ED;
222 969a4d94 Christos Stathis
}
223 969a4d94 Christos Stathis
224 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupTopRight {
225 969a4d94 Christos Stathis
        background: none;
226 969a4d94 Christos Stathis
        background-color: #D0E3ED;
227 969a4d94 Christos Stathis
}
228 969a4d94 Christos Stathis
229 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupMiddleLeft {
230 969a4d94 Christos Stathis
        background: none;
231 969a4d94 Christos Stathis
        background-color: #D0E3ED;
232 969a4d94 Christos Stathis
}
233 969a4d94 Christos Stathis
234 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupMiddleRight {
235 969a4d94 Christos Stathis
        background: none;
236 969a4d94 Christos Stathis
        background-color: #D0E3ED;
237 969a4d94 Christos Stathis
}
238 969a4d94 Christos Stathis
239 969a4d94 Christos Stathis
.gwt-popuppanel {
240 969a4d94 Christos Stathis
    border: 3px solid #D0E3ED;
241 969a4d94 Christos Stathis
    padding: 3px;
242 969a4d94 Christos Stathis
    background: #D0E3ED;
243 969a4d94 Christos Stathis
    border-image: initial;
244 969a4d94 Christos Stathis
}
245 969a4d94 Christos Stathis
246 969a4d94 Christos Stathis
.gwt-MenuBar .gwt-MenuItem {
247 969a4d94 Christos Stathis
        border-bottom: 1px solid #EFEFEF;
248 969a4d94 Christos Stathis
}
249 969a4d94 Christos Stathis
250 969a4d94 Christos Stathis
.gwt-MenuBar .gwt-MenuItem-selected {
251 969a4d94 Christos Stathis
        background-color: #E1EFF6;
252 969a4d94 Christos Stathis
}
253 969a4d94 Christos Stathis
254 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupBottomLeft {
255 969a4d94 Christos Stathis
        background: none;
256 969a4d94 Christos Stathis
        background-color: #D0E3ED;
257 969a4d94 Christos Stathis
}
258 969a4d94 Christos Stathis
259 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupBottomCenter {
260 969a4d94 Christos Stathis
        background: none;
261 969a4d94 Christos Stathis
        background-color: #D0E3ED;
262 969a4d94 Christos Stathis
}
263 969a4d94 Christos Stathis
264 969a4d94 Christos Stathis
.gwt-MenuBarPopup .menuPopupBottomRight {
265 969a4d94 Christos Stathis
        background: none;
266 969a4d94 Christos Stathis
        background-color: #D0E3ED;
267 a57faaf0 Christos Stathis
}
268 a57faaf0 Christos Stathis
269 bbdd34ef Christos Stathis
.pithos-sessionExpired {
270 bbdd34ef Christos Stathis
        width: 24em;
271 bbdd34ef Christos Stathis
        /* Restore the padding we remove when overriding the gwt-DialogBox style */
272 bbdd34ef Christos Stathis
        padding: 3px;
273 bbdd34ef Christos Stathis
}
274 bbdd34ef Christos Stathis
275 bbdd34ef Christos Stathis
.pithos-statusbar {
276 bbdd34ef Christos Stathis
        background-color: #4085a5;
277 bbdd34ef Christos Stathis
        border: none;
278 bbdd34ef Christos Stathis
        font-size: 90%;
279 bbdd34ef Christos Stathis
        vertical-align: middle;
280 bbdd34ef Christos Stathis
        font-weight: normal;
281 a7b6e464 Christos Stathis
        height:119px;
282 9578b580 Christos Stathis
        color: white;
283 bbdd34ef Christos Stathis
}
284 bbdd34ef Christos Stathis
285 d7be6c23 Christos Stathis
.pithos-FileListContainer {
286 d7be6c23 Christos Stathis
    padding-left: 10px;
287 d7be6c23 Christos Stathis
}
288 d7be6c23 Christos Stathis
289 bbdd34ef Christos Stathis
.pithos-List {
290 bbdd34ef Christos Stathis
        cursor: default;
291 bbdd34ef Christos Stathis
        border-collapse: collapse;
292 bbdd34ef Christos Stathis
        /* prevents selecting text in table with shift and ctrl*/
293 bbdd34ef Christos Stathis
        -moz-user-select: none;
294 a57faaf0 Christos Stathis
}
295 a57faaf0 Christos Stathis
296 a878ded5 Christos Stathis
.pithos-errorMessage {
297 a57faaf0 Christos Stathis
        font-size: 90%;
298 140f0f6d Christos Stathis
        background-color: #880000;
299 140f0f6d Christos Stathis
        color: #fff;
300 a57faaf0 Christos Stathis
        cursor: pointer;
301 a57faaf0 Christos Stathis
}
302 a57faaf0 Christos Stathis
303 e9bd1dc0 Christos Stathis
.pithos-errorMessage td {
304 e9bd1dc0 Christos Stathis
        font-size: 90%;
305 e9bd1dc0 Christos Stathis
}
306 e9bd1dc0 Christos Stathis
307 a878ded5 Christos Stathis
.pithos-warnMessage {
308 a57faaf0 Christos Stathis
        font-size: 90%;
309 a57faaf0 Christos Stathis
        background-color: #eeee99;
310 a57faaf0 Christos Stathis
        cursor: pointer;
311 a57faaf0 Christos Stathis
}
312 a57faaf0 Christos Stathis
313 a878ded5 Christos Stathis
.pithos-infoMessage {
314 a57faaf0 Christos Stathis
        font-size: 90%;
315 a57faaf0 Christos Stathis
        background-color: #ccffcc;
316 a57faaf0 Christos Stathis
        cursor: pointer;
317 a57faaf0 Christos Stathis
}
318 a57faaf0 Christos Stathis
319 a878ded5 Christos Stathis
.pithos-clearMessage {
320 a57faaf0 Christos Stathis
        font-size: 90%;
321 a57faaf0 Christos Stathis
        font-weight: bold;
322 a57faaf0 Christos Stathis
        text-decoration: none;
323 a57faaf0 Christos Stathis
        color: black;
324 3f8622d4 Christos Stathis
        padding-left: 5px;
325 a57faaf0 Christos Stathis
}
326 a57faaf0 Christos Stathis
327 a878ded5 Christos Stathis
.pithos-clearMessage:visited {
328 a57faaf0 Christos Stathis
        font-size: 90%;
329 a57faaf0 Christos Stathis
        font-weight: bold;
330 a57faaf0 Christos Stathis
        text-decoration: none;
331 a57faaf0 Christos Stathis
        color: black;
332 a57faaf0 Christos Stathis
}
333 a57faaf0 Christos Stathis
334 a878ded5 Christos Stathis
.pithos-readForAllNote {
335 a57faaf0 Christos Stathis
        width: 240px;
336 a57faaf0 Christos Stathis
        text-align: justify;
337 a57faaf0 Christos Stathis
        font-style: italic;
338 a57faaf0 Christos Stathis
        font-size: 12px;
339 a57faaf0 Christos Stathis
        padding-left: 4;
340 a57faaf0 Christos Stathis
}
341 a57faaf0 Christos Stathis
342 a76065b6 Christos Stathis
.pithos-treeHeader {
343 a76065b6 Christos Stathis
        background-color: #74aec9;
344 a7b6e464 Christos Stathis
        height: 25px;
345 d7be6c23 Christos Stathis
    width: 100%;
346 a7b6e464 Christos Stathis
}
347 a7b6e464 Christos Stathis
348 a7b6e464 Christos Stathis
.pithos-statistics {
349 a7b6e464 Christos Stathis
        color: white;
350 2d91458a Christos Stathis
        padding: 5px;
351 a76065b6 Christos Stathis
}
352 a76065b6 Christos Stathis
353 a878ded5 Christos Stathis
.pithos-splitPanel {
354 140f0f6d Christos Stathis
        background: url(images/white50.png) transparent;
355 a7b6e464 Christos Stathis
        margin-bottom: 34px;
356 a57faaf0 Christos Stathis
}
357 a57faaf0 Christos Stathis
358 0549e173 Christos Stathis
.pithos-splitPanel-noframe {
359 0549e173 Christos Stathis
        margin-bottom: 0;
360 0549e173 Christos Stathis
}
361 0549e173 Christos Stathis
362 a57faaf0 Christos Stathis
/* Use the background color for the splitter. */
363 a57faaf0 Christos Stathis
.gwt-HorizontalSplitPanel .hsplitter {
364 a57faaf0 Christos Stathis
        cursor: move;
365 bbdd34ef Christos Stathis
        border: 0px;
366 a76065b6 Christos Stathis
        background: url(images/background.png) repeat-x;
367 a57faaf0 Christos Stathis
}
368 a57faaf0 Christos Stathis
369 bbdd34ef Christos Stathis
.pithos-tag {
370 bbdd34ef Christos Stathis
        display:inline;
371 a57faaf0 Christos Stathis
}
372 a57faaf0 Christos Stathis
373 bbdd34ef Christos Stathis
.pithos-uploadButton {
374 bbdd34ef Christos Stathis
    background: none;
375 a7b6e464 Christos Stathis
    background-color: #ff7f2a;
376 d7be6c23 Christos Stathis
    font-size: 120%;
377 bbdd34ef Christos Stathis
    text-align: center;
378 140f0f6d Christos Stathis
    height: auto;
379 140f0f6d Christos Stathis
    padding: 8px;
380 a7b6e464 Christos Stathis
    width: 146px;
381 a7b6e464 Christos Stathis
    border: none;
382 a7b6e464 Christos Stathis
}
383 a7b6e464 Christos Stathis
384 a7b6e464 Christos Stathis
.pithos-uploadButton:HOVER {
385 a7b6e464 Christos Stathis
    background-color: #f95;
386 bbdd34ef Christos Stathis
}
387 bbdd34ef Christos Stathis
388 bbdd34ef Christos Stathis
.pithos-rightSide {
389 bbdd34ef Christos Stathis
    vertical-align: middle;
390 a9e497d4 Christos Stathis
    width: 100%;
391 a7b6e464 Christos Stathis
    padding-left: 7px;
392 bbdd34ef Christos Stathis
}
393 bbdd34ef Christos Stathis
.pithos-parentButton {
394 bbdd34ef Christos Stathis
    background: none;
395 bbdd34ef Christos Stathis
    background-color: #a1c8da;
396 a57faaf0 Christos Stathis
}
397 a57faaf0 Christos Stathis
398 bbdd34ef Christos Stathis
.pithos-folderStatistics {
399 bbdd34ef Christos Stathis
    background-color: #a1c8da;
400 bbdd34ef Christos Stathis
    text-align: center;
401 bbdd34ef Christos Stathis
    color: white;
402 a7b6e464 Christos Stathis
    height: 32px;
403 fd1da2eb Christos Stathis
        padding: 5px 15px;
404 fd1da2eb Christos Stathis
        margin-right: 10px;
405 bd187dfb Christos Stathis
        margin-left: 10px;
406 a57faaf0 Christos Stathis
}
407 1201686b Christos Stathis
408 9578b580 Christos Stathis
.grnet-sign {
409 9578b580 Christos Stathis
        color: #72ADC8;
410 969a4d94 Christos Stathis
}
411 a7b6e464 Christos Stathis
412 a7b6e464 Christos Stathis
.pithos-logo {
413 a7b6e464 Christos Stathis
        position: absolute;
414 73a93609 Christos Stathis
        top: 65px;
415 a7b6e464 Christos Stathis
}
416 a7b6e464 Christos Stathis
417 a7b6e464 Christos Stathis
.pithos-header {
418 a7b6e464 Christos Stathis
        background: url(images/white50.png);
419 a7b6e464 Christos Stathis
        margin-top: 34;
420 140f0f6d Christos Stathis
        height: 60px;
421 2d91458a Christos Stathis
}
422 2d91458a Christos Stathis
423 0549e173 Christos Stathis
.pithos-header-noframe {
424 0549e173 Christos Stathis
        margin-top: 0;
425 0549e173 Christos Stathis
}
426 0549e173 Christos Stathis
427 140f0f6d Christos Stathis
/*.cellTreeWidget-selectedTree {
428 140f0f6d Christos Stathis
    background-color: #BCD7E3;
429 140f0f6d Christos Stathis
}*/
430 140f0f6d Christos Stathis
431 140f0f6d Christos Stathis
.pithos-list thead th img {
432 ee71b9bc Christos Stathis
    top: 5px !important;
433 2d91458a Christos Stathis
}
434 140f0f6d Christos Stathis
435 140f0f6d Christos Stathis
.effectPanel-inner {
436 140f0f6d Christos Stathis
        background-color: #4085A5;
437 e9bd1dc0 Christos Stathis
        margin: 10px;
438 9fbf5596 Christos Stathis
}
439 9fbf5596 Christos Stathis
440 bd187dfb Christos Stathis
.clearfix {
441 bd187dfb Christos Stathis
        display: block;
442 bd187dfb Christos Stathis
        width: auto;
443 bd187dfb Christos Stathis
        zoom: 1;
444 bd187dfb Christos Stathis
}
445 bd187dfb Christos Stathis
446 bd187dfb Christos Stathis
div#toolbar {
447 bd187dfb Christos Stathis
        clear: both;
448 bd187dfb Christos Stathis
        color: white;
449 bd187dfb Christos Stathis
        float: right;
450 bd187dfb Christos Stathis
/*        position: absolute;
451 bd187dfb Christos Stathis
        right: 15px;
452 bd187dfb Christos Stathis
        top: 15px;*/
453 bd187dfb Christos Stathis
}
454 bd187dfb Christos Stathis
455 bd187dfb Christos Stathis
div#toolbar a {
456 bd187dfb Christos Stathis
        display: block;
457 bd187dfb Christos Stathis
        float: left;
458 bd187dfb Christos Stathis
}
459 bd187dfb Christos Stathis
460 bd187dfb Christos Stathis
.pithos-toolbarItem {
461 bd187dfb Christos Stathis
        text-decoration: none;
462 bd187dfb Christos Stathis
        font-size: 0.8em;
463 bd187dfb Christos Stathis
        padding: 4px;
464 bd187dfb Christos Stathis
        padding-right: 8px;
465 bd187dfb Christos Stathis
        color: white;
466 bd187dfb Christos Stathis
        margin-left: 5px;
467 bd187dfb Christos Stathis
        background-repeat: no-repeat;
468 bd187dfb Christos Stathis
        background-color: #A1C8DB;
469 bd187dfb Christos Stathis
}
470 bd187dfb Christos Stathis
471 bd187dfb Christos Stathis
.pithos-toolbarItem:HOVER {
472 bd187dfb Christos Stathis
        background-color: #74aec9;
473 bd187dfb Christos Stathis
}
474 bd187dfb Christos Stathis
475 bd187dfb Christos Stathis
476 bd187dfb Christos Stathis
.pithos-toolbarItem span {
477 bd187dfb Christos Stathis
        float: left;
478 46bd5b8e Christos Stathis
        padding-top: 2px;
479 bd187dfb Christos Stathis
}
480 46bd5b8e Christos Stathis
481 bd187dfb Christos Stathis
.pithos-toolbarItem span.ico {
482 bd187dfb Christos Stathis
        width: 16px;
483 bd187dfb Christos Stathis
        height: 16px;
484 bd187dfb Christos Stathis
        margin-right: 5px;
485 bd187dfb Christos Stathis
        background-repeat: no-repeat;
486 bd187dfb Christos Stathis
/*        background-position: -36px 0;*/
487 bd187dfb Christos Stathis
}
488 bd187dfb Christos Stathis
489 bd187dfb Christos Stathis
#tools-button span.ico {
490 bd187dfb Christos Stathis
        background-image: url(images/advancedsettings.png);
491 bd187dfb Christos Stathis
}
492 bd187dfb Christos Stathis
493 bd187dfb Christos Stathis
#refresh-button span.ico {
494 bd187dfb Christos Stathis
        background-image: url(images/refresh.png);
495 c5afad80 Christos Stathis
}
496 c5afad80 Christos Stathis
497 bd187dfb Christos Stathis
#newFolder-button span.ico {
498 bd187dfb Christos Stathis
        background-image: url(images/folder_new.png);
499 1821730b Christos Stathis
}
500 1821730b Christos Stathis
501 7260b946 Christos Stathis
#shareFolder-button span.ico {
502 7260b946 Christos Stathis
        background-image: url(images/myshared22.png);
503 7260b946 Christos Stathis
}
504 7260b946 Christos Stathis
505 1821730b Christos Stathis
/*move background from inner to centerinner to wrap action buttons too*/
506 1821730b Christos Stathis
.dialogMiddleCenterInner.dialogContent  {
507 bd187dfb Christos Stathis
    background: url(images/white50.png); 
508 1821730b Christos Stathis
    margin: 7px;
509 1821730b Christos Stathis
    padding: 15px;
510 1821730b Christos Stathis
    /*border: 1px solid #aaa;*/
511 1821730b Christos Stathis
    -moz-box-shadow: 0 0 1px 1px #888;
512 1821730b Christos Stathis
    -webkit-box-shadow: 0 0 1px 1px #888;
513 1821730b Christos Stathis
    box-shadow: 0 0 1px 1px #888;
514 1821730b Christos Stathis
}
515 1821730b Christos Stathis
516 32f17ab7 Christos Stathis
.pithos-dialogbox .outer {
517 32f17ab7 Christos Stathis
    width: 600px;
518 32f17ab7 Christos Stathis
}
519 32f17ab7 Christos Stathis
520 1821730b Christos Stathis
/*remove background/padding from .inner*/
521 1821730b Christos Stathis
.pithos-dialogbox .inner {
522 1821730b Christos Stathis
    background: none;
523 1821730b Christos Stathis
    padding:0;
524 32f17ab7 Christos Stathis
    width: 100%;
525 1821730b Christos Stathis
}
526 1821730b Christos Stathis
527 1821730b Christos Stathis
/*button position within the overlay content*/
528 1821730b Christos Stathis
.dialogMiddleCenterInner .button {
529 1821730b Christos Stathis
    margin-left: 2px;
530 1821730b Christos Stathis
    border: none;
531 1821730b Christos Stathis
    padding: 7px 20px;
532 1821730b Christos Stathis
    margin-top: 10px;
533 1821730b Christos Stathis
    float: right;
534 1821730b Christos Stathis
    margin-right: 4px;
535 1821730b Christos Stathis
}
536 1821730b Christos Stathis
537 1821730b Christos Stathis
/* fix placement of overlay paragraphs */
538 1821730b Christos Stathis
.pithos-credentialstext {
539 1821730b Christos Stathis
    padding: 0 0 10px 0;
540 1821730b Christos Stathis
}
541 1821730b Christos Stathis
542 1821730b Christos Stathis
/* overlay styles */
543 1821730b Christos Stathis
.pithos-dialogbox {
544 1821730b Christos Stathis
    background-color: white;
545 1821730b Christos Stathis
    border: 2px solid #444;
546 1821730b Christos Stathis
    text-align: left;
547 1821730b Christos Stathis
    -moz-box-shadow: 0 0 90px 5px #000;
548 1821730b Christos Stathis
    -webkit-box-shadow: 0 0 90px 5px #000;
549 1821730b Christos Stathis
    box-shadow: 0 0 90px 5px #000;
550 f2f3b019 Christos Stathis
        clip: inherit !important;
551 1821730b Christos Stathis
}
552 1821730b Christos Stathis
553 1821730b Christos Stathis
/* hide overlay dialogue unneeded side elements */
554 1821730b Christos Stathis
.dialogMiddleRight, .dialogBottomRight, .dialogTopRight,
555 1821730b Christos Stathis
.dialogMiddleLeft, .dialogBottomLeft, .dialogTopLeft,
556 1821730b Christos Stathis
.dialogBottomCenter {
557 1821730b Christos Stathis
    display: none;
558 1821730b Christos Stathis
}
559 1821730b Christos Stathis
560 1821730b Christos Stathis
/* fix dialogbox caption padding and font-size */
561 1821730b Christos Stathis
.pithos-dialogbox .caption {
562 1821730b Christos Stathis
    padding: 10px !important;
563 1821730b Christos Stathis
    font-size: 1.1em;
564 1821730b Christos Stathis
}
565 1821730b Christos Stathis
566 1821730b Christos Stathis
567 1821730b Christos Stathis
/* form input styling */
568 1821730b Christos Stathis
.dialogMiddleCenterInner input {
569 1821730b Christos Stathis
    border: 1px solid #aaa;
570 1821730b Christos Stathis
    padding: 4px;
571 1821730b Christos Stathis
}
572 1821730b Christos Stathis
573 1821730b Christos Stathis
/* fix tag color */
574 1821730b Christos Stathis
a.pithos-tag {
575 1821730b Christos Stathis
    color: #4085a5;
576 6b48912a Christos Stathis
}
577 6b48912a Christos Stathis
578 11c9e6f5 Christos Stathis
.pithos-invitationsLeft {
579 11c9e6f5 Christos Stathis
    padding: 0 0 10px 0;
580 11c9e6f5 Christos Stathis
        border-bottom: 1px solid #4085A5;
581 11c9e6f5 Christos Stathis
}
582 11c9e6f5 Christos Stathis
583 11c9e6f5 Christos Stathis
.pithos-leftInvitationsNumber {
584 11c9e6f5 Christos Stathis
        background-color: #4085A5;
585 11c9e6f5 Christos Stathis
        padding: 3px;
586 11c9e6f5 Christos Stathis
        color: white;
587 11c9e6f5 Christos Stathis
        font-weight: bold;
588 11c9e6f5 Christos Stathis
}
589 11c9e6f5 Christos Stathis
590 11c9e6f5 Christos Stathis
.pithos-sendInvitationsPanel {
591 11c9e6f5 Christos Stathis
        margin-top: 10px;
592 11c9e6f5 Christos Stathis
        border-right: 1px solid #4085A5;
593 32f17ab7 Christos Stathis
        padding-right: 5px;
594 11c9e6f5 Christos Stathis
}
595 11c9e6f5 Christos Stathis
596 11c9e6f5 Christos Stathis
.pithos-sendInvitationsTitle {
597 11c9e6f5 Christos Stathis
        font-weight: bold;
598 11c9e6f5 Christos Stathis
        color: #4085A5;
599 11c9e6f5 Christos Stathis
        margin-right: 10px;
600 11c9e6f5 Christos Stathis
}
601 11c9e6f5 Christos Stathis
602 11c9e6f5 Christos Stathis
.pithos-addInvitationImg {
603 11c9e6f5 Christos Stathis
        background-color: #4085A5;
604 11c9e6f5 Christos Stathis
        padding: 5px;
605 11c9e6f5 Christos Stathis
        cursor: pointer;
606 11c9e6f5 Christos Stathis
}
607 11c9e6f5 Christos Stathis
608 11c9e6f5 Christos Stathis
.pithos-invitationResponse {
609 11c9e6f5 Christos Stathis
        background-color: green;
610 11c9e6f5 Christos Stathis
        color: white;
611 11c9e6f5 Christos Stathis
        padding: 5px;
612 11c9e6f5 Christos Stathis
}
613 11c9e6f5 Christos Stathis
614 6abe26f2 Christos Stathis
.pithos-invitationResponseError {
615 6abe26f2 Christos Stathis
        background-color: #880000;
616 6abe26f2 Christos Stathis
        color: #fff;
617 6abe26f2 Christos Stathis
        padding: 5px;
618 6abe26f2 Christos Stathis
}
619 6abe26f2 Christos Stathis
620 11c9e6f5 Christos Stathis
.pithos-invitationResponse .user {
621 11c9e6f5 Christos Stathis
        font-weight: bold;
622 11c9e6f5 Christos Stathis
}
623 11c9e6f5 Christos Stathis
624 11c9e6f5 Christos Stathis
.props-labels .eg {
625 6b48912a Christos Stathis
        font-weight: normal;
626 11c9e6f5 Christos Stathis
        color: gray;
627 11c9e6f5 Christos Stathis
}
628 11c9e6f5 Christos Stathis
629 32f17ab7 Christos Stathis
.pithos-invitationsSplitPanel {
630 32f17ab7 Christos Stathis
        width:100%;
631 32f17ab7 Christos Stathis
}
632 32f17ab7 Christos Stathis
633 11c9e6f5 Christos Stathis
.pithos-invitationDeleteImg {
634 11c9e6f5 Christos Stathis
        cursor: pointer;
635 11c9e6f5 Christos Stathis
}
636 11c9e6f5 Christos Stathis
637 11c9e6f5 Christos Stathis
.pithos-invitationFormRow {
638 11c9e6f5 Christos Stathis
        border-top: 1px solid gray;
639 11c9e6f5 Christos Stathis
}
640 11c9e6f5 Christos Stathis
641 11c9e6f5 Christos Stathis
.pithos-sendInvitationButton {
642 11c9e6f5 Christos Stathis
    background: none;
643 11c9e6f5 Christos Stathis
    background-color: #ff7f2a;
644 11c9e6f5 Christos Stathis
    text-align: center;
645 11c9e6f5 Christos Stathis
    height: auto;
646 11c9e6f5 Christos Stathis
    padding: 8px;
647 11c9e6f5 Christos Stathis
    border: none;
648 11c9e6f5 Christos Stathis
    color: white;
649 11c9e6f5 Christos Stathis
}
650 11c9e6f5 Christos Stathis
651 11c9e6f5 Christos Stathis
.pithos-sentInvitationsPanel {
652 11c9e6f5 Christos Stathis
        margin-top: 10px;
653 32f17ab7 Christos Stathis
        padding-left: 5px;
654 32f17ab7 Christos Stathis
        width: 100%;
655 11c9e6f5 Christos Stathis
}
656 11c9e6f5 Christos Stathis
657 11c9e6f5 Christos Stathis
.pithos-sentInvitationsTitle {
658 11c9e6f5 Christos Stathis
        font-weight: bold;
659 6b48912a Christos Stathis
        color: #4085A5;
660 6b48912a Christos Stathis
}
661 6b48912a Christos Stathis
662 32f17ab7 Christos Stathis
.pithos-sentInvitationsTable {
663 32f17ab7 Christos Stathis
        width: 100%;
664 32f17ab7 Christos Stathis
}
665 32f17ab7 Christos Stathis
666 c3b66734 Christos Stathis
.pithos-invitedEmail {
667 c3b66734 Christos Stathis
        color: #ff7f2a;
668 c3b66734 Christos Stathis
        font-weight: bold;
669 32f17ab7 Christos Stathis
}
670 32f17ab7 Christos Stathis
671 32f17ab7 Christos Stathis
.pithos-invitedEmailBorder {
672 c3b66734 Christos Stathis
        border-bottom: 1px solid #4085A5;
673 c3b66734 Christos Stathis
}
674 c3b66734 Christos Stathis
675 6b48912a Christos Stathis
.pithos-resendInvitation {
676 6b48912a Christos Stathis
        cursor: pointer;
677 c3b66734 Christos Stathis
}
678 c3b66734 Christos Stathis
679 c3b66734 Christos Stathis
.pithos-pagerButton {
680 c3b66734 Christos Stathis
        background: none;
681 c3b66734 Christos Stathis
        background-color: transparent;
682 c3b66734 Christos Stathis
        border: 1px solid gray;
683 c3b66734 Christos Stathis
        color: gray;
684 2ba08401 Christos Stathis
        padding: 0px 2px 0px 2px;
685 2ba08401 Christos Stathis
        font-size: 80%;
686 c3b66734 Christos Stathis
}
687 c3b66734 Christos Stathis
688 c3b66734 Christos Stathis
.pithos-pagerButton:HOVER {
689 c3b66734 Christos Stathis
        background-color: #4085A5;
690 2ba08401 Christos Stathis
        color: white;
691 c3b66734 Christos Stathis
}
692 c3b66734 Christos Stathis
693 c3b66734 Christos Stathis
.pithos-pagerButtonCurrent {
694 c3b66734 Christos Stathis
        background-color: #4085A5;
695 2ba08401 Christos Stathis
        color: white;
696 904447e4 Christos Stathis
}
697 904447e4 Christos Stathis
698 904447e4 Christos Stathis
.pithos-metaTitle {
699 904447e4 Christos Stathis
        font-weight: bold;
700 904447e4 Christos Stathis
}
701 904447e4 Christos Stathis
702 904447e4 Christos Stathis
.pithos-addMetaImg {
703 904447e4 Christos Stathis
        background-color: #4085A5;
704 904447e4 Christos Stathis
        padding: 5px;
705 904447e4 Christos Stathis
        cursor: pointer;
706 904447e4 Christos Stathis
}
707 904447e4 Christos Stathis
708 904447e4 Christos Stathis
.pithos-metaDeleteImg {
709 904447e4 Christos Stathis
        cursor: pointer;
710 904447e4 Christos Stathis
}
711 904447e4 Christos Stathis
712 904447e4 Christos Stathis
.pithos-metaName {
713 904447e4 Christos Stathis
        width: 7em;
714 904447e4 Christos Stathis
}
715 904447e4 Christos Stathis
716 904447e4 Christos Stathis
.pithos-metaValue {
717 904447e4 Christos Stathis
        width: 7em;
718 904447e4 Christos Stathis
}