Subversion Repositories eFlore/Applications.cel

Rev

Rev 1514 | Rev 2685 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
479 jpm 1
@charset "UTF-8";
521 jpm 2
html {
3
	overflow:hidden;
4
}
5
body {
6
	overflow:hidden;
7
	padding:0;
479 jpm 8
	margin:0;
521 jpm 9
	width:100%;
10
	height:100%;
479 jpm 11
	font-family:Arial;
12
	font-size:12px;
13
}
492 jpm 14
h1 {
15
	font-size:1.6em;
16
}
17
h2 {
18
	font-size:1.4em;
19
}
501 jpm 20
a, a:active, a:visited {
21
	border-bottom:1px dotted #666;
22
	color:#CCC;
23
	text-decoration:none;
24
}
25
a:active {
26
	outline:none;
27
}
28
a:focus {
29
	outline:thin dotted;
30
}
31
a:hover {
32
	color:#56B80E;
33
	border-bottom:1px dotted #56B80E;
34
}
1447 aurelien 35
img {
36
	border:none;
37
}
479 jpm 38
/*+-----------------------------------------------------------------------------------------------------------------+*/
572 jpm 39
/* Présentation des listes de définitions */
40
dl {
41
	width:100%;
953 jpm 42
	margin:0;
572 jpm 43
}
44
dt {
45
	float:left;
46
	font-weight:bold;
47
	text-align:top left;
48
	margin-right:0.3em;
953 jpm 49
	line-height:0.8em;
572 jpm 50
}
51
dd {
52
	width:auto;
53
	margin:0.5em 0;
953 jpm 54
	line-height:0.8em;
572 jpm 55
}
56
/*+-----------------------------------------------------------------------------------------------------------------+*/
57
/* Tableau : */
58
table {
59
	border:1px solid gray;
60
	border-collapse:collapse;
939 jpm 61
	width:100%;
572 jpm 62
}
63
table thead, table tfoot, table tbody {
64
	background-color:Gainsboro;
65
	border:1px solid gray;
66
}
67
table tbody {
68
	background-color:#FFF;
69
}
70
table th {
71
	font-family:monospace;
72
	border:1px dotted gray;
73
	padding:5px;
74
	background-color:Gainsboro;
75
}
76
table td {
77
	font-family:arial;
78
	border:1px dotted gray;
79
	padding:5px;
80
	text-align:left;
81
}
82
table caption {
83
	font-family:sans-serif;
84
}
85
/*+-----------------------------------------------------------------------------------------------------------------+*/
86
/* Tableau : tablesorter */
87
th.header {
88
	background:url(../images/trie.png) no-repeat center right;
89
	padding-right:20px;
90
}
91
th.headerSortUp {
92
	background:url(../images/trie_croissant.png) no-repeat center right #56B80E;
93
	color:white;
94
}
95
th.headerSortDown {
96
    background:url(../images/trie_decroissant.png) no-repeat center right #56B80E;
97
    color:white;
98
}
99
/*+-----------------------------------------------------------------------------------------------------------------+*/
100
/* Générique */
101
.nettoyage{
102
	clear:both;
103
}
104
hr.nettoyage{
105
	visibility:hidden;
106
}
1447 aurelien 107
 
108
.element-overlay {
109
	background-color: #DDDDDD;
110
	border:1px solid grey;
111
}
572 jpm 112
/*+-----------------------------------------------------------------------------------------------------------------+*/
479 jpm 113
/* Carte */
114
#carte {
521 jpm 115
	padding:0;
116
	margin:0;
117
	position:absolute;
118
	right:0;
119
	bottom:0;
120
	overflow:auto;
1442 aurelien 121
	width: 100%;
1450 aurelien 122
	height: 100%;
479 jpm 123
}
1438 aurelien 124
 
125
.carte_titree {
126
	top:35px;
127
}
128
 
129
.carte_non_titre {
130
	top:0px;
131
}
132
 
