lots of shenanigans
|
@ -284,6 +284,7 @@ tooltip label {
|
|||
.disk_label {
|
||||
color: $base09;
|
||||
padding-top: 3px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.icondisk {
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
:class "bat_module"
|
||||
:vexpand "false"
|
||||
:hexpand "false"
|
||||
:space-evenly true
|
||||
:space-evenly false
|
||||
:spacing 0
|
||||
:visible {HOST == "kaladin" ? "false" : "true"}
|
||||
(button
|
||||
|
@ -135,7 +135,7 @@
|
|||
:class "disk_module"
|
||||
:vexpand "false"
|
||||
:hexpand "false"
|
||||
:space-evenly true
|
||||
:space-evenly false
|
||||
:spacing 0
|
||||
(button
|
||||
:onclick "scripts/pop system"
|
||||
|
@ -151,7 +151,7 @@
|
|||
:class "bright_module"
|
||||
:vexpand "false"
|
||||
:hexpand "false"
|
||||
:space-evenly true
|
||||
:space-evenly false
|
||||
:visible {HOST == "kaladin" ? "false" : "true"}
|
||||
(button
|
||||
:class "iconbright"
|
||||
|
@ -168,7 +168,7 @@
|
|||
:class "vol_module"
|
||||
:vexpand "false"
|
||||
:hexpand "false"
|
||||
:space-evenly true
|
||||
:space-evenly false
|
||||
(button
|
||||
:class "iconvol"
|
||||
:onclick "scripts/pop audio"
|
||||
|
@ -183,7 +183,7 @@
|
|||
:class "cpu_module"
|
||||
:vexpand "false"
|
||||
:hexpand "false"
|
||||
;; :space-evenly true
|
||||
:space-evenly false
|
||||
(button
|
||||
:onclick "scripts/pop system"
|
||||
:class "iconcpu"
|
||||
|
@ -196,7 +196,7 @@
|
|||
(defwidget mem []
|
||||
(box
|
||||
:class "mem_module"
|
||||
:space-evenly true
|
||||
:space-evenly false
|
||||
:vexpand "true"
|
||||
:hexpand "false"
|
||||
(button
|
||||
|
|
|
@ -34,7 +34,7 @@ echo "(box \
|
|||
:tooltip \"$title\"))"
|
||||
}
|
||||
|
||||
socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r event; do
|
||||
socat -u UNIX-CONNECT:"$XDG_RUNTIME_DIR"/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r event; do
|
||||
workspaces "$event"
|
||||
module
|
||||
done
|
||||
|
|
|
@ -3,7 +3,7 @@ active (){
|
|||
hyprctl monitors -j | jq '.[] | select(.focused) | .activeWorkspace.id'
|
||||
}
|
||||
|
||||
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | while read -r line; do
|
||||
socat -u UNIX-CONNECT:"$XDG_RUNTIME_DIR"/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | while read -r line; do
|
||||
active
|
||||
done
|
||||
|
||||
|
|
|
@ -6,6 +6,6 @@ spaces (){
|
|||
}
|
||||
|
||||
spaces
|
||||
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | while read -r line; do
|
||||
socat -u UNIX-CONNECT:"$XDG_RUNTIME_DIR"/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | while read -r line; do
|
||||
hyprctl workspaces -j
|
||||
done
|
||||
|
|
|
@ -1,674 +0,0 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
|
@ -1,68 +0,0 @@
|
|||
# Collection of random CSS hacks for Firefox
|
||||
|
||||
Stylesheets in this repository are tested only on Windows 10. They should work on current Nightlies but also generally on latest release Firefox unless otherwise noted.
|
||||
|
||||
# Loading user*.css files
|
||||
|
||||
1. Find your profile folder, if Firefox is running you can find by going to about:support and there should be a button with label "Open Folder" under application basics
|
||||
2. Create a new folder to the profile folder and name it "chrome"
|
||||
3. userChrome.css and userContent.css files should be created inside this chrome-folder.
|
||||
|
||||
Clone this repository or individual files inside that newly created chrome-folder.
|
||||
In the end you should have a folder structure like this:
|
||||
|
||||
```
|
||||
<profile_folder>
|
||||
|_chrome
|
||||
| |_chrome
|
||||
| |_content
|
||||
| |_userChrome.css
|
||||
| |_userContent.css
|
||||
|_extensions
|
||||
|_prefs.js
|
||||
...
|
||||
all other profile folders and files
|
||||
...
|
||||
```
|
||||
|
||||
In short, create a parent chrome folder to the same directory where prefs.js is - the main profile folder. Firefox loads userContent.css and userChrome.css files only from that non-default chrome-folder.
|
||||
|
||||
# Usage
|
||||
|
||||
Stylesheets are divided in to chrome and content folders. The difference is that styles inside "content" affect web-pages whereas styles inside "chrome" affect browser UI.
|
||||
|
||||
Use stylesheets under "chrome" in userChrome.css
|
||||
|
||||
Use stylesheets under "content" in userContent.css
|
||||
|
||||
You can import the stylesheets with @-rule import like this:
|
||||
|
||||
```css
|
||||
@import url("path/filename.css");
|
||||
```
|
||||
|
||||
## Important!
|
||||
|
||||
Note that all `@import` rules need to be placed before any other rules in the file, including @namespace rules. Additionally, the order of imported files is just as important as the order of rules within one file.
|
||||
|
||||
**Most notably, you are advised to import theme_ files before any other modules.**
|
||||
|
||||
# Theme
|
||||
|
||||
Stylesheets prefixed with `theme_` require `theme_color_variables.css` to be imported.
|
||||
|
||||
Example userChrome.css resulting in rather complete dark blueish-grey UI:
|
||||
|
||||
```css
|
||||
@import url(theme_color_variables.css);
|
||||
@import url(theme_sidebar.css);
|
||||
@import url(theme_toolbars.css);
|
||||
@import url(theme_popups_and_menus.css);
|
||||
|
||||
/* Your other rules here */
|
||||
```
|
||||
|
||||
You can use individual modules from theme such as to only include popups_and_menus. But it would still be required that you import the theme_color_variables.css or you'll have to manually edit all the colors.
|
||||
|
||||
|
||||
Example userChrome.css and userContent.css can be used as is to enable theme + certain features after /chrome and /content folders are copied into your profile.
|
146
.config/firefox/chrome.bak/ShyFox/content/shy-about.css
Normal file
|
@ -0,0 +1,146 @@
|
|||
/*== ShyFox about:something pages ===================================================================================================================
|
||||
|
||||
Styles for settings, Firefox View, etc.
|
||||
|
||||
*/
|
||||
|
||||
@-moz-document url-prefix("about:"), url-prefix("chrome:"){
|
||||
|
||||
/* accent color */
|
||||
:root, panel, dialog, window{
|
||||
--in-content-primary-button-background-active: var(--shy-color) !important;
|
||||
--in-content-primary-button-background-hover: var(--shy-color) !important;
|
||||
--lwt-toolbarbutton-icon-fill-attention: var(--shy-color) !important;
|
||||
--in-content-primary-button-background: var(--shy-color) !important;
|
||||
--toolbarbutton-icon-fill-attention: var(--shy-color) !important;
|
||||
--fxview-primary-action-background: var(--shy-color) !important;
|
||||
--toolbar-field-focus-border-color: var(--shy-color) !important;
|
||||
--button-primary-active-bgcolor: var(--shy-color) !important;
|
||||
--button-primary-hover-bgcolor: var(--shy-color) !important;
|
||||
--uc-checkbox-checked-bgcolor: var(--shy-color) !important;
|
||||
--color-accent-primary-active: var(--shy-color) !important;
|
||||
--color-accent-primary-hover: var(--shy-color) !important;
|
||||
--checkbox-checked-bgcolor: var(--shy-color) !important;
|
||||
--in-content-accent-color: var(--shy-color) !important;
|
||||
--button-primary-bgcolor: var(--shy-color) !important;
|
||||
--in-content-link-color: var(--shy-color) !important;
|
||||
--color-accent-primary: var(--shy-color) !important;
|
||||
--focus-outline-color: var(--shy-color) !important;
|
||||
--input-border-color: var(--shy-color) !important;
|
||||
}
|
||||
|
||||
.primary-button{
|
||||
--primary-button-background-color: var(--shy-color) !important;
|
||||
--primary-button-hover-background-color: color-mix(in srgb, white 10%, var(--shy-color)) !important;
|
||||
--primary-button-active-background-color: color-mix(in srgb, white 20%, var(--shy-color)) !important;
|
||||
}
|
||||
|
||||
:is(.icon, img)[src="chrome://global/skin/icons/info-filled.svg"] {fill: var(--shy-color) !important;}
|
||||
moz-message-bar {background-color: var(--in-content-button-background) !important;}
|
||||
|
||||
.cpu{
|
||||
background: linear-gradient(
|
||||
to left,
|
||||
var(--shy-color)
|
||||
calc(var(--bar-width) * 1%),
|
||||
transparent
|
||||
calc(var(--bar-width) * 1%)
|
||||
) !important;
|
||||
}
|
||||
|
||||
button[role="tab"][selected]::before {display: none !important;}
|
||||
|
||||
/* big rounded corners */
|
||||
.menupopup-arrowscrollbox, moz-message-bar,
|
||||
.addon-detail-contribute, panel-list,
|
||||
.trr-message-container,
|
||||
.web-appearance-choice, body[dir],
|
||||
.sidebar-footer-link, menupopup,
|
||||
.info-box-container, section,
|
||||
.sidebar-item--tall, details,
|
||||
.info-box-content,
|
||||
.sidebar-item,
|
||||
.qr-code-box, select,
|
||||
.action-box, table,
|
||||
.dialogBox, tree,
|
||||
.info-box,
|
||||
.category,
|
||||
.toolbar,
|
||||
.modal,
|
||||
.card,
|
||||
|
||||
#ping-picker,
|
||||
#reportBox,
|
||||
#reportBox #comments,
|
||||
#migrationWizardDialog,
|
||||
#translations-manage-install-list
|
||||
|
||||
{border-radius: var(--big-rounding) !important;}
|
||||
|
||||
/* small rounded corners */
|
||||
button:not(
|
||||
:is(
|
||||
[class*="devtools"],
|
||||
[class*="search"],
|
||||
[class*="tab"]
|
||||
)
|
||||
),
|
||||
|
||||
input:not([type="checkbox"]),
|
||||
|
||||
.search-container,
|
||||
.study-icon,
|
||||
|
||||
search-textbox,
|
||||
menulist,
|
||||
span,
|
||||
a,
|
||||
|
||||
.tooltip-container .tooltip-panel,
|
||||
|
||||
#activeLanguages
|
||||
|
||||
{border-radius: var(--rounding) !important;}
|
||||
|
||||
/* only top or bottom corners */
|
||||
.card-heading-image{
|
||||
border-top-left-radius: var(--big-rounding) !important;
|
||||
border-top-right-radius: var(--big-rounding) !important;
|
||||
}
|
||||
|
||||
listheader{
|
||||
border-top-left-radius: var(--rounding) !important;
|
||||
border-top-right-radius: var(--rounding) !important;
|
||||
}
|
||||
|
||||
richlistbox{
|
||||
border-bottom-left-radius: var(--rounding) !important;
|
||||
border-bottom-right-radius: var(--rounding) !important;
|
||||
}
|
||||
|
||||
/* dropdown menu margin */
|
||||
.tooltip-container .tooltip-panel .menuitem,
|
||||
panel-list[role="menu"] panel-item {margin-inline: 5px}
|
||||
|
||||
}
|
||||
|
||||
/* about:debugging thin mode */
|
||||
@-moz-document url-prefix("about:debugging") {
|
||||
@media (max-width: 700px) {
|
||||
.sidebar{
|
||||
width: 45px !important;
|
||||
img{margin: none !important;}
|
||||
|
||||
.sidebar-item:has(.qa-sidebar-no-devices),
|
||||
.sidebar__adb-status,
|
||||
.sidebar__refresh-usb,
|
||||
.sidebar__footer__support-help span,
|
||||
.ellipsis-text {display: none}
|
||||
}
|
||||
|
||||
sidebar__footer__support-help, .sidebar-item__link{width: 23px !important;}
|
||||
.sidebar-item:has(.sidebar__footer__support-help) {width: 14px !important;}
|
||||
.sidebar-fixed-item__icon{margin-right: 0px !important;}
|
||||
.app{display: flex !important;}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,62 @@
|
|||
/*== ShyFox Contents ================================================================================================================================
|
||||
|
||||
Styles for some other things stylable in userContent.css
|
||||
|
||||
/* extensions popups rounding */
|
||||
@-moz-document url-prefix("moz-extension:"){
|
||||
body {border-radius: var(--big-rounding) !important;}
|
||||
}
|
||||
|
||||
/* screenshots */
|
||||
|
||||
#screenshots-component{
|
||||
button {border-radius: var(--rounding) !important;}
|
||||
#buttons-container {border-radius: var(--big-rounding) !important;}
|
||||
|
||||
.screenshots-button {
|
||||
--in-content-primary-button-background: var(--shy-color) !important;
|
||||
--in-content-primary-button-background-hover: color-mix(in oklab, var(--in-content-primary-button-background), white 10%) !important;
|
||||
--in-content-primary-button-background-active: color-mix(in oklab, var(--in-content-primary-button-background), white 20%) !important;
|
||||
--in-content-focus-outline-color: var(--shy-color) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* simple translate icon */
|
||||
@media (-moz-bool-pref: "shyfox.enable.ext.mono.context.icons") {
|
||||
.simple-translate-button {
|
||||
background-image: none !important;
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
|
||||
background-color: var(--simple-translate-main-text);
|
||||
mask-image: url("../../icons/translate.svg");
|
||||
mask-repeat: no-repeat;
|
||||
mask-position: center;
|
||||
|
||||
width: inherit !important;
|
||||
height: inherit !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* simple translate */
|
||||
.simple-translate-panel{
|
||||
border-radius: var(--big-rounding) !important;
|
||||
border: 1px solid color-mix(in srgb, var(--simple-translate-main-bg) 90%, var(--simple-translate-main-text)) !important;
|
||||
}
|
||||
|
||||
.simple-translate-button{
|
||||
border-radius: 7px !important;
|
||||
border: 1px solid color-mix(in srgb, var(--simple-translate-main-bg) 65%, var(--simple-translate-main-text)) !important;
|
||||
}
|
||||
|
||||
/* Adaptive Tab Bar Color settings accent */
|
||||
@-moz-document url("moz-extension://d6e33c37-61b0-488f-9899-bf896d64db63/options.html"){
|
||||
* {
|
||||
--color-link: var(--shy-color) !important;
|
||||
--color-accent: var(--shy-color) !important;
|
||||
--color-link-hover: color-mix(in srgb, var(--shy-color) 60%, var(--color)) !important;
|
||||
--color-link-active: color-mix(in srgb, var(--shy-color) 30%, var(--color)) !important;
|
||||
}
|
||||
}
|
177
.config/firefox/chrome.bak/ShyFox/content/shy-new-tab.css
Normal file
|
@ -0,0 +1,177 @@
|
|||
/*== ShyFox New Tab =================================================================================================================================
|
||||
|
||||
Styles for new tab
|
||||
|
||||
*/
|
||||
|
||||
@-moz-document url("about:home"), url("about:newtab") {
|
||||
|
||||
/* accent color */
|
||||
:root{
|
||||
--newtab-primary-action-background: var(--shy-color) !important;
|
||||
--newtab-primary-action-background-pocket: var(--shy-color) !important;
|
||||
|
||||
--tr-col: color-mix(in srgb, var(--newtab-background-color) 40%, transparent);
|
||||
--tr-hov-col: color-mix(in srgb, var(--tr-col) 80%, var(--newtab-text-primary-color));
|
||||
--newtab-background-color-secondary: color-mix(in srgb, var(--newtab-background-color) 90%, var(--newtab-text-primary-color)) !important;
|
||||
--background-color-box: var(--tr-col) !important;
|
||||
}
|
||||
|
||||
.toggle-button[aria-pressed="true"] {
|
||||
background: var(--shy-color) !important;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.home-section .section .sponsored-checkbox:checked {
|
||||
background-color: var(--shy-color) !important;
|
||||
}
|
||||
|
||||
.search-wrapper.fake-focus:not(.search.disabled) .search-handoff-button {
|
||||
border: 1px solid var(--shy-color) !important;
|
||||
box-shadow: 0 0 0 2px color-mix(in srgb, var(--shy-color) 20%, transparent) !important;
|
||||
}
|
||||
|
||||
/* rounded corners */
|
||||
.top-site-button,
|
||||
.context-menu button,
|
||||
.close-button,
|
||||
.home-section .section .selector
|
||||
{border-radius: var(--rounding) !important;}
|
||||
|
||||
.top-site-outer,
|
||||
.top-site-inner,
|
||||
.context-menu,
|
||||
.icon-settings,
|
||||
.weatherCard
|
||||
{border-radius: var(--big-rounding) !important;}
|
||||
|
||||
/* pinned links */
|
||||
.top-site-button {overflow: clip;}
|
||||
|
||||
.tile, .top-site-icon{
|
||||
background-color: transparent !important;
|
||||
box-shadow: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.top-site-button, .customize-menu{
|
||||
background-color: var(--tr-col) !important;
|
||||
backdrop-filter: blur(var(--blur-radius));
|
||||
}
|
||||
|
||||
.title {
|
||||
background-color: color-mix(in srgb, var(--tr-col) 90%, var(--newtab-text-primary-color));
|
||||
& > span {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.top-site-outer:is(.active, :focus, :hover){
|
||||
background: var(--tr-hov-col) !important;
|
||||
}
|
||||
|
||||
.top-site-outer, .top-site-inner {
|
||||
& > a {padding: 0 !important;}
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.top-site-outer:not(:hover) .icon-pin-small{display: none !important;}
|
||||
|
||||
.context-menu-item{
|
||||
padding-inline: 5px !important;
|
||||
padding-block: 1px !important;
|
||||
}
|
||||
|
||||
/* search box */
|
||||
.search-handoff-button {
|
||||
border-radius: 100px !important;
|
||||
backdrop-filter: blur(var(--blur-radius));
|
||||
background-color: var(--tr-col) !important;
|
||||
}
|
||||
|
||||
/* height overflow */
|
||||
@media (height > 700px) {
|
||||
body:not(.inline-onboarding) .fixed-search .search-wrapper {
|
||||
background-color: var(--tr-col) !important;
|
||||
backdrop-filter: blur(var(--blur-radius));
|
||||
}
|
||||
.logo-and-wordmark {display: flex !important;}
|
||||
}
|
||||
|
||||
@media (height <= 700px) {
|
||||
.search-wrapper {padding: 20px 0 30px !important;}
|
||||
.outer-wrapper > main {margin-top: 0px !important;}
|
||||
}
|
||||
|
||||
/* margin to logo when only search is enabled */
|
||||
.only-search .logo-and-wordmark {margin-top: 20px !important;}
|
||||
|
||||
/* wallpaper */
|
||||
body{
|
||||
background-repeat: no-repeat !important;
|
||||
background-position: center !important;
|
||||
background-size: cover !important;
|
||||
background-attachment: fixed !important;
|
||||
}
|
||||
|
||||
/* dark wallpaper */
|
||||
:root[lwt-newtab-brighttext] body {background-image: url("../../wallpaper.png") !important;}
|
||||
|
||||
/* light wallpaper */ /* `wallpaper.png` will be used when `-light` one does not exist */
|
||||
:root:not([lwt-newtab-brighttext]) body {background-image: url("../../wallpaper-light.png"), url("../../wallpaper.png") !important;}
|
||||
|
||||
/* central box */
|
||||
main{
|
||||
margin-top: 15% !important;
|
||||
height: 50%;
|
||||
background-color: var(--tr-col);
|
||||
border-radius: var(--giant-rounding);
|
||||
}
|
||||
|
||||
/* settings */
|
||||
.icon-settings:hover {background-color: var(--tr-hov-col) !important;}
|
||||
.close-button-wrapper {background-color: transparent !important;}
|
||||
|
||||
.home-section .section .selector{
|
||||
background-color: var(--tr-col) !important;
|
||||
&:hover{background-color: var(--tr-hov-col) !important;}
|
||||
}
|
||||
|
||||
/* weather */
|
||||
.weatherInfoLink:hover, .weatherButtonContextMenuWrapper:hover {
|
||||
background-color: var(--tr-hov-col) !important;
|
||||
}
|
||||
|
||||
.weatherCard:not(:hover) .weatherButtonContextMenuWrapper{opacity: 0}
|
||||
.weatherInfoLink {border-radius: 0px !important;}
|
||||
.weatherButtonContextMenuWrapper::after{display: none !important;}
|
||||
|
||||
/* autograph */
|
||||
.activity-stream::before,
|
||||
.activity-stream::after
|
||||
{
|
||||
font-family: monospace;
|
||||
color: white;
|
||||
opacity: 0.042;
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
bottom: 10px;
|
||||
}
|
||||
|
||||
.activity-stream::before{
|
||||
content: "ShyFox by N2ezr";
|
||||
left: 10px;
|
||||
}
|
||||
|
||||
.activity-stream::after{
|
||||
content: "42 🤙";
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@-moz-document url("about:privatebrowsing") {
|
||||
.search-handoff-button {border-radius: 100px !important;}
|
||||
.info {border-radius: var(--big-rounding) !important;}
|
||||
}
|
142
.config/firefox/chrome.bak/ShyFox/content/shy-sidebery.css
Normal file
|
@ -0,0 +1,142 @@
|
|||
/*== ShyFox Sidebery ===============================================================================================================================
|
||||
|
||||
Styles for Sidebery extension
|
||||
|
||||
|
||||
--- VARIABLES ---------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@-moz-document regexp("^moz-extension://.*?/sidebar/sidebar.html"){ /* wrap start */
|
||||
|
||||
#root.root {
|
||||
--general-border-radius: var(--rounding) !important;
|
||||
--general-margin: 4px !important;
|
||||
|
||||
--button-size: 35px;
|
||||
--pin-favicon-size: 30px;
|
||||
|
||||
--nav-btn-margin: calc(var(--margin) / 2) !important;
|
||||
--nav-btn-width: var(--button-size) !important;
|
||||
--nav-btn-height: var(--button-size) !important;
|
||||
--nav-btn-len-margin: calc(var(--rounding) / 4) !important;
|
||||
|
||||
--audio-btn-round-margin: calc(var(--big-rounding) / 2) !important;
|
||||
|
||||
--tabs-audio-btn-width: 22px !important;
|
||||
--tabs-margin: 6px !important;
|
||||
--tabs-height: var(--button-size) !important;
|
||||
--tabs-inner-gap: calc(var(--margin) / 2) !important;
|
||||
--tabs-border-radius: var(--big-rounding) !important;
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.fill.accent.with.icons.fill.color") {--shy-color: var(--s-toolbar-fg, var(--shy-accent-color)) !important;}
|
||||
--accent: var(--shy-color) !important;
|
||||
--frame-el-overlay-selected-border: var(--accent) !important;
|
||||
--toolbar-el-overlay-selected-border: var(--accent) !important;
|
||||
--status-notice: var(--accent) !important;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- PINNED TABS -------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* size calculation */
|
||||
.PinnedTabsBar .tab-wrapper .Tab {
|
||||
--n: 3; --m: 1;
|
||||
|
||||
width: calc(
|
||||
100vw / var(--n)
|
||||
- var(--tabs-margin) * (1/var(--n) + 1)
|
||||
) !important;
|
||||
|
||||
height: calc( (
|
||||
(100vw - var(--tabs-margin)) / 3.6
|
||||
) / var(--m) ) !important;
|
||||
}
|
||||
|
||||
/* 1 pinned tab */
|
||||
.PinnedTabsBar
|
||||
.tab-wrapper:nth-child(1):last-child .Tab
|
||||
{--n: 1; --m: 1.4;}
|
||||
|
||||
/* 2 tabs in bottom row */
|
||||
.PinnedTabsBar:has(.tab-wrapper:nth-child(3n + 2):last-child)
|
||||
.tab-wrapper:nth-last-child(-n + 2) .Tab
|
||||
{--n: 2; --m: 1.2;}
|
||||
|
||||
/* 4 tabs in bottom row */
|
||||
.PinnedTabsBar:has(.tab-wrapper:nth-child(3n + 4):last-child)
|
||||
.tab-wrapper:nth-last-child(-n + 4) .Tab
|
||||
{--n: 4; --m: 1.3;}
|
||||
|
||||
/* audio icon */
|
||||
.Tab[data-pin="true"] > .body > .audio {
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
right: var(--audio-btn-round-margin) !important;
|
||||
top: var(--audio-btn-round-margin) !important;
|
||||
}
|
||||
|
||||
/* bigger favicon */
|
||||
.Tab[data-pin="true"] :is(.fav, .fav-icon){
|
||||
width: var(--pin-favicon-size) !important;
|
||||
height: var(--pin-favicon-size) !important;
|
||||
}
|
||||
|
||||
/* shadow, outline and background */
|
||||
.Tab[data-pin="true"] .body {
|
||||
border: 1px solid var(--s-frame-bg) !important;
|
||||
background-color: var(--toolbar-bg) !important;
|
||||
}
|
||||
|
||||
/* selected tab outline */
|
||||
.Tab[data-pin="true"][data-active="true"] .body
|
||||
{border: 1px solid var(--s-frame-fg) !important;}
|
||||
|
||||
/* remove bottom margin */
|
||||
.PinnedTabsBar {margin-bottom: 0px !important;}
|
||||
|
||||
/*
|
||||
|
||||
--- OTHER -------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* consistent navbar background */
|
||||
#nav_bar {background-color: transparent !important;}
|
||||
|
||||
/* padding */
|
||||
#nav_bar {
|
||||
padding-top: var(--nav-btn-margin) !important;
|
||||
padding-bottom: var(--general-margin) !important;
|
||||
}
|
||||
|
||||
.BottomBar {padding: var(--nav-btn-margin) !important;}
|
||||
|
||||
/* popup */
|
||||
.popup {margin: var(--tabs-margin) !important;}
|
||||
.popup-container {background-color: transparent !important;}
|
||||
|
||||
/* search */
|
||||
#search_bar {margin: 4px !important;}
|
||||
#search_bar[data-showed="false"]{display: none !important;}
|
||||
#search_bar .clear-btn{margin-inline-end: var(--general-margin)}
|
||||
|
||||
.NavigationBar{box-shadow: none !important}
|
||||
|
||||
/* accent colored selection */
|
||||
::selection {background: var(--shy-accent-color) !important;}
|
||||
|
||||
/* notification */
|
||||
.notification{
|
||||
border-radius: var(--rounding) !important;
|
||||
&::after{
|
||||
top: calc(var(--rounding) / 4 + 3px) !important;
|
||||
right: calc(var(--rounding) / 4 + 3px) !important;
|
||||
}
|
||||
}
|
||||
|
||||
} /* wrap end */
|
94
.config/firefox/chrome.bak/ShyFox/shy-compact.css
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*== ShyFox Compact Menus ===========================================================================================================================
|
||||
|
||||
Shrink some things so they take up less space
|
||||
|
||||
|
||||
--- CONTEXT MENU ------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
@media not (-moz-platform: macos) {
|
||||
.menupopup-arrowscrollbox,
|
||||
#context-navigation > .menuitem-iconic {border-radius: var(--big-rounding) !important;}
|
||||
}
|
||||
|
||||
#context-navigation > .menuitem-iconic[disabled="true"] {background-color: transparent !important;}
|
||||
|
||||
menupopup > :is(menuitem, menu){
|
||||
height: fit-content !important;
|
||||
& > * {
|
||||
padding: 0px !important;
|
||||
margin: 1px !important;
|
||||
}
|
||||
|
||||
max-width: 300px !important;
|
||||
border-radius: var(--rounding) !important;
|
||||
margin: 0 !important;
|
||||
|
||||
padding-block: 0px !important;
|
||||
padding-inline-start: 5px !important;
|
||||
}
|
||||
|
||||
/* large context menu */
|
||||
@media (-moz-bool-pref: "shyfox.larger.context.menu"){
|
||||
menupopup > :is(menuitem, menu) > * {padding: 5px 0px !important;}
|
||||
}
|
||||
|
||||
/* margin for some menus */
|
||||
:is(.bookmark-item, #PlacesChevron, #bookmarks-menu-button, #sidebarMenu-popup) :is(menuitem, menu) {margin-inline: 5px !important;}
|
||||
|
||||
/* remove some items from sidebar header menu */
|
||||
#sidebarMenu-popup :is(menuitem[data-l10n-id="sidebar-menu-close"], menuseparator:nth-last-of-type(1)) {display: none}
|
||||
/*
|
||||
|
||||
--- EXTENSIONS MENU ---------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
@media not (-moz-bool-pref: "shyfox.disable.compact.unified.extensions") {
|
||||
|
||||
#unified-extensions-view{
|
||||
|
||||
--uei-icon-size: 24px;
|
||||
--extensions-in-row: 4;
|
||||
|
||||
width: 100% !important;
|
||||
:is(
|
||||
toolbarseparator,
|
||||
.unified-extensions-item-menu-button.subviewbutton,
|
||||
.unified-extensions-item-action-button .unified-extensions-item-contents
|
||||
) {display: none !important;}
|
||||
|
||||
:is(
|
||||
#overflowed-extensions-list,
|
||||
#unified-extensions-area,
|
||||
.unified-extensions-list
|
||||
){
|
||||
display: grid !important;
|
||||
grid-template-columns: repeat(var(--extensions-in-row),auto);
|
||||
justify-items: center !important;
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
:is(
|
||||
:is(
|
||||
#unified-extensions-area,
|
||||
.unified-extensions-list
|
||||
) .unified-extensions-item,
|
||||
.unified-extensions-list
|
||||
){max-width: max-content;}
|
||||
|
||||
#unified-extensions-area {
|
||||
margin-bottom: 5px !important;
|
||||
border-top: 1px solid var(--panel-separator-color);
|
||||
border-bottom: 1px solid var(--panel-separator-color);
|
||||
padding-top: 5px !important;
|
||||
padding-bottom: 5px !important;
|
||||
}
|
||||
|
||||
.unified-extensions-item[attention] > .unified-extensions-item-action-button.subviewbutton {
|
||||
background-position: left calc(var(--uei-dot-horizontal-position-in-panel) - 4px) bottom var(--uei-dot-vertical-position-in-panel) !important;
|
||||
}
|
||||
.unified-extensions-item-action-button {padding-right: 3px !important;}
|
||||
}
|
||||
}
|
295
.config/firefox/chrome.bak/ShyFox/shy-controls.css
Normal file
|
@ -0,0 +1,295 @@
|
|||
/*== ShyFox Window Controls =========================================================================================================================
|
||||
|
||||
Styles for Min Max Close buttons
|
||||
|
||||
|
||||
--- JUST IMPORTANT THINGS ---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* move buttons to correct position */
|
||||
#TabsToolbar .titlebar-buttonbox-container{ display: none !important; }
|
||||
#toolbar-menubar .titlebar-buttonbox-container{ display: flex !important; }
|
||||
|
||||
.titlebar-buttonbox-container{
|
||||
position: fixed !important;
|
||||
overflow: clip !important;
|
||||
|
||||
z-index: -1 !important;
|
||||
|
||||
transition: var(--transition) !important;
|
||||
& *{transition: var(--transition) !important;}
|
||||
|
||||
/* set position to right */
|
||||
right: 0px;
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- VARIABLES ----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* paddings */
|
||||
:root{
|
||||
--buttonbox-right-wdt: var(--window-control-wdt);
|
||||
--buttonbox-right-hgt: 35px;
|
||||
|
||||
--buttonbox-left-wdt: 0px;
|
||||
--buttonbox-left-hgt: 0px;
|
||||
}
|
||||
|
||||
/* useful variables */
|
||||
:root{
|
||||
--nav-rgt-btnbx-margin: var(--margin);
|
||||
--nav-rgt-btnbx-button: var(--toolbar-button-wdt);
|
||||
|
||||
--nav-lft-btnbx-margin: 0px;
|
||||
--nav-lft-btnbx-button: 0px;
|
||||
}
|
||||
|
||||
/* remove window controls in f11 fullscreen or in clean mode */
|
||||
#main-window:is([sizemode="fullscreen"], [titlepreface*=""]:not([customizing])) {
|
||||
--window-control-wdt: 0px !important; /* < */
|
||||
--buttonbox-left-hgt: 0px !important; /* < !DUPLICATE! */
|
||||
--buttonbox-right-hgt: 0px !important; /* < */
|
||||
--nav-rgt-btnbx-margin: 0px !important; /* < This code block must be */
|
||||
--nav-rgt-btnbx-button: 0px !important; /* < identical to the */
|
||||
--nav-lft-btnbx-margin: 0px !important; /* < code block below */
|
||||
--nav-lft-btnbx-button: 0px !important; /* < */
|
||||
.titlebar-buttonbox-container {display: none !important;} /* < vvvvvvvvvvvvvvvvvvvvvvvvvvv */
|
||||
}
|
||||
|
||||
/* remove window controls by setting */
|
||||
@media (-moz-bool-pref: "shyfox.remove.window.controls") {
|
||||
#main-window{
|
||||
--window-control-wdt: 0px !important; /* < ^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
|
||||
--buttonbox-left-hgt: 0px !important; /* < */
|
||||
--buttonbox-right-hgt: 0px !important; /* < !DUPLICATE! */
|
||||
--nav-rgt-btnbx-margin: 0px !important; /* < */
|
||||
--nav-rgt-btnbx-button: 0px !important; /* < This code block must be */
|
||||
--nav-lft-btnbx-margin: 0px !important; /* < identical to the */
|
||||
--nav-lft-btnbx-button: 0px !important; /* < code block above */
|
||||
.titlebar-buttonbox-container {display: none !important;} /* < */
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- DETECT SYSTEM AND CALCULATE VALUES -------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* default (if system not detected) */
|
||||
:root {--window-control-wdt: 140px;}
|
||||
|
||||
/* Windows */
|
||||
|
||||
@media (-moz-platform: windows) {
|
||||
:root {--window-control-wdt: 138px;}
|
||||
.titlebar-buttonbox-container{
|
||||
top: 0px;
|
||||
height: var(--toolbar-item-hgt);
|
||||
}
|
||||
|
||||
/* style when not enough space - merged into window border */
|
||||
#main-window[titlepreface*=""][titlepreface*=""] {
|
||||
.titlebar-button {padding: calc(var(--margin) / 2) 15px !important;}
|
||||
.titlebar-buttonbox-container{
|
||||
height: var(--margin) !important;
|
||||
top: 0px;
|
||||
opacity: calc(var(--hide-bar-opct) / 2 );
|
||||
&:hover{opacity: 1}
|
||||
}
|
||||
}
|
||||
|
||||
/* style when right toolbar is visible but navbar hidden - vertical orientation */
|
||||
#main-window:not([titlepreface*=""])[titlepreface*=""]:not([customizing]){
|
||||
.titlebar-buttonbox-container{height: 85px}
|
||||
.titlebar-buttonbox{
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
|
||||
--buttonbox-left-wdt: 0px !important;
|
||||
--buttonbox-right-hgt: 85px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Linux (GTK) */
|
||||
|
||||
:root{
|
||||
--window-control-gtk-max-wdt: 0px;
|
||||
--window-control-gtk-min-wdt: 0px;
|
||||
}
|
||||
|
||||
@media (-moz-gtk-csd-maximize-button) { :root {--window-control-gtk-max-wdt: 40px;} }
|
||||
@media (-moz-gtk-csd-minimize-button) { :root {--window-control-gtk-min-wdt: 40px;} }
|
||||
|
||||
@media (-moz-gtk-csd-available) {
|
||||
:root {
|
||||
--window-control-wdt: calc(
|
||||
40px
|
||||
+ var(--window-control-gtk-min-wdt)
|
||||
+ var(--window-control-gtk-max-wdt)
|
||||
);
|
||||
}
|
||||
|
||||
/* GTK buttons design */
|
||||
.titlebar-button{
|
||||
.toolbarbutton-icon {
|
||||
background-image: none !important;
|
||||
stroke: none !important;
|
||||
-moz-context-properties: fill, fill-opacity !important;
|
||||
}
|
||||
|
||||
&:hover .toolbarbutton-icon {background-color: color-mix(in srgb, var(--bt-col) 15%, transparent) !important;}
|
||||
|
||||
margin-inline: 8px !important;
|
||||
padding: 0 !important;
|
||||
fill: var(--bt-col) !important;
|
||||
color: var(--bt-col) !important;
|
||||
}
|
||||
|
||||
@media not (-moz-bool-pref: "shyfox.force.native.controls"){
|
||||
.titlebar-close {list-style-image: url("../icons/gtk-window-close-symbolic.svg") !important;}
|
||||
.titlebar-min {list-style-image: url("../icons/gtk-window-minimize-symbolic.svg") !important;}
|
||||
.titlebar-max {list-style-image: url("../icons/gtk-window-maximize-symbolic.svg") !important;}
|
||||
.titlebar-restore {list-style-image: url("../icons/gtk-window-restore-symbolic.svg") !important;}
|
||||
|
||||
.titlebar-button .toolbarbutton-icon{
|
||||
background-color: color-mix(in srgb, var(--bt-col) 5%, transparent);
|
||||
appearance: none !important;
|
||||
border-radius: 100%;
|
||||
padding: 4px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.force.native.controls"){
|
||||
.titlebar-close {appearance: -moz-window-button-close !important;}
|
||||
.titlebar-min {appearance: -moz-window-button-minimize !important;}
|
||||
.titlebar-max {appearance: -moz-window-button-maximize !important;}
|
||||
.titlebar-restore {appearance: -moz-window-button-restore !important;}
|
||||
}
|
||||
}
|
||||
|
||||
/* if GTK buttons position is right */
|
||||
@media (-moz-gtk-csd-available){
|
||||
@media not (-moz-gtk-csd-reversed-placement){
|
||||
|
||||
.titlebar-buttonbox-container{padding-right: 4px}
|
||||
|
||||
/* style when not enough space - merged into window border */
|
||||
#main-window:is([titlepreface*=""][titlepreface*=""], [titlepreface*=""]):not([customizing]){
|
||||
.titlebar-buttonbox-container{
|
||||
opacity: calc(var(--hide-bar-opct) / 2 );
|
||||
&:hover{opacity: 1};
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.titlebar-button {margin: 0px !important;}
|
||||
|
||||
@media not (-moz-bool-pref: "shyfox.force.native.controls"){
|
||||
.titlebar-buttonbox-container{
|
||||
top: 0px;
|
||||
height: var(--margin);
|
||||
}
|
||||
|
||||
.titlebar-button .toolbarbutton-icon {border-radius: 0 !important;}
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.force.native.controls"){
|
||||
.titlebar-buttonbox-container{
|
||||
top: -6px;
|
||||
height: calc(var(--margin) + 6px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* style when right toolbar is visible but navbar hidden - vertical orientation */
|
||||
#main-window:not([titlepreface*=""])[titlepreface*=""]:not([customizing]){
|
||||
|
||||
.titlebar-buttonbox{
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
top: -6px;
|
||||
|
||||
& * {
|
||||
margin-top: 3px !important;
|
||||
margin-bottom: 3px !important;
|
||||
}
|
||||
}
|
||||
|
||||
--buttonbox-right-wdt: 0px !important;
|
||||
--buttonbox-right-hgt: calc(
|
||||
35px
|
||||
+ var(--window-control-gtk-max-wdt)
|
||||
+ var(--window-control-gtk-min-wdt)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* MacOS */
|
||||
@media (-moz-platform: macos){
|
||||
:root {--window-control-wdt: 72px;}
|
||||
}
|
||||
|
||||
/*
|
||||
--- CONTROLS ON LEFT ---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Styles when GTK window controls on left or system is MacOS
|
||||
|
||||
*/
|
||||
|
||||
@media (-moz-gtk-csd-reversed-placement), (-moz-platform: macos){
|
||||
:root{
|
||||
--buttonbox-right-wdt: 0px;
|
||||
--buttonbox-right-hgt: 0px;
|
||||
|
||||
--buttonbox-left-wdt: var(--window-control-wdt);
|
||||
--buttonbox-left-hgt: 35px;
|
||||
|
||||
--nav-rgt-btnbx-margin: 0px;
|
||||
--nav-rgt-btnbx-button: 0px;
|
||||
|
||||
--nav-lft-btnbx-margin: var(--margin);
|
||||
--nav-lft-btnbx-button: var(--toolbar-button-wdt);
|
||||
}
|
||||
|
||||
.titlebar-buttonbox-container{padding-left: 3px}
|
||||
|
||||
/* set position to left */
|
||||
.titlebar-buttonbox-container{
|
||||
left: 0px;
|
||||
right: auto !important;
|
||||
}
|
||||
|
||||
/* style when not enough space - merged into window border */
|
||||
#main-window:is([titlepreface*=""][titlepreface*=""], [titlepreface*=""]):not([customizing]){
|
||||
.titlebar-buttonbox-container{
|
||||
opacity: calc(var(--hide-bar-opct) / 2 );
|
||||
&:hover{opacity: 1};
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
.titlebar-button {margin: 0px !important;}
|
||||
|
||||
@media not (-moz-bool-pref: "shyfox.force.native.controls"){
|
||||
.titlebar-buttonbox-container{
|
||||
top: 0px;
|
||||
height: var(--margin);
|
||||
}
|
||||
|
||||
.titlebar-button .toolbarbutton-icon {border-radius: 0 !important;}
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.force.native.controls"){
|
||||
.titlebar-buttonbox-container{
|
||||
top: -6px;
|
||||
height: calc(var(--margin) + 6px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
94
.config/firefox/chrome.bak/ShyFox/shy-findbar.css
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*== ShyFox Findbar =================================================================================================================================
|
||||
|
||||
Ctrl + F
|
||||
|
||||
|
||||
*/
|
||||
|
||||
findbar{
|
||||
--findbar-pad: 8px;
|
||||
--fndbr-btn-wdt: 30px;
|
||||
|
||||
position: fixed !important;
|
||||
z-index: 5 !important;
|
||||
|
||||
bottom: calc(var(--bottom-margin) + var(--margin));
|
||||
left: calc(
|
||||
(
|
||||
100vw
|
||||
- var(--findbar-wdt)
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
) / 2
|
||||
);
|
||||
|
||||
height: calc(var(--toolbar-item-hgt) * 2);
|
||||
padding-top: var(--toolbar-item-hgt) !important;
|
||||
width: var(--findbar-wdt);
|
||||
|
||||
/* styles for input textbox */
|
||||
.findbar-textbox{
|
||||
position: absolute;
|
||||
top: var(--findbar-pad);
|
||||
left: var(--findbar-pad);
|
||||
width: calc(
|
||||
var(--findbar-wdt)
|
||||
- var(--findbar-pad) * 2.5
|
||||
- var(--fndbr-btn-wdt) * 3
|
||||
) !important;
|
||||
}
|
||||
|
||||
/* put buttons to right place */
|
||||
.findbar-closebutton,
|
||||
.findbar-find-next,
|
||||
.findbar-find-previous
|
||||
{
|
||||
position: absolute;
|
||||
top: var(--findbar-pad);
|
||||
margin-inline-start: 0px !important;
|
||||
margin-inline-end: 0px !important;
|
||||
}
|
||||
.findbar-closebutton {right: var(--findbar-pad);}
|
||||
.findbar-find-next {right: calc(var(--fndbr-btn-wdt) + var(--findbar-pad) / 2 )}
|
||||
.findbar-find-previous {right: calc(var(--fndbr-btn-wdt) * 2 + var(--findbar-pad) / 2 )}
|
||||
|
||||
/* some design */
|
||||
background: var(--tb-col) !important;
|
||||
transition: var(--transition) !important;
|
||||
& > * {opacity: var(--dyn-opct);}
|
||||
|
||||
/* corners, shadow */
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
border-radius: var(--big-rounding) !important;
|
||||
|
||||
/* rounded buttons */
|
||||
.findbar-textbox, .findbar-closebutton,
|
||||
.findbar-find-next, .findbar-find-previous
|
||||
{border-radius: var(--rounding) !important;}
|
||||
}
|
||||
|
||||
findbar[hidden]{
|
||||
margin-bottom: unset !important;
|
||||
transition-delay: unset !important;
|
||||
visibility: visible !important;
|
||||
opacity: 0 !important;
|
||||
pointer-events: none !important;
|
||||
bottom: calc(
|
||||
0px
|
||||
- var(--toolbar-item-hgt) * 2
|
||||
- var(--margin) * 2
|
||||
) !important;
|
||||
}
|
||||
|
||||
/* adaptive findbar width */
|
||||
@media (max-width: 1500px) {
|
||||
:root{
|
||||
--findbar-wdt: calc(
|
||||
100vw
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
- var(--margin) * 2
|
||||
) !important;
|
||||
}
|
||||
}
|
52
.config/firefox/chrome.bak/ShyFox/shy-floating-search.css
Normal file
|
@ -0,0 +1,52 @@
|
|||
/*== ShyFox Floating Search =========================================================================================================================
|
||||
|
||||
Cool floating search panel
|
||||
|
||||
|
||||
*/
|
||||
|
||||
/* about:config setting */
|
||||
@media not (-moz-bool-pref: "shyfox.disable.floating.search") {
|
||||
|
||||
/* styles for urlbar */
|
||||
#urlbar[breakout-extend]{
|
||||
|
||||
#urlbar-input {font-size: 23.5px !important;}
|
||||
#urlbar-input-container, .urlbar-input-container {height: 50px !important;}
|
||||
#urlbar-background {border-radius: var(--bigger-rounding) !important;}
|
||||
|
||||
#urlbar-input-container, .urlbar-input-container {
|
||||
& > :is(box, image){
|
||||
height: 28px !important;
|
||||
margin-block: calc((50px - 28px) / 4) !important;
|
||||
}
|
||||
}
|
||||
|
||||
position: fixed !important;
|
||||
z-index: 999999 !important;
|
||||
|
||||
bottom: auto !important;
|
||||
top: 20vh !important;
|
||||
|
||||
left: 18vw !important;
|
||||
right: 18vw !important;
|
||||
width: 64vw !important;
|
||||
|
||||
/* cool translucent background */
|
||||
&::backdrop{
|
||||
content: "";
|
||||
position: fixed;
|
||||
pointer-events: none;
|
||||
border-radius: var(--rounding);
|
||||
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
|
||||
background-color: color-mix(in srgb, var(--bg-col) 80%, transparent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
654
.config/firefox/chrome.bak/ShyFox/shy-global.css
Normal file
|
@ -0,0 +1,654 @@
|
|||
/*== ShyFox Global Styles ===========================================================================================================================
|
||||
|
||||
All sorts of important tweaks that don't belong in any category
|
||||
|
||||
|
||||
--- BROWSER CONTENT ---------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Area where website is displayed
|
||||
|
||||
*/
|
||||
|
||||
/* set background color */
|
||||
#appcontent .browserStack, #browser, .browserContainer {background: var(--bg-col)}
|
||||
|
||||
#browser #tabbrowser-tabbox {
|
||||
/* shift website content relative to panels */
|
||||
margin-left: var(--left-margin) !important;
|
||||
margin-right: var(--right-margin) !important;
|
||||
margin-top: var(--top-margin) !important;
|
||||
margin-bottom: var(--bottom-margin) !important;
|
||||
|
||||
/* add smoothness to it */
|
||||
transition: var(--transition) !important;
|
||||
}
|
||||
|
||||
/* completely remove the browser interface in fullscreen videos and popups like login with Google or in a floating Bitwarden window */
|
||||
#main-window:is(:not([chromehidden=""]), [inDOMFullscreen="true"]){
|
||||
#navigator-toolbox {display: none !important;}
|
||||
--margin: 0px !important;
|
||||
}
|
||||
|
||||
/* some z-index */
|
||||
#navigator-toolbox {z-index: 2 !important;}
|
||||
#browser {z-index: 1 !important;}
|
||||
|
||||
/* if it not fullscreen video or floating window */
|
||||
#main-window:not([inDOMFullscreen="true"])[chromehidden=""]{
|
||||
|
||||
/* if navbar is not hidden in f11 fullscreen or not only navbar is visible in f11 or window is not maximized in clean mode */
|
||||
&:not(
|
||||
:is(
|
||||
:is([titlepreface*=""], [titlepreface*=""][titlepreface*=""])[inFullscreen="true"]),
|
||||
[titlepreface*=""]:is([sizemode="maximized"], [inFullscreen="true"], [gtktiledwindow="true"])
|
||||
){
|
||||
|
||||
/* add rounded corners and outline to browser content */
|
||||
#tabbrowser-tabbox {
|
||||
border-radius: var(--big-rounding) !important;
|
||||
border: var(--outline);
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
#tabbrowser-tabpanels::after {
|
||||
content: "";
|
||||
margin: -1px;
|
||||
border: var(--outline);
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: var(--big-rounding);
|
||||
box-shadow: 0 0 0 100px var(--bg-col) !important;
|
||||
clip-path: inset(0);
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* if in f11 fullscreen sidebar active but navbar not */
|
||||
&:not([titlepreface*=""]):not([titlepreface*=""])[titlepreface*=""][inFullscreen="true"]{
|
||||
#appcontent browser {border-left: var(--outline);}
|
||||
}
|
||||
|
||||
/* if in f11 fullscreen toolbar active but navbar not */
|
||||
&:not([titlepreface*=""]):not([titlepreface*=""])[titlepreface*=""][inFullscreen="true"]{
|
||||
#appcontent browser {border-right: var(--outline);}
|
||||
}
|
||||
|
||||
/* if in f11 fullscreen nor toolbar or sidebar active but navbar is */
|
||||
&:not([titlepreface*=""])[titlepreface*=""][titlepreface*=""]:not([titlepreface*=""])[inFullscreen="true"]{
|
||||
#appcontent browser {border-top: var(--outline);}
|
||||
}
|
||||
}
|
||||
|
||||
/* private mode outline */
|
||||
#main-window[privatebrowsingmode="temporary"]
|
||||
{--outline: 1px solid var(--private-col) !important;}
|
||||
|
||||
/* drag window using border */
|
||||
|
||||
/* shared */
|
||||
#browser::before,
|
||||
#browser::after,
|
||||
#navigator-toolbox::before,
|
||||
#navigator-toolbox::after
|
||||
{
|
||||
position: fixed;
|
||||
pointer-events: none;
|
||||
-moz-window-dragging: drag;
|
||||
|
||||
content: "";
|
||||
background-color: var(--debug-col-2);
|
||||
}
|
||||
|
||||
/* top */
|
||||
#browser::after {
|
||||
height: calc(var(--top-margin) + 2px);
|
||||
top: -1px;
|
||||
width: 100vw;
|
||||
}
|
||||
|
||||
/* bottom */
|
||||
#browser::before {
|
||||
height: calc(var(--bottom-margin) + 2px);
|
||||
bottom: -1px;
|
||||
width: 100vw;
|
||||
}
|
||||
|
||||
/* left */
|
||||
#navigator-toolbox::before{
|
||||
width: calc(var(--bottom-margin) + 2px);
|
||||
left: -1px;
|
||||
height: 100vw;
|
||||
}
|
||||
|
||||
/* right */
|
||||
#navigator-toolbox::after{
|
||||
width: calc(var(--right-margin) + 2px);
|
||||
right: -1px;
|
||||
height: 100vw;
|
||||
}
|
||||
|
||||
/* statuspanel (that thing at the bottom of the screen that shows the address of the link you're hovering over) */
|
||||
#statuspanel #statuspanel-label {
|
||||
padding-inline: 6px !important;
|
||||
border-radius: var(--big-rounding) !important;
|
||||
|
||||
background-color: var(--tb-col) !important;
|
||||
color: var(--bt-col) !important;
|
||||
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
}
|
||||
|
||||
/* rounded things */
|
||||
richlistitem,
|
||||
panel tree,
|
||||
menulist,
|
||||
button,
|
||||
select,
|
||||
input:not([type="checkbox"]),
|
||||
#urlbar-background,
|
||||
#preview-image,
|
||||
.ctrlTab-canvas,
|
||||
.ctrlTab-canvas *
|
||||
|
||||
{border-radius: var(--rounding) !important}
|
||||
|
||||
.ctrlTab-preview .ctrlTab-preview-inner,
|
||||
#ctrlTab-showAll,
|
||||
richlistbox
|
||||
{border-radius: var(--big-rounding) !important;}
|
||||
|
||||
/* disable pointer events in clean mode */
|
||||
#main-window[titlepreface*=""]{
|
||||
#nav-bar:not(:has(#urlbar[breakout-extend])),
|
||||
#sidebar,
|
||||
#TabsToolbar,
|
||||
#PersonalToolbar
|
||||
{pointer-events: none !important;}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- DIALOG ------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Styles for dialogs e.g. "confirm deleting extension"
|
||||
|
||||
*/
|
||||
|
||||
|
||||
#commonDialogWindow, #commonDialogWindow .titleIcon{
|
||||
background-color: transparent !important;
|
||||
color: var(--bt-col) !important;
|
||||
}
|
||||
|
||||
.dialogBox {
|
||||
border-radius: var(--big-rounding) !important;
|
||||
border: var(--outline) !important;
|
||||
background-color: var(--tb-col) !important;
|
||||
}
|
||||
|
||||
.dialogTemplate{
|
||||
background-color: transparent !important;
|
||||
:before{
|
||||
content: "";
|
||||
position: fixed;
|
||||
z-index: -1;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
|
||||
background-color: color-mix(in srgb, var(--bg-col) 80%, transparent);
|
||||
}
|
||||
}
|
||||
|
||||
#window-modal-dialog {margin-top: var(--margin) !important;} /* shift top-aligned dialogs little bit lower */
|
||||
.sizeDetermined #infoBody {min-height: 20px !important;} /* add minimal height to alert text */
|
||||
#searchbar-anon-search-settings {margin-inline-end: 7px !important;} /* margin for settings button in searcbar popup */
|
||||
#PopupSearchAutoComplete {--panel-border-radius: var(--big-rounding) !important;} /* rounding for this popup */
|
||||
|
||||
/* print dialog */
|
||||
print-preview::before,
|
||||
print-preview .previewStack::before,
|
||||
.printPreviewNavigation::before
|
||||
{display: none !important;}
|
||||
|
||||
.printDialogBox::before {border-radius: var(--rounding) !important;}
|
||||
|
||||
.printDialogBox {margin-top: var(--margin) !important;}
|
||||
|
||||
/*
|
||||
|
||||
--- SCREENSHOTS -------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Ctrl + Shift + S
|
||||
|
||||
*/
|
||||
|
||||
#screenshotsPagePanel{
|
||||
position: fixed !important;
|
||||
transition: var(--transition);
|
||||
|
||||
bottom: calc(
|
||||
var(--bottom-margin)
|
||||
+ var(--screenshot-tool-hgt)
|
||||
);
|
||||
|
||||
left: 0;
|
||||
|
||||
z-index: -1 !important;
|
||||
width: var(--sdbr-wdt) !important;
|
||||
}
|
||||
|
||||
/* for smooth transition */
|
||||
#screenshotsPagePanel[hidden]{
|
||||
display: flex !important;
|
||||
opacity: 0;
|
||||
pointer-events: none !important;
|
||||
bottom: 0px !important;
|
||||
}
|
||||
|
||||
screenshots-buttons{
|
||||
background-color: transparent !important;
|
||||
transition: var(--transition);
|
||||
position: absolute !important;
|
||||
display: flex !important;
|
||||
height: var(--screenshot-tool-hgt) !important;
|
||||
width: var(--sdbr-wdt) !important;
|
||||
padding: calc(var(--margin) / 2) !important;
|
||||
|
||||
top: 0px !important;
|
||||
inset-inline-end: 0px !important;
|
||||
}
|
||||
|
||||
.screenshot-button{
|
||||
width: calc(
|
||||
var(--sdbr-wdt) / 2
|
||||
- var(--margin) * 1.5
|
||||
)!important;
|
||||
|
||||
margin: calc(var(--margin) / 2) !important;
|
||||
padding-top: 56px !important;
|
||||
background-position-y: 10px !important;
|
||||
}
|
||||
|
||||
/* when sidebar hidden */
|
||||
#main-window:is([titlepreface*=""], [titlepreface*=""]){
|
||||
#screenshotsPagePanel{
|
||||
bottom: calc(
|
||||
var(--bottom-margin)
|
||||
+ var(--margin)
|
||||
+ var(--screenshot-tool-hgt)
|
||||
);
|
||||
|
||||
left: calc(
|
||||
var(--left-margin)
|
||||
+ var(--margin)
|
||||
);
|
||||
}
|
||||
|
||||
screenshots-buttons {background-color: var(--bg-col) !important;}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
||||
--- CONTEXT MENU ------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Apply theme colors to context menus and menubar
|
||||
|
||||
*/
|
||||
|
||||
/* in page context menu */
|
||||
#contentAreaContextMenu[showservicesmenu="true"],
|
||||
#contentAreaContextMenu[showservicesmenu="true"] menupopup
|
||||
{
|
||||
--panel-background: var(--bg-col)!important;
|
||||
--panel-border-color: var(--tb-col) !important;
|
||||
|
||||
--toolbar-field-focus-background-color: var(--bt-col) !important;
|
||||
--panel-color: var(--bt-col) !important;
|
||||
|
||||
menu:where([_moz-menuactive="true"]:not([disabled="true"])), menuitem:where([_moz-menuactive="true"]:not([disabled="true"])) {
|
||||
background-color: var(--panel-item-hover-bgcolor) !important;
|
||||
color: var(--bt-col) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* toolbar menu */
|
||||
#toolbar-menubar menupopup,
|
||||
#toolbar-context-menu, #toolbar-context-menu menupopup,
|
||||
#unified-extensions-context-menu, #unified-extensions-context-menu menupopup,
|
||||
#placesContext, #placesContext menupopup,
|
||||
#downloadsContextMenu, #downloadsContextMenu menupopup,
|
||||
#sidebarMenu-popup, #PopupSearchAutoComplete,
|
||||
:is(#back-button, #forward-button) menupopup,
|
||||
#permission-popup-menulist menupopup
|
||||
{
|
||||
--panel-background: var(--pp-col)!important;
|
||||
--panel-border-color: var(--tb-col) !important;
|
||||
|
||||
--toolbar-field-focus-background-color: var(--bt-col) !important;
|
||||
--panel-color: var(--bt-col) !important;
|
||||
|
||||
menu:where([_moz-menuactive="true"]:not([disabled="true"])), menuitem:where([_moz-menuactive="true"]:not([disabled="true"])) {
|
||||
background-color: var(--panel-item-hover-bgcolor) !important;
|
||||
color: var(--bt-col) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* dropdown selectors */
|
||||
menupopup {--content-select-background-image: none !important;}
|
||||
#ContentSelectDropdown .ContentSelectDropdown-item-0:not([_moz-menuactive="true"]) {background-color: transparent !important;;}
|
||||
|
||||
/*
|
||||
|
||||
--- CUSTOMIZING PAGE --------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Right click > Customize toolbar
|
||||
|
||||
*/
|
||||
|
||||
#main-window[customizing]{
|
||||
#customization-palette-container {padding-top: 100px}
|
||||
|
||||
#customization-panelWrapper{
|
||||
margin-top: 60px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.panel-arrowbox {opacity: 0 !important;}
|
||||
.panel-arrowcontent{border-radius: var(--big-rounding) !important;}
|
||||
toolbarspring {border-radius: var(--rounding) !important;}
|
||||
|
||||
#customization-footer{
|
||||
position: fixed !important;
|
||||
|
||||
bottom: 10px;
|
||||
right: 70px;
|
||||
left: 10px;
|
||||
|
||||
background-color: var(--bg-col) !important;
|
||||
border-radius: var(--big-rounding) !important;
|
||||
}
|
||||
}
|
||||
|
||||
toolbarpaletteitem#wrapper-search-container[place="palette"] #searchbar {background-color: var(--bg-col) !important;}
|
||||
|
||||
:root[customizing] .customization-target:not(#widget-overflow-fixed-list) {min-width: 0px !important;}
|
||||
|
||||
/* red sidebar icon styles */
|
||||
#main-window{
|
||||
--shyfox-string-sidebar-button-tooltip: "This button is only shown when the sidebar is disabled and is colored red to attract attention";
|
||||
&[lang="ru"]{--shyfox-string-sidebar-button-tooltip: "Эта кнопка отображается только тогда, когда боковая панель отключена, и окрашена в красный цвет, чтобы привлечь внимание";}
|
||||
}
|
||||
|
||||
#wrapper-sidebar-button[place="palette"] .toolbarbutton-icon {
|
||||
padding: 2px !important;
|
||||
width: 20px !important;
|
||||
height: 20px !important;
|
||||
border-radius: 6px !important;
|
||||
}
|
||||
|
||||
#wrapper-sidebar-button[mousedown]{
|
||||
&::after{
|
||||
content: var(--shyfox-string-sidebar-button-tooltip) !important;
|
||||
text-align: left !important;
|
||||
position: absolute;
|
||||
color: black !important;
|
||||
background-color: white !important;
|
||||
border-radius: var(--rounding);
|
||||
padding: 5px;
|
||||
width: 160px !important;
|
||||
margin-left: 40px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- NOTIFICATION BAR --------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Sometimes Firefox shows notifications at the top of the window suggesting, for example, to restore tabs from a previous session
|
||||
|
||||
*/
|
||||
|
||||
#tab-notification-deck, .global-notificationbox{
|
||||
position: fixed !important;
|
||||
transition: var(--transition) !important;
|
||||
z-index: 0 !important;
|
||||
vbox {background-color: transparent !important;}
|
||||
background-color: transparent !important;
|
||||
width: auto;
|
||||
|
||||
max-width: calc(
|
||||
100vw
|
||||
- var(--margin)
|
||||
- var(--right-margin)
|
||||
- var(--left-margin)
|
||||
);
|
||||
|
||||
top: calc(
|
||||
var(--top-margin)
|
||||
+ var(--margin) / 2
|
||||
);
|
||||
|
||||
left: calc(
|
||||
var(--left-margin)
|
||||
+ var(--margin) / 2
|
||||
);
|
||||
|
||||
notification-message{
|
||||
border-radius: var(--big-rounding) !important;
|
||||
background-color: var(--tb-col) !important;
|
||||
color: var(--bt-col) !important;
|
||||
|
||||
&::before {display: none !important;}
|
||||
}
|
||||
|
||||
.footer-button {margin: 4px !important;}
|
||||
}
|
||||
|
||||
/* notification close button color */
|
||||
button[type~="icon"][type~="ghost"][part="button"][size="small"] {fill: var(--bt-col) !important;}
|
||||
|
||||
/* icon color */
|
||||
:is(.icon, img)[src="chrome://global/skin/icons/info-filled.svg"] {fill: var(--shy-color) !important;}
|
||||
|
||||
/*
|
||||
|
||||
--- MENUBAR ----------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
File Edit View History Bookmarks Tools Help
|
||||
|
||||
*/
|
||||
|
||||
@media not (-moz-platform: macos) {
|
||||
|
||||
#toolbar-menubar {
|
||||
|
||||
position: fixed;
|
||||
overflow: clip;
|
||||
visibility: visible !important;
|
||||
z-index: 5;
|
||||
|
||||
width: -fit-content;
|
||||
max-height: 0px;
|
||||
padding-bottom: 0 !important;
|
||||
|
||||
transition: var(--transition) !important;
|
||||
|
||||
top: var(--top-margin);
|
||||
left: var(--left-margin);
|
||||
|
||||
border-radius: var(--rounding);
|
||||
background-color: var(--tb-col) !important;
|
||||
& > * {opacity: var(--dyn-opct);}
|
||||
|
||||
/* outline only when visible */
|
||||
&:not([inactive="true"]) {
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
}
|
||||
}
|
||||
|
||||
#main-menubar > * {padding-top: 0px !important;}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- DEVTOOLS ---------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
.browserSidebarContainer, .responsive-mode {background-color: var(--bg-col) !important;}
|
||||
|
||||
.devtools-side-splitter, .devtools-horizontal-splitter {
|
||||
background-color: transparent !important;
|
||||
margin-inline: 0px !important;
|
||||
margin: 0px !important;
|
||||
}
|
||||
|
||||
.devtools-side-splitter { min-width: calc(var(--margin) / 1.5) !important;}
|
||||
.devtools-horizontal-splitter {min-height: calc(var(--margin) / 1.5) !important;}
|
||||
|
||||
.rdm-toolbar {
|
||||
margin-top: var(--margin) !important;
|
||||
width: 95% !important;
|
||||
margin-left: 3% !important;
|
||||
}
|
||||
|
||||
.rdm-toolbar, .user-agent {border-radius: var(--rounding) !important;}
|
||||
|
||||
.user-agent {border: 1px solid grey !important;}
|
||||
|
||||
/*
|
||||
|
||||
--- FIXES ------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* fix some items dissapearing */
|
||||
#titlebar {
|
||||
opacity: 1 !important;
|
||||
z-index: 1 !important;
|
||||
}
|
||||
|
||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive {
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox:-moz-window-inactive {
|
||||
background-color: initial !important;
|
||||
color: initial !important;
|
||||
}
|
||||
|
||||
/* remove annoying line at the top of the window */
|
||||
#navigator-toolbox {
|
||||
margin-top: -1px !important;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
/* weird margin fix */
|
||||
#tabbrowser-tabpanels {
|
||||
& browser[type="content"] {
|
||||
margin: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* z-index fix */
|
||||
#tabbrowser-tabbox{z-index: 1 !important;}
|
||||
|
||||
/* border fix */
|
||||
* {
|
||||
border: 0px solid transparent;
|
||||
outline: 0px solid transparent;
|
||||
}
|
||||
|
||||
/* background color fix */
|
||||
#browser:not(.browser-toolbox-background) {
|
||||
:root[lwtheme] & {
|
||||
background-image: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- ACCENT COLOR ----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
.text-link, a {color: var(--shy-color) !important;}
|
||||
|
||||
.footer-button {
|
||||
&:not([disabled]) {
|
||||
&[default], &.primary {
|
||||
background-color: var(--shy-accent-color) !important;;
|
||||
&:hover {
|
||||
background-color: color-mix(in srgb, var(--bt-col, black) 10%,var(--shy-accent-color)) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::selection {background: var(--shy-accent-color) !important;}
|
||||
|
||||
#tracking-protection-icon-box[active]{
|
||||
fill: var(--shy-color) !important;
|
||||
list-style-image: url(chrome://browser/skin/tracking-protection.svg) !important;
|
||||
}
|
||||
|
||||
.urlbarView-url {
|
||||
.urlbarView-row:not([selected]) & {
|
||||
color: var(--shy-color) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.urlbarView-row[selected] {background-color: var(--shy-accent-color) !important;}
|
||||
|
||||
.urlbarView-favicon {
|
||||
.urlbarView-row[type="tabtosearch"]:not([selected]) > .urlbarView-row-inner > .urlbarView-no-wrap > & {
|
||||
color: var(--shy-color) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.urlbarView-row[dynamicType="onboardTabToSearch"] > .urlbarView-row-inner {
|
||||
&:not([selected]) > .urlbarView-no-wrap {
|
||||
& > .urlbarView-favicon {
|
||||
color: var(--shy-color) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ctrlTab-preview:focus > .ctrlTab-preview-inner, #ctrlTab-showAll:focus {border-color: var(--shy-color) !important;}
|
||||
|
||||
:root, panel, dialog, window{
|
||||
--in-content-primary-button-background-active: var(--shy-color) !important;
|
||||
--in-content-primary-button-background-hover: var(--shy-color) !important;
|
||||
--lwt-toolbarbutton-icon-fill-attention: var(--shy-color) !important;
|
||||
--in-content-primary-button-background: var(--shy-color) !important;
|
||||
--toolbarbutton-icon-fill-attention: var(--shy-color) !important;
|
||||
--fxview-primary-action-background: var(--shy-color) !important;
|
||||
--toolbar-field-focus-border-color: var(--shy-color) !important;
|
||||
--uei-button-attention-dot-color: var(--shy-color) !important;
|
||||
--button-primary-active-bgcolor: var(--shy-color) !important;
|
||||
--button-primary-hover-bgcolor: var(--shy-color) !important;
|
||||
--uc-checkbox-checked-bgcolor: var(--shy-color) !important;
|
||||
--color-accent-primary-active: var(--shy-color) !important;
|
||||
--color-accent-primary-hover: var(--shy-color) !important;
|
||||
--checkbox-checked-bgcolor: var(--shy-color) !important;
|
||||
--in-content-accent-color: var(--shy-color) !important;
|
||||
--button-primary-bgcolor: var(--shy-color) !important;
|
||||
--in-content-link-color: var(--shy-color) !important;
|
||||
--color-accent-primary: var(--shy-color) !important;
|
||||
--focus-outline-color: var(--shy-color) !important;
|
||||
--input-border-color: var(--shy-color) !important;
|
||||
}
|
||||
|
||||
#historySwipeAnimationPreviousArrow,#historySwipeAnimationNextArrow {
|
||||
--swipe-nav-icon-primary-color: color-mix(in srgb, var(--shy-color) 80%, #FFFFFF50) !important;
|
||||
--swipe-nav-icon-accent-color: color-mix(in srgb, var(--shy-color) 20%, #00000050) !important;
|
||||
}
|
511
.config/firefox/chrome.bak/ShyFox/shy-icons.css
Normal file
|
@ -0,0 +1,511 @@
|
|||
/*== ShyFox Icons ===================================================================================================================================
|
||||
|
||||
Adding icons to all sorts of places
|
||||
|
||||
|
||||
--- BOOKMARKS TOOLBAR -------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* overflow */
|
||||
#PlacesChevron {list-style-image: url("../icons/bookmarks-toolbar.svg") !important;}
|
||||
|
||||
/* hide folders icons */
|
||||
.bookmark-item[container="true"] .toolbarbutton-icon {display: none}
|
||||
|
||||
/* other bookmarks */
|
||||
#OtherBookmarks{
|
||||
& > label {display: none !important;}
|
||||
& > image {margin-inline: 0px !important;}
|
||||
background-repeat: no-repeat;
|
||||
background-position-x: 4px;
|
||||
background-position-y: 8px;
|
||||
width: 25px !important;
|
||||
background-image: url("../icons/book.svg") !important;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- MONOCHROME EXTENSIONS ---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Monochrome icons for some extensions
|
||||
|
||||
|
||||
*/
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.enable.ext.mono.toolbar.icons") {
|
||||
|
||||
/* Userchrome Toggle => sidebar icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button):is([data-extensionid="userchrome-toggle-extended@n2ezr.ru"])
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/command-frames.svg");
|
||||
}
|
||||
|
||||
/* uBlock Origin => custom svg icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="uBlock0@raymondhill.net"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/ublock.svg");
|
||||
}
|
||||
|
||||
/* Bitwarden => custom svg icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="{446900e4-71c2-419f-a6a7-df9c091e268b}"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/bitwarden.svg");
|
||||
}
|
||||
|
||||
/* Privacy Badger => it's own monochrome icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="jid1-MnnxcxisBPnSXQ@jetpack"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/PrivacyBadger.svg");
|
||||
scale: 1.3;
|
||||
}
|
||||
|
||||
/* Dark Reader => custom svg icon (moon) */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="addon@darkreader.org"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/moon.svg");
|
||||
}
|
||||
|
||||
/* Video Download Helper => custom svg icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="{b9db16a4-6edc-47ec-a1f4-b86292ed211d}"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/video-download-helper.svg");
|
||||
}
|
||||
|
||||
/* Auto Tab Discard => power icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="{c2c003ee-bd69-42a2-b0e9-6f34222cb046}"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/quit.svg");
|
||||
}
|
||||
|
||||
/* Midnight Lizard => custom svg icon */
|
||||
:is(.webextension-browser-action,
|
||||
.eom-addon-button)[data-extensionid="{8fbc7259-8015-4172-9af1-20e1edfbbd3a}"]
|
||||
.toolbarbutton-icon {
|
||||
list-style-image: url("../icons/midnight-lizard.svg");
|
||||
scale: 1.3;
|
||||
}
|
||||
|
||||
/* gray background for all badges */
|
||||
.toolbarbutton-badge {
|
||||
background-color: rgba(102, 102, 102, 1) !important;
|
||||
box-shadow: none !important;
|
||||
border-radius: 5px !important;
|
||||
color: white !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* context menu */
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.enable.ext.mono.context.icons") {
|
||||
#contentAreaContextMenu, #toolbar-context-menu, #unified-extensions-context-menu{
|
||||
/* ublock */
|
||||
menuitem[id*="ublock0_raymondhill_net-menuitem-_uBlock0-"]{
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/ublock.svg") !important;
|
||||
}
|
||||
|
||||
/* simple translate */
|
||||
:is(menu, menuitem):not(menu *)[id*="simple-translate_sienori-menuitem-"] {
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/translate.svg") !important;
|
||||
}
|
||||
|
||||
/* bitwarden */
|
||||
#_446900e4-71c2-419f-a6a7-df9c091e268b_-menuitem-_root{
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/bitwarden.svg") !important;
|
||||
& > menupopup{
|
||||
& > *[id*="-menuitem-_autofill"] {background-image: url("chrome://browser/skin/login.svg")!important;}
|
||||
& > *[id*="-menuitem-_copy-username"] {background-image: url("../icons/edit-copy.svg") !important;}
|
||||
& > *[id*="-menuitem-_copy-password"] {background-image: url("../icons/password.svg") !important;}
|
||||
|
||||
& > *[id*="-menuitem-_autofill-identity"] {background-image: url("chrome://browser/skin/fxa/avatar-empty.svg") !important;}
|
||||
& > *[id*="-menuitem-_autofill-card"] {background-image: url("../icons/credit-card.svg") !important;}
|
||||
|
||||
& > *[id*="-menuitem-_generate-password"] {background-image: url("../icons/reload-auto.svg") !important;}
|
||||
& > *[id*="-menuitem-_copy-identifier"] {background-image: url("../icons/edit-copy.svg") !important;}
|
||||
|
||||
*[id*="_create-"] {background-image: url("chrome://global/skin/icons/plus.svg") !important;}
|
||||
}
|
||||
}
|
||||
|
||||
/* clean url */
|
||||
#_74145f27-f039-47ce-a470-a662b129930a_-menuitem-_copy-link-to-clipboard{
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/eraser.svg") !important;
|
||||
}
|
||||
|
||||
/* video download helper */
|
||||
#_b9db16a4-6edc-47ec-a1f4-b86292ed211d_-menuitem-_vdh-top{
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/video-download-helper.svg") !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* sidebar switcher */
|
||||
|
||||
/* Bitwarden */
|
||||
#sidebarswitcher_menu__446900e4-71c2-419f-a6a7-df9c091e268b_-sidebar-action{
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/bitwarden.svg") !important;
|
||||
}
|
||||
#sidebar-switcher-target[style*="fde67d36-ff48-49e7-8ec4-3cf26deea141"] #sidebar-icon {list-style-image: url("../icons/bitwarden.svg") !important;}
|
||||
|
||||
/* Video Download Helper */
|
||||
#sidebarswitcher_menu__b9db16a4-6edc-47ec-a1f4-b86292ed211d_-sidebar-action{
|
||||
.menu-iconic-icon {opacity: 0 !important;}
|
||||
background-image: url("../icons/video-download-helper.svg") !important;
|
||||
}
|
||||
#sidebar-switcher-target[style*="89b69b2a-5ae9-4b43-addc-4bf789f8448f"] #sidebar-icon {list-style-image: url("../icons/video-download-helper.svg") !important;}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- MENU --------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
*/
|
||||
|
||||
/* icons color */
|
||||
#appMenu-multiView .subviewbutton::before,
|
||||
#appMenu-proton-update-banner::before,
|
||||
#protections-popup-tp-switch-breakage-link::before,
|
||||
#downloadsHistory .button-icon,
|
||||
#PanelUI-fxa-menu-syncnow-button::before,
|
||||
.subviewbutton:not(#appMenu-proton-update-banner) > image
|
||||
{
|
||||
fill: currentColor !important;
|
||||
fill-opacity: var(--toolbarbutton-icon-fill-opacity) !important;
|
||||
-moz-context-properties: fill, fill-opacity, stroke !important;
|
||||
}
|
||||
|
||||
/* text padding */
|
||||
#appMenu-multiView .toolbarbutton-text,
|
||||
#customizationui-widget-panel .toolbarbutton-text,
|
||||
#identity-popup-clear-sitedata-button .toolbarbutton-text,
|
||||
#unified-extensions-manage-extensions .toolbarbutton-text,
|
||||
#widget-overflow .toolbarbutton-text,
|
||||
#protections-popup-tp-switch-breakage-link .toolbarbutton-text,
|
||||
#downloadsPanel #downloadsHistory .button-text,
|
||||
.protections-popup-footer-button-label
|
||||
{padding-left: 6px !important;}
|
||||
|
||||
/* security popup */
|
||||
#protections-popup-tp-switch-breakage-link::before {content: url("chrome://global/skin/icons/help.svg"); scale: 1.1}
|
||||
#protections-popup-settings-button {list-style-image: url("chrome://global/skin/icons/settings.svg");}
|
||||
#protections-popup-show-report-stack {list-style-image: url("../icons/dashboard.svg");}
|
||||
|
||||
/* delete cookies */
|
||||
#identity-popup-clear-sitedata-button {list-style-image: url("../icons/trash.svg");}
|
||||
|
||||
/* extensions popup */
|
||||
#unified-extensions-manage-extensions {list-style-image: url("chrome://mozapps/skin/extensions/extension.svg");}
|
||||
|
||||
/* main menu */
|
||||
#appMenu-fxa-separator{border-image: none !important;}
|
||||
#appMenu-proton-update-banner::before {content: url("../icons/whatsnew.svg");}
|
||||
#appMenu-new-tab-button2 {list-style-image: url("../icons/new-tab.svg");}
|
||||
#appMenu-new-window-button2 {list-style-image: url("../icons/window.svg");}
|
||||
#appMenu-new-private-window-button2 {list-style-image: url("chrome://browser/skin/privateBrowsing.svg");}
|
||||
#appMenu-bookmarks-button {list-style-image: url("chrome://browser/skin/bookmark.svg");}
|
||||
#appMenu-history-button {list-style-image: url("chrome://browser/skin/history.svg");}
|
||||
#appMenu-downloads-button {list-style-image: url("chrome://browser/skin/downloads/downloads.svg");}
|
||||
#appMenu-passwords-button {list-style-image: url("chrome://browser/skin/login.svg");}
|
||||
#appMenu-extensions-themes-button {list-style-image: url("chrome://mozapps/skin/extensions/extension.svg");}
|
||||
#appMenu-print-button2 {list-style-image: url("chrome://global/skin/icons/print.svg");}
|
||||
#appMenu-save-file-button2 {list-style-image: url("../icons/toolbarButton-download.svg");}
|
||||
#appMenu-find-button2 {list-style-image: url("chrome://global/skin/icons/search-glass.svg");}
|
||||
#appMenu-translate-button {list-style-image: url("../icons/translate.svg");}
|
||||
#appMenu-zoom-controls::before, #appMenu-zoom-controls2::before {content: url("../icons/screenshot.svg");}
|
||||
#appMenu-settings-button {list-style-image: url("chrome://global/skin/icons/settings.svg");}
|
||||
#appMenu-more-button2 {list-style-image: url("../icons/ion.svg");}
|
||||
#appMenu-help-button2 {list-style-image: url("chrome://global/skin/icons/help.svg");}
|
||||
#appMenu-quit-button2 {list-style-image: url("../icons/quit.svg");}
|
||||
|
||||
#PanelUI-fxa-menu-syncnow-button {padding-left: 11.3px !important;}
|
||||
#PanelUI-fxa-menu-syncnow-button::before {content: url("chrome://browser/skin/sync.svg"); width: 13px; height: 15px; scale: 1.5; padding-right: 5px}
|
||||
#PanelUI-fxa-menu-connect-device-button {list-style-image: url("../icons/add-device.svg");}
|
||||
#PanelUI-fxa-menu-sendtab-button {list-style-image: url("../icons/send-to-device.svg");}
|
||||
#PanelUI-fxa-menu-sync-prefs-button {list-style-image: url("chrome://global/skin/icons/settings.svg");}
|
||||
#PanelUI-fxa-menu-account-signout-button {list-style-image: url("../icons/sign-out.svg");}
|
||||
|
||||
#panelMenuBookmarkThisPage {list-style-image: url("chrome://browser/skin/bookmark-hollow.svg");}
|
||||
#panelMenuBookmarkThisPage[starred] {list-style-image: url("chrome://browser/skin/bookmark.svg");}
|
||||
#panelMenu_searchBookmarks {list-style-image: url("chrome://global/skin/icons/search-glass.svg");}
|
||||
#panelMenu_viewBookmarksToolbar {list-style-image: url("../icons/bookmarks-toolbar-alt.svg");}
|
||||
#panelMenu_showAllBookmarks {list-style-image: url("chrome://browser/skin/bookmark-star-on-tray.svg");}
|
||||
|
||||
#appMenuSearchHistory {list-style-image: url("chrome://global/skin/icons/search-glass.svg");}
|
||||
#appMenuClearRecentHistory {list-style-image: url("../icons/forget.svg");}
|
||||
#PanelUI-historyMore {list-style-image: url(chrome://browser/skin/history.svg);}
|
||||
#appMenuRecentlyClosedTabs {list-style-image: url("../icons/tab.svg");}
|
||||
#appMenuRecentlyClosedWindows {list-style-image: url("chrome://browser/skin/window.svg");}
|
||||
#appMenuRestoreSession, #appMenu-restoreSession {list-style-image: url("../icons/restore-session.svg");}
|
||||
|
||||
#appmenu-moreTools-button, #overflowMenu-customize-button {list-style-image: url("chrome://browser/skin/customize.svg");}
|
||||
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-child(1),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-child(1) {
|
||||
list-style-image: url("../icons/developer.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-child(2),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-child(2) {
|
||||
list-style-image: url("../icons/performance.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-child(3),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-child(3) {
|
||||
list-style-image: url("../icons/bug.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-child(4),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-child(4) {
|
||||
list-style-image: url("../icons/window-dev-tools.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-child(5),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-child(5) {
|
||||
list-style-image: url("../icons/command-frames.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-last-child(5),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-last-child(5) {
|
||||
list-style-image: url("../icons/command-console.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-last-child(4),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-last-child(4) {
|
||||
list-style-image: url("../icons/command-responsivemode.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-last-child(3),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-last-child(3) {
|
||||
list-style-image: url("../icons/command-eyedropper.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-last-child(2),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-last-child(2) {
|
||||
list-style-image: url("../icons/document-search.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:nth-last-child(1),
|
||||
#PanelUI-developer-tools-view .subviewbutton:nth-last-child(1) {
|
||||
list-style-image: url("chrome://mozapps/skin/extensions/extension.svg");}
|
||||
#appmenu-developer-tools-view .subviewbutton:last-child {margin-bottom: 6px !important;}
|
||||
|
||||
#appMenu_menu_openHelp {list-style-image: url("chrome://global/skin/icons/help.svg");}
|
||||
#appMenu_feedbackPage {list-style-image: url("../icons/send.svg");}
|
||||
#appMenu_helpSafeMode {list-style-image: url("chrome://devtools/skin/images/debugging-workers.svg");}
|
||||
#appMenu_troubleShooting {list-style-image: url("chrome://global/skin/icons/more.svg");}
|
||||
#appMenu-report-broken-site-button, #appMenu_help_reportSiteIssue {list-style-image: url("chrome://global/skin/icons/lightbulb.svg");}
|
||||
#appMenu_menu_HelpPopup_reportPhishingtoolmenu {list-style-image: url("chrome://global/skin/icons/warning.svg");}
|
||||
#appMenu_helpSwitchDevice {list-style-image: url("../icons/add-device.svg");}
|
||||
#appMenu_aboutName {list-style-image: url("chrome://global/skin/icons/info.svg");}
|
||||
|
||||
#downloadsHistory {list-style-image: url("chrome://browser/skin/downloads/downloads.svg");}
|
||||
|
||||
/*
|
||||
|
||||
--- CONTEXT MENU ------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
*/
|
||||
|
||||
:is(
|
||||
#toolbar-context-menu,
|
||||
#contentAreaContextMenu,
|
||||
#unified-extensions-context-menu,
|
||||
#downloadsContextMenu,
|
||||
#placesContext,
|
||||
#sidebarMenu-popup,
|
||||
#BMB_bookmarksPopup,
|
||||
#toolbar-menubar menupopup,
|
||||
#PlacesToolbar menupopup
|
||||
) :is(menuitem, menu){
|
||||
|
||||
/* icons color and position */
|
||||
fill: currentColor !important;
|
||||
fill-opacity: var(--toolbarbutton-icon-fill-opacity) !important;
|
||||
-moz-context-properties: fill, fill-opacity, stroke !important;
|
||||
background-repeat: no-repeat !important;
|
||||
background-position-x: 5px !important;
|
||||
background-position-y: center !important;
|
||||
background-size: 16px !important;
|
||||
|
||||
/* various paddings/margins tweaks */
|
||||
&:not(.menuitem-iconic, .menu-iconic, [type="checkbox"], [type="radio"]) > label {margin-inline-start: 21px !important;}
|
||||
|
||||
.menu-iconic-left{
|
||||
width: 22px !important;
|
||||
padding-inline-end: 6px !important;
|
||||
margin-inline: 0px !important;
|
||||
}
|
||||
|
||||
.menu-iconic-text {margin-inline-start: -1px !important;}
|
||||
&:not(:is(menu, [acceltext])) {padding-right: 0px !important;}
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.enable.context.menu.icons") {
|
||||
|
||||
/* in page context menu */
|
||||
#contentAreaContextMenu{
|
||||
& > #context-back {background-image: url("chrome://browser/skin/back.svg") !important;}
|
||||
& > #context-forward {background-image: url("chrome://browser/skin/forward.svg") !important;}
|
||||
& > #context-reload {background-image: url("chrome://global/skin/icons/reload.svg") !important;}
|
||||
& > #context-stop {background-image: url("chrome://global/skin/icons/close.svg") !important;}
|
||||
& > #context-bookmarkpage {background-image: url("chrome://browser/skin/bookmark-hollow.svg") !important;}
|
||||
|
||||
#context-openlinkincurrent {background-image: url("../icons/link-square.svg") !important;}
|
||||
#context-openlinkintab {background-image: url("../icons/new-tab.svg") !important;}
|
||||
context-openlinkincontainertab, #context-openlinkinusercontext-menu {background-image: url("../icons/container-openin-16.svg") !important;}
|
||||
#context-openlink {background-image: url("../icons/window.svg") !important;}
|
||||
#context-openlinkprivate {background-image: url("chrome://browser/skin/privateBrowsing.svg") !important;}
|
||||
|
||||
#spell-no-suggestions {background-image: url("../icons/text-proofing-tools.svg") !important;}
|
||||
#spell-add-to-dictionary, #spell-add-dictionaries, #spell-add-dictionaries-main {background-image: url("../icons/book-add.svg") !important;}
|
||||
#spell-undo-add-to-dictionary {background-image: url("../icons/undo.svg") !important}
|
||||
#spell-dictionaries {background-image: url("../icons/book.svg") !important;}
|
||||
|
||||
#context-undo, #context-pdfjs-undo {background-image: url("../icons/undo.svg") !important;}
|
||||
#context-redo, #context-pdfjs-redo {background-image: url("../icons/redo.svg") !important;}
|
||||
|
||||
#context-savepage {background-image: url("chrome://browser/skin/downloads/downloads.svg") !important;}
|
||||
#context-pocket {background-image: url("../icons/pocket-outline.svg") !important;}
|
||||
#context-sendpagetodevice {background-image: url("../icons/send-to-device.svg") !important;}
|
||||
#context-cut, #context-pdfjs-cut {background-image: url("../icons/edit-cut.svg") !important;}
|
||||
#context-copy, #context-pdfjs-copy {background-image: url("../icons/edit-copy.svg") !important;}
|
||||
#context-print-selection {background-image: url("chrome://global/skin/icons/print.svg") !important;}
|
||||
#context-paste, #context-pdfjs-paste {background-image: url("../icons/edit-paste.svg") !important;}
|
||||
#context-paste-no-formatting {background-image: url("../icons/paste-text.svg") !important;}
|
||||
#context-delete, #context-pdfjs-delete {background-image: url("../icons/trash.svg") !important;}
|
||||
#context-selectall, #context-pdfjs-selectall {background-image: url("../icons/select-all-on.svg") !important;}
|
||||
#context-pdfjs-highlight-selection {background-image: url("../icons/toolbarButton-editorHighlight.svg") !important;}
|
||||
|
||||
#context-media-play {background-image: url("chrome://global/skin/media/play-fill.svg") !important;}
|
||||
#context-media-pause {background-image: url("chrome://global/skin/media/pause-fill.svg") !important;}
|
||||
#context-media-mute {background-image: url("chrome://global/skin/media/audio-muted.svg") !important;}
|
||||
#context-media-unmute {background-image: url("chrome://global/skin/media/audio.svg") !important;}
|
||||
#context-media-playbackrate {background-image: url("../icons/performance.svg") !important;}
|
||||
#context-video-fullscreen {background-image: url("chrome://browser/skin/fullscreen.svg") !important;}
|
||||
#context-leave-dom-fullscreen {background-image: url("chrome://global/skin/media/fullscreenExitButton.svg") !important;}
|
||||
#context-media-showcontrols {background-image: url("../icons/eye-show.svg") !important;}
|
||||
#context-media-hidecontrols {background-image: url("../icons/eye-hide.svg") !important;}
|
||||
|
||||
#context-viewvideo {background-image: url("../icons/video-clip.svg") !important;}
|
||||
#context-savevideo {background-image: url("../icons/video.svg") !important;}
|
||||
|
||||
#context-saveaudio {background-image: url("chrome://global/skin/media/audio.svg") !important;}
|
||||
|
||||
#context-reloadimage {background-image: url("../icons/image-arrow-counterclockwise.svg") !important;}
|
||||
#context-viewimage {background-image: url("../icons/image-add.svg") !important;}
|
||||
#context-saveimage {background-image: url("../icons/image.svg") !important;}
|
||||
#context-video-saveimage {background-image: url("../icons/video-snapshot.svg") !important;}
|
||||
#context-copyimage-contents {background-image: url("../icons/image-copy.svg") !important;}
|
||||
#context-viewimageinfo {background-image: url("chrome://global/skin/icons/info.svg") !important;}
|
||||
#context-viewimagedesc {background-image: url("../icons/image-alt-text.svg") !important;}
|
||||
|
||||
#context-copyimage, #context-copyvideourl, #context-copyaudiourl {background-image: url("../icons/link.svg") !important;}
|
||||
#context-sendimage, #context-sendvideo, #context-sendaudio {background-image: url("../icons/mail.svg") !important;}
|
||||
|
||||
#context-setDesktopBackground {background-image: url("../icons/device-desktop.svg") !important;}
|
||||
|
||||
#context-take-screenshot {background-image: url("chrome://browser/skin/screenshot.svg") !important;}
|
||||
|
||||
#context-bookmarklink {background-image: url("chrome://browser/skin/bookmark.svg") !important;}
|
||||
#context-savelink {background-image: url("../icons/toolbarButton-download.svg") !important;}
|
||||
#context-savelinktopocket {background-image: url("../icons/pocket-outline.svg") !important;}
|
||||
#context-copyemail {background-image: url("../icons/mail.svg") !important;}
|
||||
#context-copyphone {background-image: url("../icons/device-phone.svg") !important;}
|
||||
#context-copylink {background-image: url("../icons/link.svg") !important;}
|
||||
#context-stripOnShareLink {background-image: url("../icons/link-no-tracking.svg") !important;}
|
||||
#context-sendlinktodevice {background-image: url("../icons/send-to-device.svg") !important;}
|
||||
|
||||
#context-searchselect {background-image: url(chrome://global/skin/icons/search-glass.svg) !important;}
|
||||
#context-searchselect-private {background-image: url("../icons/private-favicon.svg") !important;}
|
||||
#context-keywordfield {background-image: url("chrome://browser/skin/bookmark.svg") !important;}
|
||||
|
||||
#context-translate-selection {background-image: url("../icons/translate.svg") !important;}
|
||||
|
||||
#context-bidi-text-direction-toggle {background-image: url("../icons/text-direction-horizontal-ltr.svg") !important;}
|
||||
#context-bidi-page-direction-toggle {background-image: url("../icons/document-landscape-split-hint.svg") !important;}
|
||||
|
||||
#context-viewsource-goToLine {background-image: url("../icons/text-number-format.svg") !important;}
|
||||
#context-viewpartialsource-selection {background-image: url("../icons/code.svg") !important;}
|
||||
#context-viewsource {background-image: url("../icons/document-search.svg") !important;}
|
||||
#context-inspect-a11y {background-image: url("../icons/tool-accessibility.svg") !important;}
|
||||
#context-inspect {background-image: url("../icons/command-pick.svg") !important;}
|
||||
|
||||
#fill-login {background-image: url("../icons/password.svg") !important;}
|
||||
#fill-login-generated-password {background-image: url("chrome://browser/skin/login.svg") !important;}
|
||||
#manage-saved-logins {background-image: url("../icons/key-multiple.svg") !important;}
|
||||
#use-relay-mask {background-image: url("../icons/relay-logo.svg") !important;}
|
||||
#context-reveal-password {background-image: url("../icons/eye-show.svg") !important;}
|
||||
}
|
||||
|
||||
/* toolbar context menu */
|
||||
#toolbar-context-menu, #unified-extensions-context-menu{
|
||||
.customize-context-manageExtension, .unified-extensions-context-menu-manage-extension {background-image: url("chrome://global/skin/icons/settings.svg") !important;}
|
||||
.customize-context-removeExtension, .unified-extensions-context-menu-remove-extension {background-image: url("../icons/trash.svg") !important;}
|
||||
.customize-context-reportExtension, .unified-extensions-context-menu-report-extension {background-image: url("chrome://global/skin/icons/warning.svg") !important;}
|
||||
.customize-context-moveToPanel {background-image: url("../icons/pin-tab.svg") !important;}
|
||||
.customize-context-removeFromToolbar {background-image: url("../icons/trash.svg") !important;}
|
||||
#toggle_PersonalToolbar {background-image: url("../icons/bookmarks-toolbar-alt.svg") !important;}
|
||||
.viewCustomizeToolbar {background-image: url("chrome://browser/skin/customize.svg") !important;}
|
||||
|
||||
.unified-extensions-context-menu-move-widget-up {background-image: url("../icons/up-arrow.svg") !important;}
|
||||
.unified-extensions-context-menu-move-widget-down {background-image: url("../icons/down-arrow.svg") !important;}
|
||||
}
|
||||
|
||||
/* bookmarks context menu */
|
||||
#placesContext{
|
||||
#placesContext_open {background-image: url("../icons/link-square.svg") !important;}
|
||||
#placesContext_openBookmarkContainer\:tabs, #placesContext_openBookmarkLinks\:tabs {background-image: url("../icons/movetowindow-16.svg") !important;}
|
||||
#placesContext_open\:newtab, #placesContext_openContainer\:tabs, #placesContext_openLinks\:tabs {background-image: url("../icons/new-tab.svg") !important;}
|
||||
#placesContext_open\:newcontainertab {background-image: url("../icons/container-openin-16.svg") !important;}
|
||||
#placesContext_open\:newwindow {background-image: url("chrome://browser/skin/window.svg") !important;}
|
||||
#placesContext_open\:newprivatewindow {background-image: url("chrome://browser/skin/privateBrowsing.svg") !important;}
|
||||
#placesContext_show_bookmark\:info, #placesContext_show\:info, #placesContext_show_folder\:info {background-image: url("../icons/edit-active.svg") !important;}
|
||||
#placesContext_deleteBookmark, #placesContext_deleteFolder, #placesContext_delete, #placesContext_delete_history {background-image: url("../icons/trash.svg") !important;}
|
||||
#placesContext_deleteHost {background-image: url("../icons/eye-hide.svg") !important;}
|
||||
#placesContext_sortBy\:name {background-image: url("../icons/text-sort-ascending.svg") !important;}
|
||||
|
||||
#placesContext_cut {background-image: url("../icons/edit-cut.svg") !important;}
|
||||
#placesContext_copy {background-image: url("../icons/edit-copy.svg") !important;}
|
||||
#placesContext_paste_group, #placesContext_paste {background-image: url("../icons/edit-paste.svg") !important;}
|
||||
#placesContext_new\:separator {background-image: url("../icons/vertical-line.svg") !important;}
|
||||
#placesContext_new\:bookmark {background-image: url("chrome://browser/skin/bookmark.svg") !important;}
|
||||
#placesContext_new\:folder {background-image: url("chrome://global/skin/icons/folder.svg") !important;}
|
||||
#placesContext_showAllBookmarks {background-image: url("chrome://browser/skin/bookmark-star-on-tray.svg") !important;}
|
||||
#toggle_PersonalToolbar {background-image: url("../icons/bookmarks-toolbar-alt.svg") !important;}
|
||||
}
|
||||
|
||||
/* downloads context menu */
|
||||
#downloadsContextMenu{
|
||||
.downloadPauseMenuItem {background-image: url("chrome://global/skin/media/pause-fill.svg") !important;}
|
||||
.downloadResumeMenuItem {background-image: url("chrome://global/skin/media/play-fill.svg") !important;}
|
||||
.downloadUnblockMenuItem {background-image: url("../icons/checkmark-circle.svg") !important;}
|
||||
.downloadUseSystemDefaultMenuItem {background-image: url("../icons/toolbarButton-upload.svg") !important;}
|
||||
.downloadShowMenuItem {background-image: url("chrome://global/skin/icons/folder.svg") !important;}
|
||||
|
||||
.downloadOpenReferrerMenuItem {background-image: url("../icons/link-square.svg") !important;}
|
||||
.downloadCopyLocationMenuItem {background-image: url("../icons/link.svg") !important;}
|
||||
|
||||
.downloadDeleteFileMenuItem {background-image: url("../icons/trash.svg") !important;}
|
||||
.downloadRemoveFromHistoryMenuItem {background-image: url("../icons/eraser.svg") !important;}
|
||||
|
||||
menuitem[command="downloadsCmd_clearList"], menuitem[command="downloadsCmd_clearDownloads"] {background-image: url("../icons/broom.svg") !important;}
|
||||
}
|
||||
|
||||
/* sidebar header menu */
|
||||
#sidebarMenu-popup{
|
||||
#sidebar-switcher-bookmarks {background-image: url(chrome://browser/skin/bookmark.svg) !important;}
|
||||
#sidebar-switcher-history {background-image: url(chrome://browser/skin/history.svg) !important;}
|
||||
#sidebar-switcher-tabs {background-image: url(chrome://browser/skin/synced-tabs.svg) !important;}
|
||||
}
|
||||
|
||||
/* bookmarks button menu */
|
||||
#main-window:has(#PersonalToolbar[collapsed="true"]) #BMB_bookmarksPopup #BMB_viewBookmarksToolbar {background-image: url("../icons/eye-show.svg") !important;}
|
||||
#BMB_bookmarksPopup{
|
||||
#BMB_viewBookmarksToolbar {background-image: url("../icons/eye-hide.svg") !important;}
|
||||
#BMB_viewBookmarksSidebar {background-image: url("chrome://browser/skin/sidebars.svg") !important;}
|
||||
#BMB_searchBookmarks {background-image: url(chrome://global/skin/icons/search-glass.svg) !important}
|
||||
#BMB_mobileBookmarks {background-image: url(../icons/device-phone.svg) !important;}
|
||||
|
||||
#BMB_bookmarksShowAllTop {display: none !important;}
|
||||
#BMB_bookmarksShowAll {background-image: url("chrome://browser/skin/bookmark-star-on-tray.svg") !important;}
|
||||
}
|
||||
|
||||
/* bookmarks bar folder menu */
|
||||
#PlacesToolbar .openintabs-menuitem {background-image: url("../icons/bookmark-multiple.svg") !important;}
|
||||
}
|
339
.config/firefox/chrome.bak/ShyFox/shy-navbar.css
Normal file
|
@ -0,0 +1,339 @@
|
|||
/*== ShyFox Navbar ==================================================================================================================================
|
||||
|
||||
Navigation bar on top of the window
|
||||
|
||||
|
||||
--- JUST IMPORTANT THINGS ---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* local variables */
|
||||
:root{
|
||||
--navbar-real-wdt: var(--navbar-wdt);
|
||||
}
|
||||
|
||||
/* if navbar is not hidden, this window is not floating popup and not in fullscreen video */
|
||||
#main-window:not(:is([titlepreface*=""], [titlepreface*=""]))[chromehidden=""]:not([inDOMFullscreen="true"]){
|
||||
/* set top margin to navbar height */
|
||||
--top-margin: calc(var(--toolbar-item-hgt)) !important;
|
||||
}
|
||||
|
||||
/* padding tweak */
|
||||
.toolbaritem-combined-buttons:not([widget-type="button-and-view"], [widget-type="custom"]), .toolbaritem-menu-buttons {
|
||||
margin-inline-end: var(--toolbar-start-end-padding) !important;
|
||||
}
|
||||
#nav-bar-overflow-button {margin-inline-end: calc(var(--toolbar-start-end-padding) / 2) !important;}
|
||||
|
||||
/* limit items height */
|
||||
#nav-bar-customization-target > * {max-height: var(--toolbar-item-hgt) !important;}
|
||||
#nav-bar-customization-target {height: var(--toolbar-item-hgt) !important;}
|
||||
|
||||
#downloadsFooterButtons toolbarseparator {
|
||||
margin-top: 6px !important;
|
||||
padding-bottom: 2px !important;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- NAVBAR SHOWN ------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
#nav-bar{
|
||||
position: fixed !important;
|
||||
z-index: 3 !important;
|
||||
|
||||
transition: var(--transition) !important;
|
||||
|
||||
background-color: transparent !important;
|
||||
border-top: 0px solid transparent !important;
|
||||
|
||||
top: 0px;
|
||||
right: auto !important;
|
||||
|
||||
& > * {opacity: var(--dyn-opct);}
|
||||
}
|
||||
|
||||
@media not (-moz-bool-pref: "sidebar.revamp") {
|
||||
#nav-bar {
|
||||
left: var(--left-margin) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* centered navbar text */
|
||||
#urlbar:not(:is(
|
||||
[breakout][breakout-extend],
|
||||
:focus-within
|
||||
) ) {
|
||||
#urlbar-input {text-align: center !important}
|
||||
}
|
||||
|
||||
/* tab loading progress in urlbar background */
|
||||
#main-window:not([customizing]):not([titlepreface*=""]):has(.tabbrowser-tab[selected][busy]) #urlbar:not([breakout-extend]) #urlbar-background{
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
color-mix(in srgb, var(--shy-color) 10%, transparent) 0 var(--shy-tab-load-pcent),
|
||||
color-mix(in srgb, var(--bt-col) 10%, transparent) var(--shy-tab-load-pcent) 100%
|
||||
) !important;
|
||||
}
|
||||
|
||||
/* space for window controls and magic width calculations (это пиздец) */
|
||||
#main-window:not([customizing])[titlepreface*=""]:not(:is([titlepreface*=""], [titlepreface*=""])){
|
||||
#nav-bar{
|
||||
margin-right: calc(var(--buttonbox-right-wdt) - var(--nav-rgt-btnbx-margin));
|
||||
width: calc(
|
||||
100vw
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
- var(--buttonbox-right-wdt)
|
||||
+ var(--nav-rgt-btnbx-margin)
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
|
||||
#main-window:not([customizing]):not([titlepreface*=""]):not(:is([titlepreface*=""], [titlepreface*=""])){
|
||||
#nav-bar{
|
||||
margin-right: calc(var(--buttonbox-right-wdt) - var(--nav-rgt-btnbx-button));
|
||||
width: calc(
|
||||
100vw
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
- var(--buttonbox-right-wdt)
|
||||
+ var(--nav-rgt-btnbx-button)
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
|
||||
#main-window:not([customizing])[titlepreface*=""]:not(:is([titlepreface*=""], [titlepreface*=""])){
|
||||
#nav-bar{
|
||||
margin-left: calc(var(--buttonbox-left-wdt) - var(--nav-lft-btnbx-margin));
|
||||
width: calc(
|
||||
100vw
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
- var(--buttonbox-left-wdt)
|
||||
+ var(--nav-lft-btnbx-margin)
|
||||
- var(--buttonbox-right-wdt)
|
||||
+ var(--nav-rgt-btnbx-button)
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
|
||||
#main-window:not([customizing])[titlepreface*=""][titlepreface*=""]:not(:is([titlepreface*=""], [titlepreface*=""])){
|
||||
#nav-bar{
|
||||
width: calc(
|
||||
100vw
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
- var(--buttonbox-left-wdt)
|
||||
+ var(--nav-lft-btnbx-margin)
|
||||
- var(--buttonbox-right-wdt)
|
||||
+ var(--nav-rgt-btnbx-margin)
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- NAVBAR HIDDEN -----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* activate style when navbar hidden or clean mode enabled (and not in customizing page) */
|
||||
#main-window:is([titlepreface*=""], [titlepreface*=""]):not([customizing]){
|
||||
|
||||
#nav-bar{
|
||||
overflow: visible !important;
|
||||
z-index: 4 !important;
|
||||
|
||||
border-radius: var(--big-rounding);
|
||||
|
||||
width: var(--navbar-real-wdt) !important;
|
||||
max-width: calc(
|
||||
100vw
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
);
|
||||
|
||||
top: calc(
|
||||
var(--margin)
|
||||
+ var(--panel-hide-ldg)
|
||||
- var(--toolbar-item-hgt)
|
||||
);
|
||||
|
||||
left: calc(
|
||||
(
|
||||
100vw
|
||||
- var(--navbar-real-wdt)
|
||||
+ var(--left-margin)
|
||||
- var(--right-margin)
|
||||
) / 2
|
||||
) !important;
|
||||
|
||||
/* make all panel content invisible (it will visible when hover) */
|
||||
#nav-bar-customization-target > *:not(#unified-extensions-button),
|
||||
#nav-bar-overflow-button
|
||||
{
|
||||
transition: var(--transition) !important;
|
||||
opacity: 0 !important;
|
||||
}
|
||||
|
||||
/* hover target (invisible box between window edge and panel) */
|
||||
#nav-bar-customization-target::before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -999;
|
||||
background-color: var(--debug-col);
|
||||
height: 500%;
|
||||
width: 100%;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
/* indication bar (line on window edge) */
|
||||
&::before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: var(--transition);
|
||||
|
||||
top: calc(
|
||||
100%
|
||||
- var(--panel-hide-ldg)
|
||||
- var(--margin)
|
||||
+ var(--hide-bar-padding)
|
||||
);
|
||||
|
||||
height: calc(var(--margin) - var(--hide-bar-padding) * 2);
|
||||
width: calc(100% - var(--hide-bar-wdt-pad));
|
||||
left: calc(var(--hide-bar-wdt-pad) / 2);
|
||||
|
||||
border-radius: var(--rounding);
|
||||
background-color: var(--bt-col);
|
||||
opacity: var(--hide-bar-opct);
|
||||
}
|
||||
}
|
||||
|
||||
/* tab loading progress bar */
|
||||
&:has(.tabbrowser-tab[selected][busy]) #nav-bar::before{
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
var(--shy-color) 0 var(--shy-tab-load-pcent),
|
||||
var(--bt-col) var(--shy-tab-load-pcent) 100%
|
||||
) !important;
|
||||
}
|
||||
|
||||
/* tab loading progress on whole panel */
|
||||
&:has(.tabbrowser-tab[selected][busy]) #nav-bar::after{
|
||||
content: "";
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
z-index: -999;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
bottom: 0px;
|
||||
border-radius: var(--big-rounding);
|
||||
opacity: 0;
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
var(--shy-color) 0 var(--shy-tab-load-pcent),
|
||||
transparent var(--shy-tab-load-pcent) 100%
|
||||
);
|
||||
}
|
||||
|
||||
/* hotfix */
|
||||
#urlbar{
|
||||
visibility: collapse;
|
||||
}
|
||||
|
||||
#urlbar-container::before {
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: var(--rounding);
|
||||
background-color: var(--toolbar-field-background-color);
|
||||
}
|
||||
|
||||
|
||||
/* show navbar on hover or focus */
|
||||
&:has(
|
||||
#nav-bar-customization-target:hover #unified-extensions-button:not(:hover),
|
||||
#nav-bar-customization-target *:not(:is(#unified-extensions-button, #firefox-view-button))[open],
|
||||
#nav-bar-customization-target #searchbar:focus-within,
|
||||
#urlbar:focus-within,
|
||||
#urlbar[breakout][breakout-extend],
|
||||
#nav-bar-overflow-button[open],
|
||||
#nav-bar-overflow-button:hover
|
||||
) {
|
||||
#nav-bar{
|
||||
|
||||
/* hotfix */
|
||||
#urlbar{
|
||||
visibility: visible !important;
|
||||
transition: visibility 0s linear var(--trans-dur);
|
||||
min-width: var(--urlbar-width) !important;
|
||||
}
|
||||
|
||||
|
||||
top: calc(var(--top-margin) + var(--margin));
|
||||
|
||||
background-color: var(--tb-col) !important;
|
||||
|
||||
/* corners, shadow */
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
|
||||
#nav-bar-customization-target > *:not([disabled="true"]),
|
||||
#nav-bar-overflow-button {opacity: 1 !important;}
|
||||
#nav-bar-customization-target > *[disabled="true"] {opacity: 0.5 !important;}
|
||||
|
||||
&::before {opacity: 0;}
|
||||
&::after {opacity: 0.1;} /* opacity of tab load progress indicator */
|
||||
}
|
||||
}
|
||||
|
||||
/* hide all */
|
||||
&[titlepreface*=""]{
|
||||
#nav-bar-customization-target > *:not(#urlbar-container, #unified-extensions-button) {display: none !important;}
|
||||
}
|
||||
|
||||
/* adaptive navbar width */
|
||||
@media (max-width: 1000px) {
|
||||
#nav-bar{
|
||||
--navbar-real-wdt: calc(
|
||||
100vw
|
||||
- var(--margin) * 2
|
||||
- var(--right-margin)
|
||||
- var(--buttonbox-left-wdt)
|
||||
- var(--buttonbox-right-wdt)
|
||||
) !important;
|
||||
|
||||
max-width: none !important;
|
||||
left: calc(
|
||||
var(--margin)
|
||||
+ var(--buttonbox-left-wdt)
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- CUSTOMIZING PAGE --------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
#main-window[customizing]{
|
||||
#nav-bar{
|
||||
left: 140px !important;
|
||||
right: 140px !important;
|
||||
|
||||
width: calc(100vw - 280px) !important;
|
||||
|
||||
top: var(--margin) !important;
|
||||
border-radius: var(--big-rounding) !important;
|
||||
|
||||
background-color: var(--bg-col) !important;
|
||||
}
|
||||
|
||||
#urlbar-background, #searchbar {background-color: var(--tb-col) !important;}
|
||||
}
|
467
.config/firefox/chrome.bak/ShyFox/shy-sidebar.css
Normal file
|
@ -0,0 +1,467 @@
|
|||
/*== ShyFox Sidebar =================================================================================================================================
|
||||
|
||||
Styles for sidebar
|
||||
|
||||
|
||||
--- JUST IMPORTANT THINGS ---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* reserve space for bookmarks toolbar */
|
||||
:root{
|
||||
--little-gap: calc(var(--margin) / 1.5);
|
||||
--bookmarks-hgt: var(--toolbar-item-hgt);
|
||||
}
|
||||
|
||||
/* remove space reserved for bookmarks toolbar if it hidden */
|
||||
#main-window:has(#PersonalToolbar[collapsed="true"]) {
|
||||
--little-gap: 0px;
|
||||
--bookmarks-hgt: 0px;
|
||||
}
|
||||
|
||||
/* if sidebar is not hidden or clean mode not enabled, this window is not floating popup and not in fullscreen video */
|
||||
#main-window:not(:is([titlepreface*=""], [titlepreface*=""]))[chromehidden=""]:not([inDOMFullscreen="true"]){
|
||||
/* set left margin to sidebar width */
|
||||
--left-margin: var(--sdbr-wdt) !important;
|
||||
}
|
||||
|
||||
/* hide sidebar splitter */
|
||||
#sidebar-splitter {display: none}
|
||||
|
||||
/*
|
||||
|
||||
--- SIDEBAR SHOWN -----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* styles for both sidebar and bookmarks toolbar */
|
||||
#sidebar-box,
|
||||
#PersonalToolbar
|
||||
{
|
||||
position: fixed;
|
||||
overflow: visible;
|
||||
z-index: 2 !important;
|
||||
|
||||
min-width: 0px !important;
|
||||
max-width: 100vw !important;
|
||||
|
||||
left: 0px;
|
||||
|
||||
transition: var(--transition) !important;
|
||||
background-color: transparent !important;
|
||||
|
||||
padding-top: 0 !important;
|
||||
|
||||
& > * {
|
||||
opacity: var(--dyn-opct);
|
||||
transition: var(--transition) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* styles for sidebar */
|
||||
#sidebar-box{
|
||||
|
||||
top: calc(
|
||||
var(--margin) / 2
|
||||
+ var(--bookmarks-hgt)
|
||||
);
|
||||
|
||||
height: calc(
|
||||
100vh
|
||||
- var(--margin) * 2
|
||||
+ var(--margin) / 2
|
||||
- var(--bookmarks-hgt)
|
||||
)!important;
|
||||
|
||||
width: var(--sdbr-wdt) !important;
|
||||
}
|
||||
|
||||
/* drag window by empty space in bookmarks toolbar */
|
||||
#PersonalToolbar > *, #PlacesToolbarItems .bookmark-item[style="visibility: hidden;"]{
|
||||
-moz-window-dragging: drag !important;
|
||||
background-color: var(--debug-col-2) !important;
|
||||
}
|
||||
|
||||
/* styles for bookmarks toolbar */
|
||||
#PersonalToolbar{
|
||||
visibility: visible !important;
|
||||
height: var(--toolbar-item-hgt) !important;
|
||||
top: 0px;
|
||||
border-radius: var(--rounding);
|
||||
margin-left: var(--buttonbox-left-wdt);
|
||||
|
||||
width: calc(
|
||||
var(--sdbr-wdt)
|
||||
- var(--buttonbox-left-wdt)
|
||||
) !important;
|
||||
|
||||
padding-top: 2px !important;
|
||||
padding-bottom: 2px !important;
|
||||
|
||||
&[collapsed="true"] {display: none}
|
||||
}
|
||||
|
||||
/* padding for screenshot control buttons */
|
||||
#main-window:not([titlepreface*=""]):has(#screenshotsPagePanel:not([hidden])){
|
||||
#sidebar-box{
|
||||
padding-bottom: calc(
|
||||
var(--screenshot-tool-hgt)
|
||||
- var(--margin)
|
||||
+ var(--bottom-margin)
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- SIDEBAR HIDDEN ----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
@media not (-moz-bool-pref: "sidebar.revamp") {
|
||||
/* activate style when sidebar hidden or clean mode enabled (and not in customizing page) */
|
||||
#main-window:is([titlepreface*=""], [titlepreface*=""]):not([customizing]){
|
||||
|
||||
/* styles for both sidebar and bookmaarks toolbar */
|
||||
#sidebar-box,
|
||||
#sidebar-main,
|
||||
#PersonalToolbar
|
||||
{
|
||||
z-index: 99 !important;
|
||||
width: var(--sdbr-wdt) !important;
|
||||
|
||||
left: calc(
|
||||
var(--left-margin)
|
||||
+ var(--panel-hide-ldg)
|
||||
- var(--sdbr-wdt)
|
||||
) !important;
|
||||
|
||||
border-radius: var(--big-rounding) !important;
|
||||
|
||||
/* hover target (invisible box between window edge and panel) */
|
||||
&::before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -999;
|
||||
background-color: var(--debug-col);
|
||||
|
||||
width: 150%;
|
||||
height: 100%;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
/* make all panel content invisible (it will visible when hover) */
|
||||
& > * {
|
||||
transition: var(--transition) !important;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* styles for sidebar */
|
||||
#sidebar-box, #sidebar-main{
|
||||
height: calc(
|
||||
100vh
|
||||
- var(--bookmarks-hgt)
|
||||
- var(--little-gap)
|
||||
- var(--top-margin)
|
||||
- var(--bottom-margin)
|
||||
- var(--margin) * 2
|
||||
) !important;
|
||||
|
||||
top: calc(
|
||||
var(--top-margin)
|
||||
+ var(--margin)
|
||||
+ var(--bookmarks-hgt) + var(--little-gap)
|
||||
);
|
||||
|
||||
/* indication bar (line on window edge) */
|
||||
&::after{
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: var(--transition);
|
||||
|
||||
left: calc(
|
||||
100%
|
||||
- var(--panel-hide-ldg)
|
||||
- var(--margin)
|
||||
+ var(--hide-bar-padding)
|
||||
);
|
||||
|
||||
width: calc(var(--margin) - var(--hide-bar-padding) * 2 );
|
||||
height: calc(
|
||||
100%
|
||||
- var(--hide-bar-wdt-pad)
|
||||
+ var(--bookmarks-hgt)
|
||||
+ var(--little-gap)
|
||||
);
|
||||
|
||||
bottom: calc(var(--hide-bar-wdt-pad) / 2);
|
||||
border-radius: var(--rounding);
|
||||
background-color: var(--bt-col);
|
||||
opacity: var(--hide-bar-opct);
|
||||
}
|
||||
}
|
||||
|
||||
/* add rounded corners to sidebar content */
|
||||
#sidebar{border-radius: var(--big-rounding) !important;}
|
||||
|
||||
/* styles for bookmarks */
|
||||
#PersonalToolbar{
|
||||
top: calc(var(--top-margin) + var(--margin));
|
||||
margin-left: 0px !important;
|
||||
overflow: visible !important;
|
||||
|
||||
padding-inline: 2px !important;
|
||||
|
||||
/* hover target between sidebar and bookmarks toolbar */
|
||||
&::after{
|
||||
content: "";
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
|
||||
background-color: var(--debug-col);
|
||||
opacity: 1 !important;
|
||||
|
||||
height: calc(var(--little-gap) + 4px);
|
||||
bottom: calc(-2px - var(--little-gap));
|
||||
|
||||
width: 150%;
|
||||
|
||||
right: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
/* show sidebar on hover or focus (if not in clean mode) */
|
||||
&:not([titlepreface*=""]):has(
|
||||
#sidebar-box:hover,
|
||||
#sidebar-box:focus-within,
|
||||
#sidebar-main:hover,
|
||||
#sidebar-main:focus-within,
|
||||
#PersonalToolbar:hover,
|
||||
#PersonalToolbar *:not(#firefox-view-button)[open],
|
||||
#sidebar-switcher-target[aria-expanded="true"]
|
||||
) {
|
||||
#sidebar-box,
|
||||
#sidebar-main,
|
||||
#PersonalToolbar
|
||||
{
|
||||
opacity: 1 !important;
|
||||
left: calc(var(--left-margin) + var(--margin)) !important;
|
||||
|
||||
background-color: var(--bg-col) !important;
|
||||
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
|
||||
&::after{opacity: 0}
|
||||
|
||||
& > * {opacity: var(--dyn-opct);}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
||||
--- CUSTOMIZING PAGE --------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
#main-window[customizing]{
|
||||
#PersonalToolbar{
|
||||
top: 65px !important;
|
||||
left: 20px !important;
|
||||
margin-left: 0px !important;
|
||||
|
||||
border-radius: var(--big-rounding) !important;
|
||||
|
||||
background-color: var(--bg-col) !important;
|
||||
}
|
||||
|
||||
/* remove text from bookmarks toolbar elements placeholder */
|
||||
#bookmarks-toolbar-placeholder .toolbarbutton-text {display: none !important;}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
||||
--- NOT SIDEBERY -----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Styles when Sidebery is not opened
|
||||
|
||||
*/
|
||||
|
||||
@media not (-moz-bool-pref: "sidebar.revamp") {
|
||||
/* hide sidebar header when Sidebery opened */
|
||||
#main-window:not([customizing]):has(
|
||||
#sidebar-box:not([hidden])[sidebarcommand*="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]
|
||||
) {
|
||||
#sidebar-header {display: none}
|
||||
}
|
||||
|
||||
/* hide sidebar button on toolbar when sidebar opened */
|
||||
#main-window:not([customizing]):has(
|
||||
#sidebar-box:not([hidden])
|
||||
) {
|
||||
#sidebar-button {display: none}
|
||||
}
|
||||
|
||||
/* color the sidebar button red */
|
||||
#sidebar-button .toolbarbutton-icon {
|
||||
background-color: red !important;
|
||||
fill: white !important;
|
||||
}
|
||||
|
||||
/* notification when sidebar is not opened */
|
||||
#main-window[chromehidden=""]:has(
|
||||
#sidebar-box[hidden="true"]
|
||||
) {
|
||||
--shyfox-string-open-sidebar: "Open sidebar!";
|
||||
&[lang="ru"]{--shyfox-string-open-sidebar: "Откройте боковую панель!";}
|
||||
|
||||
&::before{
|
||||
content: var(--shyfox-string-open-sidebar);
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
|
||||
font-weight: bold;
|
||||
|
||||
top: calc(var(--margin) + var(--toolbar-item-hgt));
|
||||
left: calc(var(--margin) * 2);
|
||||
|
||||
background-color: var(--tb-col);
|
||||
color: var(--bt-col);
|
||||
outline: 3px solid red;
|
||||
|
||||
border-radius: var(--big-rounding);
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* styles when Sidebery is not opened but sidebar is */
|
||||
#main-window[chromehidden=""]:has(
|
||||
#sidebar-box:not([hidden]):not([sidebarcommand*="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"])
|
||||
) {
|
||||
|
||||
--shyfox-string-to-manage-tabs-open-sidebery: "To manage tabs, open Sidebery in this menu";
|
||||
&[lang="ru"]{--shyfox-string-to-manage-tabs-open-sidebery: "Для работы с вкладками откройте Sidebery";}
|
||||
|
||||
@media not (-moz-bool-pref: "sidebar.revamp") {
|
||||
#sidebar {
|
||||
border: var(--outline) !important;
|
||||
margin: 0 calc(var(--margin) / 1.5) !important;
|
||||
}
|
||||
}
|
||||
|
||||
&[titlepreface*=""] {#sidebar {margin-bottom: calc(var(--margin) / 1.5) !important;}}
|
||||
|
||||
#sidebar-header{
|
||||
#sidebar-close {display: none}
|
||||
|
||||
padding-bottom: 30px !important;
|
||||
border: none !important;
|
||||
|
||||
/* info text */
|
||||
&::before{
|
||||
content: "";
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
|
||||
mask-image: url("chrome://global/skin/icons/info-filled.svg");
|
||||
background-color: var(--shy-color);
|
||||
mask-repeat: no-repeat;
|
||||
|
||||
top: 44px;
|
||||
left: 10px;
|
||||
}
|
||||
|
||||
&::after{
|
||||
content: var(--shyfox-string-to-manage-tabs-open-sidebery);
|
||||
position: absolute;
|
||||
top: 45px;
|
||||
font-size: 11.8px;
|
||||
|
||||
padding-left: 22px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media not (-moz-bool-pref: "sidebar.revamp") {
|
||||
/* assign the button to move the sidebar left and right to enable and disable native tabs for emergencies */
|
||||
|
||||
/* if Sidebery is not opened but sidebar is */
|
||||
#main-window:has(
|
||||
#sidebar-box:not([hidden]):not([sidebarcommand*="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"])
|
||||
) {
|
||||
|
||||
--shyfox-string-enable-native-tabs: "Enable native tabs";
|
||||
&[lang="ru"]{--shyfox-string-enable-native-tabs: "Включить нативные вкладки";}
|
||||
|
||||
#sidebarMenu-popup #sidebar-reverse-position{
|
||||
/* remove original text from this button */
|
||||
.menu-text {display: none !important;}
|
||||
|
||||
&::after{
|
||||
content: var(--shyfox-string-enable-native-tabs) !important;
|
||||
padding-inline: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
/* add rounded corners to sidebar content */
|
||||
#sidebar {border-radius: var(--big-rounding) !important;}
|
||||
|
||||
/* sidebar on left (native tabs disabled, default) */
|
||||
&:has(#sidebar-box[style*="order: 2"]){
|
||||
/* there is no styles */
|
||||
}
|
||||
|
||||
/* sidebar on right (native tabs enabled) */
|
||||
&:has(#sidebar-box[style*="order: 4"]){
|
||||
|
||||
/* add checkmark to button to indicate state */
|
||||
#sidebarMenu-popup #sidebar-reverse-position {background-image: url("../icons/menu-check.svg") !important;}
|
||||
|
||||
/* native tabs styling */
|
||||
#tabbrowser-tabs{
|
||||
--tabsbar-wdt: calc(
|
||||
(
|
||||
100vw
|
||||
- var(--margin) * 2
|
||||
- var(--left-margin)
|
||||
- var(--right-margin)
|
||||
) / 1.5
|
||||
);
|
||||
|
||||
display: flex !important;
|
||||
position: fixed !important;
|
||||
|
||||
width: var(--tabsbar-wdt) !important;
|
||||
height: 45px !important;
|
||||
padding: 0 !important;
|
||||
|
||||
left: calc(var(--left-margin) + var(--margin)) !important;
|
||||
top: calc(var(--top-margin) + var(--margin)) !important;
|
||||
|
||||
background-color: var(--tb-col) !important;
|
||||
border-radius: var(--big-rounding) !important;
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
transition: var(--transition) !important;
|
||||
|
||||
.tabbrowser-tab:not([pinned]){
|
||||
min-width: 150px !important;
|
||||
.tab-close-button{display: flex !important;}
|
||||
}
|
||||
|
||||
/* pinned tabs */
|
||||
.tabbrowser-tab[pinned]{
|
||||
position: initial !important;
|
||||
margin-inline: 0px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
345
.config/firefox/chrome.bak/ShyFox/shy-toolbar.css
Normal file
|
@ -0,0 +1,345 @@
|
|||
/*== ShyFox Toolbar =================================================================================================================================
|
||||
|
||||
Tab bar has been transformed into vertical toolbar on the right side of the window
|
||||
|
||||
|
||||
--- JUST IMPORTANT THINGS ---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* if toolbar is not hidden, this window is not floating popup and not in fullscreen video */
|
||||
#main-window:not(:is([titlepreface*=""], [titlepreface*=""]))[chromehidden=""]:not([inDOMFullscreen="true"]){
|
||||
/* set right margin to toolbar width */
|
||||
--right-margin: var(--toolbar-button-wdt);
|
||||
}
|
||||
|
||||
/* hide some things */
|
||||
#tabbrowser-tabs, /* native tabs */
|
||||
#alltabs-button, /* all tabs button */
|
||||
.private-browsing-indicator-with-label,
|
||||
#private-browsing-indicator-with-label, /* private mode indicator */
|
||||
.titlebar-spacer
|
||||
|
||||
{display: none}
|
||||
|
||||
/*
|
||||
|
||||
--- TOOLBAR SHOWN -----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
/* styles for tabs toolbar and buttons */
|
||||
#TabsToolbar,
|
||||
#PanelUI-menu-button,
|
||||
#unified-extensions-button
|
||||
{
|
||||
position: fixed;
|
||||
z-index: 1 !important;
|
||||
|
||||
width: var(--toolbar-button-wdt);
|
||||
right: 0px;
|
||||
|
||||
transition: var(--transition) !important;
|
||||
}
|
||||
|
||||
/* styles for menu button */
|
||||
#PanelUI-menu-button{
|
||||
top: 2px;
|
||||
|
||||
padding-right: 3px !important;
|
||||
min-height: var(--toolbar-item-hgt) !important;
|
||||
min-width: var(--toolbar-button-wdt) !important;
|
||||
|
||||
/* fit button size to other buttons in toolbar */
|
||||
.toolbarbutton-badge-stack{
|
||||
padding: calc((var(--tab-min-height) - 16px) / 2) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* styles for extensions button */
|
||||
#unified-extensions-button{
|
||||
top: var(--toolbar-item-hgt);
|
||||
opacity: 1 !important;
|
||||
|
||||
/* fit button size to other buttons in toolbar */
|
||||
& > .toolbarbutton-icon {
|
||||
width: var(--toolbar-button-wdt) !important;
|
||||
height: var(--toolbar-item-hgt) !important;
|
||||
scale: 0.88;
|
||||
padding: 10.5px !important;
|
||||
border-radius: calc(var(--rounding) * 1.136363636) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* styles for tabs toolbar */
|
||||
#TabsToolbar{
|
||||
bottom: 2px;
|
||||
top: 2px;
|
||||
background-color: transparent !important;
|
||||
padding-top: calc(var(--toolbar-item-hgt) * 2 + 3px) !important;
|
||||
}
|
||||
|
||||
/* vertical tabs toolbar orientation */
|
||||
#TabsToolbar-customization-target{
|
||||
position: absolute;
|
||||
|
||||
opacity: var(--dyn-opct);
|
||||
|
||||
right: 0;
|
||||
top: calc(var(--toolbar-item-hgt) * 2) !important;
|
||||
bottom: 0;
|
||||
|
||||
display: flex !important;
|
||||
flex-direction: column !important;
|
||||
justify-content: center !important;
|
||||
align-content: center !important;
|
||||
width: var(--toolbar-button-wdt) !important;
|
||||
|
||||
& > * {padding: 3px !important;}
|
||||
|
||||
/* bookmarks inside toolbar */
|
||||
#PlacesToolbar {width: 40px !important;}
|
||||
|
||||
/* searchbar inside toolbar */
|
||||
--searchbar-hgt: 170px;
|
||||
#search-container{
|
||||
margin-inline: 0px !important;
|
||||
margin-block: 2px !important;
|
||||
padding: 5px !important;
|
||||
padding-block: 0px !important;
|
||||
|
||||
min-width: var(--toolbar-button-wdt) !important;
|
||||
width: var(--toolbar-button-wdt) !important;
|
||||
min-height: var(--toolbar-item-hgt) !important;
|
||||
max-height: var(--searchbar-hgt) !important;
|
||||
|
||||
#searchbar {height: var(--searchbar-hgt) !important;}
|
||||
|
||||
.searchbar-search-button, .search-go-container {position: absolute}
|
||||
.searchbar-search-button {margin-top: 5px !important;}
|
||||
.search-go-container {
|
||||
margin-top: calc(var(--searchbar-hgt) - 33px ) !important;
|
||||
margin-left: 1.48px !important;
|
||||
}
|
||||
|
||||
.searchbar-textbox{
|
||||
writing-mode: vertical-rl;
|
||||
text-orientation: mixed;
|
||||
padding-inline-start: 25px !important;
|
||||
padding-inline-end: 35px !important;
|
||||
cursor: vertical-text !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* omit margin */
|
||||
& > .toolbaritem-combined-buttons {margin-inline: 0 !important;}
|
||||
}
|
||||
|
||||
/* space for window controls */
|
||||
#main-window:not([titlepreface*=""]){
|
||||
#TabsToolbar,
|
||||
#PanelUI-menu-button,
|
||||
#unified-extensions-button
|
||||
{
|
||||
margin-top: var(--buttonbox-right-hgt) !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: "sidebar.verticalTabs") {
|
||||
#TabsToolbar,
|
||||
#PanelUI-menu-button,
|
||||
#unified-extensions-button
|
||||
{
|
||||
margin-top: var(--buttonbox-right-hgt) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- TOOLBAR HIDDEN ----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
@media not (-moz-bool-pref: "sidebar.verticalTabs") {
|
||||
/* activate style when toolbar hidden or clean mode enabled (and not in customizing page) */
|
||||
#main-window:is([titlepreface*=""], [titlepreface*=""]):not([customizing]){
|
||||
|
||||
/* styles for tabs toolbar and buttons */
|
||||
#TabsToolbar,
|
||||
#PanelUI-menu-button,
|
||||
#unified-extensions-button
|
||||
{
|
||||
top: calc(
|
||||
var(--margin)
|
||||
+ var(--top-margin)
|
||||
);
|
||||
|
||||
right: calc(
|
||||
var(--right-margin)
|
||||
+ var(--panel-hide-ldg)
|
||||
- var(--toolbar-button-wdt)
|
||||
);
|
||||
|
||||
bottom: auto;
|
||||
z-index: 3 !important;
|
||||
}
|
||||
|
||||
/* styles for tabs toolbar */
|
||||
#TabsToolbar{
|
||||
top: calc(
|
||||
var(--margin)
|
||||
+ var(--top-margin)
|
||||
- 3px
|
||||
);
|
||||
|
||||
border-radius: var(--big-rounding);
|
||||
|
||||
/* hover target (invisible box between window edge and panel) */
|
||||
&::before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -999;
|
||||
background-color: var(--debug-col);
|
||||
|
||||
width: 500%;
|
||||
height: 100%;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
/* indication bar (line on window edge) */
|
||||
&::after{
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: var(--transition);
|
||||
|
||||
right: calc(
|
||||
100%
|
||||
- var(--panel-hide-ldg)
|
||||
- var(--margin)
|
||||
+ var(--hide-bar-padding)
|
||||
);
|
||||
width: calc(var(--margin) - var(--hide-bar-padding) * 2);
|
||||
height: calc(100% - var(--hide-bar-wdt-pad));
|
||||
top: calc(var(--hide-bar-wdt-pad) / 2);
|
||||
|
||||
border-radius: var(--rounding);
|
||||
background-color: var(--bt-col);
|
||||
opacity: var(--hide-bar-opct);
|
||||
}
|
||||
}
|
||||
|
||||
/* make all panel content invisible (it will visible when hover) */
|
||||
:is(#PanelUI-menu-button, #unified-extensions-button) > *,
|
||||
#TabsToolbar-customization-target > *:not(#tabbrowser-tabs) {
|
||||
transition: var(--transition) !important;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#TabsToolbar-customization-target{
|
||||
/* make the toolbar height dynamic */
|
||||
position: relative !important;
|
||||
top: 0px !important;
|
||||
padding-bottom: 3px !important;
|
||||
|
||||
/* styled spacer */
|
||||
toolbarspring{
|
||||
background-color: color-mix(in srgb, var(--bt-col) 15%, var(--debug-col-2)) !important;
|
||||
border-radius: var(--rounding) !important;
|
||||
max-height: 1px !important;
|
||||
padding: 1px !important;
|
||||
scale: 0.75;
|
||||
}
|
||||
|
||||
/* limit toolbar items width */
|
||||
& > toolbarbutton {margin-left: 1px !important;}
|
||||
& > *:not(#tabbrowser-tabs) {max-width: var(--toolbar-button-wdt) !important;}
|
||||
|
||||
}
|
||||
|
||||
/* styles for extensions button */
|
||||
#unified-extensions-button {margin-top: var(--toolbar-item-hgt) !important;}
|
||||
|
||||
/* show toolbar on hover or focus (if not in clean mode) */
|
||||
&:not([titlepreface*=""]):has(
|
||||
#TabsToolbar:hover
|
||||
.titlebar-buttonbox-container:not(:hover),
|
||||
#TabsToolbar-customization-target *:not(#firefox-view-button, tab)[open],
|
||||
#TabsToolbar-customization-target #searchbar:focus-within,
|
||||
#PanelUI-menu-button[open],
|
||||
#PanelUI-menu-button:hover,
|
||||
#unified-extensions-button[open],
|
||||
#unified-extensions-button:hover
|
||||
) {
|
||||
#TabsToolbar,
|
||||
#PanelUI-menu-button,
|
||||
#unified-extensions-button
|
||||
{
|
||||
right: calc(var(--right-margin) + var(--margin));
|
||||
|
||||
& > *:not(.titlebar-buttonbox-container), #TabsToolbar-customization-target > * {opacity: 1 !important;}
|
||||
}
|
||||
#TabsToolbar{
|
||||
width: calc(var(--toolbar-button-wdt) + 4px) !important;
|
||||
padding-right: 0px !important;
|
||||
|
||||
background-color: var(--tb-col) !important;
|
||||
|
||||
border: var(--outline) !important;
|
||||
outline: var(--shadow) !important;
|
||||
|
||||
&::after{opacity: 0}
|
||||
}
|
||||
|
||||
#PanelUI-menu-button,
|
||||
#unified-extensions-button{
|
||||
margin-right: 2px !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* downloads progress indicator bar */
|
||||
&:has(#downloads-button[progress="true"]){
|
||||
#TabsToolbar::after{
|
||||
background: linear-gradient(
|
||||
to top,
|
||||
var(--shy-color) 0 var(--shy-download-pcent),
|
||||
var(--bt-col) var(--shy-download-pcent) 100%
|
||||
) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- CUSTOMIZING PAGE --------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
#main-window[customizing]{
|
||||
#TabsToolbar{
|
||||
min-width: 0px !important;
|
||||
top: 50px !important;
|
||||
bottom: 10px !important;
|
||||
right: 10px !important;
|
||||
|
||||
border-radius: var(--big-rounding) !important;
|
||||
|
||||
background-color: var(--bg-col) !important;
|
||||
}
|
||||
|
||||
#PanelUI-menu-button{
|
||||
top: 50px !important;
|
||||
right: 10px !important;
|
||||
}
|
||||
|
||||
#TabsToolbar-customization-target toolbarpaletteitem {width: 46px !important;}
|
||||
#wrapper-search-container {max-height: var(--searchbar-hgt) !important;}
|
||||
#wrapper-unified-extensions-button {opacity: 1 !important;}
|
||||
|
||||
#unified-extensions-button{
|
||||
top: 90px !important;
|
||||
right: 10px !important;
|
||||
.toolbarbutton-icon {opacity: 0.5 !important;}
|
||||
}
|
||||
}
|
251
.config/firefox/chrome.bak/ShyFox/shy-variables.css
Normal file
|
@ -0,0 +1,251 @@
|
|||
/*== ShyFox Variables ===============================================================================================================================
|
||||
|
||||
This is where most of variables are located
|
||||
|
||||
|
||||
--- SETTINGS ----------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Values of these variables can be changed safely and most likely nothing will break.
|
||||
|
||||
*/
|
||||
|
||||
:root, #screenshots-component *{
|
||||
/* accent color */
|
||||
--shy-accent-color: #3584E4;
|
||||
|
||||
/* window border thickness and size of many margins */
|
||||
--margin: 0.8rem;
|
||||
|
||||
/* rounded corners radius of most elements */
|
||||
--rounding: 11.5px;
|
||||
--big-rounding: 15px;
|
||||
--bigger-rounding: 20px;
|
||||
--giant-rounding: 30px;
|
||||
|
||||
/* animations time */
|
||||
--trans-dur: 0.25s;
|
||||
|
||||
/* width of some elements. 1vw is one hundredth of the screen width */
|
||||
--sdbr-wdt: 300px;
|
||||
|
||||
--navbar-wdt: 60vw;
|
||||
|
||||
--findbar-wdt: 70vw;
|
||||
|
||||
/* intensity of blur (new tab) */
|
||||
--blur-radius: 10px;
|
||||
|
||||
/* brightness of inactive window elements */
|
||||
--inactive-opct: 0.7;
|
||||
|
||||
/* transparency of indicator bars showing the position of hidden panels */
|
||||
--hide-bar-opct: 0.2;
|
||||
&:-moz-window-inactive{--hide-bar-opct: 0.1;}
|
||||
|
||||
/* how much shorter these bars than panels */
|
||||
--hide-bar-wdt-pad: 10px;
|
||||
|
||||
/* size of the panel hitbox outside the window border */
|
||||
--panel-hide-ldg: 1px; /* f11 fullscreen */
|
||||
&:not([inFullscreen="true"]){
|
||||
--panel-hide-ldg: 0px; /* maximized window */
|
||||
&[sizemode="normal"]:not([titlepreface*=""]){
|
||||
--panel-hide-ldg: 9px; /* floating window */
|
||||
}
|
||||
}
|
||||
|
||||
/* colors */
|
||||
--shadow-col: #00000020; /* color of the translucent outline that imitates a shadow */
|
||||
--private-col: #6e00bc80; /* private mode outline color */
|
||||
--debug-col: transparent; /* rgba(0, 0, 255, 0.2); color of hidden panels hover hitboxes */
|
||||
--debug-col-2: transparent; /* rgba(0, 255, 0, 0.2); color of window dragging hitboxes */
|
||||
}
|
||||
|
||||
|
||||
/* accent color toggle */
|
||||
:root{--shy-color: var(--shy-accent-color)}
|
||||
|
||||
@media (-moz-bool-pref: "shyfox.fill.accent.with.icons.fill.color"){
|
||||
:root{--shy-color: var(--toolbar-color, var(--shy-accent-color)) !important;}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
--- VARIABLES ----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Reserved values and all sorts of dynamic variables. You should not touch them.
|
||||
|
||||
*/
|
||||
|
||||
:root{
|
||||
|
||||
--ActiveCaption: ActiveCaption;
|
||||
|
||||
/* pick browser colors */ /* used for: */
|
||||
--bg-col: var(--lwt-accent-color, var(--ActiveCaption, tomato)); /* darker background */ /* tomato is the fallback color */
|
||||
--tb-col: var(--toolbar-bgcolor, tomato); /* lighter background */ /* meaning something went wrong */
|
||||
--bt-col: var(--toolbarbutton-icon-fill); /* text or icons */
|
||||
--pp-col: var(--arrowpanel-background); /* popup color */
|
||||
|
||||
/* dynamic opacity */
|
||||
--dyn-opct: 1;
|
||||
&:-moz-window-inactive{--dyn-opct: var(--inactive-opct);}
|
||||
|
||||
/* shared shortcuts for commonly used parameters */
|
||||
--outline: 1px solid var(--arrowpanel-background); /* outline around almost anything */
|
||||
--shadow: 2px solid var(--shadow-col); /* translucent outline that imitates a shadow */
|
||||
--transition: all var(--trans-dur) ease-out; /* animation for smooth transitions */
|
||||
|
||||
/* constant variables */
|
||||
--toolbar-item-hgt: 40px; /* height of all panels elements: buttons, urlbar, etc. */
|
||||
--toolbar-button-wdt: 45px; /* width of all panels buttons */
|
||||
--hide-bar-padding: 3px; /* how much indicator bars showing the position of hidden panels is thinner than --margin */
|
||||
--screenshot-tool-hgt: 145px; /* height of `ctrl + shift + s` tool buttons */
|
||||
|
||||
/* hiding the window border in fullscreen mode and assigning --margin to it in windowed mode */
|
||||
--left-margin: 0px;
|
||||
--right-margin: 0px;
|
||||
--top-margin: 0px;
|
||||
--bottom-margin: 0px;
|
||||
|
||||
&:not(:is([inFullscreen="true"], [inDOMFullscreen="true"], [titlepreface*=""]:is([sizemode="maximized"], [gtktiledwindow="true"]))){
|
||||
--left-margin: var(--margin);
|
||||
--right-margin: var(--margin);
|
||||
--top-margin: var(--margin);
|
||||
--bottom-margin: var(--margin);
|
||||
}
|
||||
|
||||
/* hide indication bars in fullscreen or clean mode */
|
||||
&:is([inFullscreen="true"], [inDOMFullscreen="true"], [titlepreface*=""]){
|
||||
--hide-bar-opct: 0 !important;
|
||||
}
|
||||
|
||||
/* override built-in roundings with custom */
|
||||
--arrowpanel-border-radius: var(--big-rounding) !important;
|
||||
--panel-border-radius: var(--big-rounding) !important;
|
||||
|
||||
--arrowpanel-menuitem-border-radius: var(--rounding) !important;
|
||||
--toolbarbutton-border-radius: var(--rounding) !important;
|
||||
--button-border-radius: var(--rounding) !important;
|
||||
--border-radius-small: var(--rounding) !important;
|
||||
--tab-border-radius: var(--rounding) !important;
|
||||
|
||||
/* override one padding in navbar to match style */
|
||||
--toolbar-start-end-padding: calc(var(--margin) / 2) !important;
|
||||
|
||||
/* fix bookmark toolbar */
|
||||
--bookmarks-toolbar-overlapping-browser-height: 0px !important;
|
||||
}
|
||||
|
||||
/* current tab loading progress */
|
||||
#main-window{
|
||||
&:has(.tabbrowser-tab[selected][busy] ){--shy-tab-load-pcent: 20%;}
|
||||
&:has(.tabbrowser-tab[selected][busy][pendingicon] ){--shy-tab-load-pcent: 50%;}
|
||||
&:has(.tabbrowser-tab[selected][busy][pendingicon][progress] ){--shy-tab-load-pcent: 85%;}
|
||||
&:has(.tabbrowser-tab[selected][busy][progress] ){--shy-tab-load-pcent: 95%;}
|
||||
}
|
||||
|
||||
/* globalise download percentages (yes, i am a clown) */
|
||||
#main-window{
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 0%;"]){--shy-download-pcent: 0%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 1%;"]){--shy-download-pcent: 1%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 2%;"]){--shy-download-pcent: 2%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 3%;"]){--shy-download-pcent: 3%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 4%;"]){--shy-download-pcent: 4%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 5%;"]){--shy-download-pcent: 5%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 6%;"]){--shy-download-pcent: 6%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 7%;"]){--shy-download-pcent: 7%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 8%;"]){--shy-download-pcent: 8%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 9%;"]){--shy-download-pcent: 9%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 10%;"]){--shy-download-pcent: 10%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 11%;"]){--shy-download-pcent: 11%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 12%;"]){--shy-download-pcent: 12%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 13%;"]){--shy-download-pcent: 13%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 14%;"]){--shy-download-pcent: 14%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 15%;"]){--shy-download-pcent: 15%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 16%;"]){--shy-download-pcent: 16%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 17%;"]){--shy-download-pcent: 17%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 18%;"]){--shy-download-pcent: 18%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 19%;"]){--shy-download-pcent: 19%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 20%;"]){--shy-download-pcent: 20%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 21%;"]){--shy-download-pcent: 21%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 22%;"]){--shy-download-pcent: 22%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 23%;"]){--shy-download-pcent: 23%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 24%;"]){--shy-download-pcent: 24%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 25%;"]){--shy-download-pcent: 25%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 26%;"]){--shy-download-pcent: 26%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 27%;"]){--shy-download-pcent: 27%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 28%;"]){--shy-download-pcent: 28%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 29%;"]){--shy-download-pcent: 29%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 30%;"]){--shy-download-pcent: 30%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 31%;"]){--shy-download-pcent: 31%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 32%;"]){--shy-download-pcent: 32%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 33%;"]){--shy-download-pcent: 33%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 34%;"]){--shy-download-pcent: 34%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 35%;"]){--shy-download-pcent: 35%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 36%;"]){--shy-download-pcent: 36%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 37%;"]){--shy-download-pcent: 37%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 38%;"]){--shy-download-pcent: 38%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 39%;"]){--shy-download-pcent: 39%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 40%;"]){--shy-download-pcent: 40%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 41%;"]){--shy-download-pcent: 41%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 42%;"]){--shy-download-pcent: 42%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 43%;"]){--shy-download-pcent: 43%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 44%;"]){--shy-download-pcent: 44%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 45%;"]){--shy-download-pcent: 45%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 46%;"]){--shy-download-pcent: 46%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 47%;"]){--shy-download-pcent: 47%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 48%;"]){--shy-download-pcent: 48%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 49%;"]){--shy-download-pcent: 49%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 50%;"]){--shy-download-pcent: 50%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 51%;"]){--shy-download-pcent: 51%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 52%;"]){--shy-download-pcent: 52%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 53%;"]){--shy-download-pcent: 53%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 54%;"]){--shy-download-pcent: 54%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 55%;"]){--shy-download-pcent: 55%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 56%;"]){--shy-download-pcent: 56%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 57%;"]){--shy-download-pcent: 57%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 58%;"]){--shy-download-pcent: 58%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 59%;"]){--shy-download-pcent: 59%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 60%;"]){--shy-download-pcent: 60%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 61%;"]){--shy-download-pcent: 61%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 62%;"]){--shy-download-pcent: 62%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 63%;"]){--shy-download-pcent: 63%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 64%;"]){--shy-download-pcent: 64%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 65%;"]){--shy-download-pcent: 65%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 66%;"]){--shy-download-pcent: 66%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 67%;"]){--shy-download-pcent: 67%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 68%;"]){--shy-download-pcent: 68%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 69%;"]){--shy-download-pcent: 69%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 70%;"]){--shy-download-pcent: 70%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 71%;"]){--shy-download-pcent: 71%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 72%;"]){--shy-download-pcent: 72%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 73%;"]){--shy-download-pcent: 73%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 74%;"]){--shy-download-pcent: 74%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 75%;"]){--shy-download-pcent: 75%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 76%;"]){--shy-download-pcent: 76%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 77%;"]){--shy-download-pcent: 77%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 78%;"]){--shy-download-pcent: 78%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 79%;"]){--shy-download-pcent: 79%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 80%;"]){--shy-download-pcent: 80%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 81%;"]){--shy-download-pcent: 81%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 82%;"]){--shy-download-pcent: 82%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 83%;"]){--shy-download-pcent: 83%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 84%;"]){--shy-download-pcent: 84%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 85%;"]){--shy-download-pcent: 85%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 86%;"]){--shy-download-pcent: 86%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 87%;"]){--shy-download-pcent: 87%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 88%;"]){--shy-download-pcent: 88%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 89%;"]){--shy-download-pcent: 89%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 90%;"]){--shy-download-pcent: 90%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 91%;"]){--shy-download-pcent: 91%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 92%;"]){--shy-download-pcent: 92%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 93%;"]){--shy-download-pcent: 93%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 94%;"]){--shy-download-pcent: 94%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 95%;"]){--shy-download-pcent: 95%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 96%;"]){--shy-download-pcent: 96%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 97%;"]){--shy-download-pcent: 97%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 98%;"]){--shy-download-pcent: 98%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 99%;"]){--shy-download-pcent: 99%;}
|
||||
&:has(#downloads-indicator-progress-inner[style="--download-progress-pcent: 100%;"]){--shy-download-pcent: 100%;}
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
/* Modify to change window drag space width */
|
||||
:root[tabsintitlebar="true"] #nav-bar{ --window-drag-space-width: 24px }
|
||||
|
||||
.titlebar-buttonbox-container{
|
||||
position: fixed;
|
||||
top:0;
|
||||
right:0;
|
||||
height: 40px;
|
||||
}
|
||||
#toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }
|
||||
|
||||
:root[sizemode="maximized"] > #navigator-toolbox{ padding-top: 8px !important; }
|
||||
:root[sizemode="maximized"] .titlebar-buttonbox-container{ top: 8px }
|
||||
|
||||
:root[uidensity="compact"] .titlebar-buttonbox-container{ height: 32px }
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }
|
||||
#titlebar{
|
||||
-moz-box-ordinal-group: 2;
|
||||
-moz-appearance: none !important;
|
||||
}
|
||||
:root[tabsintitlebar="true"] #nav-bar{
|
||||
padding-right: calc(138px + var(--window-drag-space-width,0px));
|
||||
padding-left: var(--window-drag-space-width,0px)
|
||||
}
|
||||
.titlebar-placeholder,
|
||||
#TabsToolbar .titlebar-spacer{ display: none; }
|
|
@ -1,119 +0,0 @@
|
|||
|
||||
/* material firefox imports */
|
||||
/* @import "../global/variables.css"; */
|
||||
/* @import "../global/global.css"; */
|
||||
/* @import "../icons/icons.css"; */
|
||||
/* @import "../tabbar/tabbar.css"; */
|
||||
/* @import "../navbar/navbar.css"; */
|
||||
/* @import "../personalbar/personalbar.css"; */
|
||||
/* @import "../popup/popup.css"; */
|
||||
/* @import "../urlbar/urlbar.css"; */
|
||||
/* @import "../findbar/findbar.css"; */
|
||||
|
||||
/* Show sidebar only when the cursor is over it */
|
||||
/* The border controlling sidebar width will be removed so you'll need to modify these values to change width */
|
||||
|
||||
|
||||
/* #sidebar-box{ */
|
||||
/* --uc-sidebar-width: 30px; */
|
||||
/* --uc-sidebar-hover-width: 210px; */
|
||||
/* position: relative; */
|
||||
/* min-width: var(--uc-sidebar-width) !important; */
|
||||
/* width: var(--uc-sidebar-width) !important; */
|
||||
/* max-width: var(--uc-sidebar-width) !important; */
|
||||
/* } */
|
||||
|
||||
/* #sidebar-splitter{ display: none } */
|
||||
|
||||
/* #sidebar-header{ overflow: hidden; color: var(--chrome-color, inherit) !important} */
|
||||
|
||||
/* #sidebar{ */
|
||||
/* transition: min-width 115ms linear !important; */
|
||||
/* min-width: var(--uc-sidebar-width) !important; */
|
||||
/* will-change: min-width; */
|
||||
/* } */
|
||||
|
||||
/* #sidebar-box:hover > #sidebar{ min-width: var(--uc-sidebar-hover-width) !important; } */
|
||||
|
||||
/* .sidebar-panel{ */
|
||||
/* background-color: transparent !important; */
|
||||
/* color: var(--newtab-text-primary-color) !important; */
|
||||
/* } */
|
||||
|
||||
/* .sidebar-panel #search-box{ */
|
||||
/* -moz-appearance: none !important; */
|
||||
/* background-color: rgba(249,249,250,0.1) !important; */
|
||||
/* color: inherit !important; */
|
||||
/* } */
|
||||
|
||||
/* /\* Add sidebar divider and give it background *\/ */
|
||||
|
||||
/* #sidebar, */
|
||||
/* #sidebar-header{ */
|
||||
/* background-color: var(--toolbar-non-lwt-bgcolor) !important; */
|
||||
/* border-right: 1px solid rgb(80,80,80); */
|
||||
/* } */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Made for the treestyletab stuff */
|
||||
|
||||
:root {
|
||||
--initial-width : 50px; /* initial width of the sidebar */
|
||||
--sidebar-width : 250px; /* expanded width of the sidebar */
|
||||
--toolbar-height : 0;
|
||||
--menubar-height : -40px;
|
||||
--toolmenubar-height: -40px; /* sum of previous two */
|
||||
--shadow-color : #28282F; /* shadow color. set to #00000000 for no shadow. same as folder color from hntp and tab-hover color from tst*/
|
||||
}
|
||||
|
||||
/*
|
||||
There's two main sidebar components.
|
||||
1. #sidebar-box (outer)
|
||||
2. #sidebar (inner)
|
||||
*/
|
||||
/* lock outer to height by doing the inverse margin of the toolbar element */
|
||||
/* set outer width = initial width */
|
||||
#sidebar-box {
|
||||
z-index : 1000 !important;
|
||||
position : relative!important;
|
||||
//margin-top : var(--menubar-height) !important;
|
||||
padding-top : calc(-1*var(--menubar-height));
|
||||
border-radius: 0 5px 0px 0;
|
||||
min-width : var(--initial-width) !important;
|
||||
max-width : var(--initial-width) !important;
|
||||
}
|
||||
|
||||
/* inner width = expanded width & move inner to only show initial-width long section */
|
||||
#sidebar-box #sidebar {
|
||||
min-width : var(--sidebar-width) !important;
|
||||
max-width : var(--sidebar-width) !important;
|
||||
transform : translateX(calc(var(--initial-width) - var(--sidebar-width))) !important;
|
||||
border-radius: 0 3px 0px 0;
|
||||
transition : all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
/* move inner to show entire sidebar */
|
||||
#sidebar-box #sidebar:hover {
|
||||
transform : translateX(0) !important;
|
||||
box-shadow: 2px 0 33px var(--shadow-color);
|
||||
}
|
||||
|
||||
#main-window[title^="Firefox"] #sidebar-box {
|
||||
margin-top: var(--toolmenubar-height) !important;
|
||||
}
|
||||
|
||||
/* hide sidebar header for tree style tabs sidebar */
|
||||
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* Hide splitter, when using Tree Style Tab. */
|
||||
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] + #sidebar-splitter {
|
||||
display: none !important;
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
/* Set blank page background-color */
|
||||
/* Uses color from theme_colors if available */
|
||||
|
||||
/* #tabbrowser-tabpanels{ */
|
||||
/* background-color: var(--uc-light-bkgnd-color,rgb(46,54,69)) !important; */
|
||||
/* } */
|
|
@ -1,11 +0,0 @@
|
|||
:root[title$=" - Mozilla Firefox"] #PersonalToolbar,
|
||||
:root[title$=" - Mozilla Firefox (Private Browsing)"] #PersonalToolbar,
|
||||
:root[title$=" - Firefox Nightly"] #PersonalToolbar,
|
||||
:root[title$=" - Firefox Nightly (Private Browsing)"] #PersonalToolbar{ visibility: collapse; }
|
||||
/* about:home or something can have a "New Tab" prefix */
|
||||
:root[title="New Tab - Mozilla Firefox"] #PersonalToolbar,
|
||||
:root[title="New Tab - Mozilla Firefox (Private Browsing)"] #PersonalToolbar,
|
||||
:root[title="New Tab - Firefox Nightly"] #PersonalToolbar,
|
||||
:root[title="New Tab - Firefox Nightly (Private Browsing)"] #PersonalToolbar{ visibility: visible; }
|
||||
/* Short delay to prevent being shortly visible during tab restore */
|
||||
#PersonalToolbar{ transition: visibility 0ms linear 200ms !important}
|
|
@ -1,25 +0,0 @@
|
|||
/* Effect */
|
||||
|
||||
:root:not([uidensity="compact"]) #back-button{ --uc-back-extra-padding: 2px }
|
||||
|
||||
.toolbarbutton-icon,
|
||||
.menuitem-iconic .menu-iconic-icon{
|
||||
transition: transform 83ms linear !important;
|
||||
}
|
||||
|
||||
toolbar .toolbarbutton-1 > .toolbarbutton-icon
|
||||
.urlbar-icon{
|
||||
transition: padding 83ms linear !important;
|
||||
}
|
||||
|
||||
toolbarbutton:not(.toolbarbutton-1):active > .toolbarbutton-icon,
|
||||
toolbar .toolbarbutton-1:not([disabled]):active > .toolbarbutton-badge-stack > .toolbarbutton-icon,
|
||||
.menuitem-iconic:active .menu-iconic-icon{
|
||||
transform: scale(0.6) !important;
|
||||
}
|
||||
|
||||
toolbar .toolbarbutton-1:not([disabled]):active > .toolbarbutton-icon{
|
||||
padding: calc(var(--toolbarbutton-inner-padding) + var(--uc-back-extra-padding,0px) + 3px) !important;
|
||||
}
|
||||
|
||||
#page-action-buttons .urlbar-icon:active{ padding: calc(var(--urlbar-icon-padding) + 3px) !important; }
|
|
@ -1,35 +0,0 @@
|
|||
/* Effect */
|
||||
|
||||
:root:not([uidensity="compact"]) #back-button{ --uc-back-extra-padding: 2px }
|
||||
|
||||
.toolbarbutton-icon,
|
||||
.menuitem-iconic .menu-iconic-icon{
|
||||
transition: transform 83ms linear !important;
|
||||
}
|
||||
|
||||
toolbar .toolbarbutton-1 > .toolbarbutton-icon,
|
||||
.urlbar-icon{
|
||||
transition: padding 83ms linear !important;
|
||||
}
|
||||
|
||||
toolbarbutton:not(.toolbarbutton-1) > .toolbarbutton-icon,
|
||||
toolbar .toolbarbutton-1 > .toolbarbutton-badge-stack > .toolbarbutton-icon,
|
||||
.menuitem-iconic .menu-iconic-icon{
|
||||
transform: scale(0.8) !important;
|
||||
}
|
||||
|
||||
toolbar .toolbarbutton-1 > .toolbarbutton-icon{
|
||||
padding: calc(var(--toolbarbutton-inner-padding) + var(--uc-back-extra-padding,0px) + 2px) !important;
|
||||
}
|
||||
|
||||
#page-action-buttons .urlbar-icon:not(:hover){ padding: calc(var(--urlbar-icon-padding) + 2px) !important; }
|
||||
|
||||
toolbarbutton:not(.toolbarbutton-1):not([disabled]):hover > .toolbarbutton-icon,
|
||||
toolbar .toolbarbutton-1:not([disabled]):hover > .toolbarbutton-badge-stack > .toolbarbutton-icon,
|
||||
.menuitem-iconic:not([disabled]):hover .menu-iconic-icon{
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
toolbar .toolbarbutton-1:not([disabled]):hover > .toolbarbutton-icon{
|
||||
padding: calc(var(--toolbarbutton-inner-padding) + var(--uc-back-extra-padding,0px)) !important;
|
||||
}
|
|
@ -1,40 +0,0 @@
|
|||
/* Show tab close button when cursor is over the tab icon */
|
||||
|
||||
.tab-close-button{
|
||||
-moz-box-ordinal-group: 0;
|
||||
display: -moz-box !important;
|
||||
position: relative;
|
||||
margin-right: -18px !important;
|
||||
z-index: -1;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.tab-close-button:hover{ background-color: var(--lwt-accent-color); }
|
||||
|
||||
.tabbrowser-tab[selected] .tab-close-button:hover{ background-color: var(--lwt-selected-tab-background-color, var(--toolbar-bgcolor)); }
|
||||
|
||||
/**** ONLY USE ONE OF THE FOLLOWING ****/
|
||||
/**** These select the behavior of a scenario where the page has no favicon ****/
|
||||
|
||||
/*** Option 1 - no favicon - no close-button ***/
|
||||
|
||||
/*
|
||||
.tab-icon-image:hover ~ .tab-close-button, .tab-close-button:hover{ visibility: visible; z-index: 1 }
|
||||
*/
|
||||
|
||||
/*** Option 2 - No icon - always show close-button ***/
|
||||
|
||||
/*
|
||||
.tab-icon-image:hover ~ .tab-close-button,
|
||||
.tab-close-button:hover,
|
||||
.tab-icon-image:not([src]) ~ .tab-close-button{ visibility: visible; z-index: 1 }
|
||||
.tab-icon-image:not([src]) ~ .tab-close-button{ margin-right:0px !important; }
|
||||
*/
|
||||
|
||||
/*** Option 3 - No icon - show close-button when cursor is over the tab text ***/
|
||||
|
||||
.tab-icon-image:hover ~ .tab-close-button,
|
||||
.tab-close-button:hover,
|
||||
.tab-icon-image:not([src]) ~ .tab-label-container:hover ~ .tab-close-button{ visibility: visible; z-index: 1 }
|
||||
.tab-icon-image:not([src]) ~ .tab-label-container:hover ~ .tab-close-button,
|
||||
.tab-icon-image:not([src]) ~ .tab-close-button:hover {margin-right: 0px !important; }
|
|
@ -1,45 +0,0 @@
|
|||
findbar{
|
||||
-moz-box-ordinal-group: 0;
|
||||
margin-bottom: calc(0px - 2 * var(--toolbarbutton-inner-padding) - 25px);
|
||||
position: relative;
|
||||
border-top: none !important;
|
||||
transition: transform 82ms linear, opacity 82ms linear 32ms !important;
|
||||
background: none !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.findbar-container > .findbar-find-fast{
|
||||
padding: var(--toolbarbutton-inner-padding) 1px;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
findbar[hidden]{ transform: translateY(-30px);}
|
||||
|
||||
findbar > .findbar-container,
|
||||
findbar > .close-icon{
|
||||
border: 1px solid var(--chrome-content-separator-color);
|
||||
border-width: 0 0 1px 0px;
|
||||
background: var(--uc-light-bkgnd-color,var(--toolbar-bgcolor)) !important;
|
||||
pointer-events: auto;
|
||||
}
|
||||
findbar > .findbar-container{
|
||||
-moz-box-direction: reverse;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
||||
findbar > .findbar-container > hbox{ margin: 0 5px }
|
||||
|
||||
findbar::before{
|
||||
content:"";
|
||||
display: -moz-box;
|
||||
-moz-box-flex: 100;
|
||||
}
|
||||
|
||||
/*
|
||||
Move findbar so it isn't over the scrollbar
|
||||
Delete if you want findbar to begin from right window edge
|
||||
*/
|
||||
findbar{
|
||||
margin-right: 16px;
|
||||
border-right: 1px solid var(--chrome-content-separator-color);
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
/* Hide tabs toolbar Fx65+ */
|
||||
:root{--uc-toolbar-height: 32px}
|
||||
:root:not([uidensity="compact"]){--uc-toolbar-height: 38px}
|
||||
|
||||
#TabsToolbar{visibility: collapse}
|
||||
#nav-bar,
|
||||
#PersonalToolbar{
|
||||
background: transparent !important;
|
||||
}
|
||||
#navigator-toolbox{ background: var(--toolbar-bgcolor) var(--toolbar-bgimage) }
|
||||
|
||||
#nav-bar{margin: calc(0px - var(--uc-toolbar-height)) 138px 0 0 }
|
||||
|
||||
#toolbar-menubar{
|
||||
min-height:unset !important;
|
||||
height:var(--uc-toolbar-height) !important;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#main-menubar{
|
||||
-moz-box-flex: 1;
|
||||
background: var(--toolbar-non-lwt-bgcolor);
|
||||
background-clip: padding-box;
|
||||
border-right: 30px solid transparent;
|
||||
border-image: linear-gradient(to left, transparent, var(--toolbar-non-lwt-bgcolor) 30px) 20 / 30px
|
||||
}
|
||||
|
||||
#toolbar-menubar:not([inactive]){ z-index: 2 }
|
||||
#toolbar-menubar[inactive] > #menubar-items { opacity: 0 }
|
|
@ -1,39 +0,0 @@
|
|||
/* Makes tabs toolbar items zero-height initially and sets enlarge them to fill up space equal to tab-min-height set on tabs */
|
||||
/* Firefox 65+ only */
|
||||
/* !!USER!! - REMOVE ALL BUTTONS you can from the tabs toolbar */
|
||||
|
||||
/* Configurable window drag space */
|
||||
:root[sizemode="normal"] #nav-bar{ --window-drag-space-width: 20px }
|
||||
|
||||
#titlebar{ -moz-appearance: none !important; }
|
||||
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox{ min-height: 0 !important; }
|
||||
:root:not([customizing]) #tabbrowser-tabs .tabs-newtab-button,
|
||||
:root:not([customizing]) #TabsToolbar .titlebar-button{
|
||||
-moz-appearance: none !important;
|
||||
height: 0px;
|
||||
padding-top: 0px !important;
|
||||
padding-bottom: 0px !important;
|
||||
-moz-box-align: stretch;
|
||||
margin: 0 !important;
|
||||
}
|
||||
#tabbrowser-tabs .tabbrowser-tab{ height: var(--tab-min-height) }
|
||||
#tabbrowser-tabs .tabbrowser-tab[first-visible-tab="true"][last-visible-tab="true"]{
|
||||
visibility: collapse !important;
|
||||
}
|
||||
|
||||
/* Button re-styling */
|
||||
#tabbrowser-tabs .tabs-newtab-button:hover{ background-color: var(--toolbarbutton-hover-background) }
|
||||
#tabbrowser-tabs .tabs-newtab-button > .toolbarbutton-icon{
|
||||
padding: 0 !important;
|
||||
transform: scale(0.6);
|
||||
background-color: transparent !important;
|
||||
}
|
||||
/* Extra top padding in maximized window */
|
||||
:root[sizemode="maximized"] > #navigator-toolbox{ padding-top:7px !important; }
|
||||
/* Fix window controls not being clickable */
|
||||
#toolbar-menubar:hover{
|
||||
min-height: calc(var(--tab-min-height) + var(--space-above-tabbar) - 1px) !important;
|
||||
height: calc(var(--tab-min-height) + var(--space-above-tabbar) - 1px) !important;
|
||||
-moz-appearance: initial !important;
|
||||
}
|
||||
#nav-bar{ padding: 0 var(--window-drag-space-width,0px) }
|
|
@ -1,48 +0,0 @@
|
|||
/* Makes tabs toolbar items zero-height initially and sets enlarge them to fill up space equal to tab-min-height set on tabs */
|
||||
/* Firefox 65+ only */
|
||||
/* !!USER!! - REMOVE ALL BUTTONS you can from the tabs toolbar */
|
||||
|
||||
/* Configurable window drag space */
|
||||
:root[sizemode="normal"] #nav-bar{ --window-drag-space-width: 20px }
|
||||
|
||||
#titlebar{ -moz-appearance: none !important; }
|
||||
/* We'll use window controls from menubar instead */
|
||||
#TabsToolbar > .titlebar-buttonbox-container { display: none }
|
||||
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox{ min-height: 0 !important; }
|
||||
|
||||
#TabsToolbar > .titlebar-spacer[type="post-tabs"]{ width: 178px !important; }
|
||||
#toolbar-menubar > spacer{ pointer-events: none }
|
||||
|
||||
:root:not([customizing]) #tabbrowser-tabs .tabs-newtab-button{
|
||||
-moz-appearance: none !important;
|
||||
height: 0px;
|
||||
padding-top: 0px !important;
|
||||
padding-bottom: 0px !important;
|
||||
-moz-box-align: stretch;
|
||||
margin: 0 !important;
|
||||
}
|
||||
#tabbrowser-tabs .tabbrowser-tab{ height: var(--tab-min-height) }
|
||||
#tabbrowser-tabs .tabbrowser-tab[first-visible-tab="true"][last-visible-tab="true"]{
|
||||
visibility: collapse;
|
||||
}
|
||||
|
||||
/* Button re-styling */
|
||||
#tabbrowser-tabs .tabs-newtab-button:hover{ background-color: var(--toolbarbutton-hover-background) }
|
||||
#tabbrowser-tabs .tabs-newtab-button > .toolbarbutton-icon{
|
||||
padding: 0 !important;
|
||||
transform: scale(0.6);
|
||||
background-color: transparent !important;
|
||||
}
|
||||
/* Extra top padding in maximized window */
|
||||
:root[sizemode="maximized"] > #navigator-toolbox{ padding-top:7px !important; }
|
||||
|
||||
/* Window controls in nav-bar */
|
||||
:root:not([customizing]) #toolbar-menubar[inactive]{
|
||||
height: initial !important;
|
||||
min-height: initial !important;
|
||||
margin-bottom: -28px !important;
|
||||
}
|
||||
|
||||
:root:not([customizing]) #toolbar-menubar[autohide][inactive] > #menubar-items{ pointer-events: none; opacity: 0 }
|
||||
|
||||
#nav-bar{ padding-right: calc(3 * 46px + var(--window-drag-space-width,0px)); padding-left: var(--window-drag-space-width,0px)}
|
|
@ -1,10 +0,0 @@
|
|||
#main-window[sizemode="normal"]{ border-top: none !important }
|
||||
#navigator-toolbox::after{ content: none !important }
|
||||
|
||||
/* OPTIONAL - uncomment to remove still remaining space atop of tabs */
|
||||
/* This just increases the height of tabs by few pixels, not decrease the toolbar height */
|
||||
|
||||
/* Fx pre-65 */
|
||||
/* #navigator-toolbox > #TabsToolbar{margin-top: -2px;} */
|
||||
/* Fx65+ */
|
||||
/* #TabsToolbar > .toolbar-items > spacer{ display: none; } */
|
|
@ -1,7 +0,0 @@
|
|||
#toolbar-menubar:not([inactive]) ~ #TabsToolbar{
|
||||
margin-left:300px !important;
|
||||
margin-top: -26px !important;
|
||||
}
|
||||
:root[sizemode="maximized"] #toolbar-menubar:not([inactive]) ~ #TabsToolbar{
|
||||
margin-top: -28px !important;
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
/* Use with navbar_tabs_oneliner.css */
|
||||
|
||||
#toolbar-menubar:not([inactive]) ~ #TabsToolbar{
|
||||
margin-left:calc(var(--uc-navigationbar-width) + 300px ) !important;
|
||||
margin-top: calc(0px - var(--uc-toolbar-height)) !important;
|
||||
padding-left: 0px !important;
|
||||
}
|
||||
#toolbar-menubar:not([inactive]){
|
||||
margin-left: var(--uc-navigationbar-width);
|
||||
height: var(--uc-toolbar-height);
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
:root{
|
||||
--lwt-toolbar-field-background-color: transparent !important;
|
||||
--lwt-toolbar-field-border-color: transparent !important;
|
||||
}
|
||||
|
||||
#urlbar,
|
||||
.searchbar-textbox{
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
#urlbar > *,
|
||||
.searchbar-textbox > *{
|
||||
opacity: 0;
|
||||
transition: opacity 150ms linear
|
||||
}
|
||||
|
||||
#urlbar > .urlbar-input-box,
|
||||
.searchbar-textbox > moz-input-box{ opacity: 0.6 }
|
||||
|
||||
#urlbar:hover > *,
|
||||
#urlbar:focus-within > *,
|
||||
.searchbar-textbox:hover > *,
|
||||
.searchbar-textbox:focus-within > *{ opacity: 1 }
|
|
@ -1,28 +0,0 @@
|
|||
/* Create a circular placeholder for toolbarbutton and downscale to hide them */
|
||||
|
||||
/* Create a placeholder for buttons */
|
||||
toolbar .toolbarbutton-1:not([open]),
|
||||
.titlebar-button{
|
||||
background-image: radial-gradient(circle at center, var(--lwt-toolbarbutton-icon-fill) 0,var(--lwt-toolbarbutton-icon-fill) 10%,transparent 15% );
|
||||
}
|
||||
/* Hide placeholder on hover */
|
||||
toolbar:hover .toolbarbutton-1,.titlebar-buttonbox:hover > .titlebar-button{ background-image: none }
|
||||
|
||||
toolbar .toolbarbutton-1 > *,
|
||||
.titlebar-button > *{
|
||||
transform: scale(0);
|
||||
transition: transform 82ms linear !important;
|
||||
}
|
||||
toolbar:hover .toolbarbutton-1 > *,
|
||||
.toolbarbutton-1[open] > *,
|
||||
.titlebar-buttonbox:hover > .titlebar-button > *{
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
/* Urlbar icons, this way they show colors is applicable */
|
||||
.urlbar-icon{ transition: transform 82ms linear !important; }
|
||||
#urlbar:not(:hover) .urlbar-icon{ transform: scale(0.3) }
|
||||
|
||||
/* The menu button has some margin on non-compact density which creates annnoying transitions */
|
||||
/* Lets remove that as well as border since this is minimal style anyway */
|
||||
#PanelUI-button{ border-left: 0px !important; margin-left: 0px !important; }
|
|
@ -1,2 +0,0 @@
|
|||
/* Makes black favicons more visible on dark background, contrast will be lowered though */
|
||||
.tab-icon-image{ filter: invert(40%) contrast(250%) saturate(250%) !important; }
|
|
@ -1,27 +0,0 @@
|
|||
/* Makes tabs to appear on multiple lines */
|
||||
/* Tab reordering will not work */
|
||||
|
||||
#tabbrowser-tabs,
|
||||
#tabbrowser-tabs > .tabbrowser-arrowscrollbox{
|
||||
min-height: unset !important;
|
||||
}
|
||||
#tabbrowser-tabs .scrollbox-innerbox{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
#tabbrowser-tabs .arrowscrollbox-scrollbox {
|
||||
overflow: -moz-hidden-unscrollable;
|
||||
display: block;
|
||||
}
|
||||
.tabbrowser-tab{ max-height: 32px }
|
||||
|
||||
.tabbrowser-tab[fadein]{
|
||||
min-width: 100px !important;
|
||||
flex-grow: 1;
|
||||
/*
|
||||
Uncomment to enable full-width tabs, also makes tab dragging a tiny bit more sensible
|
||||
Don't set to none or you'll see errors in console when closing tabs
|
||||
*/
|
||||
/*max-width: 100vw !important;*/
|
||||
}
|
||||
.tabbrowser-tab > stack{ width: 100%; height: 100% }
|
|
@ -1,53 +0,0 @@
|
|||
/* Variables */
|
||||
:root {
|
||||
--initial-width : 70px; /* initial width of the sidebar */
|
||||
--sidebar-width : 250px; /* expanded width of the sidebar */
|
||||
--toolbar-height : 0;
|
||||
--menubar-height : -40px;
|
||||
--toolmenubar-height: -40px; /* sum of previous two */
|
||||
--shadow-color : #28282F; /* shadow color. set to #00000000 for no shadow. same as folder color from hntp and tab-hover color from tst*/
|
||||
}
|
||||
|
||||
/* material firefox imports */
|
||||
@import "../global/variables.css";
|
||||
@import "../global/global.css";
|
||||
@import "../icons/icons.css";
|
||||
@import "../tabbar/tabbar.css";
|
||||
@import "../navbar/navbar.css";
|
||||
@import "../personalbar/personalbar.css";
|
||||
@import "../popup/popup.css";
|
||||
@import "../urlbar/urlbar.css";
|
||||
@import "../findbar/findbar.css";
|
||||
/* show bookmarks toolbar on new tab only */
|
||||
#main-window #PersonalToolbar {
|
||||
visibility : collapse !important;
|
||||
z-index : 1!important;
|
||||
position : relative!important;
|
||||
margin-left: var(--initial-width); /* shift toolbar to the right based on initial width */
|
||||
margin-top : var(--toolbar-height) !important;
|
||||
}
|
||||
|
||||
#main-window[title^="Firefox"] #PersonalToolbar {
|
||||
visibility: visible !important;
|
||||
margin-top: -1px !important;
|
||||
}
|
||||
|
||||
/* Hide the title bar */
|
||||
#titlebar{ visibility: collapse; }
|
||||
|
||||
/* hide normal horizontal tab bar */
|
||||
#TabsToolbar { visibility: collapse !important; }
|
||||
|
||||
#sidebar { border-right: none !important; }
|
||||
|
||||
toolbar#nav-bar {
|
||||
padding-top : 12px;
|
||||
padding-bottom: 7px;
|
||||
margin-left : var(--initial-width);
|
||||
padding-left : 7px;
|
||||
border : none !important;
|
||||
}
|
||||
|
||||
toolbar{
|
||||
border: none !important;
|
||||
}
|
|
@ -1,27 +0,0 @@
|
|||
/* Modify these to change relative widths or default height */
|
||||
#navigator-toolbox{ --uc-navigationbar-width: 40vw; --uc-toolbar-height: 40px; --window-drag-space-width: 0px}
|
||||
/* Override for other densities */
|
||||
:root[uidensity="compact"] > #navigator-toolbox{ --uc-toolbar-height: 32px; }
|
||||
:root[uidensity="touch"] > #navigator-toolbox{ --uc-toolbar-height: 40px; }
|
||||
|
||||
/* prevent urlbar overflow on narrow windows */
|
||||
/* Dependent on how many items are in navigation toolbar ADJUST AS NEEDED */
|
||||
@media screen and (max-width: 1200px){
|
||||
#urlbar-container{ min-width:unset !important }
|
||||
}
|
||||
|
||||
#TabsToolbar{ margin-left: var(--uc-navigationbar-width); }
|
||||
#tabbrowser-tabs{ --tab-min-height: var(--uc-toolbar-height) !important; }
|
||||
/* This isn't useful when tabs start in the middle of the window */
|
||||
.titlebar-placeholder[type="pre-tabs"],
|
||||
.titlebar-spacer[type="pre-tabs"]{ display: none }
|
||||
#nav-bar{
|
||||
margin-right:calc(100vw - var(--uc-navigationbar-width));
|
||||
margin-top: calc(0px - var(--uc-toolbar-height));
|
||||
padding-left: var(--window-drag-space-width);
|
||||
}
|
||||
/* 1px margin on touch density causes tabs to be too high */
|
||||
.tab-close-button{ margin-top: 0 }
|
||||
|
||||
/* Hide dropdown placeholder */
|
||||
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}
|
|
@ -1,41 +0,0 @@
|
|||
/* Modify these to change relative widths or default height */
|
||||
#navigator-toolbox{ --uc-navigationbar-width: 50vw; --uc-toolbar-height: 40px; --window-drag-space-width: 20px}
|
||||
/* reserved space for overflow + menu buttons */
|
||||
#navigator-toolbox{ --uc-buttons-width: calc(56px + 4 * var(--toolbarbutton-outer-padding) + var(--uc-menubutton-padding,6px))}
|
||||
#nav-bar:not([overflowing]) > #nav-bar-customization-target{ --uc-buttons-width: calc(28px + 2 * var(--toolbarbutton-outer-padding) + 6px) }
|
||||
/* Override for other densities */
|
||||
:root[uidensity="compact"] > #navigator-toolbox{ --uc-toolbar-height: 32px; --uc-menubutton-padding: 0px}
|
||||
:root[uidensity="touch"] > #navigator-toolbox{ --uc-toolbar-height: 40px; }
|
||||
|
||||
/* prevent urlbar overflow on narrow windows */
|
||||
/* Dependent on how many items are in navigation toolbar ADJUST AS NEEDED */
|
||||
@media screen and (max-width: 1000px){
|
||||
#urlbar-container{ min-width:unset !important }
|
||||
}
|
||||
|
||||
#TabsToolbar{ margin-left: var(--uc-navigationbar-width); }
|
||||
#tabbrowser-tabs{ --tab-min-height: var(--uc-toolbar-height) !important; }
|
||||
/* This isn't useful when tabs start in the middle of the window */
|
||||
.titlebar-placeholder[type="pre-tabs"],.titlebar-spacer[type="pre-tabs"]{ width:8px !important}
|
||||
#nav-bar{
|
||||
margin-right:calc(3 * 46px + var(--window-drag-space-width));
|
||||
margin-top: calc(0px - var(--uc-toolbar-height));
|
||||
padding-left: var(--window-drag-space-width);
|
||||
}
|
||||
#nav-bar-customization-target{ margin-right: calc(100vw - (var(--uc-navigationbar-width)) - var(--uc-buttons-width) - (3 * 46px) - var(--window-drag-space-width)) }
|
||||
#TabsToolbar > :not(hbox){ position: relative !important; z-index: 2 }
|
||||
.titlebar-placeholder[type="post-tabs"],
|
||||
.titlebar-spacer[type="post-tabs"]{
|
||||
width: calc(var(--uc-buttons-width) + var(--window-drag-space-width)) !important;
|
||||
}
|
||||
#PanelUI-button,#nav-bar-overflow-button{
|
||||
margin: 0px !important;
|
||||
border: 0px !important;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
/* 1px margin on touch density causes tabs to be too high */
|
||||
.tab-close-button{ margin-top: 0 }
|
||||
|
||||
/* Hide dropdown placeholder */
|
||||
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}
|
|
@ -1,196 +0,0 @@
|
|||
/* Modify these to change relative widths or default height */
|
||||
#navigator-toolbox{ --uc-navigationbar-width: -2vw; --uc-toolbar-height: 20px; --window-drag-space-width: 0px;}
|
||||
/* Override for other densities */
|
||||
:root[uidensity="compact"] > #navigator-toolbox{ --uc-toolbar-height: 22px;}
|
||||
:root[uidensity="touch"] > #navigator-toolbox{ --uc-toolbar-height: 40px; }
|
||||
|
||||
/* prevent urlbar overflow on narrow windows */
|
||||
/* Dependent on how many items are in navigation toolbar and tabs-/nav-bar ratio - ADJUST AS NEEDED */
|
||||
@media screen and (max-width: 1600px){
|
||||
#urlbar-container{ min-width:unset !important; padding-top: 0px !important;margin-top: 2px !important;max-height: 18px;}
|
||||
}
|
||||
|
||||
/* /\* Transparent tabs *\/ */
|
||||
/* .toolbar-items:-moz-lwtheme-darktext, */
|
||||
/* .toolbar-items:-moz-lwtheme-brighttext { */
|
||||
/* background-color: transparent !important; */
|
||||
/* -moz-appearance: var(--bf-moz-appearance) !important; */
|
||||
/* } */
|
||||
|
||||
/* Stretch Tabs */
|
||||
.tabbrowser-tab[fadein]:not([pinned]) {
|
||||
max-width: none !important;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
/* .tab-background:-moz-lwtheme-darktext, */
|
||||
/* .tab-background:-moz-lwtheme-brighttext { */
|
||||
/* background: transparent !important; */
|
||||
/* -moz-appearance: var(--bf-moz-appearance) !important; */
|
||||
/* } */
|
||||
|
||||
/* .tab-background[selected="true"] { */
|
||||
/* background: var(--bf-tab-selected-bg) !important; */
|
||||
/* } */
|
||||
|
||||
/* .tab-background:not[visuallyselected] { */
|
||||
/* background: var(--bf-tab-selected-bg) !important; */
|
||||
/* opacity: 0.5 !important; */
|
||||
/* } */
|
||||
|
||||
/* /\* Style all the lines before and after selected tab *\/ */
|
||||
/* .tabbrowser-tab::after, */
|
||||
/* .tabbrowser-tab::before { */
|
||||
/* border-width: 1px !important; */
|
||||
/* } */
|
||||
|
||||
/* .tabbrowser-arrowscrollbox { */
|
||||
/* margin-inline-start: 4px !important; */
|
||||
/* margin-inline-end: 0 !important; */
|
||||
/* } */
|
||||
|
||||
|
||||
/* Center all content */
|
||||
.tab-content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 0px;
|
||||
min-width: 100% !important;
|
||||
max-height: 23px;
|
||||
}
|
||||
|
||||
.tab-icon-image {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
/* A way to center the label and icon while
|
||||
the close button is positioned to the far right */
|
||||
.tab-content::before{
|
||||
content: "";
|
||||
display: -moz-box;
|
||||
-moz-box-flex: 1
|
||||
}
|
||||
|
||||
.tab-label {
|
||||
margin-top: 5px !important;
|
||||
}
|
||||
|
||||
/* Tab close button */
|
||||
.tab-close-button {
|
||||
opacity: 1 !important;
|
||||
min-width: 30px;
|
||||
margin-top: 4px;
|
||||
display: -moz-box;
|
||||
-moz-box-flex: 1;
|
||||
}
|
||||
|
||||
#tabs-newtab-button {
|
||||
visibility: hidden !important;
|
||||
}
|
||||
|
||||
#TabsToolbar{
|
||||
margin-top: 0px !important;
|
||||
max-height: 30px;
|
||||
}
|
||||
|
||||
|
||||
.tabbrowser-tab, .tab-background, .tab-stack {
|
||||
margin-top: 3px !important;
|
||||
max-height: 28px !important;
|
||||
border: none !important;
|
||||
border-radius: 1px !important;
|
||||
}
|
||||
|
||||
.tab-background {
|
||||
margin-top: 0px !important;
|
||||
max-height: 25px !important;
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
.tab-background[selected]:-moz-lwtheme {
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
.tab-loading-burst {
|
||||
max-height: 20px !important;
|
||||
}
|
||||
|
||||
.tab-stack {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
/* Autohide Navbar */
|
||||
|
||||
#nav-bar:not([customizing="true"]):not([inFullscreen]) {
|
||||
/*visibility: collapse !important;*/
|
||||
min-height: 0px !important;
|
||||
max-height: 0px !important;
|
||||
margin-top: 1px !important;
|
||||
margin-bottom: 0px !important;
|
||||
margin-right: 70px !important;
|
||||
margin-left: 70px !important;
|
||||
transition: all 300ms ease .5s !important;
|
||||
z-index: -5 !important;
|
||||
border-radius: 50px;
|
||||
padding-left: 10px !important;
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox:hover:not([inFullscreen]) :-moz-any(#nav-bar),
|
||||
#navigator-toolbox:focus-within :-moz-any(#nav-bar) {
|
||||
/*visibility: visible !important;*/
|
||||
min-height: 32px !important;
|
||||
max-height: 32px !important;
|
||||
margin-top: 15px !important;
|
||||
margin-bottom: -48px !important;
|
||||
transition: all 200ms ease 0s !important;
|
||||
z-index: 5 !important;
|
||||
border: 0px !important;
|
||||
box-shadow: 3px 3px 8px 2px #111 !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox{
|
||||
max-height: 32px !important;
|
||||
}
|
||||
|
||||
/* make urlbar rounded */
|
||||
#urlbar{
|
||||
margin-top: 17px !important;
|
||||
padding-right: 10px !important;
|
||||
padding-left: 10px !important;
|
||||
}
|
||||
|
||||
#urlbar-container {
|
||||
padding-top: 0px !important;
|
||||
margin-top: 2px !important;
|
||||
max-height: 18px;
|
||||
}
|
||||
|
||||
#urlbar-background{
|
||||
border-radius: 50px !important;
|
||||
max-height: 28px;
|
||||
}
|
||||
|
||||
#urlbar-input-container {
|
||||
max-height: 28px;
|
||||
}
|
||||
|
||||
#urlbar[open] > #urlbar-background{
|
||||
animation-duration: 200ms !important;
|
||||
border-radius: 15px !important;
|
||||
max-height: 2000px;
|
||||
margin-top: -8px;
|
||||
}
|
||||
|
||||
#urlbar[breakout][breakout-extend] {
|
||||
margin-top: 3px !important;
|
||||
top: 10px !important;
|
||||
}
|
||||
|
||||
#urlbar[breakout][breakout-extend] > .urlbar-input-container {
|
||||
height: calc(var(--uc-toolbar-height) * 2px) !important;
|
||||
padding-block: calc(2px + (var(--uc-toolbar-height) - var(--urlbar-height)) / 2);
|
||||
padding-inline: 8px;
|
||||
}
|
|
@ -1,60 +0,0 @@
|
|||
/* Requires you to edit toolbar layout. Put buttons directly to the right of the urlbar in this order: <urlbar><reload-button><back-button><forward-button>*/
|
||||
/* Actually, the order of reload and back-buttons doesn't matter */
|
||||
|
||||
#urlbar{
|
||||
margin-right:0px !important;
|
||||
border-right:none !important;
|
||||
border-top-right-radius: 0 !important;
|
||||
border-bottom-right-radius: 0 !important;
|
||||
}
|
||||
|
||||
#urlbar,
|
||||
#nav-bar-customization-target > .chromeclass-toolbar-additional[overflows="false"]:not(#downloads-button){
|
||||
border-color: var(--lwt-toolbar-field-border-color, hsla(240,5%,5%,.25));
|
||||
}
|
||||
|
||||
#nav-bar-customization-target > .chromeclass-toolbar-additional[overflows="false"]:not(#downloads-button){
|
||||
margin: 3px 0 !important;
|
||||
padding: 0 0px !important;
|
||||
background-clip: padding-box;
|
||||
border-style: solid;
|
||||
border-width: 1px 0;
|
||||
opacity: 1 !important;
|
||||
background-color: var(--lwt-toolbar-field-background-color, hsla(0,0%,100%,.8));
|
||||
}
|
||||
|
||||
#nav-bar-customization-target > .chromeclass-toolbar-additional[overflows="false"]:not(#downloads-button) .toolbarbutton-icon{
|
||||
border: none !important;
|
||||
border-radius: 0 !important;
|
||||
margin: -3px 0 !important;
|
||||
background-color:transparent;
|
||||
width: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
|
||||
height: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
|
||||
}
|
||||
|
||||
#back-button{ --backbutton-background: transparent; --uc-back-extra-padding: 0px !important }
|
||||
|
||||
#back-button > .toolbarbutton-icon{ padding: var(--toolbarbutton-inner-padding) }
|
||||
|
||||
#nav-bar-customization-target > .chromeclass-toolbar-additional[overflows="false"]:not(#downloads-button):hover .toolbarbutton-icon{
|
||||
background-color: transparent !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
#nav-bar-customization-target > .chromeclass-toolbar-additional[overflows="false"]:not(#downloads-button):not([disabled]):hover{
|
||||
background-image: linear-gradient(to bottom, var(--uc-ext-active-color,hsla(0,0%,70%,.2)), var(--uc-ext-active-color,hsla(0,0%,70%,.2)))
|
||||
}
|
||||
|
||||
#urlbar-container:focus-within ~ .chromeclass-toolbar-additional[overflows="false"]:not(#downloads-button){
|
||||
border-color:Highlight !important;
|
||||
}
|
||||
|
||||
#urlbar-container ~ .chromeclass-toolbar-additional[overflows="false"][disabled]:not(#downloads-button) .toolbarbutton-icon{ opacity: 0.4 !important }
|
||||
/* Change this if you want some other button to be the right-most one */
|
||||
#forward-button{
|
||||
border-right-width: 1px !important;
|
||||
border-radius: 0 2px 2px 0 !important;
|
||||
}
|
||||
|
||||
#back-button, #back-button > image{ border-radius: 0 !important; }
|
||||
#stop-reload-button{ padding: 0 !important; }
|
|
@ -1,14 +0,0 @@
|
|||
/* Page action-buttons "slide in" when cursor is on top of them and don't reserve space when not used */
|
||||
|
||||
#page-action-buttons > *[class^=urlbar-icon]{
|
||||
margin-inline-end: -26px;
|
||||
opacity: 0;
|
||||
transition: margin-inline-end 200ms linear, opacity 200ms linear;
|
||||
}
|
||||
:root[uidensity="compact"] #page-action-buttons > *[class^=urlbar-icon]{ margin-inline-end: -22px; }
|
||||
#page-action-buttons:hover > *[class^=urlbar-icon],
|
||||
#page-action-buttons > *[class^=urlbar-icon][open],
|
||||
#page-action-buttons > *[class^=urlbar-icon][open] ~ *[class^=urlbar-icon]{
|
||||
opacity: 1;
|
||||
margin-inline-end: 0px !important;
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
/* STATUSPANEL INSIDE URLBAR */
|
||||
|
||||
#urlbar .urlbar-input-box{ display: -moz-stack; }
|
||||
/* -moz-stack causes an subtle issue where in certain scenarios a weirdly aligned "http(s)://" may show up */
|
||||
|
||||
#urlbar .urlbar-input-box::after{
|
||||
z-index: 2;
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events:none;
|
||||
background: -moz-element(#statuspanel) left calc(90% - var(--toolbarbutton-outer-padding)) no-repeat !important;
|
||||
}
|
||||
|
||||
#urlbar .urlbar-input-box::after{
|
||||
display: -moz-box;
|
||||
}
|
||||
|
||||
#statuspanel-inner > #statuspanel-label{
|
||||
height:23px;
|
||||
min-width: 500px;
|
||||
background-color: var(--lwt-toolbar-field-background-color, hsla(0,0%,100%,.8)) !important;
|
||||
border: none !important;
|
||||
font-size: larger;
|
||||
color: inherit !important;
|
||||
}
|
||||
/* If you use a theme where urlbar is partially transparent you should edit this color to something that closely matches the perceived color of urlbar. Or perhaps use background-image - linear-gradient() can work well here. But keep the color or image opaque or otherwise you'll face an issue where urlbar text bleeds through */
|
||||
#statuspanel-inner{ background-color: var(--toolbar-non-lwt-bgcolor) }
|
||||
|
||||
#statuspanel{ color: lightpink; z-index: -1; }
|
||||
#statuspanel[type="status"] { color: skyblue }
|
||||
|
||||
/* Don't show common values to save space (useful for oneliner) - safe to delete these */
|
||||
/* If you change the font size of the label then you'll have to modify these too */
|
||||
/* non-https links get a slight red hue */
|
||||
|
||||
#statuspanel-inner > #statuspanel-label{ margin-left: -3px !important; }
|
||||
#statuspanel-inner > #statuspanel-label[value^="http"]{ margin-left: -3.7ch !important; }
|
||||
#statuspanel-inner > #statuspanel-label[value^="https"]{ margin-left: -6.1ch !important; color: var(--lwt-toolbar-field-color, black) !important}
|
||||
#statuspanel-inner > #statuspanel-label[value^="www"]{ margin-left: -4.5ch !important; }
|
||||
#statuspanel-inner > #statuspanel-label[value^="http://www"]{ margin-left: -9.7ch !important; }
|
||||
#statuspanel-inner > #statuspanel-label[value^="https://www"]{ margin-left: -10.1ch !important; }
|
||||
#statuspanel-inner{ margin-left: -1px; }
|
|
@ -1,7 +0,0 @@
|
|||
/* Always show tab close button on hover and never otherwise */
|
||||
.tabbrowser-tab .tab-close-button{
|
||||
display:none;
|
||||
}
|
||||
.tabbrowser-tab:not([pinned]):hover .tab-close-button{
|
||||
display:inherit !important;
|
||||
}
|
|
@ -1,44 +0,0 @@
|
|||
/* Create a circular throbber inside tabs replacing the default one */
|
||||
/* Doesn't really measure loading progress but sort of looks like it */
|
||||
|
||||
#tabbrowser-tabs{ --tab-loader-size: 18px; }
|
||||
.tabbrowser-tab .tab-throbber,
|
||||
.tabbrowser-tab[bursting] .tab-icon-image{
|
||||
display: none !important;
|
||||
}
|
||||
.tabbrowser-tab .tab-content::before{
|
||||
display: -moz-box;
|
||||
content: "";
|
||||
width:var(--tab-loader-size);
|
||||
height:var(--tab-loader-size);
|
||||
margin-right:6px;
|
||||
background: center no-repeat url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" ?><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" version="1.1" stroke="url(%23gradient)" fill="none" width="100%" height="100%" stroke-width="1.7"><defs><radialGradient id="gradient" cx="50%" cy="0" r="0.6"><stop offset="0%" stop-color="lightpink"/><stop offset="100%" stop-color="red"/></radialGradient></defs><circle cx="8" cy="8" r="5.7"/></svg>') !important;
|
||||
clip-path: polygon(50% 50%,50% 0%,50% 0%,50% 0%, 50% 0%,50% 0%, 50% 0%);
|
||||
transition: clip-path 0.2s ease-out, opacity 0.3s linear 0.1s;
|
||||
}
|
||||
.tabbrowser-tab:-moz-any([busy],[bursting]) .tab-content{ padding-left: calc( 9px - (var(--tab-loader-size) - 16px)) !important; }
|
||||
.tabbrowser-tab[pinned] .tab-content::before{ margin-right: 0px }
|
||||
@keyframes loadprogress{
|
||||
from{ clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 50%, 100% 50%,100% 50%, 100% 50%); }
|
||||
25%{ clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 100%, 100% 100%,100% 100%, 100% 100%); }
|
||||
50%{ clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 100%, 0% 100%,0% 100%,0% 100%); }
|
||||
75%{ clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 100%, 0% 100%,0% 0%,0% 0%); }
|
||||
to{ clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 100%, 0% 100%, 0% 0%, 50% 0%); }
|
||||
}
|
||||
@keyframes rotation{
|
||||
from{ transform: rotateZ(0deg) }
|
||||
to{ transform: rotateZ(360deg) }
|
||||
}
|
||||
.tabbrowser-tab:not([busy]):not([bursting]) .tab-content::before{ visibility: collapse; }
|
||||
.tabbrowser-tab:not([busy]) .tab-content::before{ opacity: 0 }
|
||||
.tabbrowser-tab[busy]:not([progress]) .tab-content::before{
|
||||
clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 50%, 100% 50%,100% 50%, 100% 50%);
|
||||
}
|
||||
.tabbrowser-tab[busy][progress] .tab-content::before{
|
||||
animation: loadprogress 2s linear, rotation 0.7s linear 2s infinite !important;
|
||||
animation-fill-mode: forwards !important;
|
||||
}
|
||||
.tabbrowser-tab[bursting] .tab-content::before{
|
||||
clip-path: polygon(50% 50%,50% 0%,100% 0%,100% 100%, 0% 100%,0% 0%, 50% 0%) !important;
|
||||
}
|
||||
#tabbrowser-tabs[schedulepressure] .tab-content::before{ display:none !important; }
|
|
@ -1,2 +0,0 @@
|
|||
/* Why 100vw? Tab closing requires width animation to end and "none" can't be animated */
|
||||
.tabbrowser-tab[fadein]{ max-width: 100vw !important }
|
|
@ -1,66 +0,0 @@
|
|||
/* Color editing should generally be done in theme_color_variables.css */
|
||||
|
||||
/*!!! IMPORT theme_color_variables.css !!!*/
|
||||
|
||||
/* Library window */
|
||||
@-moz-document url(chrome://browser/content/places/places.xul){
|
||||
:root{ background-color: var(--uc-light-bkgnd-color,black) !important;}
|
||||
#placesToolbar,
|
||||
tree{
|
||||
background: transparent !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
textbox,
|
||||
richlistbox,
|
||||
treecol,
|
||||
button{
|
||||
-moz-appearance: none !important;
|
||||
background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
treecol:not([hideheader]){ height: 24px; }
|
||||
treecol:hover{ filter: brightness(160%) }
|
||||
treechildren::-moz-tree-row(multicol, odd){ background-color: rgba(0,0,0,0.2) !important; }
|
||||
treechildren::-moz-tree-row(hover),button:hover{ background-color: var(--uc-active-color) !important; }
|
||||
treechildren::-moz-tree-row(selected){ background-color: var(--uc-border-color) !important; }
|
||||
button{ padding: 3px }
|
||||
#placesMenu > menu{ border: none !important; }
|
||||
#detailsDeck{ color: var(--uc-text-color) }
|
||||
}
|
||||
|
||||
/* Page-info window */
|
||||
@-moz-document url(chrome://browser/content/pageinfo/pageInfo.xul){
|
||||
#main-window,
|
||||
#topBar{
|
||||
background-color: var(--uc-dark-bkgnd-color,black) !important;
|
||||
color: var(--uc-text-color,white) !important;
|
||||
}
|
||||
textbox{ color: var(--uc-text-color) !important; }
|
||||
|
||||
richlistbox,
|
||||
treecol,
|
||||
button,
|
||||
#permList{
|
||||
-moz-appearance: none !important;
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
tree{
|
||||
background: transparent !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
treecol:not([hideheader]){ height: 24px; }
|
||||
treecol:hover{ filter: brightness(140%) }
|
||||
treechildren{ background-color: var(--uc-light-bkgnd-color) !important; }
|
||||
treechildren::-moz-tree-row(multicol, odd){ background-color: rgba(0,0,0,0.2) !important; }
|
||||
treechildren::-moz-tree-row(hover),
|
||||
button:hover,
|
||||
radiogroup > radio:hover,
|
||||
#permList > .permission:hover{
|
||||
background-color: var(--uc-active-color) !important;
|
||||
}
|
||||
treechildren::-moz-tree-row(selected),
|
||||
radiogroup > radio[selected]{
|
||||
background-color: var(--uc-border-color) !important;
|
||||
}
|
||||
}
|
|
@ -1,81 +0,0 @@
|
|||
/* Color controls for theme_***.css files */
|
||||
/*:root {
|
||||
|
||||
--bf-moz-appearance: -moz-win-glass !important;
|
||||
|
||||
--bf-backdrop-blur: 6px;
|
||||
|
||||
--bf-sidebar-searchbar-radius: 6px;
|
||||
|
||||
--bf-accent-bg: #9aedfeCC;
|
||||
--bf-blank-page-bg: #282a36;
|
||||
|
||||
--bf-urlbar-hightlight-bg: var(--bf-accent-bg);
|
||||
--bf-urlbar-radius: 9px;
|
||||
--bf-urlbar-results-font-size: 12pt;
|
||||
--bf-urlbar-results-font-weight: 550;
|
||||
--bf-urlbar-font-size: 12pt;
|
||||
--bf-urlbar-font-weight: 500;
|
||||
--bf-urlbar-switch-tab-color: #57c7ff;
|
||||
--bf-urlbar-bookmark-color: #5af78e;
|
||||
|
||||
--bf-navbar-padding: 6px;
|
||||
|
||||
--bf-tab-selected-bg: #34353e88;
|
||||
--bf-tab-font-size: 11pt;
|
||||
--bf-tab-font-weight: 400;
|
||||
--bf-tab-height: 36px;
|
||||
--bf-tab-border-radius: 6px;
|
||||
--bf-tab-soundplaying-bg: #ff6ac1CC;
|
||||
|
||||
--toolbar-bgcolor: transparent !important;
|
||||
--urlbar-separator-color: transparent !important;
|
||||
}
|
||||
|
||||
/* /\* Light Mode *\/ */
|
||||
/* :root:-moz-lwtheme-darktext { */
|
||||
/* --bf-main-window: transparent; */
|
||||
/* --bf-bg: #F2F2F266; */
|
||||
/* --bf-color: #0A0A0A; */
|
||||
|
||||
/* --bf-hover-bg: #1A1A1A33; */
|
||||
/* --bf-active-bg: #1A1A1A66; */
|
||||
|
||||
/* --bf-icon-color: #0A0A0A; */
|
||||
/* --bf-tab-toolbar-bg: #F2F2F2AA; */
|
||||
/* --bf-tab-selected-bg: #00000022; */
|
||||
/* --bf-navbar-bg: var(--bf-bg); */
|
||||
/* --bf-urlbar-bg: var(--bf-bg); */
|
||||
/* --bf-urlbar-active-bg: var(--bf-bg); */
|
||||
/* --bf-urlbar-focused-color: var(--bf-color); */
|
||||
|
||||
/* --bf-sidebar-bg: var(--bf-bg); */
|
||||
/* --bf-sidebar-color: var(--bf-color); */
|
||||
|
||||
/* --bf-menupopup-bg: #F2F2F2AA; */
|
||||
/* --bf-menupopup-color: var(--bf-color); */
|
||||
/* } */
|
||||
|
||||
/* /\* Dark Mode *\/ */
|
||||
/* :root:-moz-lwtheme-brighttext { */
|
||||
/* --bf-main-window: transparent; */
|
||||
/* --bf-bg: #282a3666; */
|
||||
/* --bf-color: #e2e4e5; */
|
||||
|
||||
/* --bf-hover-bg: #34353e33; */
|
||||
/* --bf-active-bg: #eff0eb66; */
|
||||
|
||||
/* --bf-icon-color: #eff0eb; */
|
||||
/* --bf-tab-toolbar-bg: #282a36AA; */
|
||||
/* --bf-tab-selected-bg: #e2e4e510; */
|
||||
/* --bf-navbar-bg: var(--bf-bg); */
|
||||
/* --bf-urlbar-bg: var(--bf-bg); */
|
||||
/* --bf-urlbar-active-bg: var(--bf-bg); */
|
||||
/* --bf-urlbar-focused-color: var(--bf-color); */
|
||||
|
||||
/* --bf-sidebar-bg: var(--bf-bg); */
|
||||
/* --bf-sidebar-color: var(--bf-color); */
|
||||
|
||||
/* --bf-menupopup-bg: #282a36AA; */
|
||||
/* --bf-menupopup-color: var(--bf-color); */
|
||||
/* } */
|
|
@ -1,135 +0,0 @@
|
|||
/* Makes popups, menus and context menus dark */
|
||||
/* Color editing should generally be done in theme_color_variables.css */
|
||||
|
||||
/*!!! IMPORT theme_color_variables.css !!!*/
|
||||
|
||||
/* Limit popups for general browser popups so that devtools is not affected */
|
||||
@-moz-document url-prefix(chrome://browser/content/){
|
||||
:root{ --panel-disabled-color: #888 !important; }
|
||||
|
||||
.panel-arrowcontent,
|
||||
#alltabs-popup .arrowscrollbox-scrollbox,
|
||||
menupopup:not(#BMB_bookmarksPopup),
|
||||
.textbox-contextmenu{
|
||||
border: 1px solid #434850 !important;
|
||||
background: var(--uc-dark-bkgnd-color) !important;
|
||||
border-radius: 5px !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
/* bookmarks menu is different from others */
|
||||
#BMB_bookmarksPopup{
|
||||
background-color: unset !important;
|
||||
}
|
||||
|
||||
/* GENERAL */
|
||||
menupopup,
|
||||
menuitem,
|
||||
menu{
|
||||
-moz-appearance: none !important;
|
||||
}
|
||||
|
||||
menupopup{
|
||||
background-color:var(--uc-dark-bkgnd-color) !important;
|
||||
border:none;
|
||||
}
|
||||
|
||||
menuitem,
|
||||
menu{
|
||||
min-height:24px !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
menuitem[disabled="true"],
|
||||
menu[disabled="true"]{
|
||||
color: black !important;
|
||||
text-shadow: 0 0 4px silver !important;
|
||||
}
|
||||
|
||||
menuitem:hover,
|
||||
menu:hover{
|
||||
background-color:var(--uc-active-color) !important;
|
||||
}
|
||||
|
||||
menuitem[disabled="true"]:hover,
|
||||
menu[disabled="true"]:hover{
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.menu-right{ filter: invert(100%) }
|
||||
#context-navigation{ background-color: transparent !important; }
|
||||
|
||||
/* POPUP PANELS */
|
||||
|
||||
.panel-subviews,
|
||||
#mainPopupSet menupopup,
|
||||
#main-menubar menupopup,
|
||||
#bookmarks-menu-button menu menupopup > hbox,
|
||||
.search-panel-header.search-panel-current-engine,
|
||||
.search-panel-current-input,
|
||||
panelview,
|
||||
.PanelUI-subView,
|
||||
.autocomplete-richlistbox{
|
||||
background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
}
|
||||
|
||||
.subviewbutton:hover,
|
||||
#widget-overflow-mainView .toolbarbutton-1:hover,
|
||||
#PopupAutoCompleteRichResult .autocomplete-richlistitem:hover,
|
||||
#PopupSearchAutoComplete .autocomplete-richlistitem:hover{
|
||||
background-color: var(--uc-active-color) !important;
|
||||
}
|
||||
|
||||
#widget-overflow-mainView #searchbar > .searchbar-textbox{
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
panelview toolbarbutton.subviewbutton .toolbarbutton-text,
|
||||
#downloadsFooter,
|
||||
#customizationui-widget-panel label,
|
||||
.autocomplete-richlistitem .ac-title,
|
||||
#widget-overflow-mainView toolbarbutton,
|
||||
#bookmarks-menu-button menu menupopup,
|
||||
#PopupSearchAutoComplete .autocomplete-tree.plain.search-panel-tree,
|
||||
#PanelUI-contents toolbarbutton,
|
||||
#alltabs_containersTab,
|
||||
#PopupAutoCompleteRichResult .ac-title,
|
||||
#PopupAutoCompleteRichResult .search-one-offs,
|
||||
.search-panel-input-value{
|
||||
color: var(--uc-text-color)!important;
|
||||
}
|
||||
|
||||
#alltabs-popup,
|
||||
#alltabs_containersMenuTab{
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.search-panel-one-offs,
|
||||
.downloadsPanelFooterButton:not(:hover),
|
||||
#overflowMenu-customize-button:not(:hover),
|
||||
#searchbar-anon-search-settings{
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
}
|
||||
|
||||
#PopupAutoCompleteRichResult .ac-emphasize-text.ac-emphasize-text-title{
|
||||
color: var(--uc-border-color) !important;
|
||||
}
|
||||
|
||||
#editBookmarkPanel textbox,
|
||||
#editBookmarkPanel menulist,
|
||||
#editBookmarkPanel button,
|
||||
#editBookmarkPanel richlistbox,
|
||||
#editBookmarkPanel tree{
|
||||
-moz-appearance: none !important;
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
#editBookmarkPanel button:hover{ filter: brightness(150%) }
|
||||
#editBookmarkPanel menulist{ padding: 4px !important; }
|
||||
#editBookmarkPanel button{ padding: 3px !important; }
|
||||
|
||||
#editBMPanel_folderTree treechildren::-moz-tree-cell(selected){ background-color: var(--uc-border-color) !important; }
|
||||
#editBMPanel_folderTree treechildren::-moz-tree-cell(hover){ background-color: var(--uc-active-color) !important; }
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
/* Colors for bookmarks and history sidebars */
|
||||
/* Color editing should generally be done in theme_color_variables.css */
|
||||
|
||||
/*!!! IMPORT theme_color_variables.css !!!*/
|
||||
|
||||
#sidebar-box{ --toolbar-non-lwt-bgcolor: var(--uc-light-bkgnd-color) }
|
||||
|
||||
#sidebar-search-container #search-box{
|
||||
-moz-appearance:none !important;
|
||||
background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
border: none !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
#history-panel,
|
||||
#bookmarksPanel,
|
||||
#sidebar-header{
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
border-top: none !important;
|
||||
border-bottom:none !important;
|
||||
scrollbar-color: rgb(210,210,210) var(--uc-light-bkgnd-color) !important;
|
||||
}
|
||||
|
||||
.sidebar-placesTreechildren,
|
||||
#sidebar-box,
|
||||
#sidebar-header{
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
.sidebar-placesTreechildren::-moz-tree-cell{
|
||||
outline:none;
|
||||
border-radius:0px;
|
||||
background-image:none;
|
||||
}
|
||||
|
||||
.sidebar-placesTreechildren::-moz-tree-cell(selected){
|
||||
background-color: var(--uc-border-color) !important;
|
||||
}
|
||||
|
||||
.sidebar-placesTreechildren::-moz-tree-cell(hover){
|
||||
background-color: var(--uc-active-color) !important;
|
||||
}
|
|
@ -1,118 +0,0 @@
|
|||
/* General toolbar coloring - buttons, text, findbar etc. */
|
||||
/* Color editing should generally be done in theme_color_variables.css */
|
||||
|
||||
/*!!! IMPORT theme_color_variables.css !!!*/
|
||||
|
||||
/* Override some default variables - stylesheet compatibility */
|
||||
:root{
|
||||
--lwt-toolbar-field-background-color: var(--uc-dark-bkgnd-color) !important;
|
||||
--lwt-toolbar-field-border-color: transparent !important;
|
||||
--toolbar-bgcolor: var(--uc-dark-bkgnd-color) !important;
|
||||
}
|
||||
#nav-bar{--uc-ext-active-color: var(--uc-active-color);}
|
||||
|
||||
#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar),
|
||||
#browser-bottombox,
|
||||
findbar{
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
findbar{ background-image: none !important; }
|
||||
|
||||
#TabsToolbar,
|
||||
#toolbar-menubar,
|
||||
.findbar-find-previous,
|
||||
.findbar-find-next,
|
||||
#urlbar,
|
||||
.findbar-textbox,
|
||||
.searchbar-textbox{
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
#TabsToolbar,
|
||||
#toolbar-menubar{
|
||||
background-color: var(--uc-light-bkgnd-color) !important;
|
||||
}
|
||||
|
||||
.findbar-find-previous,
|
||||
.findbar-find-next{
|
||||
background-color: var(--lwt-toolbar-field-background-color) !important;
|
||||
}
|
||||
|
||||
#urlbar{ border-color: transparent !important; }
|
||||
|
||||
#urlbar[focused]{
|
||||
border-color: var(--uc-border-color) !important;
|
||||
}
|
||||
|
||||
#urlbar .urlbar-icon:hover{
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
#tabbrowser-tabs,
|
||||
.search-panel-input-value,
|
||||
.titlebar-buttonbox-container,
|
||||
.tab-close-button{
|
||||
color: var(--uc-text-color) !important;
|
||||
}
|
||||
|
||||
.toolbarbutton-icon:hover, toolbarbutton:hover > stack{ border-radius: 2px !important; }
|
||||
:root:not([uidensity="compact"]) #back-button > .toolbarbutton-icon{ border-radius: 10000px !important; }
|
||||
|
||||
.toolbarbutton-1:not([disabled]):hover > .toolbarbutton-icon,
|
||||
.toolbarbutton-1:not([disabled]):hover > stack,
|
||||
.toolbarbutton-1[open="true"] > .toolbarbutton-icon,
|
||||
.toolbarbutton-1[open="true"] > stack,
|
||||
.toolbarbutton-1[checked="true"] > .toolbarbutton-icon,
|
||||
.toolbarbutton-1[checked="true"] > stack,
|
||||
#PlacesToolbarItems .bookmark-item:hover,
|
||||
#page-action-buttons image:hover,
|
||||
.urlbar-icon:hover,
|
||||
#TabsToolbar .scrollbutton-down:hover,
|
||||
#TabsToolbar .scrollbutton-up:hover{
|
||||
background-color: var(--uc-active-color) !important;
|
||||
box-shadow: inset 0 0 0px 0px var(--uc-border-color) !important;
|
||||
}
|
||||
|
||||
findbar toolbarbutton:not([disabled]):not(.close-icon):hover,
|
||||
findbar toolbarbutton[checked="true"],
|
||||
findbar > .findbar-closebutton:hover > .toolbarbutton-icon{
|
||||
background-color: var(--uc-active-color) !important;
|
||||
}
|
||||
|
||||
.findbar-textbox:not(.minimal){ border-right: none !important; }
|
||||
.findbar-find-next{ border-left: none !important; }
|
||||
.findbar-textbox:focus-within ~ toolbarbutton{ border-color: var(--toolbar-field-focus-border-color, Highlight) !important; }
|
||||
|
||||
/* Override some special cases */
|
||||
#TabsToolbar .scrollbutton-down > .toolbarbutton-icon,
|
||||
#TabsToolbar .scrollbutton-up > .toolbarbutton-icon,
|
||||
#downloads-indicator-anchor,
|
||||
#PersonalToolbar .bookmark-item > .toolbarbutton-icon,
|
||||
#titlebar .titlebar-button > .toolbarbutton-icon,
|
||||
#widget-overflow-mainView toolbarbutton > stack,
|
||||
#widget-overflow-mainView toolbarbutton > .toolbarbutton-icon{
|
||||
background-color: transparent !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
#back-button {--backbutton-background: rgb(66,74,89) }
|
||||
|
||||
.toolbarbutton-1{ fill: var(--uc-text-color) !important; }
|
||||
|
||||
.tab-line{
|
||||
height:0px !important;
|
||||
border-bottom: solid 1px rgb(16, 69, 87) !important;
|
||||
}
|
||||
|
||||
|
||||
/* commented out to remove gradient from active tab */
|
||||
/*
|
||||
.tabbrowser-tab[selected] .tab-background{
|
||||
background-image: linear-gradient(var(--uc-active-color) 75%,var(--uc-light-bkgnd-color)) !important;
|
||||
box-shadow:0 3px 1px -1px white inset,
|
||||
0 10px 4px -5px var(--uc-border-color) inset,
|
||||
0 -2px 0 rgba(0,0,0,.06) inset !important;
|
||||
}
|
||||
*/
|
|
@ -1,13 +0,0 @@
|
|||
/* Pretty much requires either menubar_in-toolbar or the oneliner compatible one */
|
||||
/* Otherwise the changing vertical position causes bookmarks to be unclickable */
|
||||
/* NOT COMPATIBLE with Fx65+ */
|
||||
#main-window[sizemode="normal"]:not([customizing]) #PersonalToolbar{
|
||||
transition: margin 0.15s ease-in-out 50ms, z-index 16ms linear 100ms!important;
|
||||
height: 28px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
:root:not([customizing]) #toolbar-menubar[inactive] ~ #PersonalToolbar:not(:hover){
|
||||
margin-top:-28px;
|
||||
z-index: -1;
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
/* NOTE This only works if tabs are on top */
|
||||
.urlbar-input-box::before{
|
||||
content:"";
|
||||
display: block;
|
||||
position: fixed;
|
||||
top:0;
|
||||
left:0;
|
||||
width:100vw;
|
||||
height:32px;
|
||||
}
|
||||
.tabbrowser-tab,
|
||||
#TabsToolbar toolbarbutton{
|
||||
position: relative;
|
||||
z-index: 2
|
||||
}
|
||||
#navigator-toolbox:not(:focus-within) .tabbrowser-tab[visuallyselected]{ z-index: 0 !important; }
|
||||
|
||||
:root:not([customizing]) #urlbar{ opacity: 0; transition: opacity 200ms ease-in-out }
|
||||
:root:not([customizing]) #urlbar:focus-within{ opacity: 1 }
|
||||
|
||||
#toolbar-menubar{ position: relative; z-index:3 }
|
|
@ -1,8 +0,0 @@
|
|||
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
@-moz-document url-prefix("about:"){
|
||||
xul|page,
|
||||
xul|scrollbar{
|
||||
scrollbar-color: rgb(210,210,210) rgb(44, 46, 49);
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
/* Scrollbar colors and width - applied globally */
|
||||
@namespace url("http://www.w3.org/1999/xhtml");
|
||||
:root{ scrollbar-color: rgb(210,210,210) rgb(48, 50, 53) }
|
||||
*{ scrollbar-width: thin }
|
|
@ -1,37 +0,0 @@
|
|||
/* Limit CSS data leak, POTENTIALLY BREAKS SOME SITES */
|
||||
@namespace html url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
body input:not([value=""])[type],
|
||||
body input:not([value=""])[type]:focus ~ *,
|
||||
body input:not([value=""])[type] * {
|
||||
background-image: none !important;
|
||||
border-image: none !important;
|
||||
font-family: inherit !important;
|
||||
list-style-image: none !important;
|
||||
cursor: unset !important;
|
||||
content: none !important;
|
||||
}
|
||||
body input:not([value=""])[type]::before,
|
||||
body input:not([value=""])[type]:focus ~ *::before,
|
||||
body input:not([value=""])[type] *::before,
|
||||
body input:not([value=""])[type]::after,
|
||||
body input:not([value=""])[type]:focus ~ *::after,
|
||||
body input:not([value=""])[type] *::after {
|
||||
content:none !important;
|
||||
}
|
||||
|
||||
/* Remove the comment to apply more strict version, causes even more trouble */
|
||||
/*
|
||||
body input:not([value=""])[type] ~ *{
|
||||
background-image: none !important;
|
||||
border-image: none !important;
|
||||
font-family: inherit !important;
|
||||
list-style-image: none !important;
|
||||
cursor: unset !important;
|
||||
content: none !important;
|
||||
}
|
||||
body input:not([value=""])[type] ~ *::before,
|
||||
body input:not([value=""])[type] ~ *::after{
|
||||
content:none !important;
|
||||
}
|
||||
*/
|
|
@ -1,6 +0,0 @@
|
|||
@namespace url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing"){
|
||||
body{background-color: rgb(44,44,44) !important;
|
||||
color:white}
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
/* Toolbar is invisible until hovered */
|
||||
|
||||
@namespace html url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
@-moz-document url-prefix("about:reader"){
|
||||
.reader-toolbar, .reader-toolbar .button:not(:hover) {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
}
|
||||
.reader-toolbar:not(:hover)>*:not([open]){ visibility:hidden; }
|
||||
body{ text-align: justify; }
|
||||
}
|
|
@ -1,65 +0,0 @@
|
|||
.findbar-textbox
|
||||
{
|
||||
background-color: transparent !important;
|
||||
background-image: url(../icons/search.svg) !important;
|
||||
background-repeat: no-repeat !important;
|
||||
background-position: 5px center !important;
|
||||
fill-opacity: 1 !important;
|
||||
border: 0 !important;
|
||||
box-shadow: none !important;
|
||||
margin-inline-start: 2px !important;
|
||||
padding-inline-start: 28px !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"]
|
||||
{
|
||||
background-color: var(--toolbar-field-background-color) !important;
|
||||
border-radius: 16px !important;
|
||||
position: relative !important;
|
||||
display: flex !important;
|
||||
padding: 2px !important;
|
||||
transition: background-color .1s var(--ease-basic) !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"]:hover
|
||||
{
|
||||
background-color: var(--toolbar-field-hover-background-color) !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"]:focus-within
|
||||
{
|
||||
background-color: var(--toolbar-field-focus-background-color) !important;
|
||||
border: 2px solid var(--toolbar-field-focus-border-color) !important;
|
||||
margin: -1px !important;
|
||||
padding: 1px !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton
|
||||
{
|
||||
border-radius: 99px !important;
|
||||
border: 0 !important;
|
||||
width: 24px !important;
|
||||
height: 24px !important;
|
||||
padding: 0 !important;
|
||||
display: flex !important;
|
||||
background: 0 !important;
|
||||
transition: background-color .2s var(--ease-basic) !important;
|
||||
margin: 0 !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton .toolbarbutton-text
|
||||
{
|
||||
visibility: collapse !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton:not([disabled]):hover
|
||||
{
|
||||
background-color: var(--toolbarbutton-hover-background) !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton:not([disabled]):hover:active
|
||||
{
|
||||
background-color: var(--toolbarbutton-active-background) !important;
|
||||
transition-duration: 0 !important;
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<circle fill="context-fill" fill-opacity="context-fill-opacity" cx="8" cy="8" r="8"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 177 B |
|
@ -1,308 +0,0 @@
|
|||
@media (-moz-windows-compositor)
|
||||
{
|
||||
@media not (-moz-os-version: windows-win7)
|
||||
{
|
||||
@media not (-moz-os-version: windows-win8)
|
||||
{
|
||||
@media (-moz-windows-default-theme)
|
||||
{
|
||||
:root[tabsintitlebar] .titlebar-buttonbox-container
|
||||
{
|
||||
height: 30px !important;
|
||||
}
|
||||
|
||||
:root[tabsintitlebar][sizemode=normal] .titlebar-buttonbox-container
|
||||
{
|
||||
margin-block-start: calc(0px - (var(--space-above-tabbar) + 5px)) !important;
|
||||
}
|
||||
|
||||
:root[tabsintitlebar][sizemode=maximized] .titlebar-buttonbox-container
|
||||
{
|
||||
margin-block-start: calc(2px - (var(--space-above-tabbar))) !important;
|
||||
}
|
||||
|
||||
:root[tabsintitlebar][sizemode=maximized]:not([extradragspace]) .titlebar-buttonbox-container
|
||||
{
|
||||
-moz-box-align: start !important;
|
||||
margin-block-start: -5px !important;
|
||||
}
|
||||
|
||||
@media (-moz-windows-accent-color-in-titlebar: 0)
|
||||
{
|
||||
:root[tabsintitlebar]:not(:-moz-lwtheme):not([privatebrowsingmode=temporary])
|
||||
{
|
||||
background-color: #dee1e6 !important;
|
||||
color: #3c4043 !important;
|
||||
}
|
||||
|
||||
:root[tabsintitlebar]:not(:-moz-lwtheme):not([privatebrowsingmode=temporary]):-moz-window-inactive
|
||||
{
|
||||
background-color: #e7eaed !important;
|
||||
color: #666a6d !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(toolbar, #nav-bar-customization-target):not(#toolbar-menubar)
|
||||
{
|
||||
-moz-box-align: center !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, toolbarbutton.bookmark-item:not(.subviewbutton)),
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton),
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton)
|
||||
{
|
||||
border-radius: 99px !important;
|
||||
transition-property:
|
||||
background-color,
|
||||
background-size,
|
||||
fill-opacity !important;
|
||||
transition-duration: .3s !important;
|
||||
transition-timing-function:
|
||||
var(--ease-basic),
|
||||
var(--ease-out),
|
||||
var(--ease-basic) !important;
|
||||
|
||||
fill: currentColor !important;
|
||||
fill-opacity: 0 !important;
|
||||
|
||||
background-image:
|
||||
url(circle.svg),
|
||||
url(circle.svg) !important;
|
||||
background-size: 25% !important;
|
||||
background-repeat: no-repeat !important;
|
||||
background-position: center !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, toolbarbutton.bookmark-item:not(.subviewbutton)),
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton),
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton)
|
||||
{
|
||||
font-size: 12px !important;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
border: 2px solid transparent !important;
|
||||
background-clip: padding-box !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, .scrollbutton-up, .scrollbutton-down),
|
||||
/* no ::part workaround - may have side effects */
|
||||
.#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton),
|
||||
.#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton)
|
||||
{
|
||||
max-height: 32px !important;
|
||||
height: 32px !important;
|
||||
min-height: 32px !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, toolbarbutton.bookmark-item:not(.subviewbutton))[disabled],
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton)[disabled],
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton)[disabled]
|
||||
{
|
||||
opacity: .42 !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, toolbarbutton.bookmark-item:not(.subviewbutton)):hover:not([disabled]),
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, toolbarbutton.bookmark-item:not(.subviewbutton)):-moz-any(:hover:active, [checked], [open]):not([disabled]),
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton):hover:not([disabled]),
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton):hover:not([disabled])
|
||||
{
|
||||
background-color: var(--toolbarbutton-hover-background) !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-1, toolbarbutton.bookmark-item:not(.subviewbutton)):-moz-any(:hover:active, [checked], [open]):not([disabled]),
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton):hover:active:not([disabled]),
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton):hover:active:not([disabled])
|
||||
{
|
||||
fill-opacity: .04 !important;
|
||||
background-size: 100% !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox :-moz-any(.toolbarbutton-icon, .toolbarbutton-badge-stack),
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton) > .toolbarbutton-icon,
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton) > .toolbarbutton-icon
|
||||
{
|
||||
fill-opacity: 1 !important;
|
||||
border: 0 !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox .toolbarbutton-1 > .toolbarbutton-icon
|
||||
{
|
||||
width: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
|
||||
height: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
|
||||
}
|
||||
|
||||
#navigator-toolbox > #PersonalToolbar .toolbarbutton-1 > .toolbarbutton-icon,
|
||||
#navigator-toolbox .toolbarbutton-1 > :-moz-any(.toolbarbutton-icon, .toolbarbutton-badge-stack),
|
||||
/* no ::part workaround - may have side effects */
|
||||
#scrollbutton-up[part="scrollbutton-up"]:not(.menupopup-scrollbutton) > .toolbarbutton-icon,
|
||||
#scrollbutton-down[part="scrollbutton-down"]:not(.menupopup-scrollbutton) > .toolbarbutton-icon
|
||||
{
|
||||
padding: 6px !important;
|
||||
background: 0 !important;
|
||||
}
|
||||
|
||||
/*
|
||||
hack: fix customization screen popping bug when changing ui density
|
||||
icon size is enforced and it doesn't like it when the normal density
|
||||
nav-bar height is less than 38px (it's 36px due to smaller back icon)
|
||||
*/
|
||||
:root:not([uidensity=compact]) #customization-content-container
|
||||
{
|
||||
padding-top: 1px !important;
|
||||
}
|
||||
|
||||
:root:not([uidensity=compact]) :-moz-any(#customization-palette-container, #customization-panel-container)
|
||||
{
|
||||
margin-top: -1px !important;
|
||||
}
|
||||
|
||||
.menu-iconic,
|
||||
.menuitem-iconic
|
||||
{
|
||||
fill: currentColor !important;
|
||||
}
|
||||
|
||||
/* legacy */
|
||||
#navigator-toolbox
|
||||
{
|
||||
border-bottom: 1px solid var(--chrome-content-separator-color, var(--toolbox-border-bottom-color)) !important;
|
||||
}
|
||||
|
||||
/* legacy */
|
||||
#navigator-toolbox::after
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.pointerlockfswarning
|
||||
{
|
||||
display: flex !important;
|
||||
border-radius: 4px !important;
|
||||
padding: 6px !important;
|
||||
background: #333 !important;
|
||||
border: 0 !important;
|
||||
font-size: 14px !important;
|
||||
box-shadow:
|
||||
0 3px 5px -1px rgba(0,0,0,.2),
|
||||
0 6px 10px 0 rgba(0,0,0,.14),
|
||||
0 1px 18px 0 rgba(0,0,0,.12) !important;
|
||||
color: hsla(0,0%,100%,.87) !important;
|
||||
transition-timing-function: var(--ease-out), linear !important;
|
||||
transition-property: transform, top !important;
|
||||
}
|
||||
|
||||
#fullscreen-warning
|
||||
{
|
||||
flex-direction: column !important;
|
||||
min-width: 344px !important;
|
||||
}
|
||||
|
||||
.pointerlockfswarning[hidden]
|
||||
{
|
||||
visibility: hidden !important;
|
||||
}
|
||||
|
||||
/* hack to keep it in same place as [ontop] */
|
||||
/* probably doesn't work for single-line */
|
||||
.pointerlockfswarning:not([hidden]):not([ontop])
|
||||
{
|
||||
top: -32px !important;
|
||||
}
|
||||
|
||||
.pointerlockfswarning[ontop]
|
||||
{
|
||||
top: 28px !important;
|
||||
}
|
||||
|
||||
.pointerlockfswarning::before
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.pointerlockfswarning-domain-text
|
||||
{
|
||||
margin-block: 8px 18px !important;
|
||||
margin-inline: 10px !important;
|
||||
font-size: unset !important;
|
||||
font-weight: unset !important;
|
||||
align-self: start !important;
|
||||
}
|
||||
|
||||
.pointerlockfswarning-domain
|
||||
{
|
||||
font-weight: unset !important;
|
||||
}
|
||||
|
||||
#fullscreen-exit-button
|
||||
{
|
||||
-moz-appearance: none !important;
|
||||
border: 0 !important;
|
||||
height: 32px !important;
|
||||
display: flex !important;
|
||||
align-items: center !important;
|
||||
margin-inline: 8px 0 !important;
|
||||
text-transform: uppercase !important;
|
||||
font-weight: 500 !important;
|
||||
letter-spacing: .0892857143em !important;
|
||||
background: 0 !important;
|
||||
position: relative !important;
|
||||
color: var(--toolbarbutton-icon-fill-attention) !important;
|
||||
align-self: end !important;
|
||||
font-family: Roboto, inherit !important;
|
||||
}
|
||||
|
||||
#fullscreen-exit-button::before
|
||||
{
|
||||
content: "" !important;
|
||||
display: block !important;
|
||||
z-index: -1 !important;
|
||||
position: absolute !important;
|
||||
left: 0 !important;
|
||||
right: 0 !important;
|
||||
top: 0 !important;
|
||||
bottom: 0 !important;
|
||||
border-radius: 4px !important;
|
||||
background: currentColor !important;
|
||||
opacity: 0 !important;
|
||||
transition: opacity .3s var(--ease-basic) !important;
|
||||
}
|
||||
|
||||
#fullscreen-exit-button:hover::before
|
||||
{
|
||||
opacity: .12 !important;
|
||||
}
|
||||
|
||||
#fullscreen-exit-button:hover:active::before
|
||||
{
|
||||
opacity: .24 !important;
|
||||
transition-duration: .1s !important;
|
||||
}
|
||||
|
||||
/* note: use Firefox account button instead */
|
||||
#TabsToolbar .private-browsing-indicator
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* high DPI adjustments */
|
||||
@media (min--moz-device-pixel-ratio: 2)
|
||||
{
|
||||
#navigator-toolbox
|
||||
{
|
||||
border-bottom-width: .5px !important;
|
||||
padding-bottom: .5px !important;
|
||||
box-shadow: inset 0 -.5px var(--toolbar-bgcolor) !important;
|
||||
}
|
||||
}
|
|
@ -1,213 +0,0 @@
|
|||
/* light mode */
|
||||
:root:not([style]),
|
||||
:root[style*="--lwt-accent-color:rgb(227, 228, 230);"],
|
||||
:root[style*="--lwt-accent-color:white;"]
|
||||
{
|
||||
/* accentcolor */
|
||||
--lwt-accent-color: #dee1e6 !important;
|
||||
|
||||
/* textcolor */
|
||||
--lwt-text-color: #606368 !important;
|
||||
|
||||
/* toolbar */
|
||||
--toolbar-bgcolor: #fff !important;
|
||||
|
||||
/* toolbar_text */
|
||||
--toolbar-color: #606368 !important;
|
||||
|
||||
/* toolbar_bottom_separator */
|
||||
--toolbox-border-bottom-color: #b3b1b3 !important; /* legacy */
|
||||
--chrome-content-separator-color: #b3b1b3 !important;
|
||||
|
||||
/* icons */
|
||||
--lwt-toolbarbutton-icon-fill: #606368 !important;
|
||||
|
||||
/* icons_attention */
|
||||
--lwt-toolbarbutton-icon-fill-attention: #5086ec !important;
|
||||
|
||||
/* button_background_hover */
|
||||
--lwt-toolbarbutton-hover-background: rgba(0, 0, 0, .07) !important;
|
||||
|
||||
/* button_background_active */
|
||||
--lwt-toolbarbutton-active-background: rgba(0, 0, 0, .11) !important;
|
||||
|
||||
--lwt-toolbar-field-color: #202124 !important;
|
||||
|
||||
/* popup_highlight */
|
||||
--autocomplete-popup-highlight-background: #f2f2f2 !important;
|
||||
|
||||
/* popup_highlight_text */
|
||||
--autocomplete-popup-highlight-color: #202124 !important;
|
||||
}
|
||||
|
||||
/* don't bother with sidebar in light mode */
|
||||
|
||||
/* dark mode */
|
||||
:root[style*="--lwt-accent-color:rgb(12, 12, 13);"],
|
||||
:root[privatebrowsingmode=temporary]
|
||||
{
|
||||
/* accentcolor */
|
||||
--lwt-accent-color: #202124 !important;
|
||||
|
||||
/* textcolor */
|
||||
--lwt-text-color: #9ba0a5 !important;
|
||||
|
||||
/* toolbar */
|
||||
--toolbar-bgcolor: #333639 !important;
|
||||
|
||||
/* toolbar_text */
|
||||
--toolbar-color: #fff !important;
|
||||
|
||||
/* toolbar_bottom_separator */
|
||||
--toolbox-border-bottom-color: #282828 !important; /* legacy */
|
||||
--chrome-content-separator-color: #282828 !important;
|
||||
|
||||
/* icons */
|
||||
--lwt-toolbarbutton-icon-fill: #fff !important;
|
||||
|
||||
/* icons_attention */
|
||||
--lwt-toolbarbutton-icon-fill-attention: #5086ec !important;
|
||||
|
||||
/* button_background_hover */
|
||||
--lwt-toolbarbutton-hover-background: #434649 !important;
|
||||
|
||||
/* button_background_active */
|
||||
--lwt-toolbarbutton-active-background: #4e5153 !important;
|
||||
|
||||
--lwt-toolbar-field-color: #fff !important;
|
||||
|
||||
/* popup */
|
||||
--arrowpanel-background: #373737 !important;
|
||||
|
||||
/* popup_text */
|
||||
--arrowpanel-color: #fff !important;
|
||||
--autocomplete-popup-color: #fff !important;
|
||||
--panel-disabled-color: hsla(0, 0%, 100%, .5) !important;
|
||||
|
||||
/* popup_border */
|
||||
--arrowpanel-border-color: #555 !important;
|
||||
--autocomplete-popup-border-color: #555 !important;
|
||||
|
||||
/* popup_highlight */
|
||||
--autocomplete-popup-highlight-background: #4c4f52 !important;
|
||||
|
||||
/* popup_highlight_text */
|
||||
--autocomplete-popup-highlight-color: #fff !important;
|
||||
}
|
||||
|
||||
:-moz-any(#sidebar-box, #sidebar)[style*="--sidebar-background-color:rgb(56, 56, 61);"]
|
||||
{
|
||||
/* sidebar */
|
||||
--sidebar-background-color: #333639 !important;
|
||||
|
||||
/* sidebar_text */
|
||||
--sidebar-text-color: #f1f3ee !important;
|
||||
}
|
||||
|
||||
:-moz-any(.sidebar-panel, body)[style*="--lwt-sidebar-background-color:rgb(56, 56, 61);"]
|
||||
{
|
||||
/* sidebar */
|
||||
--lwt-sidebar-background-color: #333639 !important;
|
||||
|
||||
/* sidebar_text */
|
||||
--lwt-sidebar-text-color: #f1f3ee !important;
|
||||
}
|
||||
|
||||
:root
|
||||
{
|
||||
--ease-in: cubic-bezier(.4, 0, 1, 1);
|
||||
--ease-out: cubic-bezier(0, 0, .2, 1);
|
||||
--ease-basic: linear;
|
||||
|
||||
--button-size: 32px; /* is this used? */
|
||||
--icon-size: 24px; /* is this used? */
|
||||
|
||||
--downloads-item-height: 48px !important;
|
||||
|
||||
--toolbar-non-lwt-bgcolor: var(--toolbar-bgcolor) !important;
|
||||
--toolbar-non-lwt-textcolor: var(--toolbar-color) !important;
|
||||
}
|
||||
|
||||
#titlebar,
|
||||
#tabbrowser-tabs
|
||||
{
|
||||
--tab-min-height: 34px !important;
|
||||
}
|
||||
|
||||
@supports -moz-bool-pref("materialFox.reduceTabOverflow")
|
||||
{
|
||||
#tabbrowser-tabs
|
||||
{
|
||||
--tab-min-width: 32px !important;
|
||||
}
|
||||
}
|
||||
|
||||
:root
|
||||
{
|
||||
--tab-separator-opacity: .35 !important;
|
||||
|
||||
--toolbar-field-background-color: hsl(200, 12%, 95%) !important;
|
||||
--toolbar-field-hover-background-color: hsl(216, 12%, 92%) !important;
|
||||
--toolbar-field-focus-background-color: hsl(0, 0%, 100%) !important;
|
||||
}
|
||||
|
||||
:root:-moz-any(:-moz-lwtheme-brighttext, [privatebrowsingmode=temporary])
|
||||
{
|
||||
--toolbar-field-background-color: #202124 !important;
|
||||
--toolbar-field-hover-background-color: #292a2d !important;
|
||||
--toolbar-field-focus-background-color: #202124 !important;
|
||||
}
|
||||
|
||||
:root:not(:-moz-lwtheme):not([privatebrowsingmode=temporary])
|
||||
{
|
||||
--toolbar-bgcolor: hsl(0, 0%, 100%) !important;
|
||||
--toolbar-color: hsl(213, 5%, 39%) !important;
|
||||
--toolbox-border-bottom-color: hsl(0, 0%, 70%) !important;
|
||||
}
|
||||
|
||||
@media (-moz-mac-yosemite-theme)
|
||||
{
|
||||
:root[extradragspace]
|
||||
{
|
||||
--space-above-tabbar: 8px !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Ubuntu */
|
||||
@media (-moz-gtk-csd-available)
|
||||
{
|
||||
:root:not(:-moz-lwtheme):not([privatebrowsingmode=temporary])
|
||||
{
|
||||
--toolbar-bgcolor: -moz-dialog !important;
|
||||
--toolbar-color: -moz-dialogtext !important;
|
||||
}
|
||||
}
|
||||
|
||||
:root:-moz-lwtheme-darktext,
|
||||
:root toolbar:not([brighttext]),
|
||||
.tabbrowser-tab[visuallyselected]
|
||||
{
|
||||
--toolbarbutton-hover-background: var(--lwt-toolbarbutton-hover-background, hsla(0, 0%, 0%, .07)) !important;
|
||||
--toolbarbutton-active-background: var(--lwt-toolbarbutton-active-background, hsla(0, 0%, 0%, .11)) !important;
|
||||
}
|
||||
|
||||
:root:-moz-lwtheme-brighttext,
|
||||
:root toolbar[brighttext],
|
||||
.tabbrowser-tab[visuallyselected]:-moz-lwtheme-brighttext
|
||||
{
|
||||
--toolbarbutton-hover-background: var(--lwt-toolbarbutton-hover-background, hsla(0, 0%, 100%, .1)) !important;
|
||||
--toolbarbutton-active-background: var(--lwt-toolbarbutton-active-background, hsla(0, 0%, 100%, .17)) !important;
|
||||
}
|
||||
|
||||
/* special case for urlbar buttons */
|
||||
:-moz-any(#urlbar, #searchbar)
|
||||
{
|
||||
--toolbarbutton-hover-background: hsl(210, 5%, 85%) !important;
|
||||
--toolbarbutton-active-background: hsl(210, 4%, 80%) !important;
|
||||
}
|
||||
|
||||
:root:-moz-any([privatebrowsingmode=temporary], :-moz-lwtheme-brighttext) :-moz-any(#urlbar, #searchbar)
|
||||
{
|
||||
--toolbarbutton-hover-background: hsl(206, 5%, 26%) !important;
|
||||
--toolbarbutton-active-background: hsl(210, 4%, 31%) !important;
|
||||
}
|
36
.config/firefox/chrome.bak/icons/PrivacyBadger.svg
Normal file
After Width: | Height: | Size: 12 KiB |
1
.config/firefox/chrome.bak/icons/add-device.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M14 7.25h-3a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75ZM11 6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-3Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M1.255 4.63c0-.76.616-1.375 1.375-1.375h6.74c.76 0 1.375.616 1.375 1.375v.38c.084-.006.17-.01.255-.01h.995v-.37A2.625 2.625 0 0 0 9.37 2.005H2.63A2.625 2.625 0 0 0 .005 4.63v4.74a2.625 2.625 0 0 0 2.625 2.625h2.375v1.75H2.63a.625.625 0 1 0 0 1.25h5.539A2.995 2.995 0 0 1 8 14v-.255H6.255v-1.75H8v-1.25H2.63c-.76 0-1.375-.616-1.375-1.375V4.63Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 763 B |
1
.config/firefox/chrome.bak/icons/addons-logo.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" height="581" width="598"><path fill="context-fill" d="M119.31 4.67c8.3 3.84 14.62 10.74 20.12 17.85 5.79 7.6 10.5 16.72 10.18 26.52.11 13.73-10.19 25.95-6.85 39.91 2.4 8.15 7.85 15.85 15.61 19.64 11.61 4.99 24.78.17 34.65-6.5 10.88-10.13 21.32-20.74 32.01-31.08 16.23-16.11 54.77-54.33 58.39-56.59 5.777-3.607 10.617-3.561 15.688-3.561 5.07 0 10.489 1.121 14.199 4.201 30.528 25.345 59.773 55.87 88.113 83.51 5.29 5.77 12.78 8.94 20.19 11.03 7.94 2.2 17.16 1.16 23.51-4.43 6.81-6 11.82-14.96 10.96-24.27-1.02-11.3-7.93-21.37-7.46-32.91.16-12.86 8.13-23.84 16.48-32.93C473.33 5.74 485.61.39 498 .18c16.19-.77 32.09 4.22 46.46 11.32 11.51 5.83 22.6 13.09 31.08 22.95 10.46 12.6 17.52 27.96 20.76 43.99 2.62 13.96 2.29 29.31-5.07 41.86-7.41 12.18-20.15 21.02-34.17 23.68-9.29 1.76-18.79.98-28.09-.23-4.64-.54-9.3-1.47-13.98-1.02-8.24 1.08-16.57 4.97-21.21 12.1-4.93 7.56-4.99 17.38-2.11 25.72 1.95 5.45 4.64 10.83 8.85 14.9 16.13 14.87 32.03 29.98 47.53 45.5 12.29 12.39 24.61 24.82 35.42 38.55 2.79 4.04 6.54 8.24 6.07 13.5 0 4.57-1.32 9.07-3.57 13.03-2.35 4.42-6.42 7.5-9.72 11.16-15.31 16.04-30.68 32.04-46.02 48.05-2.65 2.56-4.71 6.07-8.37 7.28-9.29 3.52-19.45 5.39-29.34 3.73-12.15-2.09-22.31-12.2-25.01-24.14-2.8-14.08 2.99-27.98 1.99-42.09-.58-9.88-5.33-19.27-12.48-26.04-7.34-7.39-17.74-11.02-27.98-11.66-14.51-.81-28.89 3.42-41.71 9.96-21.32 10.99-38.43 29.54-48.59 51.19-5.98 13.3-9.53 28.45-6.26 42.94 3.19 15.23 14.77 28.7 29.78 33.24 9.59 3.04 19.78 2.23 29.67 1.83 10.77-.65 22.3-2.64 32.48 2.04 11.06 5.85 16.38 19.39 14.36 31.45-.99 4.96-1.62 10.64-5.61 14.2-34.92 35.7-69.81 71.44-104.69 107.18-7.25 5.84-15.59 10.57-24.56 13.18-7.08 2.2-14.36-.68-20.61-3.93-4.79-2.63-9.48-5.56-13.53-9.26-35.07-35.96-70.22-71.85-105.3-107.8-2.43-2.2-3.14-5.5-4-8.51-2.71-9.88-1.58-21.32 5.02-29.46 4.71-6.5 12.68-9.67 20.52-9.93 15.25-.57 30.61 3.04 45.77.11 14.95-2.88 27.45-14.56 32.42-28.8 3.97-11.28 3.36-23.7.18-35.09-5.79-20.27-18.43-38.25-34.37-51.87-14.47-11.94-32.15-20.6-50.96-22.49-12.12-1.25-25.08 1.11-34.83 8.76-8.7 6.98-14.85 17.47-15.5 28.72-1 13.11 4.04 25.94 2.48 39.03-1.48 13.3-12.41 25.09-25.66 27.28-9.03 1.47-18.29.01-26.88-2.93-1.85-.68-3.92-1.13-5.34-2.59-18.68-19.38-37.22-38.9-55.89-58.28-6.08-5.47-9.42-13.85-8.67-22 .81-4.38 3.81-7.93 6.33-11.47 14.03-17.49 30.15-33.14 46.03-48.93 11.71-11.26 23.39-22.55 35.38-33.51 5.95-5.26 9.45-12.81 11.27-20.42 1.61-7.47.65-15.79-3.86-22.11-6.44-8.66-18.03-12.71-28.55-11.07-12.9 1.67-26.32 3.65-39.03-.18-15.93-4.74-29.9-17.55-34-33.93-3.99-15.42-1.31-31.81 4.25-46.5 3.61-9.65 8.77-18.72 15.12-26.83 8.27-9.89 19.09-17.31 30.46-23.21 11-5.74 22.9-9.9 35.21-11.64C98.1-.6 109.42-.08 119.31 4.67z" fill-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 22 22">
|
||||
<path fill="context-fill" fill-opacity="context-fill-opacity" transform="translate(-1 -1)" d="M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 484 B |
|
@ -1,3 +0,0 @@
|
|||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path fill="context-fill" stroke-opacity="context-fill-opacity" d="M8,1A1,1,0,1,1,7,2,1,1,0,0,1,8,1ZM2,7A1,1,0,1,1,1,8,1,1,0,0,1,2,7ZM14,7a1,1,0,1,1-1,1A1,1,0,0,1,14,7ZM8,13a1,1,0,1,1-1,1A1,1,0,0,1,8,13Zm0.723,0.309L7.309,14.723l-6-6L2.723,7.309Zm-6-4.586L1.309,7.309l6-6L8.723,2.723Zm-0.707.293v-2h12v2h-12Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 417 B |
|
@ -1,8 +0,0 @@
|
|||
<svg
|
||||
version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
width="16" height="16" viewBox="0 0 16 16"
|
||||
fill="none" stroke-opacity="context-fill-opacity" stroke="context-fill" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
|
||||
>
|
||||
<path d="M2.25,7.75h11.5"/>
|
||||
<path d="M7.75,13.25l-5.5-5.5,5.5-5.5"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 318 B |
1
.config/firefox/chrome.bak/icons/arrow-between-down.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M11.927 8.174a.625.625 0 0 1 .03.883l-3.5 3.74a.625.625 0 0 1-.913 0l-3.5-3.74a.625.625 0 1 1 .912-.854l2.419 2.585V3.63a.625.625 0 0 1 1.25 0v7.157l2.419-2.584a.625.625 0 0 1 .883-.03ZM3 .005c.345 0 .625.28.625.625 0 .207.168.375.375.375h8a.375.375 0 0 0 .375-.375.625.625 0 1 1 1.25 0c0 .897-.727 1.625-1.625 1.625H4A1.625 1.625 0 0 1 2.375.63c0-.345.28-.625.625-.625ZM13 15.995a.625.625 0 0 1-.625-.625.375.375 0 0 0-.375-.375H4a.375.375 0 0 0-.375.375.625.625 0 1 1-1.25 0c0-.897.728-1.625 1.625-1.625h8c.898 0 1.625.728 1.625 1.625 0 .345-.28.625-.625.625Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 759 B |
1
.config/firefox/chrome.bak/icons/arrow-repeat-all.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M9.009.692a.625.625 0 0 1 .883-.008l2.546 2.5a.625.625 0 0 1 .004.888l-2.5 2.5a.625.625 0 0 1-.884-.884l1.433-1.433H5a.625.625 0 0 1 0-1.25h5.472l-1.455-1.43a.625.625 0 0 1-.008-.883ZM6.991 15.308a.625.625 0 0 1-.883.008l-2.546-2.5a.625.625 0 0 1-.004-.888l2.5-2.5a.625.625 0 0 1 .884.884l-1.433 1.433H11a.625.625 0 1 1 0 1.25H5.528l1.455 1.43c.247.241.25.637.008.883Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M8.099 3H5a5 5 0 0 0-2.621 9.259c.027-.39.193-.76.472-1.038l.088-.088A3.75 3.75 0 0 1 5 4.25h3.116L8.1 3Zm4.962 1.867.088-.088c.279-.278.445-.647.472-1.038A5 5 0 0 1 11 13H7.901l-.017-1.25H11a3.75 3.75 0 0 0 2.061-6.883Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 838 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M9.078 10.064a.625.625 0 0 1-.012.884l-3 2.916a.625.625 0 0 1-.872 0l-3-2.916a.625.625 0 1 1 .872-.896l1.939 1.885V2.5a.625.625 0 1 1 1.25 0v9.437l1.94-1.885a.625.625 0 0 1 .883.012Z" clip-rule="evenodd"/><path d="M8 3.625C8 3.28 8.28 3 8.625 3h4.75a.625.625 0 1 1 0 1.25h-4.75A.625.625 0 0 1 8 3.625ZM8 5.625C8 5.28 8.28 5 8.625 5h2.75a.625.625 0 1 1 0 1.25h-2.75A.625.625 0 0 1 8 5.625ZM8 7.625C8 7.28 8.28 7 8.625 7h.75a.625.625 0 1 1 0 1.25h-.75A.625.625 0 0 1 8 7.625Z"/></svg>
|
After Width: | Height: | Size: 651 B |
1
.config/firefox/chrome.bak/icons/arrow-swap.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M10.009 1.692a.625.625 0 0 1 .883-.008l2.546 2.5a.625.625 0 0 1 .004.888l-2.5 2.5a.625.625 0 1 1-.884-.884l1.433-1.433H3a.625.625 0 0 1 0-1.25h8.472l-1.455-1.43a.625.625 0 0 1-.008-.883ZM5.991 14.308a.625.625 0 0 1-.883.008l-2.546-2.5a.625.625 0 0 1-.004-.888l2.5-2.5a.625.625 0 0 1 .884.884l-1.433 1.433H13a.625.625 0 1 1 0 1.25H4.528l1.455 1.43c.247.241.25.637.008.883Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 569 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path fill="context-fill" fill-opacity="context-fill-opacity" d="M11,9.143V5.5h1v4.639ZM9,7.149V6.5h1V8.146ZM6.672,4.828L8,3.5V6.153Zm-3.96-2.11,9.531,9.5-0.509.494L8,8.985V12.5l-3-3H3v-3H5l0.255-.255L2.218,3.212l0.5-.5h0Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 317 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path fill="context-fill" fill-opacity="context-fill-opacity" d="M11,10.5v-5h1v5H11Zm-2-4h1v3H9v-3Zm-6,3v-3H5l3-3v9l-3-3H3Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 218 B |
1
.config/firefox/chrome.bak/icons/auto-fit-width.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M9.568 11.951a.625.625 0 0 1-.02-.883l1.987-2.073h-7.07l1.986 2.073a.625.625 0 0 1-.902.864l-3-3.13a.625.625 0 0 1 .019-.884l3-2.87a.625.625 0 0 1 .864.904L4.557 7.745h6.886L9.568 5.952a.625.625 0 0 1 .864-.904l3 2.87a.625.625 0 0 1 .02.884l-3 3.13a.625.625 0 0 1-.884.02Z" clip-rule="evenodd"/><path d="M0 2.625a.625.625 0 1 1 1.25 0v10.75a.625.625 0 1 1-1.25 0V2.625ZM14.75 2.625a.625.625 0 1 1 1.25 0v10.75a.625.625 0 1 1-1.25 0V2.625Z"/></svg>
|
After Width: | Height: | Size: 616 B |
17
.config/firefox/chrome.bak/icons/bitwarden.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
viewBox="0 0 800 800"
|
||||
fill="context-fill"
|
||||
width="800"
|
||||
height="800"
|
||||
id="svg1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1" />
|
||||
<path
|
||||
d="M 714.04355,33.594262 C 707.86998,27.420689 700.2265,24.186913 691.7011,24.186913 H 120.79267 c -8.52541,0 -16.16888,3.233776 -22.342461,9.407349 -6.173563,6.173571 -9.407343,13.817042 -9.407343,22.34245 V 436.64032 c 0,28.51603 5.58561,56.4441 16.462854,84.37215 11.17122,27.92808 24.69429,52.62237 41.15715,74.37686 16.46285,21.75449 35.86551,42.62705 58.50194,63.20561 22.63642,20.57859 43.50898,37.6294 62.61766,51.15247 19.10867,13.52305 39.0993,26.45817 59.97184,38.51132 20.87256,12.05317 35.57154,20.28461 44.39093,24.40032 8.81939,4.40968 15.8749,7.64346 21.16653,9.99529 3.82174,2.05788 8.23144,2.93981 12.9351,2.93981 4.70368,0 8.81939,-0.88193 12.9351,-2.93981 5.29164,-2.35183 12.34715,-5.58561 21.16654,-9.99529 8.81939,-4.40971 23.51837,-12.34715 44.39093,-24.40032 20.87256,-12.05315 40.86317,-24.98827 59.97183,-38.51132 19.10868,-13.52307 39.98124,-30.57388 62.61766,-51.15247 22.63644,-20.57856 42.0391,-41.45112 58.50196,-63.20561 16.46285,-21.75449 29.98592,-46.44878 41.15714,-74.37686 11.17122,-27.92805 16.46286,-56.1501 16.46286,-84.37215 V 55.936712 c 0,-8.525408 -3.23378,-15.874898 -9.40734,-22.34245 z M 640.54864,440.16808 c 0,137.87645 -234.00779,256.35023 -234.00779,256.35023 V 105.61927 h 234.00779 z"
|
||||
id="path1"
|
||||
style="stroke-width:2.10073" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
2
.config/firefox/chrome.bak/icons/blank.svg
Normal file
|
@ -0,0 +1,2 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
</svg>
|
After Width: | Height: | Size: 91 B |
83
.config/firefox/chrome.bak/icons/blue-berror.svg
Normal file
After Width: | Height: | Size: 32 KiB |
1
.config/firefox/chrome.bak/icons/book-add.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M11 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm.625-6.37a.625.625 0 1 0-1.25 0v1.745H8.63a.625.625 0 1 0 0 1.25h1.745v1.745a.625.625 0 1 0 1.25 0v-1.745h1.745a.625.625 0 1 0 0-1.25h-1.745V9.63Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M11 1.25H3a.75.75 0 0 0-.75.75v10.145c.232-.093.485-.145.75-.145h3c0 .432.055.85.158 1.25H3a.75.75 0 0 0 0 1.5h3.824c.317.481.715.904 1.176 1.25H3a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v5.416a4.965 4.965 0 0 0-1.25-.36V2a.75.75 0 0 0-.75-.75Zm-5.75 3.5v-.5h3.5v.5h-3.5ZM4 3.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-2Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 791 B |
1
.config/firefox/chrome.bak/icons/book.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12c0 1.1-.9 2-2 2H4a2 2 0 0 1-2-2V2Zm10-.75H4a.75.75 0 0 0-.75.75v10.145c.232-.093.485-.145.75-.145h8c.265 0 .518.052.75.145V2a.75.75 0 0 0-.75-.75ZM3.25 14c0 .414.336.75.75.75h8a.75.75 0 0 0 0-1.5H4a.75.75 0 0 0-.75.75Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M6.25 4.25v.5h3.5v-.5h-3.5ZM5.5 3a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-5Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 615 B |
1
.config/firefox/chrome.bak/icons/bookmark-multiple.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M6.456 3.212c.378-.94 1.71-.94 2.088 0l1.2 2.99 3.213.217c1.012.069 1.424 1.336.646 1.986L11.13 10.47l.786 3.123c.247.983-.83 1.767-1.69 1.227L7.5 13.108 4.772 14.82c-.859.54-1.936-.244-1.689-1.227l.786-3.123-2.472-2.065c-.778-.65-.366-1.917.646-1.986l3.213-.218 1.2-2.989Zm1.044.755L6.387 6.74c-.161.4-.537.674-.968.703l-2.981.202L4.73 9.561c.331.277.475.719.37 1.138l-.73 2.897 2.53-1.588c.367-.23.831-.23 1.197 0l2.53 1.588L9.9 10.7c-.106-.42.038-.861.37-1.138l2.292-1.916-2.98-.202a1.125 1.125 0 0 1-.969-.703L7.5 3.967Z" clip-rule="evenodd"/><path d="M8.456 1.212c.378-.94 1.71-.94 2.088 0l1.2 2.99 3.213.217c1.012.069 1.424 1.336.646 1.986l-.364.304a2.528 2.528 0 0 0-.697-1.047l.02-.017-.043-.003a2.46 2.46 0 0 0-1.469-.595l-2.352-.16L9.82 2.7a2.666 2.666 0 0 0-.155-.323l-.165-.41-.041.103a2.419 2.419 0 0 0-1.039-.768l.036-.09Z"/></svg>
|
After Width: | Height: | Size: 1,014 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path fill="context-fill" fill-opacity="context-fill-opacity" d="M13,12.091V4.5l-0.056-.056a3,3,0,0,0-2.388-2.388L10.5,2H5A2,2,0,0,1,7,0h6a2,2,0,0,1,2,2V13ZM12,5V16L7,13.5,2,16V5A2,2,0,0,1,4,3h6A2,2,0,0,1,12,5Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 305 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M14 3.25H2a.75.75 0 0 0-.75.75v8c0 .414.336.75.75.75h12a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75ZM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2Z" clip-rule="evenodd"/><path d="M7.583 4.294a.442.442 0 0 1 .834 0l.755 1.967a.451.451 0 0 0 .386.293l2.023.144c.404.028.568.557.257.828l-1.555 1.359a.482.482 0 0 0-.148.474l.495 2.056c.098.41-.332.737-.674.512L8.239 10.8a.432.432 0 0 0-.478 0l-1.717 1.127c-.342.225-.772-.102-.674-.512l.495-2.056a.482.482 0 0 0-.148-.474L4.162 7.526c-.31-.271-.147-.8.257-.828l2.023-.144a.451.451 0 0 0 .386-.293l.755-1.967Z"/></svg>
|
After Width: | Height: | Size: 756 B |
1
.config/firefox/chrome.bak/icons/bookmarks-toolbar.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M14 2.25H2a.75.75 0 0 0-.75.75v10c0 .414.336.75.75.75h12a.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75ZM2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2Z" clip-rule="evenodd"/><path d="M7.536 4.155a.5.5 0 0 1 .928 0l.841 2.096a.5.5 0 0 0 .43.312l2.254.153a.5.5 0 0 1 .286.883l-1.733 1.448a.5.5 0 0 0-.164.505l.551 2.19a.5.5 0 0 1-.75.546l-1.913-1.201a.5.5 0 0 0-.532 0l-1.912 1.2a.5.5 0 0 1-.751-.545l.55-2.19a.5.5 0 0 0-.163-.505L3.725 7.599a.5.5 0 0 1 .286-.883l2.253-.153a.5.5 0 0 0 .43-.312l.842-2.096Z"/></svg>
|
After Width: | Height: | Size: 702 B |
1
.config/firefox/chrome.bak/icons/bookmarksMenu-open.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M1.045 3.63A2.625 2.625 0 0 1 3.67 1.005h3.28c.373 0 .675.302.675.675 0 .201.164.365.365.365h4.38a2.625 2.625 0 0 1 2.625 2.625v7.7a2.625 2.625 0 0 1-2.625 2.625h-8.7a2.625 2.625 0 0 1-2.625-2.625V3.63ZM3.67 2.255c-.76 0-1.375.616-1.375 1.375v8.74c0 .76.616 1.375 1.375 1.375h8.7c.76 0 1.375-.616 1.375-1.375v-7.7c0-.76-.616-1.375-1.375-1.375H7.99c-.689 0-1.278-.432-1.51-1.04H3.67Z" clip-rule="evenodd"/><path d="M4 5.625C4 5.28 4.28 5 4.625 5h1.75a.625.625 0 1 1 0 1.25h-1.75A.625.625 0 0 1 4 5.625ZM4 8.625C4 8.28 4.28 8 4.625 8h1.75a.625.625 0 1 1 0 1.25h-1.75A.625.625 0 0 1 4 8.625ZM4 11.625c0-.345.28-.625.625-.625h1.75a.625.625 0 1 1 0 1.25h-1.75A.625.625 0 0 1 4 11.625Z"/></svg>
|
After Width: | Height: | Size: 857 B |
1
.config/firefox/chrome.bak/icons/bookmarksMenu-open2.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M15.58 8.603A.833.833 0 0 0 15 8.37V4a2 2 0 0 0-2-2H8a.5.5 0 0 1-.5-.5A.5.5 0 0 0 7 1H3a2 2 0 0 0-2 2v6.37a.804.804 0 0 0-.789.978l.448 2.074A2 2 0 0 0 2.614 14h10.71a2 2 0 0 0 1.97-1.65l.531-2.995a.835.835 0 0 0-.245-.752ZM2.083 9.995a1.255 1.255 0 0 1-.559.51l.357 1.653a.75.75 0 0 0 .733.592h10.71a.75.75 0 0 0 .738-.619l.463-2.604a1.255 1.255 0 0 1-.608-.532H8.495a.37.37 0 0 0-.37.37.63.63 0 0 1-.63.63H2.083Zm11.667-2.25V4a.75.75 0 0 0-.75-.75H8a1.75 1.75 0 0 1-1.582-1H3a.75.75 0 0 0-.75.75v5.745h4.748c.243-.587.822-1 1.497-1h5.255Z" clip-rule="evenodd"/><path d="M4 5.625C4 5.28 4.28 5 4.625 5h1.75a.625.625 0 1 1 0 1.25h-1.75A.625.625 0 0 1 4 5.625ZM4 7.625C4 7.28 4.28 7 4.625 7h1.75a.625.625 0 1 1 0 1.25h-1.75A.625.625 0 0 1 4 7.625Z"/></svg>
|
After Width: | Height: | Size: 924 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M14 3.25H2a.75.75 0 0 0-.75.75v8c0 .414.336.75.75.75h12a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75ZM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="m8.925 9.755.023.015-.028-.118a1.732 1.732 0 0 1 .54-1.709l.152-.132-.142-.01A1.7 1.7 0 0 1 8.005 6.71L8 6.696l-.005.013-1.167-.448.755-1.967a.442.442 0 0 1 .834 0l.755 1.967a.451.451 0 0 0 .386.293l2.023.144c.404.028.568.557.257.828l-1.555 1.359a.482.482 0 0 0-.148.474l.495 2.056c.098.41-.332.737-.674.512L8.239 10.8a.432.432 0 0 0-.478 0l-1.717 1.127c-.342.225-.772-.102-.674-.512l.495-2.056a.482.482 0 0 0-.148-.474L4.162 7.526c-.31-.271-.147-.8.257-.828l2.023-.144.088 1.247-.142.01.152.132c.493.43.688 1.095.54 1.709l-.028.118.023-.015a1.682 1.682 0 0 1 1.85 0ZM6.828 6.26a.451.451 0 0 1-.386.293l.088 1.247A1.7 1.7 0 0 0 7.995 6.71" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 1 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M14 2.25H2a.75.75 0 0 0-.75.75v10c0 .414.336.75.75.75h12a.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75ZM2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="m8 5.842-.377.94a1.5 1.5 0 0 1-1.291.937l-1.01.069.777.65a1.5 1.5 0 0 1 .493 1.516l-.247.983.857-.539a1.5 1.5 0 0 1 1.596 0l.857.539-.247-.983a1.5 1.5 0 0 1 .493-1.517l.778-.65-1.011-.068a1.5 1.5 0 0 1-1.29-.937L8 5.842Zm.464-1.528a.5.5 0 0 0-.928 0l-.841 2.095a.5.5 0 0 1-.43.313l-2.254.152a.5.5 0 0 0-.286.883l1.733 1.448a.5.5 0 0 1 .164.505L5.07 11.9a.5.5 0 0 0 .75.546l1.913-1.2a.5.5 0 0 1 .532 0l1.912 1.2a.5.5 0 0 0 .751-.546l-.55-2.19a.5.5 0 0 1 .163-.505l1.733-1.448a.5.5 0 0 0-.286-.883l-2.253-.152a.5.5 0 0 1-.43-.313l-.842-2.095Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 962 B |
1
.config/firefox/chrome.bak/icons/broom.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M6.058 9.942a.625.625 0 0 1 0-.884l7.87-7.87a.625.625 0 1 1 .884.884l-7.87 7.87a.625.625 0 0 1-.884 0Z" clip-rule="evenodd"/><path d="M3.87 6.414a2 2 0 0 1 2.828 0l2.888 2.888a2 2 0 0 1 0 2.829l-.73.73L3.14 7.143l.73-.73Z"/><path fill-rule="evenodd" d="m3.495 7.953-1.269.505 5.316 5.316.505-1.269-4.552-4.552Zm6.018 4.25L3.797 6.487l-2.386.95a1 1 0 0 0-.337 1.637l5.852 5.852a1 1 0 0 0 1.636-.337l.951-2.386Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 607 B |
|
@ -1,3 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path fill="context-fill" fill-opacity="context-fill-opacity" d="M15,13.47H12.32a5,5,0,0,1-8.66,0H1v-2H3c0-.16,0-.33,0-.49V10H1V8H3V7a5,5,0,0,1,0-.51H1v-2H3.68A5,5,0,0,1,5,2.94l-1.5-1.5L5,0l2,2a5,5,0,0,1,2,0l2-2,1.41,1.41L10.95,2.95a5,5,0,0,1,1.36,1.52H15v2H13A5,5,0,0,1,13,7V8h2v2H13v1c0,.17,0,.33,0,.49h2Zm-5.51-7h-3V8h3Zm0,3.49h-3v1.5h3Z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path d="M5 5a3 3 0 0 1 6 0v7a3 3 0 1 1-6 0V5Z"/><path fill-rule="evenodd" d="M6.369 0c.345 0 .625.28.625.625v1.371a1.006 1.006 0 0 0 2.012 0V.626a.625.625 0 1 1 1.25 0v1.37a2.256 2.256 0 1 1-4.512 0V.626c0-.346.28-.626.625-.626ZM2.627 1c.345 0 .625.28.625.626v1.871c0 .76.616 1.376 1.376 1.376h6.745c.76 0 1.376-.616 1.376-1.376V1.626a.625.625 0 0 1 1.25 0v1.871a2.627 2.627 0 0 1-2.626 2.627H4.628A2.627 2.627 0 0 1 2 3.497V1.626c0-.345.28-.625.626-.625ZM0 8.63c0-.345.28-.625.625-.625h14.75a.625.625 0 1 1 0 1.25H.625A.625.625 0 0 1 0 8.63Zm4.628 3.498c-.76 0-1.376.616-1.376 1.375v1.872a.625.625 0 1 1-1.25 0v-1.872a2.627 2.627 0 0 1 2.626-2.626h6.745a2.627 2.627 0 0 1 2.626 2.626v1.872a.625.625 0 1 1-1.25 0v-1.872c0-.76-.616-1.375-1.376-1.375H4.628Z" clip-rule="evenodd"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 435 B After Width: | Height: | Size: 925 B |
1
.config/firefox/chrome.bak/icons/calendar-agenda.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M13 2.25H3a.75.75 0 0 0-.75.75v10c0 .414.336.75.75.75h10a.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75ZM3 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H3Z" clip-rule="evenodd"/><path d="M4 4.625C4 4.28 4.28 4 4.625 4h6.75a.625.625 0 1 1 0 1.25h-6.75A.625.625 0 0 1 4 4.625ZM4 7.995c0-.345.28-.625.625-.625h6.75a.625.625 0 1 1 0 1.25h-6.75A.625.625 0 0 1 4 7.995ZM4 11.375c0-.345.28-.625.625-.625h6.75a.625.625 0 1 1 0 1.25h-6.75A.625.625 0 0 1 4 11.375Z"/></svg>
|
After Width: | Height: | Size: 649 B |
1
.config/firefox/chrome.bak/icons/characterEncoding.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M13 2.25H3a.75.75 0 0 0-.75.75v10c0 .414.336.75.75.75h10a.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75ZM3 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H3Z" clip-rule="evenodd"/><path d="M9.829 5c.453 0 .841.11 1.164.327.327.219.578.523.752.914.173.391.258.844.255 1.358v.554H8.378c.014.711.162 1.24.444 1.585.283.341.69.512 1.221.512.34 0 .642-.034.905-.1a4.5 4.5 0 0 0 .807-.296v.771c-.28.13-.554.225-.823.285-.265.06-.57.09-.914.09-.327 0-.627-.047-.9-.143a2.184 2.184 0 0 1-.714-.427 2.394 2.394 0 0 1-.511-.698 3.4 3.4 0 0 1-.516.671c-.188.19-.41.338-.67.444-.258.102-.57.153-.934.153-.34 0-.646-.062-.915-.185a1.425 1.425 0 0 1-.628-.56c-.153-.25-.23-.567-.23-.95 0-.384.094-.708.281-.972.19-.268.475-.474.853-.618.382-.148.857-.23 1.425-.248l.95-.043V7.05c0-.49-.107-.832-.321-1.03-.215-.2-.506-.3-.874-.3-.276 0-.548.043-.817.131a4.834 4.834 0 0 0-.756.312l-.266-.666a4.08 4.08 0 0 1 .884-.343c.34-.095.681-.142 1.022-.142.439 0 .798.079 1.077.237.283.159.49.416.624.771.18-.32.419-.57.715-.75.296-.18.64-.269 1.032-.269Zm-2.34 3.042-.802.037c-.657.028-1.122.146-1.395.354-.272.208-.408.502-.408.882 0 .331.092.576.276.734.187.159.436.238.745.238.307 0 .58-.063.818-.19s.426-.317.562-.57c.136-.254.204-.571.204-.951v-.534Zm2.33-2.324c-.413 0-.743.15-.991.45-.25.295-.392.726-.43 1.293h2.703a2.667 2.667 0 0 0-.133-.913 1.265 1.265 0 0 0-.424-.613c-.19-.145-.433-.217-.725-.217Z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
3
.config/firefox/chrome.bak/icons/checkmark-circle.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm0 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333zM7 9.39l3.827-3.838a.667.667 0 0 1 1.021.85l-.077.092-4.299 4.31a.667.667 0 0 1-.851.078l-.092-.077L4.195 8.47a.667.667 0 0 1 .85-1.02l.093.078L7 9.389l3.828-3.837z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 422 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="context-fill" fill-opacity="context-fill-opacity" d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 265 B |
1
.config/firefox/chrome.bak/icons/code.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M11.188 5.058a.625.625 0 0 1 .884 0l2.146 2.147c.44.439.44 1.151 0 1.59l-2.146 2.147a.625.625 0 1 1-.884-.884L13.246 8l-2.058-2.058a.625.625 0 0 1 0-.884ZM9.557 3.034c.33.103.513.454.41.783l-2.74 8.74a.625.625 0 0 1-1.193-.374l2.74-8.74a.625.625 0 0 1 .783-.41ZM4.812 5.058a.625.625 0 0 1 0 .884L2.754 8l2.058 2.058a.625.625 0 1 1-.884.884L1.782 8.796a1.125 1.125 0 0 1 0-1.591l2.146-2.147a.625.625 0 0 1 .884 0Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 610 B |
1
.config/firefox/chrome.bak/icons/command-console.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="context-fill" fill-opacity="context-fill-opacity"><path fill-rule="evenodd" d="M1.005 3.63A2.625 2.625 0 0 1 3.63 1.005h8.75a2.625 2.625 0 0 1 2.625 2.625v8.77a2.625 2.625 0 0 1-2.625 2.624H3.63A2.625 2.625 0 0 1 1.005 12.4V3.63ZM3.63 2.255c-.76 0-1.375.616-1.375 1.375v1.298h11.5V3.63c0-.76-.616-1.375-1.375-1.375H3.63Zm10.125 3.923h-11.5V12.4c0 .76.616 1.375 1.375 1.375h8.75c.76 0 1.375-.615 1.375-1.375V6.18Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M3.546 7.2a.625.625 0 0 1 .884-.024l2.117 2.008c.468.443.468 1.189 0 1.632L4.43 12.824a.625.625 0 1 1-.86-.908L5.592 10 3.57 8.084a.625.625 0 0 1-.024-.884Z" clip-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 739 B |