Blame view

sources/apps/documents/css/style.css 5.97 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
  /* IE 8 fixes */
  .ie8 .document label {
  	background-color: #fff;
  }
  .ie8 .add-document .upload {
  	margin-top: 5px;
  }
  /* end IE 8 fixes */
  
  #editor {
  	box-shadow: none !important;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
13
14
15
16
17
18
19
20
21
22
23
24
25
  #editor ::-webkit-scrollbar-thumb {
  	background-color: #fff;
  }
  
  .documentslist { padding:5px; }
  
  .documentslist .document, 
  .documentslist .progress,
  .documentslist .add-document{
  	display: inline-block;
  	height: 200px;
  	width: 200px;
  	float: left;
d1bafeea1   Kload   [fix] Upgrade to ...
26
27
  	margin: 14px;
  	vertical-align: top;
d1bafeea1   Kload   [fix] Upgrade to ...
28
29
30
  }
  
  .add-document a {
6d9380f96   Cédric Dupont   Update sources OC...
31
32
33
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
d1bafeea1   Kload   [fix] Upgrade to ...
34
35
36
37
38
39
40
41
  	display: inline-block;
  	position: relative;
  	height: 100px;
  	width: 200px;
  	background-repeat: no-repeat;
  	background-size: 32px;
  	background-position: 50%;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
42
43
44
45
46
47
  .add-document a.add {
  	border-bottom: 1px solid #fff;
  }
  .add-document .add,
  .add-document .upload {
  	opacity: .7;
6d9380f96   Cédric Dupont   Update sources OC...
48
49
50
51
  	border: 1px solid #e8e8e8;
  }
  .add-document .upload {
  	margin-top: 4px;
d1bafeea1   Kload   [fix] Upgrade to ...
52
53
54
55
56
57
  }
  .add-document .add:hover,
  .add-document .add:focus,
  .add-document #upload:hover .upload,
  .add-document .upload:focus {
  	opacity: 1;
6d9380f96   Cédric Dupont   Update sources OC...
58
  	border: 1px solid #818181;
d1bafeea1   Kload   [fix] Upgrade to ...
59
60
61
62
63
64
65
66
67
68
69
  }
  
  .add-document label {
  	position: absolute;
  	bottom: 10px;
  	width: 100%;
  	font-weight: normal;
  	text-align: center;
  }
  
  .documentslist .progress{
6d9380f96   Cédric Dupont   Update sources OC...
70
  	border: 1px solid #e8e8e8;
d1bafeea1   Kload   [fix] Upgrade to ...
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  }
  
  .documentslist .progress div{
  	margin-top: 144px;
  	text-align: center;
  }
  
  .documentslist .document:hover,
  .documentslist .document a:focus {
  	background-color: #ddd;
  }
  
  .documentslist .session-active {
  	position: relative;
  	margin-left: 128px;
  	margin-top: 128px;
  	width: 32px;
  }
  .document a {
  	display: block;
  	position: relative;
  	height: 200px;
  	width: 200px;
  	background-repeat: no-repeat;
6d9380f96   Cédric Dupont   Update sources OC...
95
96
97
98
99
  	background-size: 200px;
  	border: 1px solid #e8e8e8;
  }
  .document a:hover {
  	border: 1px solid #818181;
d1bafeea1   Kload   [fix] Upgrade to ...
100
101
  }
  .document label {
6d9380f96   Cédric Dupont   Update sources OC...
102
  	background: rgba(255, 255, 255, 0.7);
d1bafeea1   Kload   [fix] Upgrade to ...
103
  	position: absolute;
6d9380f96   Cédric Dupont   Update sources OC...
104
  	bottom: 0px;
d1bafeea1   Kload   [fix] Upgrade to ...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  	width: 100%;
  	font-weight: normal;
  	text-overflow: ellipsis;
  	overflow: hidden;
  	text-align: center;
  	padding: 0 8px;
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  	white-space: nowrap;
  }
  
  #odf-toolbar{
  	text-align: left;
  	position: absolute;
  	width: 100%;
  	padding:0;
  	z-index: 500;
  }
  
  #odf-toolbar #dropdown{
6d9380f96   Cédric Dupont   Update sources OC...
126
127
128
129
130
131
  	right: auto;
  	top: 83px;
  }
  
  #body-user #document-title #header{
  	height: 45px;