479 jpm 133
.bouton {
134
	background-color:white;
135
	border:2px solid black;
136
	cursor:pointer;
137
	text-align:center;
138
}
139
/*+-----------------------------------------------------------------------------------------------------------------+*/
140
/* Message de chargement */
1447 aurelien 141
 
142
#zone-chargement-point {
143
	display: none;
144
    position: fixed;
2350 mathias 145
    left: 110px;
146
    top: 10px;
147
    z-index: 3000;
148
    width: 180px;
149
    height: 42px;
150
    padding: 7px;
1447 aurelien 151
    text-align: center;
2350 mathias 152
	background-color: rgba(255, 255, 255, 0.85);
153
	border: solid #dedede 1px;
154
	border-radius: 4px;
1447 aurelien 155
}
2350 mathias 156
#legende-chargement {
157
	padding-top: 7px;
158
}
159
#img-chargement {
160
	float: left;
161
	margin-right: 5px;
162
}
1447 aurelien 163
 
479 jpm 164
#chargement {
915 jpm 165
	margin:25px;
166
	text-align:center;
1447 aurelien 167
 
479 jpm 168
}
915 jpm 169
#chargement img{
479 jpm 170
	display:block;
171
	margin:auto;
172
}
1442 aurelien 173
 
174
#message-aucune-obs p {
175
	padding-top : 25px;
176
	font-weight: bold;
177
}
178
 
179
#message-aucune-obs {
180
	background-image: url("../images/attention.png");
181
    background-position: 50% 10px;
182
	background-repeat:  no-repeat;
1447 aurelien 183
	display: none;
184
    height: 70px;
185
    padding: 10px;
186
    position: fixed;
187
    text-align: center;
188
    width: 230px;
189
    z-index: 3000;
1442 aurelien 190
}
191
 
479 jpm 192
/*+-----------------------------------------------------------------------------------------------------------------+*/
501 jpm 193
/* Avertissement */
194
#zone-avertissement {
1452 aurelien 195
	background-color:#DDDDDD;
196
	color: black;
503 jpm 197
	padding:12px;
198
	text-align:justify;
521 jpm 199
	line-height:16px;
501 jpm 200
}
503 jpm 201
#zone-avertissement h1{
202
	margin:0;
501 jpm 203
}
521 jpm 204
#zone-avertissement a {
205
	border-bottom:1px dotted gainsboro;
206
}
1452 aurelien 207
 
208
#zone-avertissement a, a:active, a:visited {
209
	color: #666666;
210
}
501 jpm 211
/*+-----------------------------------------------------------------------------------------------------------------+*/
492 jpm 212
/* Carte titre */
1442 aurelien 213
 
214
#zone-titre {
215
	top: 30px;
216
}
217
 
1438 aurelien 218
#zone-titre, #zone_stats {
521 jpm 219
	padding:0;
1447 aurelien 220
	position:absolute;
1438 aurelien 221
	height:25px;
521 jpm 222
	overflow:hidden;
1438 aurelien 223
	border-radius: 4px;
224
	z-index: 3000;
225
	display: inline-block;
226
	padding:8px;
227
	color: black;
228
    font-family: inherit;
229
    font-size: 1.1em;
230
    font-weight: bold;
231
    text-rendering: optimizelegibility;
232
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
501 jpm 233
}
1438 aurelien 234
 
501 jpm 235
#zone-info {
513 jpm 236
	position:absolute;
1445 aurelien 237
	top:26px;
238
	z-index:3001;
513 jpm 239
	right:8px;
1445 aurelien 240
    width: 25px;
501 jpm 241
	text-align:right;
1445 aurelien 242
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
243
 	border-radius: 5px 5px 5px 5px;
501 jpm 244
}
1445 aurelien 245
 
246
#zone-info a {
247
	border: none;
248
}
249
 
1447 aurelien 250
 
251
#logo {
252
    left: 2px;
