Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / public / pithos.css @ 499bb620

History | View | Annotate | Download (12.7 kB)

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