foreground-print.css 790 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* Control what will print */
  2. @media print {
  3. /* stop double border at bottom with print */
  4. footer.row {
  5. border: none;
  6. }
  7. /*make namespace labels stand out */
  8. h4.namespace.label {
  9. padding: 0.25em;
  10. font-size: 1.4em !important;
  11. font-weight: normal;
  12. background-color: #777777 !important;
  13. color: #fff !important;
  14. }
  15. /* hide actions button as it is not needed */
  16. #p-cactions a.button.dropdown.small.secondary.radius {
  17. display: none !important;
  18. }
  19. /* if addThis share is used, make sure to hide mobile content from js */
  20. #at4m-dock, .at4-show,
  21. #atstbx {
  22. display: none !important;
  23. }
  24. /* hide Echo if being used */
  25. #echo-notifications {
  26. display: none !important;
  27. }
  28. nav {
  29. display: none !important;
  30. }
  31. a#actions-button {
  32. display: none !important;
  33. }
  34. }