253
    padding: 4px;
254
    position: absolute;
255
    top: 5px;
256
    z-index: 3002;
1450 aurelien 257
    width: 60px;
501 jpm 258
}
2350 mathias 259
.image-logo {
260
	padding: 5px;
261
	background-color: rgba(255, 255, 255, 0.9);
262
	border: solid #dedede 1px;
263
	border-radius: 4px;
264
}
1447 aurelien 265
#logo a {
266
	border-bottom: none;
267
}
268
 
492 jpm 269
#carte-titre {
501 jpm 270
	display:inline-block;
939 jpm 271
	margin:0;
1438 aurelien 272
	padding:0em;
492 jpm 273
}
513 jpm 274
#carte-titre {/*Hack CSS  fonctionne seulement dans ie6, 7 & 8 */
275
	display:inline !hackCssIe6Et7;/*Hack CSS pour ie6 & ie7 */
276
	display /*\**/:inline\9;/*Hack CSS pour ie8 */
277
}
1449 aurelien 278
 
279
#image-utilisateur {
280
    position: absolute;
281
    right: 5px;
282
    top: 40%;
283
}
284
 
1514 aurelien 285
#lien-affichage-filtre-utilisateur {
286
	right: 5px;
287
	float: right;
288
	padding-bottom: 1px;
289
	cursor: pointer;
290
	font-weight: bold;
291
    margin-left: 25px;
292
    padding: 3px;
293
    position: relative;
294
    top: 3px;
295
    width: 117px;
296
    height: 30px;
297
}
298
 
299
#conteneur-filtre-utilisateur.ferme:hover {
300
	color: #222222;
301
	background-color: #AAAAAA;
302
	text-decoration: none;
303
	cursor: pointer;
304
	border: 1px solid #222222;
305
}
306
 
307
#conteneur-filtre-utilisateur {
308
    float: right;
309
    padding: 3px;
310
    position: absolute;
311
    right: 5px;
312
    top: 31px;
313
    border-radius: 5px 5px 5px 5px;
314
    width: 117px;
315
    max-width: 350px;
316
}
317
 
318
.largeurAuto {
319
	width: auto;
320
}
321
 
322
#raz-filtre-utilisateur {
323
	color: red;
324
    padding-left: 1px;
325
    word-wrap: break-word;
326
    width: 110px;
327
}
328
 
492 jpm 329
/*+-----------------------------------------------------------------------------------------------------------------+*/
479 jpm 330
/* Panneau latéral */
331
#panneau-lateral {
332
	padding:0;
521 jpm 333
	margin:0;
334
	position:absolute;
2350 mathias 335
   	top: 90px;
521 jpm 336
	left:0;
337
	bottom:0;
1438 aurelien 338
	width: 83px;
521 jpm 339
	overflow:hidden;
1447 aurelien 340
	height: 25px;
1442 aurelien 341
	z-index: 3001;
1438 aurelien 342
	border-top-right-radius : 10px;
343
	border-bottom-right-radius : 10px;
521 jpm 344
}
1438 aurelien 345
#pl-indication-filtre {
346
	margin-left	: 25px;
347
	padding : 3px;
1447 aurelien 348
	font-weight: bold;
1449 aurelien 349
	padding: 3px;
350
    position: relative;
351
    top: 3px;
1438 aurelien 352
}
521 jpm 353
#pl-contenu {
479 jpm 354
	display:none;
355
}
356
#pl-entete {
521 jpm 357
	height:95px;
479 jpm 358
}
359
#pl-corps {
521 jpm 360
	bottom:0;
479 jpm 361
	overflow:auto;
362
	padding:5px;
489 jpm 363
	width:290px;
479 jpm 364
}
365
#pl-ouverture, #pl-fermeture {
521 jpm 366
	position:absolute;
479 jpm 367
	top:0;
1438 aurelien 368
	height:60px;
521 jpm 369
	width:24px;
