123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- #app > *:not(.content):not(.active),
- #app > .hide {
- display: none;
- }
- .table {
- border: 1px solid hsl(0,0%,90%);
- }
- .table thead tr {
- border-bottom: 1px solid hsl(0,0%,90%);
- }
- html {
- height: auto;
- }
- body,
- .content {
- background: none;
- color: black;
- }
- // Disable flex to allow multi page prints in Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=939897
- body,
- #app,
- #app > .content.active,
- .tabsSidebar-holder,
- main {
- display: block;
- }
- #app {
- min-width: 0;
- }
- /*
- Dashboard
- =========
- */
- .dashboard + .sidebar {
- display: none;
- }
- /*
- Ticket Overviews
- =================
- */
- .bulkAction,
- .overviews .checkbox-replacement,
- .overviews .overview-header,
- .table-checkbox {
- display: none;
- }
- /*
- Ticket Zoom
- ===========
- */
- .ticketZoom-controls,
- .scrollPageHeader,
- .article-new,
- .article-actions,
- .tabsSidebar,
- .attributeBar,
- .textBubble-overflowContainer {
- display: none;
- }
- .tabsSidebar-sidebarSpacer {
- margin: 0;
- transition: none;
- }
- .textBubble-content {
- height: auto !important;
- }
- .tabsSidebar-tabsSpacer {
- padding: 0 !important;
- overflow: visible;
- }
- .ticket-article,
- .article-new {
- max-width: none;
- padding-left: 0;
- padding-right: 0;
- }
- .ticketZoom {
- background: none;
- }
- .textBubble {
- padding: 20px;
- border: 1px solid !important;
- background: white !important;
- }
- .bubble-arrow:after {
- background: white !important;
- border-color: black !important;
- }
- .article-meta {
- color: black;
- background: none;
- border: 1px dashed hsl(240,2%,60%);
- padding: 11px 10px 1px;
-
- &.top {
- border-bottom-width: 0;
- }
-
- &.bottom {
- border-top-width: 0;
- padding-top: 7px;
- padding-bottom: 3px;
- }
-
- &-clip {
- height: auto !important;
- }
- &-icon {
- fill: currentColor;
- }
- }
- .article-content {
- color: inherit;
-
- a[href]:after {
- content: none !important;
- }
- }
- .article-content-meta {
- opacity: 1 !important;
- display: block !important;
- transform: none !important;
- position: static;
- }
- .attachments.attachments--list {
- border-color: currentColor !important;
- }
- .avatar {
- border: 1px solid black;
- }
|