-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuserChrome.css
159 lines (134 loc) · 3.89 KB
/
userChrome.css
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
/* Original:
Firefox Custom Font Size by aireca v1.01
http://forums.mozillazine.org/viewtopic.php?p=12890981&sid=c1ff584176b806003e646227a4fc9a0f#p12890981
This goes in your firefox profile in the `chrome` directory.
*/
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Window font */
window, page, wizard, prefwindow {
font-size: 10pt !important; }
/* Dialog font */
dialog {
font-size: 10pt !important; }
/* Tabs Toolbar font */
#TabsToolbar{
font-size: 10pt !important;
font-family: "Helvetica Neue" !important;
font-weight: 500 !important;}
/* Tab text font */
.tab-text {
font-size: 10pt !important;
font-family: "Helvetica Neue" !important;
font-weight: 500 !important;}
/* Textbox font */
textbox {
font-size: 10pt !important; }
/* Toolbar font */
toolbar {
font-size: 10pt !important; }
/* Address bar font */
/* Lucas Pre-Firefox v133 this was: #urlbar { */
.urlbar-input-container, .urlbarView {
font-size: 10pt !important; }
/* Personal Titlebar Title font */
#personal-titlebar{
font-size: 10pt !important;}
/* Status bar font */
#status-bar {
font-size: 10pt !important; }
/* Sidebars Font */
#sidebar-box *,
#bookmarksPanel *, #bookmarks-view *,
#history-panel *, #historyTree, sidebarheader {
font-size: 10pt !important; }
/* Trees font */
tree, treechildren {
font-size: 10pt !important; }
/* Buttons font */
button {
font-size: 10pt !important; }
/* Preferences font */
#BrowserPreferences {
font-size: 10pt !important; }
/* About Addons fonts */
.name-container {
font-size: 16pt !important; }
#detail-name-container {
font-size: 20pt !important; }
.detail-view-container {
font-size: 14pt !important; }
.category {
font-size: 11.5pt !important; }
/* Lucas: these are for the 'View in local/production...' bookmarklets on the browser toolbar.
/* Hide the all-tabs button */
#alltabs-button {
display: none;
}
/* Hide favicons on the bookmarks toolbar */
.bookmark-item > .toolbarbutton-icon {
display: none !important;
}
/* Lucas: Firefox 57 Tweaks: */
/* Make tab padding smaller to fit more in. */
.tab-content[pinned] {padding-left: 9px !important; padding-right: 9px !important;}
.tab-content:not([pinned]) {padding-left: 5px !important; padding-right: 5px !important;}
/* Lucas Hide TreeStyleTab sidebar header */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
display: none;
}
/* Lucas: the stuff below goes in the Tree Style Tab 'Advanced' styles on the add-on preferences page:
//Unsets the default browser style (I like the old TST styling
:root {
--browser-background: unset;
--browser-bg-base: unset;
--browser-bg-less-lighter: unset;
--browser-bg-lighter: unset;
--browser-bg-more-lighter: unset;
--browser-bg-lightest: unset;
--browser-bg-less-darker: unset;
--browser-bg-darker: unset;
--browser-bg-more-darker: unset;
--browser-fg: unset;
--browser-fg-active: unset;
--browser-border: unset;
--browser-header-url: unset;
--browser-bg-url: unset;
--browser-bg-for-header-image: unset;
--browser-bg-hover-for-header-image: unset;
--browser-bg-active-for-header-image: unset;
--browser-textshadow-for-header-image: unset;
--browser-tab-highlighter: unset;
--browser-loading-indicator: unset;
--theme-colors-frame: unset;
--theme-colors-tab_background_text: unset;
--theme-images-theme_frame: unset;
}
.tab:not(.active) .closebox {
display: none;
}
.tab .label {
font-size: 9pt
}
.tab {
padding: 3px;
}
*/
/* Reduce minimum width of the sidebar */
#sidebar {
min-width: 100px !important;
}
/* searchbar font size */
#searchbar {
font-size: 10pt !important;
}
/* searchbar suggestion font size for Firefox ~70+*/
.autocomplete-richlistitem .ac-title {
font-size: 10pt !important;
}
/* Firefox 72+ fixes to make status and findbar have the same size as the rest of the UI */
.findbar-container {
font-size: 10pt !important;
}
#statuspanel-label {
font-size: 10pt !important;
}