479 jpm 370
	text-align:center;
371
	cursor:pointer;
372
}
373
#pl-ouverture {
521 jpm 374
	left:0;
375
	background:url(../images/ouverture.png) no-repeat top left #4A4B4C;
939 jpm 376
	height:100%;
479 jpm 377
}
378
#pl-fermeture {
521 jpm 379
	display:none;
1445 aurelien 380
    right: 0;
521 jpm 381
	background:url(../images/fermeture.png) no-repeat top right #4A4B4C;
479 jpm 382
}
492 jpm 383
#pl-ouverture span, #pl-fermeture span{
384
	display:none;
385
}
386
/* Panneau latéral : balises */
387
#panneau-lateral h2, #panneau-lateral p {
1438 aurelien 388
	color:black;}
479 jpm 389
/*+-----------------------------------------------------------------------------------------------------------------+*/
492 jpm 390
/* Liste des taxons de la carte */
391
#taxons {
1438 aurelien 392
	color:black;
492 jpm 393
}
1447 aurelien 394
#taxons .taxon-actif, #taxons .taxon-actif span, .raz-filtre-taxons.taxon-actif {
836 jpm 395
	color:#56B80E;
396
}
1445 aurelien 397
#taxons li span, .raz-filtre-taxons {
836 jpm 398
	border-bottom:1px dotted #666;
1438 aurelien 399
	color:black;
836 jpm 400
}
401
#taxons li span:focus {
402
	outline:thin dotted;
403
}
404
#taxons li span:hover {
405
	color:#56B80E;
406
	border-bottom:1px dotted #56B80E;
407
	cursor:pointer;
408
}
409
.nt {
410
	display:none;
411
}
1445 aurelien 412
.raz-filtre-taxons {
413
	cursor:pointer;
414
}
492 jpm 415
/*+-----------------------------------------------------------------------------------------------------------------+*/
1438 aurelien 416
/* Zone des stats en bas */
417
#zone-stats {
418
	padding:0;
419
	position:absolute;
420
	height:25px;
1445 aurelien 421
	bottom:20px;
1438 aurelien 422
	overflow:hidden;
423
	border-radius: 4px;
424
	z-index: 3000;
425
	display: inline-block;
426
	padding:8px;
427
	color: black;
428
    font-family: inherit;
429
    font-size: 1.1em;
430
    font-weight: bold;
431
    text-rendering: optimizelegibility;
432
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
433
}
434
 
435
#zone-stats h1 {
436
	margin-top: 0;
437
}
438
 
1447 aurelien 439
#lien_plein_ecran, #lien-voir-cc {
440
    position: absolute;
1442 aurelien 441
    z-index: 3000;
442
	border-radius: 4px;
443
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
444
    padding: 8px 8px 4px;
445
    font-size: 1.1em;
446
    font-weight: bold;
447
}
448
 
449
#lien_plein_ecran {
1445 aurelien 450
    bottom: 20px;
1442 aurelien 451
    left: 5px;
452
}
453
 
1447 aurelien 454
#lien_plein_ecran a, #lien-voir-cc a {
1442 aurelien 455
	color: black;
456
	padding: 2px;
457
	border-bottom: none;
458
}
459
 
460
#lien_plein_ecran img {
461
	height: 20px;
462
}
463
 
1447 aurelien 464
#lien-voir-cc {
1442 aurelien 465
    bottom: 3px;
466
    right: 5px;
1445 aurelien 467
    bottom: 20px;
468
    height: 20px;
1442 aurelien 469
}
470
 
1447 aurelien 471
#origine-donnees {
472
	-moz-user-select: none;
473
    background: -moz-linear-gradient(center , rgba(255, 255, 255, 0) 0pt, rgba(255, 255, 255, 0.5) 50px) repeat scroll 0 0 transparent;
474
    color: #444444;
475
    direction: ltr;
476
    font-family: Arial,sans-serif;
