this repo has no description
1/* SPDX-License-Identifier: MPL-2.0 */
2/* Copyright (c) 2024 0xda157 <0xda157@voidq.com> */
3
4:root:has(.pdfViewer) {
5 #viewerContainer {
6 inset: 0 !important;
7
8 #viewer .page:first-of-type {
9 margin-top: 40px !important;
10 }
11 }
12
13 #toolbarContainer {
14 position: sticky !important;
15 width: auto !important;
16 margin-top: var(--uc-small-floating-margin) !important;
17 margin-inline: var(--uc-small-floating-margin) !important;
18 border-radius: var(--uc-radius);
19 box-shadow: none !important;
20 border: none !important;
21 background: color-mix(
22 in oklab,
23 var(--toolbar-bg-color),
24 transparent 10%
25 ) !important;
26 backdrop-filter: blur(var(--uc-blur-radius)) !important;
27
28 #loadingBar {
29 top: unset !important;
30 bottom: 0 !important;
31 border: none !important;
32 }
33
34 button {
35 border-radius: var(--uc-button-radius) !important;
36 }
37 }
38
39 #sidebarContainer {
40 margin: 5px;
41 margin-top: 10px;
42 border-radius: var(--uc-radius) !important;
43 background-color: color-mix(
44 in oklab,
45 var(--sidebar-narrow-bg-color),
46 transparent 10%
47 ) !important;
48 backdrop-filter: blur(var(--uc-blur-radius));
49 * {
50 box-shadow: none !important;
51 }
52 #toolbarSidebar {
53 background-color: transparent !important;
54 }
55
56 button,
57 .thumbnail.selected {
58 border-radius: var(--uc-button-radius) !important;
59 }
60 }
61}