print.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #app > *:not(.content):not(.active),
  2. #app > .hide {
  3. display: none;
  4. }
  5. .table {
  6. border: 1px solid hsl(0,0%,90%);
  7. }
  8. .table thead tr {
  9. border-bottom: 1px solid hsl(0,0%,90%);
  10. }
  11. html {
  12. height: auto;
  13. }
  14. body,
  15. .content {
  16. background: none;
  17. color: black;
  18. }
  19. // Disable flex to allow multi page prints in Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=939897
  20. body,
  21. #app,
  22. #app > .content.active,
  23. .tabsSidebar-holder,
  24. main {
  25. display: block;
  26. }
  27. #app {
  28. min-width: 0;
  29. }
  30. /*
  31. Dashboard
  32. =========
  33. */
  34. .dashboard + .sidebar {
  35. display: none;
  36. }
  37. /*
  38. Ticket Overviews
  39. =================
  40. */
  41. .bulkAction,
  42. .overviews .checkbox-replacement,
  43. .overviews .overview-header,
  44. .table-checkbox {
  45. display: none;
  46. }
  47. /*
  48. Ticket Zoom
  49. ===========
  50. */
  51. .ticketZoom-controls,
  52. .scrollPageHeader,
  53. .article-new,
  54. .article-actions,
  55. .tabsSidebar,
  56. .attributeBar,
  57. .textBubble-overflowContainer {
  58. display: none;
  59. }
  60. .tabsSidebar-sidebarSpacer {
  61. margin: 0;
  62. transition: none;
  63. }
  64. .textBubble-content {
  65. height: auto !important;
  66. }
  67. .tabsSidebar-tabsSpacer {
  68. padding: 0 !important;
  69. overflow: visible;
  70. }
  71. .ticket-article,
  72. .article-new {
  73. max-width: none;
  74. padding-left: 0;
  75. padding-right: 0;
  76. }
  77. .ticketZoom {
  78. background: none;
  79. }
  80. .textBubble {
  81. padding: 20px;
  82. border: 1px solid !important;
  83. background: white !important;
  84. }
  85. .bubble-arrow:after {
  86. background: white !important;
  87. border-color: black !important;
  88. }
  89. .article-meta {
  90. color: black;
  91. background: none;
  92. border: 1px dashed hsl(240,2%,60%);
  93. padding: 11px 10px 1px;
  94. &.top {
  95. border-bottom-width: 0;
  96. }
  97. &.bottom {
  98. border-top-width: 0;
  99. padding-top: 7px;
  100. padding-bottom: 3px;
  101. }
  102. &-clip {
  103. height: auto !important;
  104. }
  105. &-icon {
  106. fill: currentColor;
  107. }
  108. }
  109. .article-content {
  110. color: inherit;
  111. a[href]:after {
  112. content: none !important;
  113. }
  114. }
  115. .article-content-meta {
  116. opacity: 1 !important;
  117. display: block !important;
  118. transform: none !important;
  119. position: static;
  120. }
  121. .attachments.attachments--list {
  122. border-color: currentColor !important;
  123. }
  124. .avatar {
  125. border: 1px solid black;
  126. }