Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
611 gduche 1
.conteneurBarre {
2
	width:130px;
652 aurelien 3
	display: inline;
611 gduche 4
}
5
 
652 aurelien 6
.conteneurBarreOuiNon {
7
	display: inline;
8
	float: right;
9
}
10
 
11
.labelTaxon {
660 gduche 12
	float: left;
13
    margin-right: 5px;
14
    overflow: hidden;
15
    text-overflow: ellipsis;
16
    white-space: nowrap;
665 gduche 17
    width: 150px;
652 aurelien 18
}
19
 
611 gduche 20
.barre {
652 aurelien 21
	width:80px;
611 gduche 22
	height:15px;
23
	background:#BBB;
24
	float:left;
25
	margin-right:2px;
26
	margin-left:2px;
652 aurelien 27
	display: inline;
28
	float:left;
611 gduche 29
}
30
 
31
.barreOui {
32
	background:#8EB533;
33
	padding-bottom:15px;
34
}
35
 
36
.barreNon {
37
	background:#C61717;
38
	padding-bottom:15px;
39
}
40
 
41
.boutonOui, .boutonNon {
42
	text-align:center;
43
	color:white;
44
	line-height:1em;
45
	font-size:15px;
46
	font-weight:bold;
47
	cursor:pointer;
48
	float:left;
49
	background:#AAA;
50
 
51
}
52
 
53
.boutonOui {
54
	width:9%;
55
	height:15px;
56
	width:15px;
57
	border-radius:0 2px 2px 0;
58
}
59
 
60
.boutonOui:hover {
61
	background:#8EB533;
62
}
63
 
64
.boutonNon:hover {
65
	background:#C61717
66
}
67
 
68
.boutonNon {
69
	width:9%;
70
	height:15px;
71
	width:15px;
72
	border-radius:2px 0 0 2px;
73
}
672 gduche 74
 
75