this repo has no description
nix
1#TabsToolbar {
2 visibility: collapse !important;
3}
4
5/* TST */
6#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]
7 #sidebar-header {
8 display: none;
9}
10
11.notSecure[pageproxystate="valid"],
12.notSecure[pageproxystate="valid"] > #identity-icon-box {
13 animation-name: notsecure;
14 animation-duration: 3s;
15 animation-iteration-count: infinite;
16}
17
18@keyframes notsecure {
19 10% {
20 background-color: red;
21 }
22 100% {
23 background-color: #4d0404;
24 }
25}
26
27/** Sidebery */
28/**
29* Hide sidebar-panel-header (sidebar.revamp: true)
30*/
31#sidebar-panel-header {
32 display: none;
33}
34
35/**
36* Dynamic styles
37*
38* Choose when styles below will be activated (comment/uncomment line)
39* - When Sidebery set title preface "[Sidebery] "
40* - When Sidebery sidebar is active
41*/
42#main-window[titlepreface="[Sidebery] "],
43#main-window:has(
44 #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"][checked="true"]
45) {
46 /* Hide horizontal native tabs toolbar */
47 #TabsToolbar > * {
48 display: none !important;
49 }
50
51 /* Hide top window border */
52 #nav-bar {
53 border-color: transparent !important;
54 }
55
56 /* Hide new Firefox sidebar, restyle addon's sidebar */
57 #sidebar-main,
58 #sidebar-launcher-splitter {
59 display: none !important;
60 }
61 #sidebar-box {
62 padding: 0 !important;
63 }
64 #sidebar-box #sidebar {
65 box-shadow: none !important;
66 border: none !important;
67 outline: none !important;
68 border-radius: 0 !important;
69 }
70 #sidebar-splitter {
71 --splitter-width: 3px !important;
72 min-width: var(--splitter-width) !important;
73 width: var(--splitter-width) !important;
74 padding: 0 !important;
75 margin: 0 calc(-1 * var(--splitter-width) + 1px) 0 0 !important;
76 border: 0 !important;
77 opacity: 0 !important;
78 }
79
80 /* Update background color of the #browser area (it's visible near the
81 rounded corner of the web page) so it blends with sidebery color with
82 vertical nav-bar. */
83 /* #browser {
84 background-color: var(--lwt-accent-color) !important;
85 background-image: none !important;
86 } */
87
88 /* Hide sidebar header (sidebar.revamp: false) */
89 #sidebar-header {
90 display: none !important;
91 }
92
93 /* Uncomment the block below to show window buttons in Firefox nav-bar
94 (maybe, I didn't test it on non-linux-tiled-wm env) */
95 /* #nav-bar > .titlebar-buttonbox-container,
96 #nav-bar > .titlebar-buttonbox-container > .titlebar-buttonbox {
97 display: flex !important;
98 } */
99
100 /* Uncomment one of the lines below if you need space near window buttons */
101 /* #nav-bar > .titlebar-spacer[type="pre-tabs"] { display: flex !important; } */
102 /* #nav-bar > .titlebar-spacer[type="post-tabs"] { display: flex !important; } */
103}