Projet

Général

Profil

0001-backoffice-hide-both-sidepage-and-sidebar-in-print-m.patch

Frédéric Péters, 13 juillet 2015 11:11

Télécharger (1,5 ko)

Voir les différences:

Subject: [PATCH] backoffice: hide both sidepage and sidebar in print mode
 (#7845)

 wcs/qommon/static/css/dc2/admin.css |  9 +++++++++
 wcs/qommon/static/css/dc2/gadjo.css | 12 ++++++++++++
 2 files changed, 21 insertions(+)
wcs/qommon/static/css/dc2/admin.css
1001 1001
a#filter-settings {
1002 1002
	cursor: pointer;
1003 1003
}
1004

  
1005
@media print {
1006
	div#sidebar {
1007
		display: none;
1008
	}
1009
	div#main-content {
1010
		width: 95%;
1011
	}
1012
}
wcs/qommon/static/css/dc2/gadjo.css
704 704
ul#sidepage-menu li a.icon-submission { background-image: url(icons/submission.small.png); }
705 705
ul#sidepage-menu li a.icon-users { background-image: url(icons/users.small.png); }
706 706
ul#sidepage-menu li a.icon-workflows { background-image: url(icons/workflows.small.png); }
707

  
708

  
709
@media print {
710
	#top,
711
	#header,
712
	#sidepage {
713
		display: none;
714
	}
715
	#main.sidepage-expanded {
716
		margin-left: 0;
717
	}
718
}
707
-