Adapt print properties on Gestionnaire dossier show
This commit is contained in:
parent
a4b67ec1be
commit
a20daa2ea2
4 changed files with 37 additions and 6 deletions
31
app/assets/stylesheets/print.scss
Normal file
31
app/assets/stylesheets/print.scss
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
@media print {
|
||||||
|
html, body {
|
||||||
|
width: 900px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main_div{
|
||||||
|
margin-left: 50px;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#commentaire_new {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#commentaires_flux {
|
||||||
|
margin-top: -50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#infos_dossier .row:last-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#infos_dossier {
|
||||||
|
margin-bottom: -70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#backoffice_dossier_show .nav-tabs {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,6 +4,6 @@
|
||||||
padding-right:13%;
|
padding-right:13%;
|
||||||
padding-bottom:20px;
|
padding-bottom:20px;
|
||||||
padding-top:15px;
|
padding-top:15px;
|
||||||
margin-left:-13%;
|
margin-left:-10rem;
|
||||||
margin-right:-13%;
|
margin-right:-10rem;
|
||||||
}
|
}
|
|
@ -1,9 +1,9 @@
|
||||||
.col-md-12
|
.col-md-12.col-xs-12
|
||||||
%h4
|
%h4
|
||||||
= @facade.entreprise.raison_sociale_or_name
|
= @facade.entreprise.raison_sociale_or_name
|
||||||
|
|
||||||
.row#infos_entreprise
|
.row#infos_entreprise
|
||||||
.col-lg-6.col-md-6
|
.col-lg-6.col-md-6.col-xs-12.col-sm-12
|
||||||
%dl.dl-horizontal
|
%dl.dl-horizontal
|
||||||
%dt Siret :
|
%dt Siret :
|
||||||
%dd.text-success= @facade.etablissement.siret
|
%dd.text-success= @facade.etablissement.siret
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
%dd= @facade.entreprise.numero_tva_intracommunautaire
|
%dd= @facade.entreprise.numero_tva_intracommunautaire
|
||||||
|
|
||||||
|
|
||||||
.col-lg-6.col-md-6
|
.col-lg-6.col-md-6.col-xs-12.col-sm-12
|
||||||
%dl.dl-horizontal
|
%dl.dl-horizontal
|
||||||
%dt Adresse :
|
%dt Adresse :
|
||||||
%dd
|
%dd
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
.alert.alert-danger
|
.alert.alert-danger
|
||||||
= flash.alert
|
= flash.alert
|
||||||
|
|
||||||
%div.main_div
|
#main_div.main_div
|
||||||
= yield
|
= yield
|
||||||
|
|
||||||
%br
|
%br
|
||||||
|
|
Loading…
Reference in a new issue