-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
42 lines (40 loc) · 835 Bytes
/
Copy pathstyles.css
File metadata and controls
42 lines (40 loc) · 835 Bytes
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
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Ticket Styles for Printing */
@media print {
body * {
visibility: hidden;
}
#ticket-modal-content, #ticket-modal-content * {
visibility: visible;
}
#ticket-modal-content {
position: absolute;
left: 0;
top: 0;
width: 100%;
margin: 0;
padding: 0;
box-shadow: none;
border: none;
}
.no-print {
display: none !important;
}
}
.glass-effect {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}