d1bafeea1   Kload   [fix] Upgrade to ...
132
133
134
  }
  
  #document-title{
d1bafeea1   Kload   [fix] Upgrade to ...
135
136
137
138
139
140
141
142
143
144
  	padding: 4px 0 5px;
  	border-bottom: 1px solid #E9E9E9;
  
  	text-align: center;
  	font-weight: bold;
  	color:#fff;
  	background-color:#1d2d44;
  }
  
  #document-title div.logo-wide{
6d9380f96   Cédric Dupont   Update sources OC...
145
146
147
  	float: left;
  	margin: 5px;
  	z-index: 110;
d1bafeea1   Kload   [fix] Upgrade to ...
148
149
150
151
  }
  
  #document-title div{
  	position: relative;
d1bafeea1   Kload   [fix] Upgrade to ...
152
  }
6d9380f96   Cédric Dupont   Update sources OC...
153
154
  #document-title .filename {
  	margin-top: 8px !important;
d1bafeea1   Kload   [fix] Upgrade to ...
155
  	width: 300px;
6d9380f96   Cédric Dupont   Update sources OC...
156
157
158
159
  }
  #document-title-container {
  	padding-top: 7px;
  	font-weight: normal;
d1bafeea1   Kload   [fix] Upgrade to ...
160
161
162
  }
  
  #odf-close{
6d9380f96   Cédric Dupont   Update sources OC...
163
  	margin-top: 0;
d1bafeea1   Kload   [fix] Upgrade to ...
164
165
  	float: right;
  }
6d9380f96   Cédric Dupont   Update sources OC...
166
167
168
169
  #odf-close.icon-close {
  	height: 29px;
  	width: 29px;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
170
171
  
  #odf-invite{
6d9380f96   Cédric Dupont   Update sources OC...
172
173
  	margin-top: 0;
  	margin-left: 3px;
d1bafeea1   Kload   [fix] Upgrade to ...
174
  	float: left;
6d9380f96   Cédric Dupont   Update sources OC...
175
176
  	background-position: 5px center;
  	padding-left: 24px;
d1bafeea1   Kload   [fix] Upgrade to ...
177
178
179
  }
  
  #mainContainer{
6d9380f96   Cédric Dupont   Update sources OC...
180
181
182
  	position: absolute;
  	z-index: 500;
  	background-color: #ddd !important;
d1bafeea1   Kload   [fix] Upgrade to ...
183
184
185
186
  }
  
  #documents-overlay,  #documents-overlay-below{
      position: fixed;
6d9380f96   Cédric Dupont   Update sources OC...
187
      top: 45px;
d1bafeea1   Kload   [fix] Upgrade to ...
188
189
190
      left: 0;
      width: 100%;
      height: 100%;
6d9380f96   Cédric Dupont   Update sources OC...
191
192
      filter:alpha(opacity=60);
      opacity: .6;
d1bafeea1   Kload   [fix] Upgrade to ...
193
      z-index: 1000;
6d9380f96   Cédric Dupont   Update sources OC...
194
  	background-color: #fff;
d1bafeea1   Kload   [fix] Upgrade to ...
195
196
197
  }
  
  #documents-overlay-below{
6d9380f96   Cédric Dupont   Update sources OC...
198
199
  	right: 72px;
  	top: 83px;
d1bafeea1   Kload   [fix] Upgrade to ...
200
201
      filter:alpha(opacity=100);
      opacity: 1;
6d9380f96   Cédric Dupont   Update sources OC...
202
  	background:#fff;
d1bafeea1   Kload   [fix] Upgrade to ...
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
  	z-index: 999;
  }
  
  #file_upload_start{
  	display: block;
  	position:relative;
  	left:0; top:0; width:200px; height:100px; 
  	margin-bottom: -110px;padding:0;
  	cursor:pointer; overflow:hidden;
  	font-size:1em;
  	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0;
  	z-index:20; 
  }
  
  #saving-document{
  	float:right;
  	display:none;
  }
  
  #warning-connection-lost{
  	padding: 6px 0;
  	text-align: center;
  	color: #ffffff;
  	background-color: #CE7070;
  	font-size: 16px;
  	font-weight: bold;
  }
  
  #warning-connection-lost img {
  	margin-right: 4px;
  	float: right;
  	height: 20px;
  }
  
  #connection-lost{
  	right: 5px;
  	background: #fff;
  	width: 95%;
  	position: absolute;
  	top: 87px;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
