Fix printview for browsers (Issue#2162)
This patch fixes the currently broken view of ticket zoom (when you try to print a ticket). All "read more" tags will be "open" so that you get the full artcle content. The scrollbar is now hidden and you can also print all pages. Verified on current Chrome and Firefox. In case this brakes the print overview within the browser, I'll fix that on Monday - promise!
This commit is contained in:
parent
81a6fc3d97
commit
a370d01e29
1 changed files with 21 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
html {
|
||||||
|
height: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
body, #app, .table-column-head, .fullscreenMessage, .horizontal, .tabsSidebar-holder,
|
||||||
|
.ticketZoom-controls {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|
||||||
#app > *:not(.content):not(.active),
|
#app > *:not(.content):not(.active),
|
||||||
#app > .hide {
|
#app > .hide {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -60,3 +69,15 @@
|
||||||
.article-meta .article-meta-key {
|
.article-meta .article-meta-key {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.textBubble-content {
|
||||||
|
height: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-padding {
|
||||||
|
overflow: visible !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabsSidebar-tabsSpacer {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
Loading…
Reference in a new issue