all repos — dotfiles @ 6884794d8b05bcdeee7b001f9da8cfd55ed207c7

random configuration files

userChrome.css (raw)

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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@namespace html url("http://www.w3.org/1999/xhtml");

/**
 * Due way style sheets are loaded, some styles in this sheet may not apply. To
 * ensure that our styles work as intended, we load additional CSS via XBL and
 * JavaScript.
 */


/**Next two change new tab transition color from the normal 'white flash'*/
:root {
  --mcolor:#000000;
  --tcolor:#ffffff;
  --in-content-page-background:#0c0c0d /*tab flash on new tab*/
}

/*changes "flash" on tab open color*/
#browser vbox#appcontent tabbrowser,
#content,
#tabbrowser-tabpanels,
browser[type=content-primary],
browser[type=content] > html

{
background: var(--in-content-page-background)!important
}

/* HIDE DINOSAUR SHIT ---------------------------------------------------------------------------------------- */
#PanelUI-button,
#home-button,#reload-button,#stop-button,#forward-button,#back-button,
#customizableui-special-spring1,#customizableui-special-spring2,#library-button,
#sidebar-button,.tabs-newtab-button,.tab-close-button,.tab-icon-image,
#identity-box,.urlbar-history-dropmarker,#pageActionButton,#pocket-button,#star-button,
#wrapper-alltabs-button,#wrapper-new-tab-button,#wrapper-customizableui-special-spring1,
#wrapper-customizableui-special-spring2,#wrapper-downloads-button,
#nav-bar-overflow-button,#downloads-button,.titlebar-spacer{
  visibility: collapse !important;
}

#tracking-protection-icon-box
{
  position: absolute !important;
  margin-top: 5px !important;
  margin-left: -75px !important;
}

.urlbar-icon{
    visibility: collapse !important;
}
/* hides a ugly black bottom background under each unfocused tab and urlbar*/
#navigator-toolbox{
  --tabs-border-color: none !important;
    --toolbox-border-bottom-color: none !important;
    border: none !important;
    margin: none !important;
    padding: none !important;
}
/* Modify to change window drag space width */
:root[tabsintitlebar="true"] #nav-bar{ --window-drag-space-width: 24px }

.titlebar-buttonbox-container{
  position: fixed;
  top:0;
  right:0;
  height: 40px;
}
/* ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------- */

/* TABBAR ---------------------------------------------------------------------------------------------------- */
/* 100% tabs width */
.tabbrowser-tab[fadein]:not([pinned]) {
  max-width: 100% !important;
  font-size: 1em !important;
}
/* hides white borders between tabs */
.tabbrowser-tab::after, .tabbrowser-tab::before {
   border:none !important;
}
/* center tab text title */
.tab-label {
  -moz-box-flex: 1 !important; 
  text-align: center !important;
    color : var(--tcolor);
}
.tab-throbber{
    margin: 0!important;
    padding: 0!important;
}

.tab-line{
    visibility: collapse !important;
}

.tab-background {
  border: none !important;
    background-attachment: none!important;
    background-color: var(--mcolor) !important;
    background-image: none!important;
}

.tabbrowser-tab:not([selected]) .tab-background {
  border: none !important;
    background-color: #000000 !important;
}

.tab-label:not([selected])
{
  color: #797979 !important;
}
/* ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------- */


/* URLBAR ---------------------------------------------------------------------------------------------------- */
#nav-bar, #PersonalToolbar
{
  background-color: #000000 !important;
  color: #797979 !important;
  background-image: none !important;
}

#urlbar{
  padding-left: 75px !important;
  font-size: 1em !important;
  text-align: center !important;
  color: var(--tcolor) !important; 
  background-color: var(--mcolor) !important;
  border: none !important;
  box-shadow: none !important;
  --toolbarbutton-border-radius: 0px !important;
  margin: 0!important;
}
/* ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------- */

/* AUTO HIDE TABBAR -------------------------------------------------------------------------------------------*/
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
  min-height: 0 !important;
}

#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"] {
  visibility: collapse;
}
/* ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------- */

/* AUTO HIDE URLBAR -------------------------------------------------------------------------------------------*/
/* keep visible when urlbar is focused navbar is hovered or menubar/customization is open */
/*
#nav-bar:not([customizing]){
  visibility: hidden;
  margin-top: -28px !important;;
  transition: visibility 0s linear 0.5s, margin-top 0s linear 0.5s;
  transition-duration: 0.20s;
}
#urlbar:focus,
#navigator-toolbox:hover > #nav-bar:not([customizing]),
#toolbar-menubar:not([inactive="true"]) ~ #nav-bar:not([customizing]) {
  visibility: visible;
  margin-top: 0px !important;;
  transition-delay: 2s;
}*/

/*
scrollbar {
  z-index: 2147483647 !important;
  position: relative !important;
  transition: all 0s !important; 
}
scrollbar,
scrollbar * {
  -moz-appearance: none !important;
  margin: 0px !important;
  padding: 0px !important;
  border: 0px !important;
  box-shadow: none !important;

}

:not(select)>scrollbar[orient="vertical"],
html>scrollbar[orient="vertical"] {
  -moz-margin-start: -12px !important;
  max-width: 12px !important;
  min-width: 12px !important;

  background: linear-gradient( rgba(0,0,0,0.2), rgba(0,0,0,0.2) );
  background-size: 1px 1px;
  background-repeat: repeat-y !important;
  background-position: 50% 0% !important;
  cursor: row-resize;
}

scrollbar[orient="horizontal"] {
  margin-top: -12px !important;
  max-height: 12px !important;
  min-height: 12px !important;
  
  background: linear-gradient( rgba(0,0,0,0.2), rgba(0,0,0,0.2) );
  background-size: 1px 1px;
  background-repeat: repeat-x;
  background-position: 0% 50%;
  cursor: col-resize;
}

scrollbar thumb[orient="vertical"] {
  min-height: 24px !important;
  width: 12px !important;
  min-width: 12px !important;
  max-width: 12px !important;
}

scrollbar thumb[orient="horizontal"] {
  min-width: 24px !important;
  height: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
}

scrollbar thumb {
  border-radius: 6px !important;
  background: transparent !important;
  border: 2px solid rgba(0,255,255,0) !important;
  box-shadow: 0 0 0 8px #272b35 inset !important;
  transition: all 0s !important;
  opacity: 1 !important; 
}

scrollbar:hover thumb,
scrollbar thumb:active {
  box-shadow: 0 0 0 8px #cd23b9 inset !important;
}
*/
/* no buttons */
/*scrollbar scrollbarbutton{
  min-height: 0px !important;
  min-width: 0px !important;
  max-height: 12px !important;
  max-width: 12px !important;
  height: 0px !important;
  width: 0px !important;
}*/

/* autohide */
/*scrollbar:not(:hover) { 
  opacity: 0 !important; 
  transition: all .5s !important; 
}*/