print.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. .sidebar,
  46. .page-header-meta .btn {
  47. display: none;
  48. }
  49. h1, .popover-notificationsHeader .popover-title, .ticket-title-update, h2, h3, h4, h5, h6 {
  50. color: inherit;
  51. }
  52. .table {
  53. border: none;
  54. color: black;
  55. > thead > tr > th {
  56. background: none;
  57. color: inherit;
  58. }
  59. }
  60. td a {
  61. color: black;
  62. font-weight: 500;
  63. }
  64. .table-col-resize {
  65. display: none;
  66. }
  67. th.js-tableHead:not([data-column-key="icon"]) {
  68. width: auto !important;
  69. }
  70. .icon-task-state.open {
  71. fill: gray;
  72. }
  73. /*
  74. Ticket Zoom
  75. ===========
  76. */
  77. .ticketZoom-controls,
  78. .scrollPageHeader,
  79. .article-new,
  80. .article-actions,
  81. .tabsSidebar,
  82. .attributeBar,
  83. .textBubble-overflowContainer {
  84. display: none;
  85. }
  86. .tabsSidebar-sidebarSpacer {
  87. margin: 0;
  88. transition: none;
  89. }
  90. .textBubble-content {
  91. height: auto !important;
  92. }
  93. .tabsSidebar-tabsSpacer {
  94. padding: 0 !important;
  95. overflow: visible;
  96. }
  97. .ticket-article,
  98. .article-new {
  99. max-width: none;
  100. padding-left: 0;
  101. padding-right: 0;
  102. }
  103. .ticketZoom {
  104. background: none;
  105. }
  106. .textBubble {
  107. padding: 20px;
  108. border: 1px solid !important;
  109. background: white !important;
  110. }
  111. .bubble-arrow:after {
  112. background: white !important;
  113. border-color: black !important;
  114. }
  115. .article-meta {
  116. color: black;
  117. background: none;
  118. border: 1px dashed hsl(240,2%,60%);
  119. padding: 11px 10px 1px;
  120. &.top {
  121. border-bottom-width: 0;
  122. }
  123. &.bottom {
  124. border-top-width: 0;
  125. padding-top: 7px;
  126. padding-bottom: 3px;
  127. }
  128. &-clip {
  129. height: auto !important;
  130. }
  131. &-icon {
  132. fill: currentColor;
  133. }
  134. }
  135. .article-content {
  136. color: inherit;
  137. a[href]:after {
  138. content: none !important;
  139. }
  140. }
  141. .article-content-meta {
  142. opacity: 1 !important;
  143. display: block !important;
  144. transform: none !important;
  145. position: static;
  146. }
  147. .attachments.attachments--list {
  148. border-color: currentColor !important;
  149. }
  150. .avatar {
  151. border: 1px solid black;
  152. }