477
    font-size: 10px;
478
    font-weight: bold;
479
    height: 19px;
480
    line-height: 19px;
481
    padding-left: 50px;
482
    padding-right: 2px;
483
    bottom: 0px;
484
    position: absolute;
485
    text-align: right;
486
    white-space: nowrap;
487
    z-index: 3001;
488
}
489
 
490
#origine-donnees a {
491
    color: #444444;
492
    cursor: pointer;
493
    text-decoration: underline;
494
    border-bottom: none;
495
}
496
#origine-donnees a:active, #origine-donnees a:visited {
497
    border-bottom: 1px dotted #666666;
498
  	color: #CCCCCC;
499
    text-decoration: none;
500
}
501
 
502
#origine-donnees a:visited {
503
	border-bottom: 1px dotted #666666;
504
  	color: #444444;
505
    text-decoration: none;
506
}
1438 aurelien 507
/*+-----------------------------------------------------------------------------------------------------------------+*/
479 jpm 508
/* Pop-up observations */
953 jpm 509
#info-bulle{
510
	min-height:500px;
511
	width:500px;
512
}
479 jpm 513
#observations {
514
	overflow:none;
915 jpm 515
	margin:-1px 0 0 0;
516
	border: 1px solid #AAA;
517
	border-radius:0 0 4px 4px;
479 jpm 518
}
915 jpm 519
#obs-pieds-page {
492 jpm 520
	font-size:10px;
521
	color:#CCC;
915 jpm 522
	clear:both;
492 jpm 523
}
915 jpm 524
.ui-tabs {
525
	padding:0;
526
}
527
.ui-widget-content {
528
	border:0;
529
}
530
.ui-widget-header {
531
	background:none;
532
	border:0;
533
	border-bottom:1px solid #AAA;
534
	border-radius:0;
535
}
536
.ui-tabs-selected a {
537
	border-bottom:1px solid white;
538
}
539
.ui-tabs-selected a:focus {
540
	outline:0;
541
}
542
.ui-tabs .ui-tabs-panel {
543
	padding:0.2em;
544
}
953 jpm 545
.ui-tabs .ui-tabs-nav li a {
546
	padding: 0.5em 0.6em;
547
}
915 jpm 548
#obs h2 {
549
	margin:0;
550
	text-align:center;
551
}
501 jpm 552
#observations a {
553
	color:#333;
521 jpm 554
	border-bottom:1px dotted gainsboro;
494 delphine 555
}
556
#observations a:hover {
557
	color:#56B80E;
501 jpm 558
	border-bottom:1px dotted #56B80E;
494 delphine 559
}
953 jpm 560
.nom-sci{
561
	color:#454341;
562
	font-weight:bold;
563
}
479 jpm 564
/*+-----------------------------------------------------------------------------------------------------------------+*/
915 jpm 565
/* Pop-up observations : liste */
953 jpm 566
.cel-img-principale {
567
	height:0;/*Pour IE*/
479 jpm 568
}
915 jpm 569
.cel-img-principale img{
570
	float:right;
571
	height:75px;
953 jpm 572
	width:75px;
915 jpm 573
	padding:1px;
574
	border:1px solid white;
479 jpm 575
}
915 jpm 576
#observations .cel-img:hover img{
577
	border: 1px dotted #56B80E;
479 jpm 578
}
915 jpm 579
.cel-img-secondaire, .cel-infos{
580
	display: none;
581
}
582
ol#obs-liste-lignes {
583
	padding:5px;
479 jpm 584
	margin:0;
585
}
953 jpm 586
.champ-nom-sci {
587
	display:none;
588
}
589
#obs-liste-lignes li dl {/*Pour IE*/
590
	width:350px;
