├── chrome
├── icons
│ ├── vertical-line.svg
│ ├── play.svg
│ ├── tab-bottom-corner-left.svg
│ ├── tab-bottom-corner-right.svg
│ ├── tab.svg
│ ├── video-clip.svg
│ ├── command-frames.svg
│ ├── quit.svg
│ ├── window.svg
│ ├── book.svg
│ ├── command-responsivemode.svg
│ ├── developer.svg
│ ├── restore-session.svg
│ ├── video.svg
│ ├── link-square.svg
│ ├── sign-out.svg
│ ├── tab-copy.svg
│ ├── eye-show.svg
│ ├── checkmark-circle.svg
│ ├── video-snapshot.svg
│ ├── send-to-device.svg
│ ├── copy-select.svg
│ ├── movetowindow-16.svg
│ ├── tab-multiple.svg
│ ├── pin-tab.svg
│ ├── arrow-repeat-all.svg
│ ├── share.svg
│ ├── performance.svg
│ ├── unpin-tab.svg
│ ├── container-openin-16.svg
│ ├── arrow-sort-down-lines.svg
│ ├── broom.svg
│ ├── arrow-swap.svg
│ ├── calendar-agenda.svg
│ ├── code.svg
│ ├── book-add.svg
│ ├── select-all-on.svg
│ ├── star-line-horizontal.svg
│ ├── search-file.svg
│ ├── image.svg
│ ├── image-alt-text.svg
│ ├── image-copy.svg
│ ├── eye-hide.svg
│ ├── screenshot.svg
│ ├── paste.svg
│ ├── bug.svg
│ ├── text-direction-horizontal-ltr.svg
│ ├── document-landscape-split-hint.svg
│ ├── text-sort-ascending.svg
│ ├── send.svg
│ ├── key-multiple.svg
│ ├── password.svg
│ ├── password-hide.svg
│ ├── image-arrow-counterclockwise.svg
│ ├── resize-image.svg
│ ├── image-add.svg
│ ├── webdeveloper.svg
│ ├── text-proofing-tools.svg
│ ├── time-picker.svg
│ └── text-number-format.svg
└── userChrome.css
├── user.js
├── README.md
└── LICENSE
/chrome/icons/vertical-line.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/chrome/icons/play.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/tab-bottom-corner-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/chrome/icons/tab-bottom-corner-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/tab.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/video-clip.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/command-frames.svg:
--------------------------------------------------------------------------------
1 |
4 |
7 |
--------------------------------------------------------------------------------
/chrome/icons/quit.svg:
--------------------------------------------------------------------------------
1 |
4 |
7 |
--------------------------------------------------------------------------------
/chrome/icons/window.svg:
--------------------------------------------------------------------------------
1 |
4 |
7 |
--------------------------------------------------------------------------------
/chrome/icons/book.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/chrome/icons/command-responsivemode.svg:
--------------------------------------------------------------------------------
1 |
4 |
8 |
--------------------------------------------------------------------------------
/chrome/icons/developer.svg:
--------------------------------------------------------------------------------
1 |
4 |
7 |
--------------------------------------------------------------------------------
/chrome/icons/restore-session.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/video.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/link-square.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/chrome/icons/sign-out.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/tab-copy.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/chrome/icons/eye-show.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/chrome/icons/checkmark-circle.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/video-snapshot.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/send-to-device.svg:
--------------------------------------------------------------------------------
1 |
4 |
8 |
--------------------------------------------------------------------------------
/chrome/icons/copy-select.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/movetowindow-16.svg:
--------------------------------------------------------------------------------
1 |
4 |
8 |
--------------------------------------------------------------------------------
/chrome/icons/tab-multiple.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/chrome/icons/pin-tab.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/arrow-repeat-all.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/share.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/performance.svg:
--------------------------------------------------------------------------------
1 |
4 |
8 |
--------------------------------------------------------------------------------
/chrome/icons/unpin-tab.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/container-openin-16.svg:
--------------------------------------------------------------------------------
1 |
4 |
10 |
--------------------------------------------------------------------------------
/chrome/icons/arrow-sort-down-lines.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/broom.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/user.js:
--------------------------------------------------------------------------------
1 | // ** Theme Related Options ****************************************************
2 | // userchrome.css usercontent.css activate
3 | user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
4 |
5 | // Fill SVG Color
6 | user_pref("svg.context-properties.content.enabled", true);
7 |
8 | // CSS Blur Filter - 88 Above
9 | user_pref("layout.css.backdrop-filter.enabled", true);
10 |
11 | // Restore Compact Mode - 89 Above
12 | user_pref("browser.compactmode.show", true);
13 |
14 | // about:home Search Bar
15 | // user_pref("browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar", false);
16 |
17 | // Enable closetab to always be displayed
18 | user_pref("browser.tabs.tabMinWidth", 0);
19 | user_pref("browser.tabs.tabClipWidth", 0);
20 |
21 | // ** Useful Options ***********************************************************
22 | // Integrated calculator at urlbar
23 | user_pref("browser.urlbar.suggest.calculator", true);
24 |
--------------------------------------------------------------------------------
/chrome/icons/arrow-swap.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/chrome/icons/calendar-agenda.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/code.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/book-add.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/select-all-on.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/star-line-horizontal.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/search-file.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/image.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/chrome/icons/image-alt-text.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/image-copy.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/eye-hide.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/screenshot.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/paste.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/chrome/icons/bug.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/text-direction-horizontal-ltr.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/document-landscape-split-hint.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/chrome/icons/text-sort-ascending.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/send.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
45 |
--------------------------------------------------------------------------------
/chrome/icons/key-multiple.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/password.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/chrome/icons/password-hide.svg:
--------------------------------------------------------------------------------
1 |
4 |
10 |
--------------------------------------------------------------------------------
/chrome/icons/image-arrow-counterclockwise.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/resize-image.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/image-add.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Maintainer wanted
2 | Looking for someone willing to take over maintainership of the project.
3 |
4 | # What is Technetium?
5 | A focused approach to taming the new Firefox 89+'s Proton design, restituting some elements retired alongside the old Photon UI
6 |
7 | It gets its name from Technetium-99m, agent used for [Single Photon Emission Computed Tomography](https://en.wikipedia.org/wiki/Single-photon_emission_computed_tomography)
8 |
9 |
10 | ### What has been changed?
11 | - Icons have been reintroduced, in a smaller menu
12 | - Compact mode has been re-enabled
13 | - Close-tab icon is always displayed, regardless of the number of open tabs
14 | - Speaker icon always visible on tabs reproducing A/V content
15 | - I wish to thank the [Lepton](https://github.com/black7375/Firefox-UI-Fix)'s developer, whose work served as a base for my less radical restyling
16 |
17 |
18 | ### How to apply Technetium to your Firefox?
19 | - Enter `about:config` in your URL bar; search for the parameter `toolkit.legacyUserProfileCustomizations.stylesheets` and make sure it is set to `true`
20 | - Now enter `about:support` in your URL bar
21 | - Find the `Profile Directory` entry and click the `Open Directory` button
22 | - Copy in that folder the `user.js` file and the `chrome` folder from the Technetium release package
23 | - In `about:support`, click `Clear startup cache...`
24 |
25 | ## Screenshots
26 |
27 | 
28 |
29 | ### Really missing tab separators?
30 | They can sure be restored, by adding [this code](https://pastebin.com/yHggpULx) before the last `}` in `userChrome.css`
31 |
32 | ### In the News
33 | As featured on OMG!Ubuntu!
34 |
35 | https://www.omgubuntu.co.uk/2021/06/dont-like-firefoxs-new-look-try-one-of-these-tweaks
36 |
37 | ### Donations
38 | If you like my work, please consider donating to the Free Software Foundation!
39 | Free software is what allows all this to happen, and they have been championing it (GPL license, GNU, GNOME, GIMP...) for 36 years already!
40 |
41 | https://my.fsf.org/donate
42 |
43 | 
44 |
45 | ### Bugs and Feedback
46 | Please don't hesitate to fill in a bug report if something seems not to be working as expected, or you have any piece of advice
47 |
--------------------------------------------------------------------------------
/chrome/icons/webdeveloper.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/chrome/icons/text-proofing-tools.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/chrome/icons/time-picker.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/chrome/icons/text-number-format.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/chrome/userChrome.css:
--------------------------------------------------------------------------------
1 | @media (-moz-proton) {
2 | /** Darkmode - Color lighter ************************************************/
3 | :root[lwtheme-mozlightdark][lwthemetextcolor="bright"] {
4 | --toolbar-bgcolor: rgba(43, 42, 51, 5) !important; /* Original: rgba(43, 42, 51, 1) */
5 | }
6 |
7 | /* Theme - Compatibility ****************************************************/
8 | /* Header Image */
9 | :root[lwtheme-image] {
10 | background-image: var(--lwt-header-image) !important; /* Original: var(--lwt-header-image) */
11 | background-repeat: no-repeat !important;
12 | background-position: right top !important;
13 | }
14 | :root[lwtheme-image] #navigator-toolbox:-moz-lwtheme {
15 | background-image: var(--lwt-additional-images) !important; /* Original: var(--lwt-header-image), var(--lwt-additional-images); */
16 | background-repeat: var(--lwt-background-tiling) !important;
17 | background-position: var(--lwt-background-alignment) !important;
18 | background-color: unset !important; /* Original: var(--lwt-accent-color) */
19 | }
20 |
21 | /* Navbar Border */
22 | #navigator-toolbox:-moz-lwtheme {
23 | --tabs-border-color: rgba(0,0,0,.3);
24 | }
25 |
26 | /** Windows 7 - Compatibility ***********************************************/
27 | @media (-moz-os-version: windows-win7) {
28 | /* Header Color */
29 | :root:not([lwtheme-image]) #navigator-toolbox:-moz-lwtheme {
30 | background-color: var(--lwt-accent-color) !important;
31 | }
32 | #TabsToolbar:-moz-lwtheme {
33 | color: var(--lwt-text-color) !important;
34 |
35 | /* Remove Aero */
36 | /* Original: radial-gradient(eclipse at bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5) 80%, transparent) */
37 | background-image: unset !important;
38 | }
39 | }
40 |
41 | /** Windows System Default Theme - Use acccent color ************************/
42 | @media (-moz-windows-accent-color-in-titlebar) {
43 | /* Tab Bar */
44 | :root[tabsintitlebar]:not(:-moz-window-inactive, :-moz-lwtheme) .titlebar-color,
45 | :root[tabsintitlebar][lwt-default-theme-in-dark-mode]:not(:-moz-window-inactive) .titlebar-color {
46 | color: -moz-accent-color-foreground;
47 | background-color: -moz-accent-color;
48 | }
49 |
50 | :root[tabsintitlebar]:not(:-moz-window-inactive, :-moz-lwtheme) .toolbar-items,
51 | :root[tabsintitlebar][lwt-default-theme-in-dark-mode]:not(:-moz-window-inactive) .toolbar-items {
52 | --toolbarbutton-icon-fill: -moz-accent-color-foreground;
53 | --toolbarbutton-hover-background: color-mix(in srgb, -moz-accent-color-foreground 10%, transparent);
54 | --toolbarbutton-active-background: color-mix(in srgb, -moz-accent-color-foreground 15%, transparent);
55 | }
56 |
57 | /* URL Bar */
58 | :root[tabsintitlebar]:not(:-moz-window-inactive, :-moz-lwtheme),
59 | :root[tabsintitlebar][lwt-default-theme-in-dark-mode]:not(:-moz-window-inactive) {
60 | --focus-outline-color: -moz-accent-color !important;
61 | }
62 |
63 | :root[tabsintitlebar]:not(:-moz-window-inactive, :-moz-lwtheme) #urlbar[open] > #urlbar-background,
64 | :root[tabsintitlebar][lwt-default-theme-in-dark-mode]:not(:-moz-window-inactive) #urlbar[open] > #urlbar-background {
65 | border-color: color-mix(in srgb, -moz-accent-color 50%, transparent) !important; /* Like: --toolbar-field-focus-border-color */
66 | }
67 | }
68 |
69 | /** Reduce Padding **********************************************************/
70 | /*= Root - Reduce Padding ==================================================*/
71 | :root {
72 | /* Tab Bar */
73 | --inline-tab-padding: 6px !important; /* Original: 8px */
74 |
75 | /* Panel */
76 | --arrowpanel-menuicon-padding: 8px;
77 | --arrowpanel-menuitem-margin: 0 var(--arrowpanel-menuicon-padding) !important; /* Original: 0 8px */
78 | --arrowpanel-menuitem-padding: 5px !important; /* Original: 8px */
79 | --arrowpanel-padding: 0.8em !important; /* Original: 16px or .cui-widget-panel, .cui-widget-panel::part(arrowcontent) => 4px 0 */
80 | }
81 |
82 | :root[uidensity=compact] {
83 | /* Tool Bar */
84 | --toolbarbutton-outer-padding: 2px !important; /* Original: 3px, General is 2px */
85 |
86 | /* Panel */
87 | --arrowpanel-menuitem-padding: 3px !important; /* Original: 8px */
88 | }
89 |
90 | :root[uidensity=touch] {
91 | /* Tab Bar - Like Original */
92 | --proton-tab-block-margin: 4px !important; /* Original: 4px */
93 | --tab-block-margin: 4px !important; /* New version of --proton-tab-block-margin */
94 | --inline-tab-padding: 8px !important; /* Original: 8px */
95 |
96 | /* Panel - Like Original */
97 | --arrowpanel-menuitem-padding: 8px !important; /* Original: 8px */
98 | }
99 |
100 | /*= Tab Bar - Reduce Width, Show more tabs =================================*/
101 | .titlebar-spacer[type="pre-tabs"] {
102 | width: 30px !important; /* Original: 40px */
103 | }
104 | .titlebar-spacer[type="post-tabs"] {
105 | width: 25px !important; /* Original: 40px */
106 | }
107 |
108 | :root {
109 | --newtab-button-minus-width-padding: 2px;
110 | --newtab-button-width-padding: calc(var(--toolbarbutton-inner-padding) - var(--newtab-button-minus-width-padding));
111 | }
112 | #new-tab-button > .toolbarbutton-icon,
113 | #alltabs-button > .toolbarbutton-badge-stack {
114 | /* Original: calc(2 * var(--toolbarbutton-inner-padding) + 16px) */
115 | width: calc(2 * var(--newtab-button-width-padding) + 16px) !important;
116 |
117 | /* Original: --toolbarbutton-inner-padding */
118 | padding-left: var(--newtab-button-width-padding) !important;
119 | padding-right: var(--newtab-button-width-padding) !important;
120 | }
121 |
122 | #tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab[first-visible-unpinned-tab] {
123 | margin-inline-start: 1px !important;
124 | }
125 |
126 | :root:not([uidensity=touch]) #tabbrowser-arrowscrollbox {
127 | --scrollbtn-inner-padding: 1px;
128 | --scrollbtn-outer-padding: 3px;
129 | }
130 | #scrollbutton-up {
131 | padding-left: var(--scrollbtn-inner-padding, 4px) !important; /* Original: 4px */
132 | padding-right: var(--scrollbtn-outer-padding, 4px) !important;
133 | }
134 | #scrollbutton-down {
135 | padding-left: var(--scrollbtn-outer-padding, 4px) !important; /* Original: 4px */
136 | padding-right: var(--scrollbtn-inner-padding, 4px) !important;
137 | }
138 |
139 | :root:not([uidensity=touch]) #new-tab-button, #alltabs-button {
140 | --toolbarbutton-outer-padding: 1px; /* Original: 2px*/
141 | }
142 |
143 | /* Tab - Max Size */
144 | .tabbrowser-tab[fadein]:not([pinned]):not([style*="max-width"]) {
145 | max-width: 225px !important; /* Lepton: 240px */
146 | }
147 |
148 | /* neighbouring tabs should "pinch" together */
149 | .tabbrowser-tab {
150 | padding-inline: 1px !important;
151 | }
152 |
153 | .tabbrowser-tab:not([last-visible-tab]) {
154 | margin-inline-end: -.5px !important;
155 | }
156 |
157 | /*= Tab Bar - Reduce Height, Show more contents ============================*/
158 | /* Toolbar Height */
159 | :root:not([uidensity=touch]) #TabsToolbar {
160 | --toolbarbutton-inner-padding: 9px; /* Original: calc((var(--tab-min-height) - 16px) / 2) = 10px */
161 | }
162 |
163 | :root:not([uidensity]) #TabsToolbar {
164 | --tab-min-height: 38px !important;
165 | }
166 | :root[uidensity=compact] #TabsToolbar {
167 | --tab-min-height: 29px !important;
168 | }
169 |
170 | /* Scroll Button - Size Fix */
171 | :root:not([uidensity=touch]) #tabbrowser-arrowscrollbox {
172 | --scrollbtn-vertical-padding: 3px;
173 | --scrollbtn-vertical-border: 2px;
174 | --scrollbtn-border-radius: 7px;
175 | }
176 | #scrollbutton-up,
177 | #scrollbutton-down {
178 | /* Original: var(--toolbarbutton-inner-padding) calc(var(--toolbarbutton-inner-padding) - 6px) = 9px */
179 | /* https://github.com/mozilla/gecko-dev/blob/71b1259afd1cdaf41871ae675c2dadb967ea5b34/browser/themes/shared/toolbarbuttons.inc.css#L142 */
180 | padding-top: var(--scrollbtn-vertical-padding, var(--toolbarbutton-inner-padding)) !important;
181 | padding-bottom: var(--scrollbtn-vertical-padding, var(--toolbarbutton-inner-padding)) !important;
182 |
183 | /* Original: 4px */
184 | border-top-width: var(--scrollbtn-vertical-border, 4px) !important;
185 | border-bottom-width: var(--scrollbtn-vertical-border, 4px) !important;
186 | /* Original: calc(var(--tab-border-radius) + 4px) = 8px */
187 | border-radius: var(--scrollbtn-border-radius, calc(var(--tab-border-radius) + 4px)) !important;
188 | }
189 |
190 | :root[tabsintitlebar]:not([uidensity=compact]) #toolbar-menubar[autohide="true"] {
191 | height: calc(var(--tab-min-height) - var(--tabs-navbar-shadow-size) - 2px); /* Compact: 28px, Normal: 33px, Touch: 38px */
192 | }
193 |
194 | /* Pinned Tab - Titlechanged Indicator position fix */
195 | :root:not([uidensity=touch]) .tabbrowser-tab:is([image], [pinned]) > .tab-stack > .tab-content[attention]:not([selected="true"]),
196 | :root:not([uidensity=touch]) .tabbrowser-tab > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
197 | /* Original: center bottom calc(6.5px + var(--tabs-navbar-shadow-size)); */
198 | background-position-y: bottom calc(4.5px + var(--tabs-navbar-shadow-size)) !important;
199 | }
200 | :root[uidensity=compact] .tabbrowser-tab:is([image], [pinned]) > .tab-stack > .tab-content[attention]:not([selected="true"]),
201 | :root[uidensity=compact] .tabbrowser-tab > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
202 | /* Original: center bottom calc(6.5px + var(--tabs-navbar-shadow-size)); */
203 | background-position-y: bottom calc(.5px + var(--tabs-navbar-shadow-size)) !important;
204 | }
205 |
206 | /*= URL Bar - Reduce Padding ===============================================*/
207 | :root:not([uidensity=touch]) #urlbar-container, #search-container {
208 | padding-block: 2px; /* Original: 4px */
209 | margin-inline: 5px; /* Original: 5px */
210 | }
211 |
212 | /* spread menu */
213 | :root[uidensity=compact] .urlbarView-row:not([type=tip], [type=dynamic]) {
214 | padding-block: 1px; /* [Compact, General]: 2px, Touch: 11px */
215 | }
216 | :root[uidensity=compact] #urlbar .search-one-offs:not([hidden]) {
217 | padding-block: 2px; /* [Compact, General]: 4px, Touch 11px */
218 | }
219 |
220 | /*= BookMark Bar - Reduce Height ===========================================*/
221 | :root[uidensity=compact] #PersonalToolbar toolbarbutton {
222 | margin-top: 0px; /* Original: 2px */
223 | }
224 |
225 | /*= Menu - Reduce Padding ==================================================*/
226 | :root {
227 | --menu-padding: 0.35em;
228 | }
229 | :root[uidensity=compact] {
230 | --menu-padding: 0.25em;
231 | }
232 | :root[uidensity=touch] {
233 | --menu-padding: 0.5em;
234 | }
235 | menupopup > menuitem, menupopup > menu {
236 | /* Original: 0.5em */
237 | padding-block: var(--menu-padding) !important;
238 | }
239 |
240 | @supports not -moz-bool-pref("layout.css.osx-font-smoothing.enabled") {
241 | :root:not([uidensity=touch]) .menu-text, .menu-iconic-text {
242 | padding-inline-end: 0 !important; /* Original: 2px */
243 | }
244 | :root:not([uidensity=touch]) .menupopup-arrowscrollbox {
245 | padding-block: 1px !important; /* Original: 4px*/
246 | }
247 | :root:not([uidensity=touch]) #context-navigation:not([hidden]) {
248 | padding: 0 0 1px !important; /* Original: 0 0 4px*/
249 | }
250 | :root:not([uidensity=touch]) .menu-right {
251 | margin-right: 6px !important; /* Original: 12px */
252 | }
253 | }
254 |
255 | /*= Popup Panel - Reduce padding ============================================*/
256 | #protections-popup-main-header-label {
257 | height: unset !important; /* Original: 37.6px */
258 | }
259 |
260 | #identity-popup,
261 | #permission-popup,
262 | #protections-popup {
263 | --vertical-section-padding: 0.8em; /* Original: 0.9em */
264 | }
265 |
266 | .protections-popup-footer-button,
267 | .protections-popup-category {
268 | min-height: 24px; /* Original: 32px */
269 | height: unset !important;
270 | }
271 |
272 | /** Popup panel - Compact mode */
273 | /* Footer Button Height */
274 | :root[uidensity=compact] .panel-footer.panel-footer-menulike > button {
275 | padding: 3px 8px !important;
276 | }
277 | /* Footer Button Height */
278 | :root[uidensity=compact] #protections-popup-trackersView-settings-button {
279 | margin: 4px 8px 0 !important;
280 | }
281 | /* not cut off for Protection popup Footer on windows */
282 | :root[uidensity=compact] #protections-popup-multiView #protections-popup-footer {
283 | padding: 3px 0 20px !important;
284 | }
285 | /* Button and disabed category in Protection popup */
286 | :root[uidensity=compact] #protections-popup-multiView .protections-popup-footer-button,
287 | :root[uidensity=compact] #protections-popup-multiView .protections-popup-category {
288 | height: 20px !important;
289 | min-height: 20px !important;
290 | }
291 | /* Footer Button in Tracking Content Panel */
292 | :root[uidensity=compact] #protections-popup-multiView .panel-footer.panel-footer-menulike {
293 | margin: 0 0 3px !important;
294 | }
295 | /* Identity popup header padding */
296 | :root[uidensity=compact] #identity-popup-multiView #identity-popup-mainView-panel-header {
297 | padding: 2px 5px !important;
298 | }
299 | /* Text When There is no trackers */
300 | :root[uidensity=compact] #protections-popup-no-trackers-found-description {
301 | margin: 2em 4em !important;
302 | }
303 | /* Download Item margin */
304 | :root[uidensity=compact] #downloadsListBox {
305 | margin: 0 !important;
306 | }
307 |
308 | /** Multi Selected Color - More Contrast ************************************/
309 | #tabbrowser-tabs:not([movingtab]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab > .tab-stack > .tab-background[multiselected]:not([selected]):-moz-lwtheme {
310 | background-image: linear-gradient(var(--toolbar-bgcolor, transparent), var(--toolbar-bgcolor, transparent)),
311 | linear-gradient(var(--toolbar-bgcolor), var(--toolbar-bgcolor)),
312 | var(--lwt-header-image, none) !important;
313 | }
314 |
315 | .tab-background[multiselected="true"]:not([selected="true"]) > .tab-loading-burst:not([bursting]) {
316 | background: color-mix(in srgb, currentColor 65%, transparent);
317 | opacity: .3;
318 | }
319 | #TabsToolbar[brighttext] .tab-background[multiselected="true"]:not([selected="true"]) > .tab-loading-burst:not([bursting]) {
320 | opacity: .15;
321 | }
322 |
323 | /* Box Model */
324 | content: "";
325 | display: block;
326 | position: absolute;
327 | top: 50%;
328 |
329 | /* Bar shape */
330 | width: 1px;
331 | height: 20px;
332 | overflow: hidden;
333 |
334 | /* Bar Color */
335 | opacity: var(--tab-separator-opacity);
336 | transition: opacity .2s var(--ease-basic) !important;
337 | background-color: color-mix(in srgb, currentColor 20%, transparent) !important; /* Replace var(--toolbarseparator-color) - Hard coded for compatibility */
338 | }
339 |
340 | .tab-background::before {
341 | transform: translateX(-2.5px) translateY(calc(-50% + 1px)) !important;
342 | }
343 | .tabbrowser-tab[last-visible-tab] .tab-background::after {
344 | right: 0;
345 | transform: translateX(1.5px) translateY(calc(-50% + 1px)) !important;
346 | }
347 |
348 | .tabbrowser-tab:is([visuallyselected], [multiselected], :hover) + .tabbrowser-tab:not([visuallyselected]) .tab-background::before,
349 | .tabbrowser-tab[first-visible-unpinned-tab]:is([visuallyselected], [multiselected], :hover) .tab-background::before,
350 | #tabbrowser-arrowscrollbox[overflowing] tab.tabbrowser-tab[first-visible-unpinned-tab] .tab-background::before {
351 | opacity: 0 !important;
352 | }
353 |
354 | /* Latest Tab & New tab margin */
355 | #tabbrowser-arrowscrollbox:not([overflowing]) .tabbrowser-tab[last-visible-tab] {
356 | margin-inline-end: 1px !important;
357 | }
358 |
359 | /* New tab button - Smaller button ******************************************/
360 | :root:not([uidensity=touch]) #tabs-newtab-button > .toolbarbutton-icon {
361 | --toolbarbutton-inner-padding: calc((var(--tab-min-height) - 16px) / 2 - 1px);
362 | }
363 |
364 | :root:not([uidensity=compact]) #tabs-newtab-button > .toolbarbutton-icon {
365 | margin-left: 2px;
366 | }
367 | :root[uidensity=compact] #tabs-newtab-button > .toolbarbutton-icon {
368 | margin-left: 1px;
369 | }
370 |
371 | /** Clipped tabs - Letters cleary *******************************************/
372 | #tabbrowser-tabs[closebuttons=activetab] .tab-content:not([pinned]) {
373 | padding-inline-start: 8px !important;
374 | }
375 |
376 | #tabbrowser-tabs[closebuttons="activetab"] > #tabbrowser-arrowscrollbox > .tabbrowser-tab:not([pinned]) > .tab-stack > .tab-content > .tab-close-button:not([selected="true"]) {
377 | display: -moz-inline-box !important;
378 | }
379 |
380 | #tabbrowser-tabs[closebuttons=activetab] .tabbrowser-tab:not([visuallyselected], :hover) .tab-close-button {
381 | visibility: collapse !important;
382 | }
383 |
384 | #tabbrowser-tabs[closebuttons=activetab] .tab-label-container[textoverflow][labeldirection="ltr"]:not([pinned]),
385 | #tabbrowser-tabs[closebuttons=activetab] .tab-label-container[textoverflow]:not([labeldirection]):-moz-locale-dir(ltr):not([pinned]) {
386 | mask-image: linear-gradient(to right, black 70%, transparent) !important;
387 | }
388 |
389 | #tabbrowser-tabs[closebuttons=activetab] .tab-label-container[textoverflow][labeldirection="rtl"]:not([pinned]),
390 | #tabbrowser-tabs[closebuttons=activetab] .tab-label-container[textoverflow]:not([labeldirection]):-moz-locale-dir(rtl):not([pinned]) {
391 | mask-image: linear-gradient(to left, black 70%, transparent) !important;
392 | }
393 |
394 | /** Sound Tab - Hide Label **************************************************/
395 | .tab-secondary-label:is([soundplaying], [muted], [activemedia-blocked], [pictureinpicture]){
396 | display: none !important;
397 | }
398 |
399 | /** Sound Tab - Show with Favicons ******************************************/
400 | /* Makes the favicons always visible (also on hover) */
401 | .tab-icon-image:not([pinned]){
402 | opacity: 1 !important
403 | }
404 |
405 | /* Makes the speaker icon to always appear if the tab is playing (not only on hover) */
406 | .tab-icon-overlay:not([crashed]),
407 | .tab-icon-overlay[pinned][crashed][selected] {
408 | /* Position */
409 | top: -3.5px !important;
410 | inset-inline-end: -9px !important;
411 | z-index: 1 !important;
412 |
413 | /* Shape */
414 | padding: 1.5px !important;
415 | border-radius: 10px !important;
416 | width: 17px !important;
417 | height: 17px !important;
418 | }
419 | .tab-icon-overlay:not([sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) {
420 | /* Color */
421 | color: currentColor !important;
422 | stroke: transparent !important;
423 | background: transparent !important;
424 | fill-opacity: 0.8 !important;
425 | opacity: 1 !important;
426 | }
427 | .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) {
428 | margin-inline-end: 9.5px !important;
429 | }
430 |
431 | /* None exist favicon */
432 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing],[crashed]) {
433 | top: 0 !important;
434 | inset-inline-end: 0 !important;
435 | margin-inline-end: 5.5px !important;
436 | padding: 2px 0 !important;
437 | }
438 |
439 | /* Busy - Show */
440 | .tab-throbber[busy], .tab-icon-pending[busy] {
441 | opacity: 1 !important;
442 | }
443 |
444 | /* Busy - Overlay Position */
445 | .tabbrowser-tab:not([pinned])[busy] .tab-icon-overlay:is([soundplaying], [muted], [activemedia-blocked]) {
446 | transform: translateX(-.5px) translateY(-2.5px);
447 | }
448 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing],[crashed])[busy] {
449 | top: -3.5px !important;
450 | inset-inline-end: -9px !important;
451 | margin-inline-end: 9.5px !important;
452 | padding: 1.5px !important;
453 | }
454 |
455 | /* Hover */
456 | .tab-icon-overlay:not([crashed])[soundplaying]:hover,
457 | .tab-icon-overlay:not([crashed])[muted]:hover,
458 | .tab-icon-overlay:not([crashed])[activemedia-blocked]:hover {
459 | color: var(--toolbar-bgcolor, white) !important;
460 | stroke: var(--lwt-tab-text, var(--toolbar-color)) !important;
461 | background-color: var(--lwt-tab-text, var(--toolbar-color)) !important;
462 | fill-opacity: 0.95 !important;
463 | }
464 |
465 | #TabsToolbar[brighttext] .tab-icon-overlay:not([crashed])[soundplaying]:hover,
466 | #TabsToolbar[brighttext] .tab-icon-overlay:not([crashed])[muted]:hover,
467 | #TabsToolbar[brighttext] .tab-icon-overlay:not([crashed])[activemedia-blocked]:hover {
468 | color: var(--toolbar-bgcolor, black) !important;
469 | }
470 |
471 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing],[crashed]):hover {
472 | padding: 0 !important;
473 | }
474 |
475 | /** PictureInPicture Tab - Show PIP Icon ************************************/
476 | .tab-icon-sound[pictureinpicture]:not([pinned]) {
477 | /* Shape */
478 | display: -moz-inline-box !important;
479 | width: 14px;
480 | height: 14px;
481 | -moz-box-ordinal-group: 2 !important;
482 |
483 | /* Color */
484 | fill: currentColor;
485 | opacity: 0.8;
486 | -moz-context-properties: fill;
487 |
488 | /* Icon */
489 | list-style-image: url(chrome://global/skin/media/picture-in-picture-open.svg);
490 | }
491 | .tab-icon-sound[pictureinpicture]:not([pinned])[selected] {
492 | opacity: 0.95;
493 | }
494 |
495 | .tabbrowser-tab[pictureinpicture]:not([pinned]):hover .tab-close-button {
496 | margin-left: 0px !important;
497 | }
498 |
499 | /** Container Tab - Color line at icon's bottom *****************************/
500 | .tab-context-line {
501 | display: none;
502 | }
503 |
504 | .tab-icon-image {
505 | box-sizing: content-box;
506 | padding: 3px 0;
507 |
508 | border-bottom: 2px solid var(--identity-icon-color);
509 | }
510 |
511 | /* None exist favicon - With Sound */
512 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) {
513 | box-sizing: content-box;
514 | padding: 3px 0;
515 |
516 | border-radius: 0 !important;
517 | border-bottom: 2px solid var(--identity-icon-color);
518 | }
519 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]):hover {
520 | padding: 0;
521 |
522 | border-radius: 10px !important;
523 | border-bottom: none;
524 | }
525 |
526 | /* Pinned Tab - Titlechanged Indicator override */
527 | .tabbrowser-tab:is([image], [pinned]) > .tab-stack > .tab-content[attention]:not([selected="true"]) .tab-icon-image,
528 | .tabbrowser-tab > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) .tab-icon-image {
529 | border-bottom: 2px solid transparent !important;
530 | }
531 |
532 | .tabbrowser-tab:is([image], [pinned])[usercontextid] > .tab-stack > .tab-content[attention]:not([selected="true"]),
533 | .tabbrowser-tab[usercontextid] > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
534 | /* Original: radial-gradient(circle, var(--attention-icon-color), var(--attention-icon-color) 2px, transparent 2px); */
535 | --dotted-identity-image: radial-gradient(circle, var(--identity-icon-color), var(--identity-icon-color) 2px, transparent 2px);
536 | background-image: var(--dotted-identity-image), var(--dotted-identity-image), var(--dotted-identity-image) !important;
537 | background-position-x: 32%, 50%, 70% !important;
538 | }
539 | :root[uidensity=compact] .tabbrowser-tab:is([image], [pinned])[usercontextid] > .tab-stack > .tab-content[attention]:not([selected="true"]),
540 | :root[uidensity=compact] .tabbrowser-tab[usercontextid] > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
541 | /* Original: radial-gradient(circle, var(--attention-icon-color), var(--attention-icon-color) 2px, transparent 2px); */
542 | var(--dotted-identity-image) !important;
543 | background-position-x: 30%, 50%, 70% !important;
544 | }
545 |
546 | /* Pinned Tab - Titlechanged & soundplaying */
547 | .tabbrowser-tab:is([image], [pinned])[usercontextid]:is([soundplaying], [muted], [activemedia-blocked]) > .tab-stack > .tab-content[attention]:not([selected="true"]),
548 | .tabbrowser-tab[usercontextid]:is([soundplaying], [muted], [activemedia-blocked]) > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
549 | background-position-x: calc(32% - 1px), calc(50% - 1px), calc(70% - 1px) !important;
550 | }
551 | :root[uidensity=compact] .tabbrowser-tab:is([image], [pinned])[usercontextid]:is([soundplaying], [muted], [activemedia-blocked]) > .tab-stack > .tab-content[attention]:not([selected="true"]),
552 | :root[uidensity=compact] .tabbrowser-tab[usercontextid]:is([soundplaying], [muted], [activemedia-blocked]) > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
553 | var(--dotted-identity-image) !important;
554 | background-position-x: calc(30% - 1px), calc(50% - 1px), calc(70% - 1px) !important;
555 | }
556 |
557 | /** Crashed Tab - Don't show Favicons ***************************************/
558 | .tab-icon-image[crashed] {
559 | display: none !important;
560 | }
561 |
562 | /** Panel - Icons ***********************************************************/
563 | /*= Padding ================================================================*/
564 | :root {
565 | --arrowpanel-menublank-padding: calc(var(--arrowpanel-menuicon-padding) * 2 + 8px) !important;
566 | --arrowpanel-menuimageblank-padding: calc(var(--arrowpanel-menuitem-padding) - 2px) !important;
567 | }
568 |
569 | #downloadsHistory .button-text,
570 | .subviewbutton > .toolbarbutton-text {
571 | padding-inline-start: var(--arrowpanel-menuicon-padding) !important;
572 | }
573 | .toolbaritem-combined-buttons > .subviewbutton:not(.subviewbutton-iconic) > .toolbarbutton-text {
574 | padding-inline-start: 0 !important;
575 | }
576 | #panelMenu_bookmarksMenu .subviewbutton[disabled=true] .toolbarbutton-text,
577 | #appMenu_historyMenu .subviewbutton[disabled=true] .toolbarbutton-text {
578 | padding-inline-start: var(--arrowpanel-menublank-padding) !important;
579 | }
580 | #appMenu-proton-update-banner .toolbarbutton-text {
581 | margin-inline-start: 0 !important;
582 | }
583 |
584 | #appMenu-multiView .subviewbutton::before,
585 | #appMenu-proton-update-banner::before {
586 | display: -moz-inline-box;
587 | margin-inline-end: var(--arrowpanel-menuicon-padding);
588 | width: 16px !important;
589 | height: 16px !important;
590 | }
591 | #appMenu-proton-update-banner {
592 | margin-bottom: 2px !important;
593 | }
594 | #appMenu-proton-update-banner::before {
595 | margin-inline-start: var(--arrowpanel-menuitem-padding) !important;
596 | }
597 | #appMenu-fxa-status2,
598 | #appMenu-zoom-controls2 {
599 | align-items: center;
600 | padding-top: var(--arrowpanel-menuimageblank-padding) !important;
601 | padding-bottom: var(--arrowpanel-menuimageblank-padding) !important;
602 | }
603 | #appMenu-zoom-controls2::before {
604 | margin-inline-end: 0 !important;
605 | }
606 |
607 | /* Icons Color */
608 | #appMenu-multiView .subviewbutton::before,
609 | #appMenu-proton-update-banner::before,
610 | #downloadsHistory .button-icon,
611 | .subviewbutton > image {
612 | fill: currentColor !important;
613 | fill-opacity: var(--toolbarbutton-icon-fill-opacity) !important;
614 | -moz-context-properties: fill !important;
615 | }
616 | #appMenu-zoomReduce-button2 > .toolbarbutton-icon,
617 | #appMenu-zoomEnlarge-button2 > .toolbarbutton-icon {
618 | stroke: var(--zoom-controls-bgcolor, var(--button-bgcolor, ButtonFace)) !important;
619 | -moz-context-properties: fill, stroke !important;
620 | }
621 | #appMenu-zoomReduce-button2:not([disabled], [open], :active):is(:hover) > .toolbarbutton-icon, #appMenu-zoomEnlarge-button2:not([disabled], [open], :active):is(:hover) > .toolbarbutton-icon {
622 | stroke: var(--button-hover-bgcolor) !important;
623 | }
624 |
625 | .subviewbutton[disabled=true] > image {
626 | /* Ghost icons when disabled */
627 | opacity: 0.4;
628 | }
629 |
630 | /*= Panel - Main ===========================================================*/
631 | #appMenu-proton-addon-banners > .addon-banner-item > .toolbarbutton-icon {
632 | display: -moz-inline-box !important;
633 | margin-inline-start: var(--arrowpanel-menuicon-padding);
634 | -moz-box-ordinal-group: 0 !important;
635 | }
636 |
637 | #appMenu-proton-update-banner::before {
638 | content: url(chrome://browser/skin/whatsnew.svg);
639 | }
640 | #appMenu-fxa-status2::before { /* Don't exist img tag */
641 | content: url(chrome://browser/skin/fxa/avatar-empty.svg);
642 | }
643 | #appMenu-fxa-status2:is([fxastatus=signedin], [fxastatus=unverified], [fxastatus=login-failed])::before {
644 | display: none;
645 | }
646 | #appMenu-fxa-status2:is([fxastatus=signedin], [fxastatus=unverified], [fxastatus=login-failed]) #appMenu-fxa-label2::before {
647 | /* url("https://profile.accounts.firefox.com/v1/avatar/a") */
648 | content: '';
649 | border-radius: 50% !important;
650 | background-size: 16px !important;
651 | background-image: var(--avatar-image-url) !important;
652 | }
653 |
654 | #appMenu-new-tab-button2 {
655 | list-style-image: url(chrome://browser/skin/new-tab.svg);
656 | }
657 | #appMenu-new-window-button2 {
658 | list-style-image: url(chrome://browser/skin/window.svg);
659 | }
660 | #appMenu-new-private-window-button2 {
661 | list-style-image: url(chrome://browser/skin/privateBrowsing.svg);
662 | }
663 |
664 | #appMenu-bookmarks-button{
665 | list-style-image: url(chrome://browser/skin/bookmark.svg);
666 | }
667 | #appMenu-history-button {
668 | list-style-image: url(chrome://browser/skin/history.svg);
669 | }
670 | #appMenu-downloads-button {
671 | list-style-image: url(chrome://browser/skin/downloads/downloads.svg);
672 | }
673 | #appMenu-passwords-button {
674 | list-style-image: url(chrome://browser/skin/login.svg);
675 | }
676 | #appMenu-extensions-themes-button {
677 | list-style-image: url(chrome://mozapps/skin/extensions/extension.svg);
678 | }
679 |
680 | #appMenu-print-button2 {
681 | list-style-image: url(chrome://global/skin/icons/print.svg);
682 | }
683 | #appMenu-save-file-button2 {
684 | list-style-image: url(chrome://browser/skin/save.svg);
685 | }
686 | #appMenu-find-button2 {
687 | list-style-image: url(chrome://global/skin/icons/search-glass.svg);
688 | }
689 | #appMenu-zoom-controls2::before {
690 | content: url(./icons/screenshot.svg);
691 | }
692 |
693 | #appMenu-settings-button {
694 | list-style-image: url(chrome://global/skin/icons/settings.svg);
695 | }
696 | #appMenu-more-button2 {
697 | list-style-image: url(chrome://browser/skin/ion.svg);
698 | }
699 | #appMenu-help-button2 {
700 | list-style-image: url(chrome://global/skin/icons/help.svg);
701 | }
702 |
703 | #appMenu-quit-button2 {
704 | list-style-image: url(./icons/quit.svg);
705 | }
706 |
707 | /*= Panel - Account ========================================================*/
708 | #PanelUI-fxa-menu-connect-device-button .toolbarbutton-icon,
709 | #PanelUI-fxa-menu-account-signout-button .toolbarbutton-icon {
710 | width: 16px !important;
711 | height: 16px !important;
712 | }
713 |
714 | /* Default */
715 | #fxa-menu-avatar {
716 | display: -moz-inline-box !important;
717 | margin-inline-end: var(--arrowpanel-menuicon-padding);
718 | }
719 |
720 | .syncNowBtn {
721 | visibility: visible !important;
722 | -moz-box-ordinal-group: 1 !important;
723 | margin-inline-end: var(--arrowpanel-menuicon-padding);
724 | }
725 | #PanelUI-fxa-menu-setup-sync-button {
726 | list-style-image: url(chrome://browser/skin/sync.svg);
727 | }
728 |
729 | #PanelUI-fxa-menu-connect-device-button {
730 | list-style-image: url(chrome://browser/skin/fxa/add-device.svg);
731 | }
732 | #PanelUI-fxa-menu-sendtab-button {
733 | list-style-image: url(./icons/send-to-device.svg);
734 | }
735 | #PanelUI-fxa-menu-sync-prefs-button,
736 | #PanelUI-remotetabs-view-managedevices {
737 | list-style-image: url(chrome://global/skin/icons/settings.svg);
738 | }
739 | #PanelUI-fxa-menu-account-signout-button {
740 | list-style-image: url(./icons/sign-out.svg);
741 | }
742 |
743 | .PanelUI-remotetabs-notabsforclient-label {
744 | margin-inline-start: calc(var(--arrowpanel-menuicon-padding) + var(--arrowpanel-menuitem-padding)) !important;
745 | padding-inline-start: var(--arrowpanel-menublank-padding) !important;
746 | }
747 |
748 | /* Change Separator */
749 | #PanelUI-fxa-menu::before{
750 | content: "";
751 | display: -moz-box;
752 | border-bottom: 1px solid var(--panel-separator-color);
753 | margin: var(--panel-separator-margin);
754 | padding: 0;
755 | }
756 | #PanelUI-fxa-menu > :first-child{
757 | -moz-box-ordinal-group: 0;
758 | }
759 | #PanelUI-sign-out-separator {
760 | display: none;
761 | }
762 | .pageAction-sendToDevice-device.subviewbutton.sync-menuitem.sendtab-target[clientType=""] {
763 | list-style-image: url(./icons/send-to-device.svg);
764 | }
765 | .pageAction-sendToDevice-device.subviewbutton.sync-menuitem.sendtab-target:not([clientType]) {
766 | list-style-image: url(chrome://global/skin/icons/settings.svg);
767 | }
768 |
769 | /*= Panel - Bookmark =======================================================*/
770 | #panelMenuBookmarkThisPage {
771 | list-style-image: url(chrome://browser/skin/bookmark-hollow.svg);
772 | }
773 | panelMenuBookmarkThisPage[starred] {
774 | list-style-image: url(chrome://browser/skin/bookmark.svg);
775 | }
776 |
777 | #panelMenu_searchBookmarks {
778 | list-style-image: url(chrome://global/skin/icons/search-glass.svg);
779 | }
780 | #panelMenu_viewBookmarksToolbar {
781 | list-style-image: url(chrome://browser/skin/bookmarks-toolbar.svg);
782 | }
783 |
784 | #panelMenu_showAllBookmarks {
785 | list-style-image: url(chrome://browser/skin/bookmark-star-on-tray.svg);
786 | }
787 |
788 | /*= Panel - History ========================================================*/
789 | #appMenuRecentlyClosedTabs {
790 | list-style-image: url(chrome://browser/skin/tab.svg);
791 | }
792 | #appMenuRecentlyClosedWindows {
793 | list-style-image: url(chrome://browser/skin/window.svg);
794 | }
795 | #appMenuRestoreSession {
796 | list-style-image: url(./icons/restore-session.svg);
797 | }
798 | #appMenuClearRecentHistory {
799 | list-style-image: url(chrome://browser/skin/forget.svg);
800 | }
801 |
802 | #PanelUI-historyMore {
803 | list-style-image: url(chrome://browser/skin/history.svg);
804 | }
805 |
806 | #appMenu-library-recentlyClosedTabs {
807 | list-style-image: url(./icons/movetowindow-16.svg);
808 | }
809 | #appMenu-library-recentlyClosedWindows {
810 | list-style-image: url(./icons/restore-session.svg);
811 | }
812 |
813 | /*= Panel - More tools =====================================================*/
814 | #appmenu-moreTools-button {
815 | list-style-image: url(chrome://browser/skin/customize.svg);
816 | }
817 |
818 | #appmenu-developer-tools-view .subviewbutton:nth-child(1) { /* Web Developer Tools */
819 | list-style-image: url(chrome://browser/skin/developer.svg);
820 | }
821 | #appmenu-developer-tools-view .subviewbutton:nth-child(2) { /* Task Manager */
822 | list-style-image: url(./icons/performance.svg);
823 | }
824 | #appmenu-developer-tools-view .subviewbutton:nth-child(3) { /* Remote Debugging - Edge bug.svg */
825 | list-style-image: url(./icons/bug.svg);
826 | }
827 | #appmenu-developer-tools-view .subviewbutton:nth-child(4) { /* Browser Toolbox - Edge webdeveloper.svg */
828 | list-style-image: url(./icons/webdeveloper.svg);
829 | }
830 | #appmenu-developer-tools-view .subviewbutton:nth-child(5) { /* Browser Content Toolbaox - */
831 | list-style-image: url(./icons/command-frames.svg);
832 | }
833 | #appmenu-developer-tools-view .subviewbutton:nth-last-child(5) { /* Browser Console */
834 | list-style-image: url(chrome://devtools/skin/images/command-console.svg);
835 | }
836 | #appmenu-developer-tools-view .subviewbutton:nth-last-child(4) { /* Responsive Design Mode */
837 | list-style-image: url(./icons/command-responsivemode.svg);
838 | }
839 | #appmenu-developer-tools-view .subviewbutton:nth-last-child(3) { /* Eyedropper */
840 | list-style-image: url(chrome://devtools/skin/images/command-eyedropper.svg);
841 | }
842 | #appmenu-developer-tools-view .subviewbutton:nth-last-child(2) { /* Page Source - Edge file-search.svg */
843 | list-style-image: url(./icons/search-file.svg);
844 | }
845 | #appmenu-developer-tools-view .subviewbutton:nth-last-child(1) { /* Extensions for Devel */
846 | list-style-image: url(chrome://devtools/skin/images/debugging-addons.svg);
847 | }
848 | #appmenu-developer-tools-view .subviewbutton:last-child {
849 | margin-bottom: 6px !important;
850 | }
851 |
852 | /*= Panel - Help ===========================================================*/
853 | #appMenu_menu_openHelp {
854 | list-style-image: url(chrome://global/skin/icons/help.svg);
855 | }
856 | #appMenu_feedbackPage {
857 | list-style-image: url(./icons/send.svg);
858 | }
859 | #appMenu_helpSafeMode {
860 | list-style-image: url(chrome://devtools/skin/images/debugging-workers.svg);
861 | }
862 | #appMenu_troubleShooting {
863 | list-style-image: url(chrome://global/skin/icons/more.svg);
864 | }
865 | #appMenu_help_reportSiteIssue {
866 | list-style-image: url(chrome://global/skin/icons/lightbulb.svg);
867 | }
868 | #appMenu_menu_HelpPopup_reportPhishingtoolmenu {
869 | list-style-image: url(chrome://global/skin/icons/warning.svg);
870 | }
871 | #appMenu_aboutName{
872 | list-style-image: url(chrome://global/skin/icons/info.svg);
873 | }
874 |
875 | /*= Panel - Library ========================================================*/
876 | #appMenu-library-bookmarks-button {
877 | list-style-image: url(chrome://browser/skin/bookmark.svg);
878 | }
879 | #appMenu-library-history-button {
880 | list-style-image: url(chrome://browser/skin/history.svg);
881 | }
882 | #appMenu-library-downloads-button{
883 | list-style-image: url(chrome://browser/skin/downloads/downloads.svg);
884 | }
885 |
886 | /*= Panel - Downloads ======================================================*/
887 | #downloadsHistory {
888 | list-style-image: url(chrome://browser/skin/downloads/downloads.svg);
889 | }
890 | #downloadsHistory .box-inherit.button-box {
891 | display: -moz-inline-box !important;
892 | }
893 |
894 | /*= Toolbar - Overflow Menu ================================================*/
895 | #overflowMenu-customize-button {
896 | list-style-image: url(chrome://browser/skin/customize.svg);
897 | }
898 |
899 | /*= Tabbar - All Tab Menu ==================================================*/
900 | #allTabsMenu-undoCloseTab {
901 | list-style-image: url(chrome://global/skin/icons/undo.svg);
902 | }
903 | #allTabsMenu-searchTabs {
904 | list-style-image: url(chrome://global/skin/icons/search-glass.svg);
905 | }
906 | #allTabsMenu-containerTabsButton {
907 | list-style-image: url(./icons/container-openin-16.svg);
908 | }
909 |
910 | #allTabsMenu-hiddenTabsButton {
911 | list-style-image: url(./icons/password-hide.svg);
912 | }
913 |
914 | #allTabsMenu-containerTabsView .subviewbutton:last-child {
915 | list-style-image: url(chrome://global/skin/icons/settings.svg);
916 | }
917 |
918 | /** Sound Tab - Show with Favicons */
919 | /* Makes the favicons always visible (also on hover) */
920 | .tab-icon-image:not([pinned]){
921 | opacity: 1 !important
922 | }
923 |
924 | /* Makes the speaker icon to always appear if the tab is playing (not only on hover) */
925 | .tab-icon-overlay:not([crashed]),
926 | .tab-icon-overlay[pinned][crashed][selected] {
927 | /* Position */
928 | top: -3.5px !important;
929 | inset-inline-end: -9px !important;
930 | z-index: 1 !important;
931 |
932 | /* Shape */
933 | padding: 1.5px !important;
934 | border-radius: 10px !important;
935 | width: 17px !important;
936 | height: 17px !important;
937 | }
938 | .tab-icon-overlay:not([sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) {
939 | /* Color */
940 | color: currentColor !important;
941 | stroke: transparent !important;
942 | background: transparent !important;
943 | fill-opacity: 0.8 !important;
944 | opacity: 1 !important;
945 | }
946 | .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) {
947 | margin-inline-end: 9.5px !important;
948 | }
949 |
950 | /* None exist favicon */
951 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing],[crashed]) {
952 | top: 0 !important;
953 | inset-inline-end: 0 !important;
954 | margin-inline-end: 5.5px !important;
955 | padding: 2px 0 !important;
956 | }
957 |
958 | /* Busy - Show */
959 | .tab-throbber[busy], .tab-icon-pending[busy] {
960 | opacity: 1 !important;
961 | }
962 |
963 | /* Busy - Overlay Position */
964 | .tabbrowser-tab:not([pinned])[busy] .tab-icon-overlay:is([soundplaying], [muted], [activemedia-blocked]) {
965 | transform: translateX(-.5px) translateY(-2.5px);
966 | }
967 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing],[crashed])[busy] {
968 | top: -3.5px !important;
969 | inset-inline-end: -9px !important;
970 | margin-inline-end: 9.5px !important;
971 | padding: 1.5px !important;
972 | }
973 |
974 | /* Hover */
975 | .tab-icon-overlay:not([crashed])[soundplaying]:hover,
976 | .tab-icon-overlay:not([crashed])[muted]:hover,
977 | .tab-icon-overlay:not([crashed])[activemedia-blocked]:hover {
978 | color: var(--toolbar-bgcolor, white) !important;
979 | stroke: var(--lwt-tab-text, var(--toolbar-color)) !important;
980 | background-color: var(--lwt-tab-text, var(--toolbar-color)) !important;
981 | fill-opacity: 0.95 !important;
982 | }
983 |
984 | #TabsToolbar[brighttext] .tab-icon-overlay:not([crashed])[soundplaying]:hover,
985 | #TabsToolbar[brighttext] .tab-icon-overlay:not([crashed])[muted]:hover,
986 | #TabsToolbar[brighttext] .tab-icon-overlay:not([crashed])[activemedia-blocked]:hover {
987 | color: var(--toolbar-bgcolor, black) !important;
988 | }
989 |
990 | .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing],[crashed]):hover {
991 | padding: 0 !important;
992 | }
993 |
994 |
995 | /** Context Menu - Icons ****************************************************/
996 | /*= Layout =================================================================*/
997 | menupopup menuitem:not([type="checkbox"]),
998 | menupopup menu:not([type="checkbox"]) {
999 | -moz-appearance: none !important; /* Linux: menulist */
1000 | }
1001 |
1002 | /* Icon */
1003 | :not(menu, #ContentSelectDropdown) > menupopup > menuitem:not(.menuitem-iconic, [type="checkbox"], .in-menulist),
1004 | :not(menu, #ContentSelectDropdown) > menupopup > menu:not(.menu-iconic, [type="checkbox"], .in-menulist),
1005 | #blockedPopupDontShowMessage {
1006 | /* Color */
1007 | -moz-context-properties: fill, fill-opacity !important;
1008 | fill: currentColor !important;
1009 |
1010 | /* Layout */
1011 | background-size: 16px !important;
1012 | background-repeat: no-repeat !important;
1013 | background-image: var(--menuitem-image);
1014 | }
1015 |
1016 | /* For native context menus on macOS */
1017 | @supports -moz-bool-pref("widget.macos.native-context-menus") {
1018 | :not(menu, #ContentSelectDropdown) > menupopup > menuitem:not(.menuitem-iconic, [type="checkbox"], .in-menulist),
1019 | :not(menu, #ContentSelectDropdown) > menupopup > menu:not(.menu-iconic, [type="checkbox"], .in-menulist) {
1020 | list-style-image: var(--menuitem-image) !important;
1021 | }
1022 | }
1023 |
1024 | /* Padding */
1025 | :root {
1026 | --context-menu-background-padding-default: 5px;
1027 | --context-menu-background-padding: var(--context-menu-background-padding-default);
1028 | }
1029 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem,
1030 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu,
1031 | #blockedPopupDontShowMessage {
1032 | background-position: left var(--context-menu-background-padding) center !important;
1033 | padding-inline-start: var(--context-menu-background-padding) !important;
1034 | }
1035 |
1036 | /* Padding - Windows */
1037 | @media (-moz-os-version: windows-win7 ),
1038 | (-moz-os-version: windows-win8 ),
1039 | (-moz-os-version: windows-win10) {
1040 | :root {
1041 | --context-menu-background-padding: 1em;
1042 | --context-menu-text-padding: calc(var(--menu-padding) + var(--context-menu-background-padding-default) + 16px);
1043 | }
1044 |
1045 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem:not(.menuitem-iconic, [type="checkbox"], .in-menulist),
1046 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu:not(.menu-iconic, [type="checkbox"], .in-menulist),
1047 | #blockedPopupDontShowMessage {
1048 | padding-inline-start: calc(var(--context-menu-background-padding) + var(--context-menu-text-padding)) !important;
1049 | }
1050 |
1051 | /* Checkbox */
1052 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem[type="checkbox"][checked="false"] > .menu-iconic-left {
1053 | padding-inline-start: var(--context-menu-text-padding);
1054 | }
1055 | }
1056 |
1057 | /* Padding Mac */
1058 | @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled") {
1059 | :root {
1060 | --context-menu-background-padding-default: 10px;
1061 | --context-menu-mac-padding: 21px;
1062 | }
1063 |
1064 | /* context menu width */
1065 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem:not(.menuitem-iconic, [type="checkbox"], .in-menulist),
1066 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu:not(.menu-iconic, [type="checkbox"], .in-menulist),
1067 | #blockedPopupDontShowMessage {
1068 | padding-inline-end: var(--context-menu-background-padding) !important;
1069 | }
1070 |
1071 | /* text position */
1072 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem > .menu-text,
1073 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu > menu-text {
1074 | padding-inline-start: var(--context-menu-mac-padding) !important;
1075 | }
1076 |
1077 | /* Checkbox menuitem, None iconic menu */
1078 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem[type="checkbox"],
1079 | :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu:not(.menu-iconic) {
1080 | padding-inline-start: calc(var(--context-menu-background-padding) + var(--context-menu-mac-padding)) !important;
1081 | }
1082 | }
1083 |
1084 | /*= tabContextMenu =========================================================*/
1085 | #context_openANewTab {
1086 | --menuitem-image: url(chrome://browser/skin/new-tab.svg);
1087 | }
1088 |
1089 | #context_reloadTab,
1090 | #context_reloadSelectedTabs {
1091 | --menuitem-image: url(chrome://browser/skin/reload.svg);
1092 | }
1093 | #context_toggleMuteTab,
1094 | #context_toggleMuteSelectedTabs {
1095 | --menuitem-image: url(chrome://browser/skin/tabbrowser/tab-audio-muted-small.svg);
1096 | }
1097 | #context_toggleMuteTab[muted],
1098 | #context_toggleMuteSelectedTabs[muted] {
1099 | --menuitem-image: url(chrome://browser/skin/tabbrowser/tab-audio-playing-small.svg);
1100 | }
1101 | #context_pinTab,
1102 | #context_pinSelectedTabs {
1103 | --menuitem-image: url(./icons/pin-tab.svg);
1104 | }
1105 | #context_unpinTab,
1106 | #context_unpinSelectedTabs {
1107 | --menuitem-image: url(./icons/unpin-tab.svg);
1108 | }
1109 | #context_duplicateTab,
1110 | #context_duplicateTabs {
1111 | --menuitem-image: url(./icons/tab-copy.svg);
1112 | }
1113 |
1114 | #context_bookmarkTab,
1115 | #context_bookmarkSelectedTabs {
1116 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1117 | }
1118 | #context_moveTabOptions {
1119 | --menuitem-image: url(./icons/arrow-swap.svg);
1120 | }
1121 | #context_sendTabToDevice {
1122 | --menuitem-image: url(./icons/send-to-device.svg);
1123 | }
1124 | #context_shareTabURL { /* At windows */
1125 | --menuitem-image: url(./icons/share.svg);
1126 | }
1127 | #context_reopenInContainer {
1128 | --menuitem-image: url(./icons/container-openin-16.svg);
1129 | }
1130 | #context_selectAllTabs {
1131 | --menuitem-image: url(./icons/tab-multiple.svg);
1132 | }
1133 |
1134 | #context_closeTab {
1135 | --menuitem-image: url(chrome://global/skin/icons/close.svg);
1136 | }
1137 | #context_closeTabOptions {
1138 | }
1139 | #context_undoCloseTab {
1140 | --menuitem-image: url(chrome://global/skin/icons/undo.svg);
1141 | }
1142 |
1143 | /*= new-tab-button-popup ===================================================*/
1144 | #new-tab-button-popup > menuitem[command="Browser:OpenAboutContainers"] {
1145 | --menuitem-image: url(chrome://global/skin/icons/settings.svg);
1146 | }
1147 |
1148 | /*= toolbar-context-menu ===================================================*/
1149 | .customize-context-manageExtension {
1150 | --menuitem-image: url(chrome://global/skin/icons/settings.svg);
1151 | }
1152 | .customize-context-removeExtension {
1153 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1154 | }
1155 | .customize-context-reportExtension {
1156 | --menuitem-image: url(./icons/send.svg);
1157 | }
1158 |
1159 | .customize-context-moveToPanel {
1160 | --menuitem-image: url(chrome://browser/skin/pin-12.svg);
1161 | }
1162 | .toolbar-context-autohide-downloads-button {
1163 | --menuitem-image: url(./icons/password-hide.svg);
1164 | }
1165 | .customize-context-removeFromToolbar {
1166 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1167 | }
1168 | #toolbar-context-openANewTab {
1169 | --menuitem-image: url(chrome://browser/skin/new-tab.svg);
1170 | }
1171 |
1172 | #toolbar-context-reloadSelectedTab,
1173 | #toolbar-context-reloadSelectedTabs {
1174 | --menuitem-image: url(chrome://browser/skin/reload.svg);
1175 | }
1176 | #toolbar-context-bookmarkSelectedTab,
1177 | #toolbar-context-bookmarkSelectedTabs {
1178 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1179 | }
1180 | #toolbar-context-selectAllTabs {
1181 | --menuitem-image: url(./icons/tab-multiple.svg);
1182 | }
1183 | #toolbar-context-undoCloseTab {
1184 | --menuitem-image: url(chrome://global/skin/icons/undo.svg);
1185 | }
1186 |
1187 | #toggle_toolbar-menubar { /* checkbox */
1188 | /* --menuitem-image: url(./icons/calendar-agenda.svg); */
1189 | }
1190 | #toggle_PersonalToolbar { /* Also placeContext */
1191 | --menuitem-image: url(chrome://browser/skin/bookmarks-toolbar.svg);
1192 | }
1193 |
1194 | menuitem.viewCustomizeToolbar {
1195 | --menuitem-image: url(chrome://browser/skin/customize.svg);
1196 | }
1197 |
1198 | /*= blockedPopupOptions ====================================================*/
1199 | #blockedPopupAllowSite {
1200 | --menuitem-image: url("chrome://global/skin/icons/check.svg");
1201 | }
1202 | #blockedPopupOptions > menuitem[oncommand="gPopupBlockerObserver.editPopupSettings();"] {
1203 | --menuitem-image: url("chrome://global/skin/icons/edit.svg");
1204 | }
1205 | #blockedPopupDontShowMessage { /* checkbox */
1206 | --menuitem-image: url("chrome://global/skin/icons/blocked.svg");
1207 | }
1208 |
1209 | /*= autohide-context =======================================================*/
1210 | #autohide-context > menuitem[data-l10n-id="full-screen-autohide"] { /* checkbox */
1211 | }
1212 |
1213 | #autohide-context > menuitem[data-l10n-id="full-screen-exit"] {
1214 | --menuitem-image: url(chrome://browser/skin/fullscreen-exit.svg);
1215 | }
1216 |
1217 | /*= contentAreaContextMenu =================================================*/
1218 | #context-viewsource-goToLine {
1219 | --menuitem-image: url(./icons/text-number-format.svg);
1220 | }
1221 | #context-viewsource-wrapLongLines { /* checkbox */
1222 | /* --menuitem-image: url(./icons/arrow-sort-down-lines.svg); */
1223 | }
1224 |
1225 | #context-viewsource-highlightSyntax { /* checkbox */
1226 | /* --menuitem-image: url(./icons/code.svg); */
1227 | }
1228 |
1229 | #spell-no-suggestions {
1230 | --menuitem-image: url(./icons/text-proofing-tools.svg);
1231 | }
1232 | #spell-add-to-dictionary {
1233 | --menuitem-image: url(./icons/book-add.svg);
1234 | }
1235 | #spell-undo-add-to-dictionary {
1236 | --menuitem-image: url(chrome://global/skin/icons/undo.svg);
1237 | }
1238 |
1239 | #context-openlinkincurrent {
1240 | --menuitem-image: url(./icons/link-square.svg);
1241 | }
1242 | #context-openlinkincontainertab {
1243 | --menuitem-image: url(chrome://browser/skin/new-tab.svg);
1244 | }
1245 | #context-openlinkintab {
1246 | --menuitem-image: url(chrome://browser/skin/new-tab.svg);
1247 | }
1248 | #context-openlinkinusercontext-menu {
1249 | --menuitem-image: url(./icons/container-openin-16.svg);
1250 | }
1251 | #context-openlink {
1252 | --menuitem-image: url(chrome://browser/skin/window.svg);
1253 | }
1254 | #context-openlinkprivate {
1255 | --menuitem-image: url(chrome://browser/skin/privateBrowsing.svg);
1256 | }
1257 |
1258 | #context-bookmarklink {
1259 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1260 | }
1261 | #context-savelink {
1262 | --menuitem-image: url(chrome://browser/skin/save.svg);
1263 | }
1264 | #context-savelinktopocket {
1265 | --menuitem-image: url(chrome://browser/skin/pocket-outline.svg);
1266 | }
1267 | #context-copyemail {
1268 | --menuitem-image: url(chrome://browser/skin/mail.svg);
1269 | }
1270 | #context-copylink {
1271 | --menuitem-image: url(chrome://browser/skin/link.svg);
1272 | }
1273 | #context-sendlinktodevice {
1274 | --menuitem-image: url(./icons/send-to-device.svg);
1275 | }
1276 |
1277 | #context-media-play {
1278 | --menuitem-image: url(chrome://global/skin/media/play-fill.svg);
1279 | }
1280 | #context-media-pause {
1281 | --menuitem-image: url(chrome://global/skin/media/pause-fill.svg);
1282 | }
1283 | #context-media-mute {
1284 | --menuitem-image: url(chrome://global/skin/media/audio-muted.svg);
1285 | }
1286 | #context-media-unmute {
1287 | --menuitem-image: url(chrome://global/skin/media/audio.svg);
1288 | }
1289 | #context-media-playbackrate {
1290 | --menuitem-image: url(./icons/time-picker.svg);
1291 | }
1292 | #context-media-loop { /* checkbox */
1293 | /* --menuitem-image: url(./icons/arrow-repeat-all.svg); */
1294 | }
1295 | #context-leave-dom-fullscreen {
1296 | --menuitem-image: url(chrome://global/skin/media/fullscreenExitButton.svg);
1297 | }
1298 | #context-video-fullscreen {
1299 | --menuitem-image: url(chrome://global/skin/media/fullscreenEnterButton.svg);
1300 | }
1301 | #context-media-hidecontrols {
1302 | --menuitem-image: url(./icons/eye-hide.svg);
1303 | }
1304 | #context-media-showcontrols {
1305 | --menuitem-image: url(./icons/eye-show.svg);
1306 | }
1307 |
1308 | #context-viewvideo {
1309 | --menuitem-image: url(./icons/video.svg);
1310 | }
1311 | #context-video-pictureinpicture { /* checkbox */
1312 | /* --menuitem-image: url(chrome://global/skin/media/picture-in-picture-open.svg); */
1313 | }
1314 |
1315 | #context-reloadimage {
1316 | --menuitem-image: url(./icons/image-arrow-counterclockwise.svg);
1317 | }
1318 | #context-viewimage {
1319 | --menuitem-image: url(./icons/image-add.svg);
1320 | }
1321 | #context-saveimage {
1322 | --menuitem-image: url(./icons/image.svg);
1323 | }
1324 | #context-video-saveimage {
1325 | --menuitem-image: url(./icons/video-snapshot.svg);
1326 | }
1327 | #context-savevideo {
1328 | --menuitem-image: url(./icons/video.svg);
1329 | }
1330 | #context-saveaudio {
1331 | --menuitem-image: url(chrome://global/skin/media/audio.svg);
1332 | }
1333 | #context-copyimage-contents {
1334 | --menuitem-image: url(./icons/image-copy.svg);
1335 | }
1336 | #context-copyimage,
1337 | #context-copyvideourl,
1338 | #context-copyaudiourl {
1339 | --menuitem-image: url(chrome://browser/skin/link.svg);
1340 | }
1341 | #context-sendimage,
1342 | #context-sendvideo,
1343 | #context-sendaudio {
1344 | --menuitem-image: url(chrome://browser/skin/mail.svg);
1345 | }
1346 | #context-viewimageinfo {
1347 | --menuitem-image: url(chrome://global/skin/icons/info.svg);
1348 | }
1349 | #context-viewimagedesc {
1350 | --menuitem-image: url(./icons/image-alt-text.svg);
1351 | }
1352 | #context-setDesktopBackground {
1353 | --menuitem-image: url(./icons/resize-image.svg);
1354 | }
1355 | #context-ctp-play {
1356 | --menuitem-image: url(chrome://global/skin/icons/plugin.svg);
1357 | }
1358 | #context-ctp-hide {
1359 | --menuitem-image: url(chrome://global/skin/icons/plugin-blocked.svg);
1360 | }
1361 |
1362 | #context-savepage {
1363 | --menuitem-image: url(chrome://browser/skin/save.svg);
1364 | }
1365 | #context-pocket {
1366 | --menuitem-image: url(chrome://browser/skin/pocket-outline.svg);
1367 | }
1368 | #context-sendpagetodevice {
1369 | --menuitem-image: url(./icons/send-to-device.svg);
1370 | }
1371 | #fill-login {
1372 | --menuitem-image: url(./icons/password.svg);
1373 | }
1374 | #fill-login-generated-password {
1375 | --menuitem-image: url(chrome://browser/skin/login.svg);
1376 | }
1377 | #manage-saved-logins {
1378 | --menuitem-image: url(./icons/key-multiple.svg);
1379 | }
1380 |
1381 | #context-undo {
1382 | --menuitem-image: url(chrome://global/skin/icons/undo.svg);
1383 | }
1384 | #context-redo {
1385 | }
1386 |
1387 | #context-cut {
1388 | --menuitem-image: url(chrome://browser/skin/edit-cut.svg);
1389 | }
1390 | #context-copy {
1391 | --menuitem-image: url(chrome://browser/skin/edit-copy.svg);
1392 | }
1393 | #context-paste {
1394 | --menuitem-image: url(chrome://browser/skin/edit-paste.svg);
1395 | }
1396 | #context-delete {
1397 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1398 | }
1399 | #context-selectall {
1400 | --menuitem-image: url(./icons/select-all-on.svg);
1401 | }
1402 | #context-print-selection {
1403 | --menuitem-image: url(chrome://global/skin/icons/print.svg);
1404 | }
1405 |
1406 | #context-take-screenshot {
1407 | --menuitem-image: url(chrome://browser/skin/screenshot.svg);
1408 | }
1409 |
1410 | #context-keywordfield {
1411 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1412 | }
1413 | #context-searchselect,
1414 | #context-searchselect-private {
1415 | --menuitem-image: url(chrome://global/skin/icons/search-glass.svg);
1416 | }
1417 |
1418 | #frame {
1419 | --menuitem-image: url(./icons/command-frames.svg);
1420 | }
1421 |
1422 | #spell-check-enabled { /* checkbox */
1423 | }
1424 | #spell-add-dictionaries-main {
1425 | --menuitem-image: url(./icons/book-add.svg);
1426 | }
1427 | #spell-dictionaries {
1428 | --menuitem-image: url(./icons/book.svg);
1429 | }
1430 |
1431 | #context-bidi-text-direction-toggle {
1432 | --menuitem-image: url(./icons/text-direction-horizontal-ltr.svg);
1433 | }
1434 | #context-bidi-page-direction-toggle {
1435 | --menuitem-image: url(./icons/document-landscape-split-hint.svg);
1436 | }
1437 |
1438 | #context-viewpartialsource-selection,
1439 | #context-viewsource {
1440 | --menuitem-image: url(./icons/search-file.svg);
1441 | }
1442 | #context-inspect-a11y {
1443 | --menuitem-image: url(chrome://devtools/skin/images/tool-accessibility.svg);
1444 | }
1445 | #context-inspect {
1446 | --menuitem-image: url(chrome://devtools/skin/images/command-pick.svg)
1447 | }
1448 |
1449 | #context-media-eme-learnmore { /* iconic */
1450 | }
1451 |
1452 | @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled") {
1453 | #context-back {
1454 | --menuitem-image: url(chrome://browser/skin/back.svg);
1455 | }
1456 | #context-forward {
1457 | --menuitem-image: url(chrome://browser/skin/forward.svg);
1458 | }
1459 | #context-reload {
1460 | --menuitem-image: url(chrome://browser/skin/reload.svg);
1461 | }
1462 | #context-stop {
1463 | --menuitem-image: url(chrome://global/skin/icons/close.svg);
1464 | }
1465 |
1466 | #context-bookmarkpage {
1467 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1468 | }
1469 | }
1470 |
1471 | /*= pictureInPictureToggleContextMenu ======================================*/
1472 | #pictureInPictureToggleContextMenu > menuitem[oncommand="PictureInPicture.hideToggle();"] {
1473 | --menuitem-image: url(./icons/eye-hide.svg);
1474 | }
1475 |
1476 | /*= placeContext ===========================================================*/
1477 | #placesContext_open {
1478 | --menuitem-image: url(./icons/link-square.svg);
1479 | }
1480 | #placesContext_openBookmarkContainer\:tabs,
1481 | #placesContext_openBookmarkLinks\:tabs {
1482 | --menuitem-image: url(./icons/movetowindow-16.svg);
1483 | }
1484 | #placesContext_open\:newtab,
1485 | #placesContext_openContainer\:tabs,
1486 | #placesContext_openLinks\:tabs {
1487 | --menuitem-image: url(chrome://browser/skin/new-tab.svg);
1488 | }
1489 | #placesContext_open\:newwindow {
1490 | --menuitem-image: url(chrome://browser/skin/window.svg);
1491 | }
1492 | #placesContext_open\:newprivatewindow {
1493 | --menuitem-image: url(chrome://browser/skin/privateBrowsing.svg);
1494 | }
1495 |
1496 | #placesContext_show_bookmark\:info,
1497 | #placesContext_show\:info,
1498 | #placesContext_show_folder\:info {
1499 | --menuitem-image: url(chrome://global/skin/icons/edit.svg);
1500 | }
1501 | #placesContext_deleteBookmark,
1502 | #placesContext_deleteFolder,
1503 | #placesContext_delete,
1504 | #placesContext_delete_history {
1505 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1506 | }
1507 | #placesContext_deleteHost {
1508 | --menuitem-image: url(./icons/eye-hide.svg);
1509 | }
1510 | #placesContext_sortBy\:name {
1511 | --menuitem-image: url(./icons/text-sort-ascending.svg);
1512 | }
1513 |
1514 | #placesContext_cut {
1515 | --menuitem-image: url(chrome://browser/skin/edit-cut.svg);
1516 | }
1517 | #placesContext_copy {
1518 | --menuitem-image: url(chrome://browser/skin/edit-copy.svg);
1519 | }
1520 | #placesContext_paste_group {
1521 | --menuitem-image: url(chrome://browser/skin/edit-paste.svg);
1522 | }
1523 |
1524 | #placesContext_new\:bookmark {
1525 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1526 | }
1527 | #placesContext_new\:folder {
1528 | --menuitem-image: url(chrome://global/skin/icons/folder.svg);
1529 | }
1530 | #placesContext_new\:separator {
1531 | --menuitem-image: url(./icons/vertical-line.svg);
1532 | }
1533 |
1534 | #placesContext_paste {
1535 | --menuitem-image: url(chrome://browser/skin/edit-paste.svg);
1536 | }
1537 |
1538 | #placesContext_createBookmark {
1539 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1540 | }
1541 | #show-other-bookmarks_PersonalToolbar { /* checkbox */
1542 | /* --menuitem-image: url(./icons/star-line-horizontal.svg); */
1543 | }
1544 | #placesContext_showAllBookmarks {
1545 | --menuitem-image: url(chrome://browser/skin/bookmark-star-on-tray.svg);
1546 | }
1547 |
1548 | menupopup[context="placesContext"] > .openintabs-menuitem {
1549 | --menuitem-image: url(./icons/movetowindow-16.svg);
1550 | }
1551 |
1552 | /*= pageActionContextMenu ==================================================*/
1553 | .pageActionContextMenuItem.extensionPinned.extensionUnpinned.manageExtensionItem {
1554 | --menuitem-image: url(chrome://global/skin/icons/settings.svg);
1555 | }
1556 | .pageActionContextMenuItem.extensionPinned.extensionUnpinned.removeExtensionItem {
1557 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1558 | }
1559 |
1560 | /*= customizationPanelItemContextMenu ======================================*/
1561 | #customizationPanelItemContextMenuUnpin {
1562 | --menuitem-image: url(./icons/unpin-tab.svg);
1563 | }
1564 | .customize-context-removeFromPanel {
1565 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1566 | }
1567 |
1568 | /*= customizationPaletteItemContextMenu ====================================*/
1569 | .customize-context-addToToolbar {
1570 | --menuitem-image: url(chrome://devtools/skin/images/dock-bottom.svg);
1571 | }
1572 | .customize-context-addToPanel {
1573 | --menuitem-image: url(chrome://browser/skin/menu.svg);
1574 | }
1575 |
1576 | /*= customizationPanelContextMenu ==========================================*/
1577 | #customizationPanelContextMenu > menuitem[command="cmd_CustomizeToolbars"] {
1578 | --menuitem-image: url(chrome://browser/skin/customize.svg);
1579 | }
1580 |
1581 | /*= downloads-button-autohide-panel ========================================*/
1582 | #downloads-button-autohide-checkbox { /* checkbox */
1583 | }
1584 |
1585 | /*= downloadsContextMenu ===================================================*/
1586 | .downloadPauseMenuItem {
1587 | --menuitem-image: url(chrome://global/skin/media/pause-fill.svg);
1588 | }
1589 | .downloadResumeMenuItem {
1590 | --menuitem-image: url(chrome://global/skin/media/play-fill.svg);
1591 | }
1592 | .downloadUnblockMenuItem {
1593 | --menuitem-image: url(./icons/checkmark-circle.svg);
1594 | }
1595 | .downloadUseSystemDefaultMenuItem {
1596 | --menuitem-image: url(chrome://browser/skin/open.svg);
1597 | }
1598 | .downloadAlwaysUseSystemDefaultMenuItem { /* checkbox */
1599 | }
1600 | .downloadShowMenuItem {
1601 | --menuitem-image: url(chrome://global/skin/icons/folder.svg);
1602 | }
1603 |
1604 | #downloadsContextMenu > menuitem[command="downloadsCmd_openReferrer"] {
1605 | --menuitem-image: url(./icons/link-square.svg);
1606 | }
1607 | #downloadsContextMenu > menuitem[command="downloadsCmd_copyLocation"] {
1608 | --menuitem-image: url(chrome://browser/skin/link.svg);
1609 | }
1610 |
1611 | .downloadRemoveFromHistoryMenuItem {
1612 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1613 | }
1614 | #downloadsContextMenu > menuitem[command="downloadsCmd_clearList"],
1615 | #downloadsContextMenu > menuitem[command="downloadsCmd_clearDownloads"] {
1616 | --menuitem-image: url(./icons/broom.svg);
1617 | }
1618 |
1619 | /*= SyncedTabsSidebarContext ===============================================*/
1620 | #syncedTabsOpenSelected {
1621 | --menuitem-image: url(./icons/link-square.svg);
1622 | }
1623 | #syncedTabsOpenSelectedInTab {
1624 | --menuitem-image: url(chrome://browser/skin/new-tab.svg);
1625 | }
1626 | #syncedTabsOpenSelectedInWindow {
1627 | --menuitem-image: url(chrome://browser/skin/window.svg);
1628 | }
1629 | #syncedTabsOpenSelectedInPrivateWindow {
1630 | --menuitem-image: url(chrome://browser/skin/privateBrowsing.svg);
1631 | }
1632 |
1633 | #syncedTabsBookmarkSelected {
1634 | --menuitem-image: url(chrome://browser/skin/bookmark.svg);
1635 | }
1636 | #syncedTabsCopySelected {
1637 | --menuitem-image: url(chrome://browser/skin/link.svg);
1638 | }
1639 |
1640 | #syncedTabsOpenAllInTabs {
1641 | --menuitem-image: url(./icons/movetowindow-16.svg);
1642 | }
1643 | #syncedTabsManageDevices {
1644 | --menuitem-image: url(chrome://global/skin/icons/settings.svg);
1645 | }
1646 | #syncedTabsRefresh {
1647 | --menuitem-image: url(chrome://browser/skin/sync.svg);
1648 | }
1649 |
1650 | /*= SyncedTabsSidebarTabsFilterContext =====================================*/
1651 | #SyncedTabsSidebarTabsFilterContext > menuitem[cmd="cmd_undo"] {
1652 | --menuitem-image: url(chrome://global/skin/icons/undo.svg);
1653 | }
1654 | #SyncedTabsSidebarTabsFilterContext > menuitem[cmd="cmd_cut"] {
1655 | --menuitem-image: url(chrome://browser/skin/edit-cut.svg);
1656 | }
1657 | #SyncedTabsSidebarTabsFilterContext > menuitem[cmd="cmd_copy"]{
1658 | --menuitem-image: url(chrome://browser/skin/edit-copy.svg);
1659 | }
1660 | #SyncedTabsSidebarTabsFilterContext > menuitem[cmd="cmd_paste"]{
1661 | --menuitem-image: url(chrome://browser/skin/edit-paste.svg);
1662 | }
1663 | #SyncedTabsSidebarTabsFilterContext > menuitem[cmd="cmd_delete"]{
1664 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1665 | }
1666 |
1667 | #SyncedTabsSidebarTabsFilterContext > menuitem[cmd="cmd_selectAll"]{
1668 | --menuitem-image: url(./icons/select-all-on.svg);
1669 | }
1670 |
1671 | #syncedTabsRefreshFilter {
1672 | --menuitem-image: url(chrome://browser/skin/sync.svg);
1673 | }
1674 |
1675 | /*= urlbar-input-container =================================================*/
1676 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_undo"] {
1677 | --menuitem-image: url(chrome://global/skin/icons/undo.svg);
1678 | }
1679 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_redo"] {
1680 | }
1681 |
1682 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_cut"] {
1683 | --menuitem-image: url(chrome://browser/skin/edit-cut.svg);
1684 | }
1685 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_copy"] {
1686 | --menuitem-image: url(chrome://browser/skin/edit-copy.svg);
1687 | }
1688 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_paste"] {
1689 | --menuitem-image: url(chrome://browser/skin/edit-paste.svg);
1690 | }
1691 | #paste-and-go {
1692 | }
1693 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_delete"] {
1694 | --menuitem-image: url(chrome://global/skin/icons/delete.svg);
1695 | }
1696 | #urlbar-input-container .textbox-contextmenu menuitem[cmd="cmd_selectAll"] {
1697 | --menuitem-image: url(./icons/select-all-on.svg);
1698 | }
1699 | }
1700 |
--------------------------------------------------------------------------------