You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

  1. .app-print_main() {
  2. --LessLoader_require: LessLoader_currentFile();
  3. }
  4. & {
  5. .cp-app-print {
  6. // Current scope is <html>
  7. @media print {
  8. height: auto;
  9. max-height: none;
  10. overflow: visible;
  11. display: block;
  12. @page {
  13. margin: 0;
  14. size: landscape;
  15. }
  16. // Slide app
  17. body.cp-app-slide {
  18. display: block;
  19. .CodeMirror, #cme_toolbox {
  20. display: none;
  21. }
  22. * {
  23. visibility: hidden;
  24. height: auto;
  25. max-height: none;
  26. }
  27. .cp-app-slide-viewer #cp-app-slide-print {
  28. display: block;
  29. visibility: visible;
  30. * {
  31. visibility: visible;
  32. }
  33. }
  34. .cp-app-slide-viewer #cp-app-slide-modal {
  35. display: none !important;
  36. }
  37. .cp-app-slide-viewer {
  38. flex: 1 !important;
  39. overflow: visible !important;
  40. }
  41. .cp-toolbar-userlist-drawer {
  42. display: none !important;
  43. }
  44. #cp-app-slide-editor {
  45. height: auto;
  46. display: block;
  47. }
  48. }
  49. }
  50. }
  51. }