-
Notifications
You must be signed in to change notification settings - Fork 754
/
Copy pathprint.scss
62 lines (56 loc) · 1.18 KB
/
print.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@media print {
body,
html,
.messages-layout {
background: #fff;
}
#LeftColumn,
#RightColumn-wrapper,
.ChatOrUserPicker,
#Notifications,
.Modal,
.ActiveCallHeader,
.unread-count,
#middle-column-portals,
.header-tools,
.ScrollDownButton,
.middle-column-footer {
display: none !important;
}
#MiddleColumn {
border-left: none !important;
}
html,
body,
#root,
#Main,
#MiddleColumn,
.MessageList,
.messages-layout,
.Transition,
.Transition > .Transition_slide {
height: auto !important;
overflow: visible !important;
display: block !important;
position: static !important;
margin: 0 !important;
padding: 0 !important;
width: 100% !important;
max-width: 100% !important;
transform: none !important;
}
.messages-container {
max-width: 100rem !important;
width: 100% !important;
}
.MessageList .sticky-date > span,
.MessageList .local-action-message > span,
.MessageList .ActionMessage > span,
.MessageList .empty > span {
background: var(--color-background-own) !important;
color: var(--color-text) !important;
}
.hide-on-print {
visibility: hidden !important;
}
}