Support printing user's itinerary

- Define print.css with media=print type (note: could've been handled with
  @media queries)
- Define printPage port to interop with window.print() JS function
- Support UI.wrapNoPrint to wrap components with a the no-print CSS
This commit is contained in:
William Carroll 2020-08-02 14:23:38 +01:00
parent 699892883c
commit 803db7a5b2
5 changed files with 55 additions and 24 deletions

3
client/print.css Normal file
View file

@ -0,0 +1,3 @@
.no-print {
display: none;
}