Implemented tools menu for folders and files
[pithos] / web_client / src / gr / grnet / pithos / web / public / gss.css
1 body {
2         color: black;
3         font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
4         margin: 8px;
5         margin-top: 3px;
6 }
7
8 a {
9         color: darkblue;
10 }
11
12 a:visited {
13         color: darkblue;
14 }
15
16 a.info {
17         position: relative; /*this is the key*/
18         z-index: 24;
19         color: black;
20         text-decoration: none
21 }
22
23 a.info:hover {
24         z-index: 25;
25         background-color: yellow;
26 }
27
28 a.info div {
29         display: none
30 }
31
32 a.info:hover span {
33         cursor: pointer;
34 }
35
36 /* The span will only display on :hover state. */
37 a.info:hover div {
38         display: block;
39         position: absolute;
40         bottom: 2em;
41         right: 1em;
42         width: 10em;
43         border: 1px solid lightblue;
44         background-color: #D0E4F6;
45         color: black;
46         text-align: center
47 }
48
49 /*
50  * Remove the padding inside the dialog boxes so that our background color
51  * appears uniform in warnings and errors.
52  */
53 .gwt-DialogBox .dialogMiddleCenter {
54         background:none repeat scroll 0 0 white;
55         padding: 0;
56 }
57
58 table.pithos-permList {
59         border-spacing: 3px;
60         border-collapse: collapse;
61
62 }
63
64 table.pithos-permList td {
65         padding: 5px 5px 5px 5px;
66         font-size:80%;
67 }
68
69 table.pithos-permList.props-labels {
70         font-weight: bold;
71 }
72
73 .props-labels {
74         font-size: 80%;
75         font-weight: bold;
76 }
77
78 .props-toplabels {
79         font-size: 80%;
80         font-weight: bold;
81         font-style: italic;
82 }
83
84 .props-values {
85         font-size: 80%;
86 }
87
88 .hidden-link {
89         text-decoration: none !important;
90         color: black !important;
91 }
92
93 .hidden-link:visited {
94         text-decoration: none !important;
95         color: black !important;
96 }
97
98 .pithos-topPanel {
99         background-color: #4085a5;
100         font-size: 80%;
101 }
102
103 .pithos-usernameMenu {
104     cursor: pointer;
105     color: white;
106 }
107
108 .pithos-usernameMenuItem {
109     cursor: pointer;
110 }
111
112 .pithos-sessionExpired {
113         width: 24em;
114         /* Restore the padding we remove when overriding the gwt-DialogBox style */
115         padding: 3px;
116 }
117
118 .pithos-statusbar {
119         background-color: #4085a5;
120         border: none;
121         font-size: 90%;
122         vertical-align: middle;
123         font-weight: normal;
124 }
125
126 .pithos-List {
127         cursor: default;
128         border-collapse: collapse;
129         /* prevents selecting text in table with shift and ctrl*/
130         -moz-user-select: none;
131 }
132
133 .pithos-errorMessage {
134         font-size: 90%;
135         background-color: #ff9999;
136         cursor: pointer;
137 }
138
139 .pithos-warnMessage {
140         font-size: 90%;
141         background-color: #eeee99;
142         cursor: pointer;
143 }
144
145 .pithos-infoMessage {
146         font-size: 90%;
147         background-color: #ccffcc;
148         cursor: pointer;
149 }
150
151 .pithos-clearMessage {
152         font-size: 90%;
153         font-weight: bold;
154         text-decoration: none;
155         color: black;
156 }
157
158 .pithos-clearMessage:visited {
159         font-size: 90%;
160         font-weight: bold;
161         text-decoration: none;
162         color: black;
163 }
164
165 .pithos-readForAllNote {
166         width: 240px;
167         text-align: justify;
168         font-style: italic;
169         font-size: 12px;
170         padding-left: 4;
171 }
172
173 .pithos-TabPanelBottom {
174         border-color: darkgrey;
175         border-width: 1px 1px 1px;
176         overflow: hidden;
177         padding: 6px;
178 }
179
180 .pithos-splitPanel {
181         border: 1px solid white;
182         background: url(images/background.png) repeat-x;
183 }
184
185 /* Use the background color for the splitter. */
186 .gwt-HorizontalSplitPanel .hsplitter {
187         cursor: move;
188         border: 0px;
189         background: #bec8e6;
190 }
191
192 .pithos-tag {
193         display:inline;
194 }
195
196 .pithos-uploadButton {
197     background: none;
198     background-color: #ff6600;
199     font-size: 120%;
200     text-align: center;
201     height: 40px;
202     width: 100%;
203 }
204
205 .pithos-rightSide {
206     vertical-align: middle;
207     width: 100%;
208 }
209 .pithos-parentButton {
210     background: none;
211     background-color: #a1c8da;
212 }
213
214 .pithos-folderStatistics {
215     background-color: #a1c8da;
216     text-align: center;
217     color: white;
218 }