tangled
alpha
login
or
join now
da157.id
/
potatofox
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
fix: sidebar borderless margin
closes #23
awwpotato
1 year ago
0e49e1e3
1420ad33
+7
-4
2 changed files
expand all
collapse all
unified
split
chrome
browser
sidebar.css
content
sidebery.css
+2
-3
chrome/browser/sidebar.css
···
19
19
20
20
#sidebar-box {
21
21
min-width: var(--uc-sidebar-width) !important;
22
22
-
margin-bottom: var(--uc-content-margin-bottom) !important;
23
23
-
@media (-moz-bool-pref: "uc.tweak.borderless") {
24
24
-
margin-bottom: var(--uc-sidebar-margin) !important;
22
22
+
@media not (-moz-bool-pref: "uc.tweak.borderless") {
23
23
+
margin-bottom: var(--uc-content-margin-bottom) !important;
25
24
}
26
25
margin-top: var(--uc-content-margin-top) !important;
27
26
&[positionend="true"] {
+5
-1
chrome/content/sidebery.css
···
75
75
@media not (-moz-bool-pref: "uc.tweak.sidebery.top-navbar") {
76
76
.top-horizontal-box {
77
77
order: 100 !important;
78
78
-
margin-bottom: 0px !important;
78
78
+
margin-bottom: var(--tabs-margin) !important;
79
79
}
80
80
81
81
.NavigationBar.-top .hidden-panels-popup {
···
87
87
.NavigationBar.-top .hidden-panels-popup-layer::before {
88
88
display: none !important;
89
89
background-color: transparent !important;
90
90
+
}
91
91
+
} @media (-moz-bool-pref: "uc.tweak.sidebery.top-navbar") {
92
92
+
.top-horizontal-box {
93
93
+
margin-top: var(--tabs-margin) !important;
90
94
}
91
95
}
92
96