|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+/* bring the browser window to the top */
|
|
|
2
|
+#browser{-moz-box-ordinal-group:0!important;order:0!important;}
|
|
|
3
|
+#navigator-toolbox-background{-moz-box-ordinal-group:1!important;order:1!important;}
|
|
|
4
|
+
|
|
|
5
|
+#urlbar{--urlbar-height:16px!important;}
|
|
|
6
|
+
|
|
|
7
|
+/*fix pop-ups opening below window*/
|
|
|
8
|
+#urlbar[open]
|
|
|
9
|
+{
|
|
|
10
|
+width: -moz-available !important;
|
|
|
11
|
+display: flex !important;
|
|
|
12
|
+flex-direction: column-reverse; /* use 'column' if you want to type the URL in center*/
|
|
|
13
|
+bottom: -1px !important;
|
|
|
14
|
+top: auto !important;
|
|
|
15
|
+}
|
|
|
16
|
+
|
|
|
17
|
+.urlbarView-body-inner { border-top: none !important;}
|
|
|
18
|
+.urlbarView-results
|
|
|
19
|
+{
|
|
|
20
|
+padding-block: 0px !important;
|
|
|
21
|
+white-space: nowrap !important;
|
|
|
22
|
+}
|
|
|
23
|
+.urlbarView-row-inner
|
|
|
24
|
+{
|
|
|
25
|
+padding-block: 0px !important;
|
|
|
26
|
+}
|
|
|
27
|
+
|
|
|
28
|
+:root toolbarbutton.bookmark-item{margin-inline:0px!important;}
|
|
|
29
|
+
|
|
|
30
|
+#personal-toolbar-empty-description,toolbarbutton.bookmark-item:not(.subviewbutton)
|
|
|
31
|
+{
|
|
|
32
|
+margin:0px!important;
|
|
|
33
|
+padding:var(--bookmark-block-padding) 0px !important;
|
|
|
34
|
+}
|
|
|
35
|
+
|
|
|
36
|
+:root{
|
|
|
37
|
+--toolbarbutton-outer-padding: 0 !important;
|
|
|
38
|
+--toolbarbutton-inner-padding: 0 !important;
|
|
|
39
|
+--bookmark-block-padding: 0 !important;
|
|
|
40
|
+--toolbar-start-end-padding: 0 !important;
|
|
|
41
|
+--tab-min-height: 0 !important;
|
|
|
42
|
+--identity-box-margin-inline: 0 !important;
|
|
|
43
|
+--tab-border-radius: 256PX !important;
|
|
|
44
|
+--inline-tab-padding: 0 !important;
|
|
|
45
|
+--tab-block-margin: 0 !important;
|
|
|
46
|
+--urlbar-container-padding: 0 !important;
|
|
|
47
|
+--urlbar-margin-inline: 0 !important;
|
|
|
48
|
+--urlbar-min-height: max(0px, 0em) !important;
|
|
|
49
|
+--tabs-navbar-shadow-size: 1px !important;
|
|
|
50
|
+--urlbarView-row-gutter: 0px !important;
|
|
|
51
|
+--urlbarView-favicon-width: 16px !important;
|
|
|
52
|
+--urlbarView-result-button-size:16PX!important;
|
|
|
53
|
+--tab-shadow-max-size: 0px !important;
|
|
|
54
|
+}
|
|
|
55
|
+toolbar .toolbaritem-combined-buttons { margin-inline: 0px !important;}
|
|
|
56
|
+
|
|
|
57
|
+.toolbarbutton-badge {
|
|
|
58
|
+ box-sizing: content-box !important;
|
|
|
59
|
+ overflow: hidden !important;
|
|
|
60
|
+ white-space: nowrap !important;
|
|
|
61
|
+ background-color: #FFFFFFFF !important;
|
|
|
62
|
+ font-size: 8px !important;
|
|
|
63
|
+ font-weight: initial !important;
|
|
|
64
|
+ padding: 0px 0px 0px 0px !important;
|
|
|
65
|
+ color: #A8A8A8 !important;
|
|
|
66
|
+ text-shadow: black !important;
|
|
|
67
|
+ border-radius: 2px !important;
|
|
|
68
|
+ box-shadow: 0 1px 0 hsla(0, 100%, 100%, .2) inset,
|
|
|
69
|
+ 0 -1px 0 hsla(0, 0%, 0%, .1) inset,
|
|
|
70
|
+ 0 1px 0 hsla(206, 50%, 10%, .2);
|
|
|
71
|
+ margin: 0px 0px 0px !important;
|
|
|
72
|
+ margin-inline-end: 0px !important;
|
|
|
73
|
+ min-width: 0px !important;
|
|
|
74
|
+ max-width: 16px !important;
|
|
|
75
|
+ line-height: -moz-block-height !important;
|
|
|
76
|
+ text-align: center !important;
|
|
|
77
|
+ align-self: center !important;
|
|
|
78
|
+ justify-self: center !important;
|
|
|
79
|
+}
|
|
|
80
|
+
|
|
|
81
|
+toolbar {
|
|
|
82
|
+ min-height: 0px !important;
|
|
|
83
|
+ max-height: 16px !important;
|
|
|
84
|
+}
|
|
|
85
|
+.titlebar-spacer[type="pre-tabs"],.titlebar-spacer[type="post-tabs"]{width:0px !important;}
|
|
|
86
|
+
|
|
|
87
|
+
|
|
|
88
|
+/* Status panel */
|
|
|
89
|
+
|
|
|
90
|
+#statuspanel-label {
|
|
|
91
|
+ margin: 0px !important;
|
|
|
92
|
+ padding: 0px 0px !important;
|
|
|
93
|
+ background-color: #FFFFFFFF !important;
|
|
|
94
|
+ border: 1px none RGBA(247,247,247,1.0) !important;
|
|
|
95
|
+ border-top-style: solid !important;
|
|
|
96
|
+ color: RGBA(167,167,167,1.0) !important;
|
|
|
97
|
+ text-shadow: none !important;
|
|
|
98
|
+}
|
|
|
99
|
+
|
|
|
100
|
+.tabbrowser-tab {
|
|
|
101
|
+ margin: 0 !important;
|
|
|
102
|
+ padding: 0 0px !important;
|
|
|
103
|
+}
|
|
|
104
|
+
|
|
|
105
|
+
|
|
|
106
|
+/* ROOT - VARS */
|
|
|
107
|
+*|*:root {
|
|
|
108
|
+ --tab-min-height: 16px !important; /* adjust */
|
|
|
109
|
+ --tab-min-width: 16px !important; /* adjust */
|
|
|
110
|
+}
|
|
|
111
|
+
|
|
|
112
|
+/* TABS: height */
|
|
|
113
|
+#tabbrowser-tabs,
|
|
|
114
|
+#tabbrowser-tabs > #tabbrowser-arrowscrollbox,
|
|
|
115
|
+.tabbrowser-tabs .tabbrowser-tab {
|
|
|
116
|
+ min-height: var(--tab-min-height) !important;
|
|
|
117
|
+ max-height: var(--tab-min-height) !important;
|
|
|
118
|
+}
|
|
|
119
|
+
|
|
|
120
|
+
|
|
|
121
|
+
|
|
|
122
|
+ :root{
|
|
|
123
|
+ --toolbarbutton-inner-padding:0px !important;
|
|
|
124
|
+ --tab-min-height: 16px !important;
|
|
|
125
|
+ }
|
|
|
126
|
+ .titlebar-button{ padding-block: 0px !important; }
|
|
|
127
|
+ #urlbar-container, #search-container{ padding-block: 0px !important; }
|
|
|
128
|
+
|
|
|
129
|
+
|
|
|
130
|
+
|
|
|
131
|
+.tab-label-container{display:none!important;}
|
|
|
132
|
+
|
|
|
133
|
+/* Resizes tabs to minimum width */
|
|
|
134
|
+.tabbrowser-tab{
|
|
|
135
|
+ max-width: 16px !important;
|
|
|
136
|
+ min-width: 16px !important;
|
|
|
137
|
+}
|
|
|
138
|
+
|
|
|
139
|
+
|
|
|
140
|
+.tabbrowser-tab .tab-close-button { display:none !important; }
|