205 lines
3.2 KiB
CSS
Executable file
205 lines
3.2 KiB
CSS
Executable file
/********************************************
|
|
* <!-- disposition générale -->
|
|
********************************************/
|
|
#globalDiv {
|
|
//padding-left:20%;
|
|
position: relative;
|
|
}
|
|
|
|
ul#actionMenu {
|
|
list-style-type:none;
|
|
width:18%;
|
|
padding:0;
|
|
float:left;
|
|
}
|
|
|
|
h1 {
|
|
font-size:1.4em;
|
|
margin:2px;
|
|
}
|
|
td, tr {
|
|
margin:0;
|
|
}
|
|
|
|
#factureListDiv {
|
|
padding:5px;
|
|
background:#fad163;
|
|
float:left;
|
|
width:75%;
|
|
}
|
|
|
|
#factureListDiv table#listeFactures {
|
|
padding:0;
|
|
width:100%;
|
|
}
|
|
|
|
.factureRow {
|
|
margin:2px;
|
|
position:relative;
|
|
}
|
|
|
|
.help_text {
|
|
background:#fff7D7;
|
|
font-weight:normal;
|
|
padding:10px 20px;
|
|
|
|
}
|
|
|
|
.factureRow .factureSummary {
|
|
background:#fff7D7;
|
|
height:30px;
|
|
font-weight:bold;
|
|
padding:10px 20px;
|
|
}
|
|
|
|
.factureRow .factureSummary span.intitule {
|
|
float:left;
|
|
}
|
|
|
|
.factureRow .factureSummary span.montant {
|
|
float:right;
|
|
text-align:right;
|
|
}
|
|
|
|
.tdNoFactures {
|
|
text-align:center;
|
|
font-size:1.2em;
|
|
background-color:#fff7D7;
|
|
color:#666;
|
|
margin:0;
|
|
padding:5px;
|
|
}
|
|
|
|
.facturePayee {
|
|
}
|
|
.factureNonPayee .factureSummary {
|
|
color:red;
|
|
}
|
|
|
|
|
|
.actions {
|
|
display:block;
|
|
float:right;
|
|
font-size:0.9em;
|
|
font-weight:normal;
|
|
}
|
|
.actions a {
|
|
margin:2px 10px;
|
|
}
|
|
|
|
/********************************************
|
|
* <!-- factures - details -->
|
|
********************************************/
|
|
|
|
table.factureDetails {
|
|
background: #fff7D7 url(fondFacturesDetails.png) repeat-x top;
|
|
padding:1%;
|
|
width:96%;
|
|
margin:0 1% 10px 1%;
|
|
}
|
|
|
|
.tdTotalDetail,
|
|
.tdTotalDetailIntitule {
|
|
border-top:thin black solid;
|
|
}
|
|
|
|
.tdTotalDetailIntitule {
|
|
text-align:right;
|
|
font-weight:bold;
|
|
}
|
|
|
|
table.factureDetails th {
|
|
border-bottom:thin black solid;
|
|
}
|
|
table.factureDetails th,
|
|
table.factureDetails td {
|
|
border-right:thin black solid;
|
|
margin:0;
|
|
padding:5px 20px;
|
|
}
|
|
|
|
/********************************************
|
|
* <!-- factures - divers -->
|
|
********************************************/
|
|
.note {
|
|
display:block;
|
|
font-size:small;
|
|
margin:3px;
|
|
font-weight:normal;
|
|
}
|
|
.note {
|
|
color:#666
|
|
}
|
|
|
|
.linkToggle {
|
|
display:block;
|
|
float:left;
|
|
height:15px;
|
|
width:15px;
|
|
background:transparent url(fl.png) top left;
|
|
margin-right:1px;
|
|
}
|
|
|
|
/********************************************
|
|
* <!-- factures - historique -->
|
|
********************************************/
|
|
|
|
table#historique_sous {
|
|
width:100%;
|
|
}
|
|
|
|
table#historique_sous td {
|
|
background:#fff7D7;
|
|
padding:5px;
|
|
text-align:center;
|
|
border-top:2px #fad163 solid;
|
|
}
|
|
|
|
table#historique_sous th {
|
|
background:#fff7D7;
|
|
padding:5px;
|
|
text-decoration:underline;
|
|
}
|
|
|
|
/********************************************
|
|
* <!-- factures - recherche -->
|
|
********************************************/
|
|
|
|
form.search {
|
|
display:block;
|
|
border: thin black solid;
|
|
padding:.2em 1em;
|
|
float:left;
|
|
//position:absolute;
|
|
width:18%;
|
|
//top:0;
|
|
//left:0;
|
|
margin:0 1%;
|
|
}
|
|
|
|
form.search input {
|
|
max-width:95%;
|
|
margin:.3em;
|
|
float:left;
|
|
border: thin gray solid;
|
|
}
|
|
|
|
form.search label {
|
|
padding-top:7px;
|
|
display:block;
|
|
width:4em;
|
|
float:left;
|
|
clear:left;
|
|
font-weight:bold;
|
|
}
|
|
|
|
form.search h3 {
|
|
margin:.2em 0;
|
|
}
|
|
|
|
form.search input.button {
|
|
margin:.5em;
|
|
text-align:center;
|
|
clear:left;
|
|
}
|
|
|