591
}
915 jpm 592
.obs-conteneur{
593
	counter-reset: item;
479 jpm 594
}
915 jpm 595
.obs-conteneur .nom-sci:before {
596
	content: counter(item) ". ";
597
	counter-increment: item;
598
	display:block;
599
	float:left;
479 jpm 600
}
915 jpm 601
.obs-conteneur li {
602
	display: block;
953 jpm 603
	margin-bottom:1em;
479 jpm 604
}
953 jpm 605
 
1513 aurelien 606
.lien-widget-saisie {
607
    background: url("../images/saisie.png") no-repeat scroll left center transparent;
608
    border: 1px solid #AAAAAA;
609
   	background-color: #EEE;
610
    padding: 5px 5px 5px 25px;
611
    text-decoration: none;
612
    border-radius : 5px;
613
}
614
 
615
.lien-widget-saisie:hover {
616
	color: #222222;
617
	background-color: #AAAAAA;
618
	text-decoration: none;
619
	cursor: pointer;
620
	border: 1px solid #222222;
621
}
622
 
479 jpm 623
/*+-----------------------------------------------------------------------------------------------------------------+*/
915 jpm 624
/* Diaporama */
625
.cel-legende{
626
	text-align:left;
627
}
628
.cel-legende-vei{
572 jpm 629
	float:right;
479 jpm 630
}
915 jpm 631
.cel-legende p{
939 jpm 632
	color: black;
633
	font-size: 12px;
634
	line-height: 18px;
635
	margin: 0;
629 jpm 636
}
915 jpm 637
.cel-legende a, .cel-legende a:active, .cel-legende a:visited {
638
	border-bottom:1px dotted gainsboro;
639
	color:#333;
640
	text-decoration:none;
641
	background-image:none;
841 jpm 642
}
915 jpm 643
.cel-legende a:hover {
644
	color:#56B80E;
645
	border-bottom:1px dotted #56B80E;
646
}
841 jpm 647
/*+-----------------------------------------------------------------------------------------------------------------+*/
648
/* Plugin Jquery Pagination */
915 jpm 649
.navigation {
650
	padding:5px;
651
	float:right;
652
}
841 jpm 653
.pagination {
654
	font-size: 80%;
655
}
656
.pagination a {
657
	text-decoration: none;
915 jpm 658
	border: solid 1px #666;
659
	color: #666;
660
	background:gainsboro;
841 jpm 661
}
915 jpm 662
.pagination a:hover {
663
	color: white;
664
	background: #56B80E;
665
}
841 jpm 666
.pagination a, .pagination span {
667
	display: block;
668
	float: left;
669
	padding: 0.3em 0.5em;
670
	margin-right: 5px;
671
	margin-bottom: 5px;
672
	min-width:1em;
673
	text-align:center;
674
}
675
.pagination .current {
915 jpm 676
	background: #4A4B4C;
677
	color: white;
678
	border: solid 1px gainsboro;
841 jpm 679
}
680
.pagination .current.prev, .pagination .current.next{
915 jpm 681
	color: #999;
682
	border-color: #999;
683
	background: gainsboro;
841 jpm 684
}
941 jpm 685
/*+-----------------------------------------------------------------------------------------------------------------+*/
686
/* Formulaire de contact */
687
#form-contact input{
688
	width:300px;
689
}
690
#form-contact textarea{
691
	width:300px;
692
	height:200px;
693
}
694
#form-contact #fc_envoyer{
695
	width:50px;
696
	float:right;
697
}
698
#form-contact #fc_annuler{
699
	width:50px;
700
	float:left;
701
}
702
#form-contact label.error {
703
	color:red;
704
	font-weight:bold;
705
}
706
#form-contact .info {
707
	padding:5px;
708
	background-color: #4A4B4C;
709
	border: solid 1px #666;
710
	color: white;
711
	white-space: pre-wrap;
712
	width: 300px;
2350 mathias 713
}
714
 
715
/* hack Fancybox pour que le popup soit toujours au dessus */
716
#fancybox-wrap {
717
	z-index: 3100;
941 jpm 718
}