244
  /* override WebODF styling here */
d1bafeea1   Kload   [fix] Upgrade to ...
245
246
247
248
  #mainContainer #collaboration{
  	float:right;position: relative;z-index: 1;
  	width: 70px;padding:5px;
  }
6d9380f96   Cédric Dupont   Update sources OC...
249
250
251
252
253
254
255
256
257
  #members {
  	padding-top: 86px !important;
  	background-color: #ddd !important;
  }
  
  .memberListButton {
  	background-color: transparent !important;
  	box-shadow: none !important;
  	border: none !important;
d1bafeea1   Kload   [fix] Upgrade to ...
258
  }
6d9380f96   Cédric Dupont   Update sources OC...
259
  .memberListButton span {
d1bafeea1   Kload   [fix] Upgrade to ...
260
  	display: block;
6d9380f96   Cédric Dupont   Update sources OC...
261
      border-radius: 3px;
d1bafeea1   Kload   [fix] Upgrade to ...
262
263
264
265
266
267
268
269
270
271
272
      display: block;
      margin: auto;
  }
  
  .memberListButton img{
      border: 0 none !important;
  }
  
  .memberListButton input{
  	width:46px;
  }
6d9380f96   Cédric Dupont   Update sources OC...
273
274
275
276
277
278
  #memberList .memberListLabel {
  	color: #555 !important;
  	border-radius: 3px !important;
  	padding: 0 !important;
  	font-size: 10px !important;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
279
  #toolbar {
6d9380f96   Cédric Dupont   Update sources OC...
280
  	top: 45px !important;
d1bafeea1   Kload   [fix] Upgrade to ...
281
282
  	border-bottom: none !important;
  	padding: 5px 0 0 !important;
6d9380f96   Cédric Dupont   Update sources OC...
283
284
  	box-shadow: none !important;
  	background-color: rgba(255,255,255,.95);
d1bafeea1   Kload   [fix] Upgrade to ...
285
286
287
288
289
290
291
292
293
294
  }
  
  #toolbar > .dijit{
  	margin-left:3px;
  }
  #toolbar > span.dijit{
  	margin-left: 0;
  }
  
  #container {
6d9380f96   Cédric Dupont   Update sources OC...
295
296
297
298
299
  	top: 83px !important;
  }
  
  #canvas > div {
  	box-shadow: none !important;
d1bafeea1   Kload   [fix] Upgrade to ...
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
  }
  
  cursor > div {
  	padding-bottom: 0 !important;
  }
  
  editinfo > div.editInfoMarker {
  	width: 4px;
  	border-radius: 0;
  	box-shadow: 0 0 0 #fff;
  	background-clip:content-box;
  	padding: 0 5px;
  }
  
  editinfo > div.editInfoMarker:hover {
  }
6d9380f96   Cédric Dupont   Update sources OC...
316
317
318
  .dijitToolbar{
  	min-height: 31px;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
319
320
321
322
323
  .dijitToolbar .dijitDropDownButton {
  	padding-top: 2px;
  }
  
  .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {
6d9380f96   Cédric Dupont   Update sources OC...
324
  margin-top: -1px;
d1bafeea1   Kload   [fix] Upgrade to ...
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
  }
  
  .claro .dijitTextBox .dijitInputInner,
  .claro .dijitSpinner .dijitSpinnerButtonInner {
  	margin: 0;
  }
  
  /* part of dojo.css */
  .dojoTabular {border-collapse: collapse; border-spacing: 0; border: 1px solid #ccc; margin: 0 1.5em;}
  .dojoTabular th {text-align: center; font-weight: bold;}
  .dojoTabular thead,.dojoTabular tfoot {background-color: #efefef; border: 1px solid #ccc; border-width: 1px 0;}
  .dojoTabular th,.dojoTabular td {padding: 0.25em 0.5em;}
  
  /* raise notification z-index above the documents app */
  #odf-toolbar + #notification-container {
  	z-index: 501;
  }
  
  document p{
  	cursor:auto;
  }