print.scss 2.5 KB

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