Ticket print: Firefox multi-page fix, remove colors, show meta
Incorporates the Firefox multi-page fixes (display: flex print bug) from @MrGeneration see #2162
This commit is contained in:
parent
cc4ce92072
commit
000c188d0c
1 changed files with 96 additions and 7 deletions
|
@ -11,11 +11,29 @@
|
||||||
border-bottom: 1px solid hsl(0,0%,90%);
|
border-bottom: 1px solid hsl(0,0%,90%);
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
html {
|
||||||
body {
|
|
||||||
height: auto;
|
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
|
||||||
|
@ -59,13 +77,84 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabsSidebar-sidebarSpacer {
|
.tabsSidebar-sidebarSpacer {
|
||||||
margin-right: 0;
|
margin: 0;
|
||||||
}
|
transition: none;
|
||||||
|
|
||||||
.article-meta .article-meta-key {
|
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.textBubble-content {
|
.textBubble-content {
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabsSidebar-tabsSpacer {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
}
|
}
|
Loading…
Reference in a new issue