Fichier pour la surveillance et portefeuille

This commit is contained in:
Michael RICOIS 2011-04-20 09:38:19 +00:00
parent 009aff3867
commit 47ade0cdb9
2 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,27 @@
$(document).ready(function()
{
$('#surveillance').tablesorter({
headers: {
3: { sorter: false },
4: { sorter: false },
5: { sorter: false }
}
});
$('.tooltip').each(function()
{
$(this).qtip( {
content: $(this).attr('title'),
style: { width: 300, name: 'dark' },
position: { corner: { target: 'bottomMiddle',
tooltip: 'topMiddle' } }
});
});
$('.set').hover(function(){
$(this).find('a.editencours').css('display', 'inline');
},function () {
$(this).find('a.editencours').css('display', 'none');
});
});

View File

@ -0,0 +1,92 @@
#surveillance {
width:100%;
border-collapse:collapse;
border:1px solid;
font:normal 11px Arial, Verdana, Sans-serif;
letter-spacing:1px;
line-height: 1em;
}
#surveillance tr {
border:1px solid;
}
#surveillance th {
border:1px solid;
padding:5px;
font-weight:bold;
}
#surveillance td {
border:1px solid;
text-align:center;
padding:2px;
}
#surveillance .aleft {
text-align:left;
}
#surveillance .action {
clear:both;
margin:0;
padding:0;
}
#surveillance td p {
line-height:16px;
}
#surveillance .action p {
display:inline-block;
float:left;
line-height:16px;
margin:0;
font-size:11px;
}
#surveillance .action a {
display:inline-block;
float:right;
}
#surveillance .action img {
vertical-align:middle;
}
#surveillance #type {
width:120px;
}
table.tablesorter thead tr .header {
background:url(/themes/default/images/tablesorter/bg.gif) no-repeat center right;
cursor:pointer;
}
table.tablesorter thead tr .headerSortUp {
background-image: url(/themes/default/images/tablesorter/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(/themes/default/images/tablesorter/desc.gif);
}
#tri li {
list-style-type:none;
margin-left:10px;
display:inline;
font-size:11px;
}
.options {
margin-left:10px;
margin-top:5px;
font-size:11px;
}
#telechargementjsMsg {
margin-left:10px;
margin-top:5px;
}
.valign img, .valign span {
vertical-align: middle;
display: inline-block;
}
#surveillance td.encours {
text-align:right;
}
#surveillance th.score {
width:60px;
}
#surveillance td a.editencours {
display:none;
}