Browse Source

[FIX] web_responsive: Hide header when print directly from browser issues 808 (#809)

Closes #808
pull/1066/head
fanha99 7 years ago
committed by Jairo Llopis
parent
commit
58c1c66176
No known key found for this signature in database GPG Key ID: 59564BF1E22F314F
  1. 2
      web_responsive/__manifest__.py
  2. 4
      web_responsive/static/src/less/navbar.less

2
web_responsive/__manifest__.py

@ -6,7 +6,7 @@
"name": "Web Responsive",
"summary": "It provides a mobile compliant interface for Odoo Community "
"web",
"version": "11.0.1.0.1",
"version": "11.0.1.0.2",
"category": "Website",
"website": "https://laslabs.com/",
"author": "LasLabs, Tecnativa, Odoo Community Association (OCA)",

4
web_responsive/static/src/less/navbar.less

@ -4,6 +4,10 @@
header {
margin: 0;
padding: 0;
@media print {
display: none;
}
> .main-nav {
display: block;

Loading…
Cancel
Save