-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPdfReader.razor.css
More file actions
107 lines (90 loc) · 1.86 KB
/
PdfReader.razor.css
File metadata and controls
107 lines (90 loc) · 1.86 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.bb-pdf-reader {
--bb-pdf-view-height: 600px;
--bb-pdf-toolbar-height: 60px;
--bb-toolbar-background-color: #3c3c3c;
position: relative;
height: calc(var(--bb-pdf-view-height) + var(--bb-pdf-toolbar-height));
}
.bb-view-toolbar {
height: var(--bb-pdf-toolbar-height);
background-color: var(--bb-toolbar-background-color);
display: flex;
align-items: center;
color: #fff;
}
.bb-view-toolbar.init > div {
visibility: hidden;
}
.bb-view-title {
display: flex;
align-items: center;
flex-wrap: nowrap;
padding: 0 1rem;
}
.bb-view-icon {
margin: 0 .5rem;
padding: .5rem;
cursor: pointer;
}
.bb-view-icon.disabled {
color: #6c757d;
}
.bb-view-bar {
margin-inline-end: 2rem;
}
.bb-view-subject {
white-space: nowrap;
display: block;
overflow: hidden;
text-overflow: ellipsis;
max-width: 300px;
}
.bb-view-body {
flex: 1;
min-width: 0;
width: 1%;
display: flex;
align-items: center;
justify-content: center;
}
.bb-view-body.fit-page .bb-view-fit-page {
display: none;
}
.bb-view-body.fit-page .bb-view-fit-width {
display: block;
}
.bb-view-body .bb-view-fit-width {
display: none;
}
.bb-view-num, .bb-view-scale {
width: 36px;
text-align: center;
background-color: #000;
border: none;
color: #fff;
}
.bb-view-scale {
width: 40px;
}
.bb-view-slash {
margin: 0 .5rem;
}
.bb-view-divider {
width: .6px;
height: calc(var(--bb-pdf-toolbar-height) / 3);
background-color: #777;
margin: 0 1rem;
}
.bb-view-controls {
display: flex;
align-items: center;
justify-content: center;
padding: 0 1rem;
}
.bb-view-container {
overflow: auto;
position: absolute;
background-color: #000;
width: 100%;
height: var(--bb-pdf-view-height);
}