/**
 * Styling for printing out of the editor
 */

@media print {
  //List of elements that should not be rendered for printing
  .Pane1, .topbar {
    display: none;
  }

  .SplitPane {
    position: relative !important;
    display: block !important;
  }

  //The right-hand preview pane should be the full width of the page
  .Pane2 {
    overflow-y: auto;
    width: 100% !important;
  }
}
