diff --git a/aliases/zsh_aliases b/aliases/zsh_aliases
index d236741..e9cb15a 100644
--- a/aliases/zsh_aliases
+++ b/aliases/zsh_aliases
@@ -1,8 +1,4 @@
# system {{{ #
-HISTFILE=~/.histfile
-HISTSIZE=10000
-SAVEHIST=10000
-setopt appendhistory autocd extendedglob nomatch notify
# vim mode {{{ #
bindkey -v
@@ -62,10 +58,14 @@ alias ctls="systemctl start"
# directory-related {{{ #
alias l='ls -a'
alias ll='ls -alFh'
-function f() { cd $1 && pwd > ~/.last_dir && ls -a ; }
+# alias f="cd"
+function f() { cd $1 && pwd > ~/.last_dir ; }
+# function f() { cd $1 && pwd > ~/.last_dir && ls -a ; }
+
# restore last dir
if [ -f ~/.last_dir ]
- then cd `cat ~/.last_dir`
+ # then cd `cat ~/.last_dir`
+ then f `cat ~/.last_dir`
fi
alias rmr="rm -rf"
alias mdp="mkdir -p"
@@ -81,7 +81,7 @@ alias nbu="f /run/media/kevin/pc-backup/backups/nzxt && ll | grep gz"
# }}} directory-related #
# power options {{{ #
-alias s="systemctl suspend"
+alias p="systemctl suspend"
alias sd="sudo shutdown 0"
alias reb="sudo shutdown -r 0"
alias lo="i3-msg exit"
@@ -130,16 +130,17 @@ alias tri="trizen -S"
# config files {{{ #
function gz() { grep $1 ~/linux-config/aliases/zsh_aliases ; }
+alias rz="source ~/linux-config/aliases/zsh_aliases"
+alias tst="echo a"
alias lca="f ~/linux-config/aliases"
-source ~/.shortcuts
# i3
alias i3b="f ~/i3blocks"
alias pipes="pipes.sh -t 3"
# UltiSnips {{{ #
urnp_dir="~/.vim/plugged/vim-snippets/UltiSnips"
-function vsnp() { ni ~/.vim/plugged/vim-snippets/UltiSnips/"$1".snippets ; }
+function vsnp() { nvim ~/.vim/plugged/vim-snippets/UltiSnips/"$1".snippets ; }
# }}} #
# }}} config files #
@@ -197,6 +198,7 @@ alias gac="git add -A . && git commit"
# diff/log {{{ #
alias gd="git diff -w"
+function gde() { git diff --cached -- ':(exclude)'$1 ; }
alias gdc="git diff --cached"
alias gds="git diff --stat"
alias gdt="git difftool --tool=vimdiff"
@@ -342,7 +344,7 @@ alias hs="$spv_dir/src/update-history.sh && hlg"
# function svm() { mv $1 ~/.local/share/Steam/steamapps/common/Stardew\ Valley/Mods ; }
# # }}}
-alias shc="cs && shellcheck"
+alias s="cs && shellcheck"
# }}} coding projs #
diff --git a/dotfiles/Xmodmap b/dotfiles/.Xmodmap
similarity index 100%
rename from dotfiles/Xmodmap
rename to dotfiles/.Xmodmap
diff --git a/dotfiles/Xresources b/dotfiles/.Xresources
similarity index 100%
rename from dotfiles/Xresources
rename to dotfiles/.Xresources
diff --git a/dotfiles/bashrc b/dotfiles/.bashrc
similarity index 100%
rename from dotfiles/bashrc
rename to dotfiles/.bashrc
diff --git a/dotfiles/gitconfig b/dotfiles/.gitconfig
similarity index 100%
rename from dotfiles/gitconfig
rename to dotfiles/.gitconfig
diff --git a/dotfiles/imwheelrc b/dotfiles/.imwheelrc
similarity index 100%
rename from dotfiles/imwheelrc
rename to dotfiles/.imwheelrc
diff --git a/dotfiles/inputrc b/dotfiles/.inputrc
similarity index 100%
rename from dotfiles/inputrc
rename to dotfiles/.inputrc
diff --git a/dotfiles/nvim b/dotfiles/.nvim
similarity index 100%
rename from dotfiles/nvim
rename to dotfiles/.nvim
diff --git a/dotfiles/vimrc b/dotfiles/.vimrc
similarity index 98%
rename from dotfiles/vimrc
rename to dotfiles/.vimrc
index 2e59457..21edb35 100644
--- a/dotfiles/vimrc
+++ b/dotfiles/.vimrc
@@ -34,11 +34,12 @@ set hlsearch
autocmd VimResized * wincmd =
autocmd BufNewFile,BufRead .* set syntax=sh
autocmd Filetype css,htmldjango,html,tex,txt,markdown set tabstop=2 shiftwidth=2 expandtab
+autocmd BufRead commit-msg.txt set filetype=gitcommit
autocmd BufNewFile,BufRead *.md set filetype=markdown
autocmd Filetype markdown set textwidth=0
autocmd BufWritePost key_*.txt !sync-shortcuts
-autocmd VimLeave *.tex !texclear %
+autocmd VimLeave *.tex !tex-clean %
" " auto-reload vimrc {{{ "
diff --git a/dotfiles/xinitrc b/dotfiles/.xinitrc
similarity index 100%
rename from dotfiles/xinitrc
rename to dotfiles/.xinitrc
diff --git a/dotfiles/zshrc b/dotfiles/.zshrc
similarity index 82%
rename from dotfiles/zshrc
rename to dotfiles/.zshrc
index 66f19e2..9686dd6 100644
--- a/dotfiles/zshrc
+++ b/dotfiles/.zshrc
@@ -4,6 +4,11 @@ ZSH_THEME="bira"
# default {{{ #
+HISTFILE=~/.histfile
+HISTSIZE=10000
+SAVEHIST=10000
+setopt appendhistory autocd extendedglob nomatch notify
+
# If you come from bash you might have to change your $PATH.
# Path to your oh-my-zsh installation.
@@ -123,4 +128,32 @@ then
fi
source /home/kevin/.shortcuts
+# autoreload zsh aliases {{{ #
+
+# File containing aliases;
+ALIAS_FILE="$HOME/linux-config/aliases/zsh_aliases"
+
+reload_aliases () {
+ # do nothing if there is no $ALIAS_FILE
+ [[ -e ALIAS_FILE ]] || return 1
+ # check if $ALIAS_FILE has been modified since last reload
+ # the modifier `(:A)` resolves any symbolic links
+ if [[ $LAST_ALIAS_RELOAD < $(stat -c %Y ${ALIAS_FILE}(:A)) ]]; then
+ # load aliases
+ source $ALIAS_FILE
+ # update date of last reload
+ LAST_ALIAS_RELOAD=$(date +%s)
+ fi
+}
+
+# make reload_aliases to be run before each prompt
+autoload -Uz add-zsh-hook
+add-zsh-hook precmd reload_aliases
+
+# }}} autoreload zsh aliases #
+
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
+
+# autoload -U add-zsh-hook
+add-zsh-hook -Uz chpwd (){ ls -a; }
+
diff --git a/gtk/themes/Sweet-Dark/LICENSE b/gtk/themes/Sweet-Dark/LICENSE
new file mode 100644
index 0000000..9cecc1d
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ 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 .
+
+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:
+
+ {project} Copyright (C) {year} {fullname}
+ 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
+.
+
+ 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
+.
diff --git a/gtk/themes/Sweet-Dark/README.md b/gtk/themes/Sweet-Dark/README.md
new file mode 100644
index 0000000..12e8fb7
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/README.md
@@ -0,0 +1,16 @@
+
+![](Art/Sweet-theme.png)
+
+
+#### Installation
+
+Extract the zip file to the themes directory i.e. `/usr/share/themes/` or `~/.themes/` (create it if necessary).
+
+To set the theme in Gnome, run the following commands in Terminal,
+
+```
+gsettings set org.gnome.desktop.interface gtk-theme "Sweet"
+gsettings set org.gnome.desktop.wm.preferences theme "Sweet"
+```
+or Change via distribution specific tool.
+
diff --git a/gtk/themes/Sweet-Dark/assets/calendar-selected.png b/gtk/themes/Sweet-Dark/assets/calendar-selected.png
new file mode 100644
index 0000000..9231290
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/calendar-selected.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-active-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-active-dark.png
new file mode 100644
index 0000000..91974a8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-active-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-active.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-active.png
new file mode 100644
index 0000000..11713fc
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-active@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-active@2.png
new file mode 100644
index 0000000..02ace0e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-active@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop-dark.png
new file mode 100644
index 0000000..84bb29b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop.png
new file mode 100644
index 0000000..3bdd958
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop@2.png
new file mode 100644
index 0000000..d09b34c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-dark.png
new file mode 100644
index 0000000..86b9bef
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover-dark.png
new file mode 100644
index 0000000..84bb29b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover.png
new file mode 100644
index 0000000..3bdd958
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover@2.png
new file mode 100644
index 0000000..d09b34c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop-dark.png
new file mode 100644
index 0000000..30f90eb
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop.png
new file mode 100644
index 0000000..2dc2b7f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop@2.png
new file mode 100644
index 0000000..365426e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-dark.png
new file mode 100644
index 0000000..30f90eb
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive.png
new file mode 100644
index 0000000..2dc2b7f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive@2.png
new file mode 100644
index 0000000..365426e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked.png
new file mode 100644
index 0000000..ced744f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-checked@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-checked@2.png
new file mode 100644
index 0000000..61891bd
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active-dark.png
new file mode 100644
index 0000000..46f3294
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active.png
new file mode 100644
index 0000000..2ec13e6
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active@2.png
new file mode 100644
index 0000000..76af827
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-active@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop-dark.png
new file mode 100644
index 0000000..e72a86d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop.png
new file mode 100644
index 0000000..165dfa9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop@2.png
new file mode 100644
index 0000000..b547183
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-dark.png
new file mode 100644
index 0000000..e72a86d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover-dark.png
new file mode 100644
index 0000000..e72a86d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover.png
new file mode 100644
index 0000000..165dfa9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover@2.png
new file mode 100644
index 0000000..b547183
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop-dark.png
new file mode 100644
index 0000000..a56c2c4
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop.png
new file mode 100644
index 0000000..6a138a8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop@2.png
new file mode 100644
index 0000000..2237059
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-dark.png
new file mode 100644
index 0000000..a56c2c4
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive.png
new file mode 100644
index 0000000..6a138a8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive@2.png
new file mode 100644
index 0000000..2237059
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed.png
new file mode 100644
index 0000000..165dfa9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-mixed@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-mixed@2.png
new file mode 100644
index 0000000..b547183
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-mixed@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active-dark.png
new file mode 100644
index 0000000..0777ec7
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active.png
new file mode 100644
index 0000000..dd4ce43
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active@2.png
new file mode 100644
index 0000000..9fbe2d2
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-active@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop-dark.png
new file mode 100644
index 0000000..03b484e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop.png
new file mode 100644
index 0000000..d2b6816
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop@2.png
new file mode 100644
index 0000000..8b2b943
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-dark.png
new file mode 100644
index 0000000..03b484e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover-dark.png
new file mode 100644
index 0000000..134df56
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover.png
new file mode 100644
index 0000000..72c58d9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover@2.png
new file mode 100644
index 0000000..7d28707
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop-dark.png
new file mode 100644
index 0000000..307f22b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop.png
new file mode 100644
index 0000000..1ea8200
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop@2.png
new file mode 100644
index 0000000..a75827b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-dark.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-dark.png
new file mode 100644
index 0000000..307f22b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive.png
new file mode 100644
index 0000000..1ea8200
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive@2.png
new file mode 100644
index 0000000..a75827b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked.png
new file mode 100644
index 0000000..d2b6816
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/checkbox-unchecked@2.png b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked@2.png
new file mode 100644
index 0000000..8b2b943
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/checkbox-unchecked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/close.png b/gtk/themes/Sweet-Dark/assets/close.png
new file mode 100644
index 0000000..a997df6
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/close.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/close.svg b/gtk/themes/Sweet-Dark/assets/close.svg
new file mode 100755
index 0000000..ae977f3
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/close.svg
@@ -0,0 +1,102 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/close@2.png b/gtk/themes/Sweet-Dark/assets/close@2.png
new file mode 100755
index 0000000..1aeb299
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/close@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/close_prelight.png b/gtk/themes/Sweet-Dark/assets/close_prelight.png
new file mode 100644
index 0000000..73405fc
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/close_prelight.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/close_prelight.svg b/gtk/themes/Sweet-Dark/assets/close_prelight.svg
new file mode 100755
index 0000000..d1d5e57
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/close_prelight.svg
@@ -0,0 +1,88 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/close_prelight@2.png b/gtk/themes/Sweet-Dark/assets/close_prelight@2.png
new file mode 100644
index 0000000..7314e97
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/close_prelight@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/close_pressed.svg b/gtk/themes/Sweet-Dark/assets/close_pressed.svg
new file mode 100755
index 0000000..0e9584a
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/close_pressed.svg
@@ -0,0 +1,98 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/close_unfocused.png b/gtk/themes/Sweet-Dark/assets/close_unfocused.png
new file mode 100644
index 0000000..1807b93
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/close_unfocused.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/close_unfocused.svg b/gtk/themes/Sweet-Dark/assets/close_unfocused.svg
new file mode 100755
index 0000000..d1011fa
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/close_unfocused.svg
@@ -0,0 +1,88 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/close_unfocused@2.png b/gtk/themes/Sweet-Dark/assets/close_unfocused@2.png
new file mode 100644
index 0000000..915522b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/close_unfocused@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/grid-selection-checked.png b/gtk/themes/Sweet-Dark/assets/grid-selection-checked.png
new file mode 100755
index 0000000..9118717
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/grid-selection-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/grid-selection-checked@2.png b/gtk/themes/Sweet-Dark/assets/grid-selection-checked@2.png
new file mode 100755
index 0000000..b47379e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/grid-selection-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/grid-selection-unchecked.png b/gtk/themes/Sweet-Dark/assets/grid-selection-unchecked.png
new file mode 100755
index 0000000..508eea8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/grid-selection-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/grid-selection-unchecked@2.png b/gtk/themes/Sweet-Dark/assets/grid-selection-unchecked@2.png
new file mode 100755
index 0000000..d8c6bf0
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/grid-selection-unchecked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/maximize.png b/gtk/themes/Sweet-Dark/assets/maximize.png
new file mode 100644
index 0000000..23af861
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/maximize.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/maximize.svg b/gtk/themes/Sweet-Dark/assets/maximize.svg
new file mode 100755
index 0000000..2e6bd60
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/maximize.svg
@@ -0,0 +1,114 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/maximize@2.png b/gtk/themes/Sweet-Dark/assets/maximize@2.png
new file mode 100755
index 0000000..fc25c39
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/maximize@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/maximize_prelight.png b/gtk/themes/Sweet-Dark/assets/maximize_prelight.png
new file mode 100644
index 0000000..f32e192
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/maximize_prelight.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/maximize_prelight.svg b/gtk/themes/Sweet-Dark/assets/maximize_prelight.svg
new file mode 100755
index 0000000..bb4bef6
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/maximize_prelight.svg
@@ -0,0 +1,116 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/maximize_prelight@2.png b/gtk/themes/Sweet-Dark/assets/maximize_prelight@2.png
new file mode 100755
index 0000000..16ca392
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/maximize_prelight@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/maximize_pressed.svg b/gtk/themes/Sweet-Dark/assets/maximize_pressed.svg
new file mode 100755
index 0000000..2a4397a
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/maximize_pressed.svg
@@ -0,0 +1,102 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/maximize_unfocused.png b/gtk/themes/Sweet-Dark/assets/maximize_unfocused.png
new file mode 100644
index 0000000..1807b93
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/maximize_unfocused.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/maximize_unfocused.svg b/gtk/themes/Sweet-Dark/assets/maximize_unfocused.svg
new file mode 100755
index 0000000..b9fc206
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/maximize_unfocused.svg
@@ -0,0 +1,88 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-hover.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-hover.png
new file mode 100755
index 0000000..74a1a38
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-hover@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-hover@2.png
new file mode 100755
index 0000000..6bb911f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-insensitive.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-insensitive.png
new file mode 100755
index 0000000..2186347
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-insensitive@2.png
new file mode 100755
index 0000000..85a7237
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked.png
new file mode 100755
index 0000000..59e1524
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked@2.png
new file mode 100755
index 0000000..fabd74d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-hover.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-hover.png
new file mode 100755
index 0000000..aa5e700
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-hover@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-hover@2.png
new file mode 100755
index 0000000..24fff4c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-insensitive.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-insensitive.png
new file mode 100755
index 0000000..9ba1e17
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-insensitive@2.png
new file mode 100755
index 0000000..4cb0736
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-selected.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-selected.png
new file mode 100755
index 0000000..2064a63
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-selected.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-selected@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-selected@2.png
new file mode 100755
index 0000000..900ccea
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed-selected@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed.png
new file mode 100755
index 0000000..9b7c144
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed@2.png
new file mode 100755
index 0000000..e32aa1c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-mixed@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-unchecked.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-unchecked.png
new file mode 100755
index 0000000..921e346
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-unchecked@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-unchecked@2.png
new file mode 100755
index 0000000..53ca843
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-checkbox-unchecked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-hover.png b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-hover.png
new file mode 100755
index 0000000..c084e40
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-hover@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-hover@2.png
new file mode 100755
index 0000000..cdbab86
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-insensitive.png b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-insensitive.png
new file mode 100755
index 0000000..2b08b40
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-insensitive@2.png
new file mode 100755
index 0000000..0d2ad9b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked.png b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked.png
new file mode 100755
index 0000000..45681b9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked@2.png b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked@2.png
new file mode 100755
index 0000000..e986329
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/menuitem-radio-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/min.png b/gtk/themes/Sweet-Dark/assets/min.png
new file mode 100644
index 0000000..9498c25
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/min.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/min.svg b/gtk/themes/Sweet-Dark/assets/min.svg
new file mode 100755
index 0000000..ad3f553
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/min.svg
@@ -0,0 +1,127 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/min@2.png b/gtk/themes/Sweet-Dark/assets/min@2.png
new file mode 100755
index 0000000..ef0574c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/min@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/min_prelight.png b/gtk/themes/Sweet-Dark/assets/min_prelight.png
new file mode 100644
index 0000000..0179918
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/min_prelight.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/min_prelight.svg b/gtk/themes/Sweet-Dark/assets/min_prelight.svg
new file mode 100755
index 0000000..28c6dc5
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/min_prelight.svg
@@ -0,0 +1,93 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/min_prelight@2.png b/gtk/themes/Sweet-Dark/assets/min_prelight@2.png
new file mode 100644
index 0000000..a58f31e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/min_prelight@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/min_pressed.svg b/gtk/themes/Sweet-Dark/assets/min_pressed.svg
new file mode 100755
index 0000000..4dccd92
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/min_pressed.svg
@@ -0,0 +1,111 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/min_unfocused.png b/gtk/themes/Sweet-Dark/assets/min_unfocused.png
new file mode 100644
index 0000000..1807b93
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/min_unfocused.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/min_unfocused.svg b/gtk/themes/Sweet-Dark/assets/min_unfocused.svg
new file mode 100755
index 0000000..b9fc206
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/min_unfocused.svg
@@ -0,0 +1,88 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/pane-handle-vertical.png b/gtk/themes/Sweet-Dark/assets/pane-handle-vertical.png
new file mode 100755
index 0000000..36ed49d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/pane-handle-vertical.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/pane-handle-vertical@2.png b/gtk/themes/Sweet-Dark/assets/pane-handle-vertical@2.png
new file mode 100755
index 0000000..3e20126
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/pane-handle-vertical@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/pane-handle.png b/gtk/themes/Sweet-Dark/assets/pane-handle.png
new file mode 100755
index 0000000..05c8865
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/pane-handle.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/pane-handle@2.png b/gtk/themes/Sweet-Dark/assets/pane-handle@2.png
new file mode 100755
index 0000000..35b9898
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/pane-handle@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/qcheckbox-checked-active.png b/gtk/themes/Sweet-Dark/assets/qcheckbox-checked-active.png
new file mode 100644
index 0000000..3bdd958
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/qcheckbox-checked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-active-dark.png b/gtk/themes/Sweet-Dark/assets/radio-checked-active-dark.png
new file mode 100644
index 0000000..d400582
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-active-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-active.png b/gtk/themes/Sweet-Dark/assets/radio-checked-active.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-active@2.png b/gtk/themes/Sweet-Dark/assets/radio-checked-active@2.png
new file mode 100644
index 0000000..708fa2e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-active@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop-dark.png
new file mode 100644
index 0000000..d400582
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop.png b/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop@2.png
new file mode 100644
index 0000000..708fa2e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-dark.png b/gtk/themes/Sweet-Dark/assets/radio-checked-dark.png
new file mode 100644
index 0000000..d400582
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-hover-dark.png b/gtk/themes/Sweet-Dark/assets/radio-checked-hover-dark.png
new file mode 100644
index 0000000..d400582
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-hover-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-hover.png b/gtk/themes/Sweet-Dark/assets/radio-checked-hover.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-hover@2.png b/gtk/themes/Sweet-Dark/assets/radio-checked-hover@2.png
new file mode 100644
index 0000000..708fa2e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop-dark.png
new file mode 100644
index 0000000..f30909a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop.png b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop.png
new file mode 100644
index 0000000..07cf602
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop@2.png
new file mode 100644
index 0000000..4fff6c0
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-dark.png b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-dark.png
new file mode 100644
index 0000000..1f6a287
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive.png b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive.png
new file mode 100644
index 0000000..e6321b0
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive@2.png
new file mode 100644
index 0000000..f402fe7
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked.png b/gtk/themes/Sweet-Dark/assets/radio-checked.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-checked@2.png b/gtk/themes/Sweet-Dark/assets/radio-checked@2.png
new file mode 100644
index 0000000..708fa2e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-active-dark.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-active-dark.png
new file mode 100644
index 0000000..ef8cb69
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-active-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-active.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-active.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-active@2.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-active@2.png
new file mode 100644
index 0000000..db7dc61
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-active@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop-dark.png
new file mode 100644
index 0000000..ef8cb69
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop@2.png
new file mode 100644
index 0000000..db7dc61
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-dark.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-dark.png
new file mode 100644
index 0000000..ef8cb69
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-hover-dark.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-hover-dark.png
new file mode 100644
index 0000000..ef8cb69
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-hover-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-hover.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-hover.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-hover@2.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-hover@2.png
new file mode 100644
index 0000000..db7dc61
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop-dark.png
new file mode 100644
index 0000000..d51669c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop.png
new file mode 100644
index 0000000..04bc827
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop@2.png
new file mode 100644
index 0000000..51d7708
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-dark.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-dark.png
new file mode 100644
index 0000000..d51669c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive.png
new file mode 100644
index 0000000..04bc827
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive@2.png
new file mode 100644
index 0000000..51d7708
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed.png b/gtk/themes/Sweet-Dark/assets/radio-mixed.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-mixed@2.png b/gtk/themes/Sweet-Dark/assets/radio-mixed@2.png
new file mode 100644
index 0000000..db7dc61
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-mixed@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-selected-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/radio-selected-insensitive@2.png
new file mode 100755
index 0000000..f928dbc
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-selected-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-selected@2.png b/gtk/themes/Sweet-Dark/assets/radio-selected@2.png
new file mode 100755
index 0000000..dea193a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-selected@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-active-dark.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-active-dark.png
new file mode 100644
index 0000000..ee0d9f1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-active-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-active.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-active.png
new file mode 100644
index 0000000..e46a6a5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-active@2.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-active@2.png
new file mode 100644
index 0000000..3592336
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-active@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop-dark.png
new file mode 100644
index 0000000..2cd11b1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop.png
new file mode 100644
index 0000000..451b340
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop@2.png
new file mode 100644
index 0000000..eada512
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-dark.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-dark.png
new file mode 100644
index 0000000..edfa964
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover-dark.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover-dark.png
new file mode 100644
index 0000000..ee0d9f1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover.png
new file mode 100644
index 0000000..e46a6a5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover@2.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover@2.png
new file mode 100644
index 0000000..3592336
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop-dark.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop-dark.png
new file mode 100644
index 0000000..9a442ab
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop.png
new file mode 100644
index 0000000..925c40f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop@2.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop@2.png
new file mode 100644
index 0000000..d409c79
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-backdrop@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-dark.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-dark.png
new file mode 100644
index 0000000..9b495c7
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive.png
new file mode 100644
index 0000000..2555d5b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive@2.png
new file mode 100644
index 0000000..cfd71cf
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked.png
new file mode 100644
index 0000000..e575d21
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unchecked@2.png b/gtk/themes/Sweet-Dark/assets/radio-unchecked@2.png
new file mode 100644
index 0000000..51e4e86
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unchecked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unselected-hover@2.png b/gtk/themes/Sweet-Dark/assets/radio-unselected-hover@2.png
new file mode 100755
index 0000000..64c745f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unselected-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unselected-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/radio-unselected-insensitive@2.png
new file mode 100755
index 0000000..bbc0bda
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unselected-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unselected.svg b/gtk/themes/Sweet-Dark/assets/radio-unselected.svg
new file mode 100755
index 0000000..9c78339
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/radio-unselected.svg
@@ -0,0 +1,84 @@
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/radio-unselected@2.png b/gtk/themes/Sweet-Dark/assets/radio-unselected@2.png
new file mode 100755
index 0000000..0c01111
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/radio-unselected@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/scale-slider-hover.svg b/gtk/themes/Sweet-Dark/assets/scale-slider-hover.svg
new file mode 100644
index 0000000..d2c5c93
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/scale-slider-hover.svg
@@ -0,0 +1,90 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/scale-slider-hover@2.png b/gtk/themes/Sweet-Dark/assets/scale-slider-hover@2.png
new file mode 100755
index 0000000..d64f411
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/scale-slider-hover@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/scale-slider-insensitive.png b/gtk/themes/Sweet-Dark/assets/scale-slider-insensitive.png
new file mode 100755
index 0000000..20d278d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/scale-slider-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/scale-slider-insensitive@2.png b/gtk/themes/Sweet-Dark/assets/scale-slider-insensitive@2.png
new file mode 100755
index 0000000..20e740d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/scale-slider-insensitive@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/scale-slider.svg b/gtk/themes/Sweet-Dark/assets/scale-slider.svg
new file mode 100644
index 0000000..5a4a425
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/scale-slider.svg
@@ -0,0 +1,65 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/scale-slider@2.png b/gtk/themes/Sweet-Dark/assets/scale-slider@2.png
new file mode 100755
index 0000000..1a860df
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/scale-slider@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked-dark.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked-dark.png
new file mode 100644
index 0000000..91974a8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked.png
new file mode 100644
index 0000000..11713fc
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked@2.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked@2.png
new file mode 100644
index 0000000..02ace0e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed-dark.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed-dark.png
new file mode 100644
index 0000000..46f3294
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed.png
new file mode 100644
index 0000000..2ec13e6
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed@2.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed@2.png
new file mode 100644
index 0000000..76af827
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-mixed@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked-dark.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked-dark.png
new file mode 100644
index 0000000..0777ec7
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked.png
new file mode 100644
index 0000000..dd4ce43
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked@2.png b/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked@2.png
new file mode 100644
index 0000000..9fbe2d2
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-checkbox-unchecked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-checked-dark.png b/gtk/themes/Sweet-Dark/assets/selected-radio-checked-dark.png
new file mode 100644
index 0000000..d400582
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-checked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-checked.png b/gtk/themes/Sweet-Dark/assets/selected-radio-checked.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-checked@2.png b/gtk/themes/Sweet-Dark/assets/selected-radio-checked@2.png
new file mode 100644
index 0000000..708fa2e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-checked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-mixed-dark.png b/gtk/themes/Sweet-Dark/assets/selected-radio-mixed-dark.png
new file mode 100644
index 0000000..ef8cb69
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-mixed-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-mixed.png b/gtk/themes/Sweet-Dark/assets/selected-radio-mixed.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-mixed@2.png b/gtk/themes/Sweet-Dark/assets/selected-radio-mixed@2.png
new file mode 100644
index 0000000..db7dc61
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-mixed@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked-dark.png b/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked-dark.png
new file mode 100644
index 0000000..ee0d9f1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked-dark.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked.png b/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked.png
new file mode 100644
index 0000000..e46a6a5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked@2.png b/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked@2.png
new file mode 100644
index 0000000..3592336
Binary files /dev/null and b/gtk/themes/Sweet-Dark/assets/selected-radio-unchecked@2.png differ
diff --git a/gtk/themes/Sweet-Dark/assets/switch-insensitive.svg b/gtk/themes/Sweet-Dark/assets/switch-insensitive.svg
new file mode 100755
index 0000000..30b08fe
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-insensitive.svg
@@ -0,0 +1,371 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-insensitive@2.svg b/gtk/themes/Sweet-Dark/assets/switch-insensitive@2.svg
new file mode 100755
index 0000000..7372b08
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-insensitive@2.svg
@@ -0,0 +1,371 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-off.svg b/gtk/themes/Sweet-Dark/assets/switch-off.svg
new file mode 100755
index 0000000..f5800e1
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-off.svg
@@ -0,0 +1,384 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-off@2.svg b/gtk/themes/Sweet-Dark/assets/switch-off@2.svg
new file mode 100755
index 0000000..f5800e1
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-off@2.svg
@@ -0,0 +1,384 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-on.svg b/gtk/themes/Sweet-Dark/assets/switch-on.svg
new file mode 100755
index 0000000..03cc342
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-on.svg
@@ -0,0 +1,372 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-on@2.svg b/gtk/themes/Sweet-Dark/assets/switch-on@2.svg
new file mode 100755
index 0000000..03cc342
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-on@2.svg
@@ -0,0 +1,372 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-slider-insensitive.svg b/gtk/themes/Sweet-Dark/assets/switch-slider-insensitive.svg
new file mode 100755
index 0000000..9aa5130
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-slider-insensitive.svg
@@ -0,0 +1,11540 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-slider-insensitive@2.svg b/gtk/themes/Sweet-Dark/assets/switch-slider-insensitive@2.svg
new file mode 100755
index 0000000..069b0a3
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-slider-insensitive@2.svg
@@ -0,0 +1,11540 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-slider-off.svg b/gtk/themes/Sweet-Dark/assets/switch-slider-off.svg
new file mode 100755
index 0000000..fd4e313
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-slider-off.svg
@@ -0,0 +1,11523 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-slider-off@2.svg b/gtk/themes/Sweet-Dark/assets/switch-slider-off@2.svg
new file mode 100755
index 0000000..fd4e313
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-slider-off@2.svg
@@ -0,0 +1,11523 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-slider-on.svg b/gtk/themes/Sweet-Dark/assets/switch-slider-on.svg
new file mode 100755
index 0000000..be0b5bb
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-slider-on.svg
@@ -0,0 +1,11523 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/assets/switch-slider-on@2.svg b/gtk/themes/Sweet-Dark/assets/switch-slider-on@2.svg
new file mode 100755
index 0000000..be0b5bb
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/assets/switch-slider-on@2.svg
@@ -0,0 +1,11523 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-arrow-left.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-arrow-left.svg
new file mode 100755
index 0000000..deaa123
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-arrow-left.svg
@@ -0,0 +1,86 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-arrow-right.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-arrow-right.svg
new file mode 100755
index 0000000..626ed7e
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-arrow-right.svg
@@ -0,0 +1,87 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-today.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-today.svg
new file mode 100755
index 0000000..66cfc80
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/calendar-today.svg
@@ -0,0 +1,178 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-focused.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-focused.svg
new file mode 100755
index 0000000..128aae7
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-focused.svg
@@ -0,0 +1,245 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-off-focused.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-off-focused.svg
new file mode 100755
index 0000000..95f4fd3
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-off-focused.svg
@@ -0,0 +1,211 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-off.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-off.svg
new file mode 100755
index 0000000..e817305
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox-off.svg
@@ -0,0 +1,211 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox.svg
new file mode 100755
index 0000000..1b1410c
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/checkbox.svg
@@ -0,0 +1,245 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/close-window.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/close-window.svg
new file mode 100644
index 0000000..99d6db3
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/close-window.svg
@@ -0,0 +1,105 @@
+
+
+
+
\ No newline at end of file
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/corner-ripple-ltr.png b/gtk/themes/Sweet-Dark/gnome-shell/assets/corner-ripple-ltr.png
new file mode 100755
index 0000000..32e14ca
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gnome-shell/assets/corner-ripple-ltr.png differ
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/corner-ripple-rtl.png b/gtk/themes/Sweet-Dark/gnome-shell/assets/corner-ripple-rtl.png
new file mode 100755
index 0000000..1434e7c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gnome-shell/assets/corner-ripple-rtl.png differ
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/dash-placeholder.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/dash-placeholder.svg
new file mode 100755
index 0000000..cbae148
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/dash-placeholder.svg
@@ -0,0 +1,84 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/logged-in-indicator.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/logged-in-indicator.svg
new file mode 100755
index 0000000..c0267ea
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/logged-in-indicator.svg
@@ -0,0 +1,130 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/noise-texture.png b/gtk/themes/Sweet-Dark/gnome-shell/assets/noise-texture.png
new file mode 100755
index 0000000..6b70a2d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gnome-shell/assets/noise-texture.png differ
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/process-working.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/process-working.svg
new file mode 100755
index 0000000..920a67d
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/process-working.svg
@@ -0,0 +1,3084 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/running-indicator.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/running-indicator.svg
new file mode 100755
index 0000000..ebe7ecf
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/running-indicator.svg
@@ -0,0 +1,130 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/source-button-border.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/source-button-border.svg
new file mode 100755
index 0000000..6e5051e
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/source-button-border.svg
@@ -0,0 +1,74 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/toggle-off.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/toggle-off.svg
new file mode 100755
index 0000000..c170357
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/toggle-off.svg
@@ -0,0 +1,242 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/toggle-on.svg b/gtk/themes/Sweet-Dark/gnome-shell/assets/toggle-on.svg
new file mode 100755
index 0000000..c0f9b09
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/assets/toggle-on.svg
@@ -0,0 +1,229 @@
+
+
+
+
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/ws-switch-arrow-down.png b/gtk/themes/Sweet-Dark/gnome-shell/assets/ws-switch-arrow-down.png
new file mode 100644
index 0000000..a674ad5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gnome-shell/assets/ws-switch-arrow-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/assets/ws-switch-arrow-up.png b/gtk/themes/Sweet-Dark/gnome-shell/assets/ws-switch-arrow-up.png
new file mode 100644
index 0000000..1b6f611
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gnome-shell/assets/ws-switch-arrow-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gnome-shell/gnome-shell.css b/gtk/themes/Sweet-Dark/gnome-shell/gnome-shell.css
new file mode 100644
index 0000000..5de9ec3
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gnome-shell/gnome-shell.css
@@ -0,0 +1,1989 @@
+/*****************
+* Drawing mixins *
+*****************/
+/* GLOBALS */
+stage {
+ font-family: Roboto, Ubuntu, Cantarell, Sans-Serif;
+ font-size: 10pt;
+ color: #98abb2; }
+
+/* WIDGETS */
+/* Buttons */
+.button {
+ color: #98abb2;
+ background-color: #0e1018;
+ box-shadow: none;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ border: 1px solid #12151e;
+ border-radius: 4px;
+ border-width: 0;
+ padding: 4px 32px; }
+ .button:focus {
+ color: #c50ed2;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ box-shadow: none;
+ border: 1px solid #12151e; }
+ .button:insensitive {
+ color: #58636d;
+ background-color: rgba(38, 43, 55, 0.66);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.22);
+ border: none;
+ text-shadow: none;
+ icon-shadow: none; }
+ .button:active {
+ color: #c50ed2;
+ background-color: rgba(24, 27, 40, 0.95);
+ border: 1px solid #12151e;
+ text-shadow: none;
+ icon-shadow: none; }
+ .button:hover {
+ color: #c50ed2;
+ background-color: #12151e;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black; }
+
+.modal-dialog-linked-button {
+ padding: 10px;
+ border: 1px solid #12151e;
+ color: #98abb2;
+ background: #0e1018;
+ text-shadow: none;
+ icon-shadow: none;
+ box-shadow: none; }
+ .modal-dialog-linked-button:insensitive {
+ color: #58636d;
+ background-color: rgba(38, 43, 55, 0.66);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.22);
+ border: none;
+ text-shadow: none;
+ icon-shadow: none; }
+ .modal-dialog-linked-button:active {
+ color: #c50ed2;
+ background-color: rgba(24, 27, 40, 0.95);
+ border: 1px solid #12151e;
+ text-shadow: none;
+ icon-shadow: none; }
+ .modal-dialog-linked-button:focus {
+ color: #c50ed2;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ box-shadow: none;
+ border: 1px solid #12151e; }
+ .modal-dialog-linked-button:focus:hover {
+ color: #c50ed2;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ box-shadow: none;
+ border: 1px solid #12151e; }
+ .modal-dialog-linked-button:hover {
+ color: #c50ed2;
+ background-color: #12151e;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black; }
+ .modal-dialog-linked-button:first-child {
+ border-radius: 0px 0px 0px 2px; }
+ .modal-dialog-linked-button:last-child {
+ border-radius: 0px 0px 2px 0px; }
+ .modal-dialog-linked-button:first-child:last-child {
+ border-radius: 0px 0px 2px 2px; }
+
+/* Entries */
+StEntry {
+ background-color: #252a3e;
+ border-color: #12151e;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22);
+ border-radius: 2px;
+ padding: 4px;
+ border-width: 0;
+ color: #98abb2;
+ selection-background-color: #c50ed2;
+ selected-color: #f7f7f7; }
+ StEntry:focus {
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
+ StEntry:insensitive {
+ color: #58636d;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
+ StEntry StIcon.capslock-warning {
+ icon-size: 16px;
+ warning-color: #f47d49;
+ padding: 0 4px; }
+
+/* Scrollbars */
+StScrollView.vfade {
+ -st-vfade-offset: 68px; }
+
+StScrollView.hfade {
+ -st-hfade-offset: 68px; }
+
+StScrollBar {
+ padding: 0; }
+ StScrollView StScrollBar {
+ min-width: 14px;
+ min-height: 14px; }
+ StScrollBar StBin#trough {
+ border-radius: 0;
+ background-color: transparent; }
+ StScrollBar StButton#vhandle, StScrollBar StButton#hhandle {
+ border-radius: 8px;
+ background-color: #323844;
+ margin: 3px; }
+ StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover {
+ background-color: #7e8e96; }
+ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
+ background-color: #c50ed2; }
+
+/* Slider */
+.slider {
+ height: 1em;
+ color: #b7b7b7;
+ border-color: black;
+ -slider-height: 0.1em;
+ -slider-background-color: #252a3e;
+ -slider-border-color: black;
+ -slider-active-background-color: #FED766;
+ -slider-active-border-color: #84ff39;
+ -slider-border-width: 0;
+ -slider-handle-radius: 6px;
+ -barlevel-height: 0.1em;
+ -barlevel-background-color: #252a3e;
+ -barlevel-border-color: black;
+ -barlevel-active-background-color: #FED766;
+ -barlevel-active-border-color: #84ff39;
+ -barlevel-border-width: 0;
+ -barlevel-handle-radius: 6px;
+ -barlevel-overdrive-color: #FED766;
+ -barlevel-overdrive-border-color: transparent;
+ -barlevel-overdrive-separator-width: 0px; }
+
+/* Check Boxes */
+.check-box StBoxLayout {
+ spacing: .8em; }
+
+.check-box StBin {
+ width: 24px;
+ height: 22px;
+ background-image: url("assets/checkbox-off.svg"); }
+
+.check-box:focus StBin {
+ background-image: url("assets/checkbox-off-focused.svg"); }
+
+.check-box:checked StBin {
+ background-image: url("assets/checkbox.svg"); }
+
+.check-box:focus:checked StBin {
+ background-image: url("assets/checkbox-focused.svg"); }
+
+/* Switches */
+.toggle-switch {
+ width: 65px;
+ height: 22px;
+ background-size: contain; }
+
+.toggle-switch-us {
+ background-image: url("assets/toggle-off.svg"); }
+ .toggle-switch-us:checked {
+ background-image: url("assets/toggle-on.svg"); }
+
+.toggle-switch-intl {
+ background-image: url("assets/toggle-off.svg"); }
+ .toggle-switch-intl:checked {
+ background-image: url("assets/toggle-on.svg"); }
+
+/* links */
+.shell-link {
+ color: #A0C1B9; }
+ .shell-link:hover {
+ color: #bfd5d0; }
+
+/* Modal Dialogs */
+.headline {
+ font-size: 110%; }
+
+.lightbox {
+ background-color: black; }
+
+.flashspot {
+ background-color: white; }
+
+.modal-dialog {
+ border: none;
+ border-radius: 2px;
+ color: #98abb2;
+ background-color: rgba(14, 16, 24, 0.95);
+ box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.2); }
+ .modal-dialog .modal-dialog-content-box {
+ padding: 24px; }
+ .modal-dialog .run-dialog-entry {
+ width: 20em;
+ margin-bottom: 6px; }
+ .modal-dialog .run-dialog-error-box {
+ color: #e6006e;
+ padding-top: 16px;
+ spacing: 6px; }
+ .modal-dialog .run-dialog-button-box {
+ padding-top: 1em; }
+ .modal-dialog .run-dialog-label {
+ font-size: 11pt;
+ font-weight: bold;
+ color: #7b939c;
+ padding-bottom: .4em; }
+
+.mount-dialog-subject,
+.end-session-dialog-subject {
+ font-size: 13pt; }
+
+/* Message Dialog */
+.message-dialog-main-layout {
+ padding: 12px 20px 0;
+ spacing: 12px; }
+
+.message-dialog-content {
+ max-width: 28em;
+ spacing: 20px; }
+
+.message-dialog-icon {
+ min-width: 48px;
+ icon-size: 48px; }
+
+.message-dialog-title {
+ font-weight: bold; }
+
+.message-dialog-subtitle {
+ color: #364348;
+ font-weight: bold; }
+
+/* End Session Dialog */
+.end-session-dialog {
+ spacing: 42px;
+ border: none; }
+ .end-session-dialog .modal-dialog-linked-button:last-child {
+ background-gradient-start: #c50ed2;
+ background-gradient-end: #8500f7;
+ background-gradient-direction: horizontal;
+ color: #fff; }
+ .end-session-dialog .modal-dialog-linked-button:last-child:hover, .end-session-dialog .modal-dialog-linked-button:last-child:focus {
+ background: #d60066;
+ color: #fff; }
+
+.end-session-dialog-list {
+ padding-top: 20px; }
+
+.end-session-dialog-layout {
+ padding-left: 17px; }
+ .end-session-dialog-layout:rtl {
+ padding-right: 17px; }
+
+.end-session-dialog-description {
+ width: 28em;
+ padding-bottom: 10px; }
+ .end-session-dialog-description:rtl {
+ text-align: right; }
+
+.end-session-dialog-warning {
+ width: 28em;
+ color: #f47d49;
+ padding-top: 6px; }
+ .end-session-dialog-warning:rtl {
+ text-align: right; }
+
+.end-session-dialog-logout-icon {
+ border-radius: 3px;
+ width: 48px;
+ height: 48px;
+ background-size: contain; }
+
+.end-session-dialog-shutdown-icon {
+ color: #e6006e;
+ width: 48px;
+ height: 48px; }
+
+.end-session-dialog-inhibitor-layout {
+ spacing: 16px;
+ max-height: 200px;
+ padding-right: 65px;
+ padding-left: 65px; }
+
+.end-session-dialog-session-list,
+.end-session-dialog-app-list {
+ spacing: 1em; }
+
+.end-session-dialog-list-header {
+ font-weight: bold; }
+ .end-session-dialog-list-header:rtl {
+ text-align: right; }
+
+.end-session-dialog-app-list-item,
+.end-session-dialog-session-list-item {
+ spacing: 1em; }
+
+.end-session-dialog-app-list-item-name,
+.end-session-dialog-session-list-item-name {
+ font-weight: bold; }
+
+.end-session-dialog-app-list-item-description {
+ color: #899fa7;
+ font-size: 10pt; }
+
+/* ShellMountOperation Dialogs */
+.shell-mount-operation-icon {
+ icon-size: 48px; }
+
+.mount-dialog {
+ spacing: 24px; }
+ .mount-dialog .message-dialog-title {
+ padding-top: 10px;
+ padding-left: 17px;
+ padding-bottom: 6px;
+ max-width: 34em; }
+ .mount-dialog .message-dialog-title:rtl {
+ padding-left: 0px;
+ padding-right: 17px; }
+ .mount-dialog .message-dialog-body {
+ padding-left: 17px;
+ width: 28em; }
+ .mount-dialog .message-dialog-body:rtl {
+ padding-left: 0px;
+ padding-right: 17px; }
+
+.mount-dialog-app-list {
+ max-height: 200px;
+ padding-top: 24px;
+ padding-left: 49px;
+ padding-right: 32px; }
+
+.mount-dialog-app-list:rtl {
+ padding-right: 49px;
+ padding-left: 32px; }
+
+.mount-dialog-app-list-item {
+ color: #7b939c; }
+ .mount-dialog-app-list-item:hover {
+ color: #98abb2; }
+ .mount-dialog-app-list-item:ltr {
+ padding-right: 1em; }
+ .mount-dialog-app-list-item:rtl {
+ padding-left: 1em; }
+
+.mount-dialog-app-list-item-icon:ltr {
+ padding-right: 17px; }
+
+.mount-dialog-app-list-item-icon:rtl {
+ padding-left: 17px; }
+
+.mount-dialog-app-list-item-name {
+ font-size: 10pt; }
+
+/* Password or Authentication Dialog */
+.prompt-dialog {
+ width: 34em;
+ border: none;
+ border-radius: 2px; }
+ .prompt-dialog .message-dialog-main-layout {
+ spacing: 24px;
+ padding: 10px; }
+ .prompt-dialog .message-dialog-content {
+ spacing: 16px; }
+ .prompt-dialog .message-dialog-title {
+ color: #576c74; }
+
+.prompt-dialog-description:rtl {
+ text-align: right; }
+
+.prompt-dialog-password-box {
+ spacing: 1em;
+ padding-bottom: 1em; }
+
+.prompt-dialog-error-label {
+ font-size: 10pt;
+ color: #e6006e;
+ padding-bottom: 8px; }
+
+.prompt-dialog-info-label {
+ font-size: 10pt;
+ padding-bottom: 8px; }
+
+.hidden {
+ color: rgba(0, 0, 0, 0); }
+
+.prompt-dialog-null-label {
+ font-size: 10pt;
+ padding-bottom: 8px; }
+
+/* Polkit Dialog */
+.polkit-dialog-user-layout {
+ padding-left: 10px;
+ spacing: 10px; }
+ .polkit-dialog-user-layout:rtl {
+ padding-left: 0px;
+ padding-right: 10px; }
+
+.polkit-dialog-user-root-label {
+ color: #f47d49; }
+
+.polkit-dialog-user-icon {
+ border-radius: 3px;
+ background-size: contain;
+ width: 48px;
+ height: 48px; }
+
+/* Audio selection dialog */
+.audio-device-selection-dialog {
+ spacing: 30px; }
+
+.audio-selection-content {
+ spacing: 20px;
+ padding: 24px; }
+
+.audio-selection-title {
+ font-weight: bold;
+ text-align: center; }
+
+.audio-selection-box {
+ spacing: 20px; }
+
+.audio-selection-device {
+ border: 1px solid #98abb2;
+ border-radius: 12px; }
+ .audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus {
+ background-color: #c50ed2; }
+
+.audio-selection-device-box {
+ padding: 20px;
+ spacing: 20px; }
+
+.audio-selection-device-icon {
+ icon-size: 64px; }
+
+/* Access Dialog */
+.access-dialog {
+ spacing: 30px; }
+
+/* Geolocation Dialog */
+.geolocation-dialog {
+ spacing: 30px; }
+
+/* Extension Dialog */
+.extension-dialog .message-dialog-main-layout {
+ spacing: 24px;
+ padding: 10px; }
+
+.extension-dialog .message-dialog-title {
+ color: #576c74; }
+
+/* Inhibit-Shortcuts Dialog */
+.inhibit-shortcuts-dialog {
+ spacing: 30px; }
+
+/* Network Agent Dialog */
+.network-dialog-secret-table {
+ spacing-rows: 15px;
+ spacing-columns: 1em; }
+
+.keyring-dialog-control-table {
+ spacing-rows: 15px;
+ spacing-columns: 1em; }
+
+/* Popovers/Menus */
+.popup-menu {
+ min-width: 15em;
+ background-color: transparent; }
+ .popup-menu .popup-sub-menu {
+ background-color: rgba(0, 0, 0, 0.2);
+ box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.2); }
+ .popup-menu .popup-menu-content {
+ padding: 1em 0em; }
+ .popup-menu .popup-menu-item {
+ spacing: 12px; }
+ .popup-menu .popup-menu-item:ltr {
+ padding: .4em 1.75em .4em 0em; }
+ .popup-menu .popup-menu-item:rtl {
+ padding: .4em 0em .4em 1.75em; }
+ .popup-menu .popup-menu-item:checked {
+ background-gradient-start: #c50ed2;
+ background-gradient-end: #8500f7;
+ background-gradient-direction: horizontal;
+ color: #f7f7f7;
+ box-shadow: inset 0 1px 0px #1c1f2e;
+ font-weight: bold; }
+ .popup-menu .popup-menu-item:checked:hover {
+ background-color: rgba(197, 14, 210, 0.9);
+ color: #f7f7f7; }
+ .popup-menu .popup-menu-item.selected {
+ background-color: rgba(152, 171, 178, 0.1);
+ color: #98abb2; }
+ .popup-menu .popup-menu-item:active {
+ background-color: #c50ed2;
+ color: #f7f7f7; }
+ .popup-menu .popup-menu-item:insensitive {
+ color: rgba(152, 171, 178, 0.5); }
+ .popup-menu .popup-inactive-menu-item {
+ color: #98abb2; }
+ .popup-menu .popup-inactive-menu-item:insensitive {
+ color: rgba(152, 171, 178, 0.5); }
+ .popup-menu.panel-menu {
+ -boxpointer-gap: 4px;
+ margin-bottom: 1.75em; }
+
+.popup-menu-ornament {
+ text-align: right;
+ width: 1.2em; }
+
+.popup-menu-boxpointer,
+.candidate-popup-boxpointer {
+ -arrow-border-radius: 7px;
+ -arrow-background-color: #181b28;
+ -arrow-border-width: 1px;
+ -arrow-border-color: #12151e;
+ -arrow-base: 24px;
+ -arrow-rise: 11px;
+ -arrow-box-shadow: 0 1px 3px black; }
+
+.popup-separator-menu-item {
+ height: 1px;
+ margin: 6px 64px;
+ background-color: transparent;
+ border-color: transparent;
+ border-bottom-width: 1px;
+ border-bottom-style: solid; }
+
+.background-menu {
+ -boxpointer-gap: 4px;
+ -arrow-rise: 0px; }
+
+/* fallback menu
+- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled
+ app menu inside the main app window itself rather than the top bar
+*/
+/* OSD */
+.osd-window {
+ text-align: center;
+ font-weight: bold;
+ spacing: 1em;
+ margin: 32px;
+ min-width: 64px;
+ min-height: 64px; }
+ .osd-window .osd-monitor-label {
+ font-size: 3em; }
+ .osd-window .level {
+ height: 0.4em;
+ border-radius: 0.3em;
+ color: #98abb2;
+ border: 1px solid #12151e;
+ -barlevel-height: 0.4em;
+ -barlevel-background-color: rgba(0, 0, 0, 0.5);
+ -barlevel-active-background-color: #c50ed2;
+ -barlevel-overdrive-color: #ff007a;
+ -barlevel-overdrive-separator-width: 0.2em; }
+ .osd-window .level-bar {
+ background-color: #c50ed2;
+ border-radius: 0.3em; }
+
+/* Pad OSD */
+.pad-osd-window {
+ padding: 32px;
+ background-color: rgba(0, 0, 0, 0.8); }
+ .pad-osd-window .pad-osd-title-box {
+ spacing: 12px; }
+ .pad-osd-window .pad-osd-title-menu-box {
+ spacing: 6px; }
+
+.combo-box-label {
+ width: 15em; }
+
+/* App Switcher */
+.switcher-popup {
+ padding: 8px;
+ spacing: 16px; }
+
+.switcher-list-item-container {
+ spacing: 8px; }
+
+.switcher-list .item-box {
+ padding: 8px;
+ border-radius: 4px; }
+
+.switcher-list .item-box:outlined {
+ padding: 6px;
+ border: 2px solid black; }
+
+.switcher-list .item-box:selected {
+ background-color: #c50ed2;
+ color: #f7f7f7; }
+
+.switcher-list .thumbnail-box {
+ padding: 2px;
+ spacing: 4px; }
+
+.switcher-list .thumbnail {
+ width: 256px; }
+
+.switcher-list .separator {
+ width: 1px;
+ background: #12151e; }
+
+.switcher-arrow {
+ border-color: rgba(0, 0, 0, 0);
+ color: rgba(152, 171, 178, 0.8); }
+ .switcher-arrow:highlighted {
+ color: #98abb2; }
+
+.input-source-switcher-symbol {
+ font-size: 34pt;
+ width: 96px;
+ height: 96px; }
+
+/* Window Cycler */
+.cycler-highlight {
+ border: 5px solid #c50ed2; }
+
+/* Workspace Switcher */
+.workspace-switcher-group {
+ padding: 12px; }
+
+.workspace-switcher {
+ background: transparent;
+ border: 0px;
+ border-radius: 0px;
+ padding: 0px;
+ spacing: 8px; }
+
+.ws-switcher-active-up, .ws-switcher-active-down {
+ height: 50px;
+ background-color: #c50ed2;
+ color: #f7f7f7;
+ background-size: 32px;
+ border-radius: 8px; }
+
+.ws-switcher-active-up {
+ background-image: url("assets/ws-switch-arrow-up.png"); }
+
+.ws-switcher-active-down {
+ background-image: url("assets/ws-switch-arrow-down.png"); }
+
+.ws-switcher-box {
+ height: 50px;
+ border: 1px solid rgba(152, 171, 178, 0.1);
+ background: rgba(5, 5, 8, 0.95);
+ border-radius: 8px; }
+
+.osd-window,
+.resize-popup,
+.switcher-list, .workspace-switcher-container {
+ color: #98abb2;
+ background-color: rgba(24, 27, 40, 0.95);
+ border: none;
+ border-radius: 2px;
+ padding: 12px; }
+
+/* Tiled window previews */
+.tile-preview {
+ background-color: rgba(197, 14, 210, 0.5);
+ border: 1px solid #c50ed2; }
+
+.tile-preview-left.on-primary {
+ border-radius: 2px 2px 0 0; }
+
+.tile-preview-right.on-primary {
+ border-radius: 0 2px 0 0; }
+
+.tile-preview-left.tile-preview-right.on-primary {
+ border-radius: 2px 2px 0 0; }
+
+/* TOP BAR */
+#panel {
+ background-gradient-direction: none;
+ background-color: rgba(22, 25, 37, 0.65);
+ /* transition from solid to transparent */
+ transition-duration: 500ms;
+ font-weight: bold;
+ height: 1.86em;
+ padding: 0px 0px; }
+ #panel.unlock-screen, #panel.login-screen, #panel.lock-screen {
+ background-color: transparent; }
+ #panel #panelLeft, #panel #panelCenter {
+ spacing: 4px; }
+ #panel .panel-corner {
+ -panel-corner-radius: 0px;
+ -panel-corner-background-color: rgba(0, 0, 0, 0.2);
+ -panel-corner-border-width: 2px;
+ -panel-corner-border-color: transparent; }
+ #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus {
+ -panel-corner-border-color: #db10ea; }
+ #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen {
+ -panel-corner-radius: 0;
+ -panel-corner-background-color: transparent;
+ -panel-corner-border-color: transparent; }
+ #panel .panel-button {
+ -natural-hpadding: 12px;
+ -minimum-hpadding: 6px;
+ font-weight: bold;
+ color: white;
+ text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
+ transition-duration: 100ms; }
+ #panel .panel-button .app-menu-icon {
+ -st-icon-style: symbolic;
+ margin-left: 4px;
+ margin-right: 4px; }
+ #panel .panel-button .system-status-icon,
+ #panel .panel-button .app-menu-icon > StIcon,
+ #panel .panel-button .popup-menu-arrow {
+ icon-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9); }
+ #panel .panel-button:hover {
+ background: rgba(41, 47, 69, 0.65);
+ color: white;
+ transition-duration: 200ms; }
+ #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked {
+ box-shadow: none;
+ background-gradient-start: #c50ed2;
+ background-gradient-end: #8500f7;
+ background-gradient-direction: horizontal;
+ color: #f7f7f7;
+ text-shadow: 0px 0px 2px rgba(92, 92, 92, 0.9);
+ transition-duration: 200ms; }
+ #panel .panel-button:active .system-status-icon,
+ #panel .panel-button:active .app-menu-icon > StIcon,
+ #panel .panel-button:active .popup-menu-arrow, #panel .panel-button:overview .system-status-icon,
+ #panel .panel-button:overview .app-menu-icon > StIcon,
+ #panel .panel-button:overview .popup-menu-arrow, #panel .panel-button:focus .system-status-icon,
+ #panel .panel-button:focus .app-menu-icon > StIcon,
+ #panel .panel-button:focus .popup-menu-arrow, #panel .panel-button:checked .system-status-icon,
+ #panel .panel-button:checked .app-menu-icon > StIcon,
+ #panel .panel-button:checked .popup-menu-arrow {
+ icon-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9); }
+ #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon {
+ icon-shadow: red 0 2px 2px; }
+ #panel .panel-button .system-status-icon {
+ icon-size: 1.09em;
+ padding: 0 5px; }
+ .unlock-screen #panel .panel-button,
+ .login-screen #panel .panel-button,
+ .lock-screen #panel .panel-button {
+ color: #b5c3c8; }
+ .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active,
+ .login-screen #panel .panel-button:focus,
+ .login-screen #panel .panel-button:hover,
+ .login-screen #panel .panel-button:active,
+ .lock-screen #panel .panel-button:focus,
+ .lock-screen #panel .panel-button:hover,
+ .lock-screen #panel .panel-button:active {
+ color: #b5c3c8; }
+ #panel .panel-status-indicators-box,
+ #panel .panel-status-menu-box {
+ spacing: 2px; }
+ #panel .power-status.panel-status-indicators-box {
+ spacing: 0; }
+ #panel .screencast-indicator {
+ color: #f47d49; }
+ #panel.solid {
+ background-color: #161925;
+ /* transition from transparent to solid */
+ transition-duration: 300ms; }
+ #panel.solid .panel-corner {
+ -panel-corner-background-color: black; }
+ #panel.solid .system-status-icon,
+ #panel.solid .app-menu-icon > StIcon,
+ #panel.solid .popup-menu-arrow {
+ icon-shadow: none; }
+
+#calendarArea {
+ padding: 0.75em 1.0em; }
+
+.calendar {
+ margin-bottom: 1em; }
+
+.calendar,
+.datemenu-today-button,
+.datemenu-displays-box,
+.message-list-sections {
+ margin: 0 1.5em; }
+
+.datemenu-calendar-column {
+ spacing: 0.5em; }
+
+.datemenu-displays-section {
+ padding-bottom: 3em; }
+
+.datemenu-displays-box {
+ spacing: 1em; }
+
+.datemenu-calendar-column {
+ border: 0 solid transparent;
+ background: #171926; }
+ .datemenu-calendar-column:ltr {
+ border-left-width: 1px; }
+ .datemenu-calendar-column:rtl {
+ border-right-width: 1px; }
+
+.datemenu-today-button,
+.world-clocks-button,
+.weather-button,
+.events-section-title,
+.message-list-section-title {
+ border-radius: 4px;
+ padding: .4em; }
+
+.message-list-section-list:ltr {
+ padding-left: .4em; }
+
+.message-list-section-list:rtl {
+ padding-right: .4em; }
+
+.datemenu-today-button:hover, .datemenu-today-button:focus,
+.world-clocks-button:hover,
+.world-clocks-button:focus,
+.weather-button:hover,
+.weather-button:focus,
+.events-section-title:hover,
+.events-section-title:focus,
+.message-list-section-title:hover,
+.message-list-section-title:focus {
+ background-color: #222638; }
+
+.datemenu-today-button:active,
+.world-clocks-button:active,
+.weather-button:active,
+.events-section-title:active,
+.message-list-section-title:active {
+ color: white;
+ background-color: #c50ed2; }
+
+.datemenu-today-button .date-label {
+ font-size: 1.5em; }
+
+.world-clocks-header,
+.weather-header,
+.events-section-title,
+.message-list-section-title {
+ color: #7b939c;
+ font-weight: bold; }
+
+.world-clocks-grid {
+ spacing-rows: 0.4em; }
+
+.weather-box {
+ spacing: 0.4em; }
+
+.calendar-month-label {
+ color: #899fa7;
+ font-weight: bold;
+ padding: 8px 0; }
+
+.pager-button {
+ color: white;
+ background-color: transparent;
+ width: 32px;
+ border-radius: 4px; }
+ .pager-button:hover, .pager-button:focus {
+ background-color: rgba(152, 171, 178, 0.05); }
+ .pager-button:active {
+ background-color: rgba(24, 27, 40, 0.05); }
+
+.calendar-change-month-back {
+ background-image: url("assets/calendar-arrow-left.svg"); }
+ .calendar-change-month-back:rtl {
+ background-image: url("assets/calendar-arrow-right.svg"); }
+
+.calendar-change-month-forward {
+ background-image: url("assets/calendar-arrow-right.svg"); }
+ .calendar-change-month-forward:rtl {
+ background-image: url("assets/calendar-arrow-left.svg"); }
+
+.calendar-day-base {
+ font-size: 80%;
+ text-align: center;
+ width: 2.4em;
+ height: 2.4em;
+ padding: 0.1em;
+ margin: 2px;
+ border-radius: 1.4em; }
+ .calendar-day-base:hover, .calendar-day-base:focus {
+ background-color: #222638; }
+ .calendar-day-base:active, .calendar-day-base:selected {
+ color: #f7f7f7;
+ background-color: #c50ed2;
+ border-color: transparent; }
+ .calendar-day-base.calendar-day-heading {
+ color: #7b939c;
+ margin-top: 1em;
+ font-size: 70%; }
+
+.calendar-day {
+ border-width: 0; }
+
+.calendar-day-top {
+ border-top-width: 1px; }
+
+.calendar-day-left {
+ border-left-width: 1px; }
+
+.calendar-nonwork-day {
+ color: #58636d; }
+
+.calendar-today {
+ font-weight: bold;
+ border: 1px solid rgba(18, 21, 30, 0.5); }
+
+.calendar-day-with-events {
+ color: #b5c3c8;
+ font-weight: bold;
+ background-image: url("assets/calendar-today.svg"); }
+
+.calendar-other-month-day {
+ color: #58636d;
+ opacity: 0.5; }
+
+.calendar-week-number {
+ font-size: 70%;
+ font-weight: bold;
+ width: 2.3em;
+ height: 1.8em;
+ border-radius: 2px;
+ padding: 0.5em 0 0;
+ margin: 6px;
+ background-color: rgba(152, 171, 178, 0.3);
+ color: #181b28; }
+
+/* Message list */
+.message-list {
+ width: 31.5em; }
+ .message-list .message-title {
+ color: #899fa7; }
+
+.message-list-clear-button.button {
+ color: #98abb2;
+ background-color: #0e1018;
+ box-shadow: none;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ border: 1px solid #12151e;
+ margin: 1.5em 1.5em 0; }
+ .message-list-clear-button.button:hover, .message-list-clear-button.button:focus {
+ color: #c50ed2;
+ background-color: #12151e;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black; }
+
+.message-list-sections {
+ spacing: 1em; }
+
+.message-list-section,
+.message-list-section-list {
+ spacing: 0.4em; }
+
+.message-list-section-close > StIcon {
+ icon-size: 16px;
+ border-radius: 16px;
+ padding: 8px;
+ color: #98abb2;
+ background-color: transparent; }
+
+.message-list-section-close:hover > StIcon,
+.message-list-section-close:focus > StIcon .message-list-section-close:active > StIcon {
+ color: #ff007a;
+ background: transparent; }
+
+.message {
+ border-radius: 1px;
+ background: transparent; }
+ .message:hover, .message:focus {
+ background-color: #161925;
+ box-shadow: 3px 0px 0px 0px #c50ed2 inset; }
+
+.message-icon-bin {
+ padding: 10px 3px 10px 10px; }
+ .message-icon-bin:rtl {
+ padding: 10px 10px 10px 3px; }
+
+.message-icon-bin > StIcon {
+ icon-size: 16px;
+ -st-icon-style: symbolic; }
+
+.message-secondary-bin {
+ padding: 0 12px; }
+
+.message-secondary-bin > .event-time {
+ color: #6c8791;
+ font-size: 0.7em;
+ /* HACK: the label should be baseline-aligned with a 1em label,
+ fake this with some bottom padding */
+ padding-bottom: 0.13em; }
+
+.message-secondary-bin > StIcon {
+ icon-size: 16px; }
+
+.message-content {
+ padding: 10px; }
+ .message-content *:hover > StIcon,
+ .message-content *:focus > StIcon {
+ color: #ff007a; }
+
+.message-media-control {
+ padding: 12px;
+ color: #627a82; }
+ .message-media-control:last-child:ltr {
+ padding-right: 18px; }
+ .message-media-control:last-child:rtl {
+ padding-left: 18px; }
+ .message-media-control:hover {
+ color: #98abb2; }
+ .message-media-control:insensitive {
+ color: #364348; }
+
+.media-message-cover-icon {
+ icon-size: 48px !important; }
+ .media-message-cover-icon.fallback {
+ color: #2b3148;
+ background-color: #181b28;
+ border: 2px solid #181b28;
+ border-radius: 2px;
+ icon-size: 16px;
+ padding: 8px; }
+
+.system-switch-user-submenu-icon.user-icon {
+ icon-size: 20px;
+ padding: 0 2px; }
+
+.system-switch-user-submenu-icon.default-icon {
+ icon-size: 16px;
+ padding: 0 4px; }
+
+#appMenu {
+ spinner-image: url("assets/process-working.svg");
+ spacing: 4px; }
+ #appMenu .label-shadow {
+ color: transparent; }
+
+.aggregate-menu {
+ min-width: 21em; }
+ .aggregate-menu .popup-menu-icon {
+ padding: 0 4px; }
+
+.system-menu-action {
+ color: #98abb2;
+ border-radius: 32px;
+ /* wish we could do 50% */
+ border: 1px solid #12151e;
+ background: #12151e;
+ padding: 13px; }
+ .system-menu-action:hover, .system-menu-action:focus {
+ border: 1px solid #c50ed2;
+ color: #c50ed2;
+ background: transparent; }
+ .system-menu-action:active {
+ background-color: #980ba2;
+ color: #f7f7f7;
+ border: 1px solid #980ba2; }
+ .system-menu-action > StIcon {
+ icon-size: 16px; }
+
+.ripple-box {
+ width: 52px;
+ height: 52px;
+ background-image: url("assets/corner-ripple-ltr.png");
+ background-size: contain; }
+
+.ripple-box:rtl {
+ background-image: url("assets/corner-ripple-rtl.png"); }
+
+.popup-menu-arrow {
+ width: 16px;
+ height: 16px; }
+
+.popup-menu-icon {
+ icon-size: 1.09em; }
+
+.window-close {
+ background-image: url("assets/close-window.svg");
+ background-size: 32px;
+ height: 32px;
+ width: 32px; }
+
+.window-close {
+ -shell-close-overlap: 16px; }
+ .window-close:rtl {
+ -st-background-image-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); }
+
+/* NETWORK DIALOGS */
+.nm-dialog {
+ max-height: 34em;
+ min-height: 31em;
+ min-width: 32em; }
+
+.nm-dialog-content {
+ spacing: 20px;
+ padding: 24px; }
+
+.nm-dialog-header-hbox {
+ spacing: 10px; }
+
+.nm-dialog-airplane-box {
+ spacing: 12px; }
+
+.nm-dialog-airplane-headline {
+ font-weight: bold;
+ text-align: center; }
+
+.nm-dialog-airplane-text {
+ color: #98abb2; }
+
+.nm-dialog-header-icon {
+ icon-size: 32px; }
+
+.nm-dialog-scroll-view {
+ border: 2px solid #12151e; }
+
+.nm-dialog-header {
+ font-weight: bold; }
+
+.nm-dialog-item {
+ font-size: 110%;
+ border-bottom: 1px solid #12151e;
+ padding: 12px;
+ spacing: 20px; }
+
+.nm-dialog-item:selected {
+ background-color: #c50ed2;
+ color: #f7f7f7; }
+
+.nm-dialog-icons {
+ spacing: .5em; }
+
+.nm-dialog-icon {
+ icon-size: 16px; }
+
+.no-networks-label {
+ color: #999999; }
+
+.no-networks-box {
+ spacing: 12px; }
+
+/* OVERVIEW */
+#overview {
+ spacing: 24px; }
+
+.overview-controls {
+ padding-bottom: 32px; }
+
+.window-picker {
+ -horizontal-spacing: 16px;
+ -vertical-spacing: 16px;
+ padding: 0 16px 16px; }
+ .window-picker.external-monitor {
+ padding: 16px; }
+
+.window-clone-border {
+ border: 4px solid rgba(197, 14, 210, 0.3);
+ border-radius: 0px;
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); }
+
+.window-caption {
+ spacing: 20px;
+ color: white;
+ background-color: rgba(24, 27, 40, 0.65);
+ border-radius: 2px;
+ padding: 4px 8px; }
+
+.search-entry {
+ width: 320px;
+ padding: 9px;
+ border-radius: 100px;
+ border: none;
+ color: #98abb2;
+ background-color: rgba(24, 27, 40, 0.6);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
+ .search-entry:focus {
+ border-width: 0;
+ color: #98abb2;
+ background-color: rgba(24, 27, 40, 0.8);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3); }
+ .search-entry .search-entry-icon {
+ icon-size: 1em;
+ padding: 0 4px;
+ color: rgba(152, 171, 178, 0.7); }
+ .search-entry:hover, .search-entry:focus {
+ background-color: rgba(24, 27, 40, 0.8); }
+ .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon {
+ color: #98abb2; }
+
+#searchResultsBin {
+ max-width: 1000px; }
+
+#searchResultsContent {
+ padding-left: 20px;
+ padding-right: 20px;
+ spacing: 16px; }
+
+.search-section {
+ spacing: 16px; }
+
+.search-section-content {
+ spacing: 32px; }
+
+.list-search-results {
+ spacing: 3px; }
+
+.search-section-separator {
+ height: 2px;
+ background-color: rgba(255, 255, 255, 0.2); }
+
+.list-search-result-content {
+ spacing: 30px; }
+
+.list-search-result-title {
+ color: white;
+ spacing: 12px; }
+
+.list-search-result-description {
+ color: rgba(255, 255, 255, 0.5); }
+
+.list-search-provider-details {
+ width: 150px;
+ color: white;
+ margin-top: 0.24em; }
+
+.list-search-provider-content {
+ spacing: 20px; }
+
+.search-provider-icon {
+ padding: 15px; }
+
+/* DASHBOARD */
+#dash {
+ font-size: 9pt;
+ color: white;
+ background-color: rgba(22, 25, 37, 0.65);
+ padding: 6px 0;
+ border: 1px solid #12151e;
+ border-left: 0px;
+ border-radius: 0px 5px 5px 0px; }
+ #dash:rtl {
+ border-radius: 9px 0 0 9px; }
+ #dash .placeholder {
+ background-image: url("assets/dash-placeholder.svg");
+ background-size: contain;
+ height: 24px; }
+ #dash .empty-dash-drop-target {
+ width: 24px;
+ height: 24px; }
+
+.dash-item-container > StWidget {
+ padding: 4px 8px; }
+
+.dash-label {
+ border-radius: 7px;
+ padding: 4px 12px;
+ color: white;
+ background-color: rgba(22, 25, 37, 0.65);
+ text-align: center;
+ -x-offset: 8px; }
+
+/* App Vault/Grid */
+.icon-grid {
+ spacing: 30px;
+ -shell-grid-horizontal-item-size: 136px;
+ -shell-grid-vertical-item-size: 136px; }
+ .icon-grid .overview-icon {
+ icon-size: 96px; }
+
+.system-action-icon {
+ background-color: black;
+ color: white;
+ border-radius: 99px;
+ icon-size: 48px; }
+
+.app-view-controls {
+ padding-bottom: 32px; }
+
+.app-view-control {
+ padding: 4px 32px; }
+ .app-view-control:checked {
+ color: #c50ed2;
+ background-color: rgba(24, 27, 40, 0.95);
+ border: 1px solid #12151e;
+ text-shadow: none;
+ icon-shadow: none; }
+ .app-view-control:first-child {
+ border-right-width: 0;
+ border-radius: 3px 0 0 3px; }
+ .app-view-control:last-child {
+ border-radius: 0 3px 3px 0; }
+
+.search-provider-icon:active, .search-provider-icon:checked,
+.list-search-result:active,
+.list-search-result:checked {
+ background-color: rgba(5, 5, 8, 0.85); }
+
+.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover,
+.list-search-result:focus,
+.list-search-result:selected,
+.list-search-result:hover {
+ background-color: rgba(24, 27, 40, 0.3);
+ transition-duration: 200ms; }
+
+.app-well-app,
+.app-well-app.app-folder,
+.show-apps,
+.grid-search-result {
+ border: none; }
+ .app-well-app:active .overview-icon,
+ .app-well-app:checked .overview-icon,
+ .app-well-app.app-folder:active .overview-icon,
+ .app-well-app.app-folder:checked .overview-icon,
+ .show-apps:active .overview-icon,
+ .show-apps:checked .overview-icon,
+ .grid-search-result:active .overview-icon,
+ .grid-search-result:checked .overview-icon {
+ background-color: rgba(11, 12, 18, 0.85);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3);
+ color: #98abb2; }
+ .app-well-app:hover .overview-icon,
+ .app-well-app:focus .overview-icon,
+ .app-well-app:selected .overview-icon,
+ .app-well-app.app-folder:hover .overview-icon,
+ .app-well-app.app-folder:focus .overview-icon,
+ .app-well-app.app-folder:selected .overview-icon,
+ .show-apps:hover .overview-icon,
+ .show-apps:focus .overview-icon,
+ .show-apps:selected .overview-icon,
+ .grid-search-result:hover .overview-icon,
+ .grid-search-result:focus .overview-icon,
+ .grid-search-result:selected .overview-icon {
+ background-color: rgba(24, 27, 40, 0.5);
+ transition-duration: 0ms;
+ border-image: none;
+ background-image: none; }
+
+.app-well-app-running-dot {
+ width: 4px;
+ height: 4px;
+ background-color: #c50ed2;
+ border-radius: 10px !important;
+ box-shadow: 0px 0px 5px 4px rgba(197, 14, 210, 0.8);
+ margin-bottom: 0px; }
+
+.search-provider-icon,
+.list-search-result, .app-well-app .overview-icon,
+.app-well-app.app-folder .overview-icon,
+.show-apps .overview-icon,
+.grid-search-result .overview-icon {
+ color: #f7f7f7;
+ border-radius: 2px;
+ padding: 7px 6px;
+ border: none;
+ transition-duration: 100ms;
+ text-align: center;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
+
+.app-well-app.app-folder > .overview-icon {
+ background-color: rgba(24, 27, 40, 0.35); }
+
+.show-apps .show-apps-icon {
+ color: white; }
+
+.show-apps:checked .show-apps-icon,
+.show-apps:focus .show-apps-icon {
+ color: #98abb2;
+ transition-duration: 100ms; }
+
+.app-folder-popup {
+ -arrow-border-radius: 8px;
+ -arrow-background-color: rgba(24, 27, 40, 0.5);
+ -arrow-base: 24px;
+ -arrow-rise: 11px; }
+
+.app-folder-popup-bin {
+ padding: 5px;
+ background: rgba(24, 27, 40, 0.5); }
+
+.app-folder-icon {
+ padding: 5px;
+ spacing-rows: 5px;
+ spacing-columns: 5px; }
+
+.page-indicator {
+ padding: 15px 20px; }
+ .page-indicator .page-indicator-icon {
+ width: 12px;
+ height: 12px;
+ border-radius: 12px;
+ background-image: none;
+ background-color: rgba(255, 255, 255, 0.3); }
+ .page-indicator:hover .page-indicator-icon {
+ background-image: none;
+ background-color: rgba(255, 255, 255, 0.5); }
+ .page-indicator:active .page-indicator-icon {
+ background-image: none;
+ background-color: rgba(255, 255, 255, 0.7); }
+ .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active {
+ background-image: none;
+ background-color: #FFFFFF;
+ transition-duration: 0s; }
+
+.app-well-app > .overview-icon.overview-icon-with-label,
+.grid-search-result .overview-icon.overview-icon-with-label {
+ padding: 10px 8px 5px 8px;
+ spacing: 4px; }
+
+.workspace-thumbnails {
+ visible-width: 32px;
+ spacing: 11px;
+ padding: 8px;
+ border-radius: 0; }
+ .workspace-thumbnails:rtl {
+ border-radius: 0; }
+
+.workspace-thumbnail-indicator {
+ border: 4px solid rgba(197, 14, 210, 0.5);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22);
+ padding: 0; }
+
+.search-display > StBoxLayout,
+.all-apps,
+.frequent-apps > StBoxLayout {
+ padding: 0px 88px 10px 88px; }
+
+.workspace-thumbnails {
+ color: #98abb2;
+ background-color: transparent;
+ border: none; }
+
+.search-statustext, .no-frequent-applications-label {
+ font-size: 2em;
+ font-weight: bold;
+ color: #98abb2; }
+
+/* NOTIFICATIONS & MESSAGE TRAY */
+.url-highlighter {
+ link-color: #e323f0; }
+
+.notification-banner {
+ font-size: 11pt;
+ width: 34em;
+ margin: 5px;
+ border-radius: 3px;
+ color: white;
+ background-color: #181b28;
+ border: 1px solid #12151e;
+ box-shadow: 0 1px 4px black; }
+ .notification-banner:hover {
+ background-color: rgba(24, 27, 40, 0.96); }
+ .notification-banner:focus {
+ background-color: rgba(24, 27, 40, 0.96); }
+ .notification-banner .notification-icon {
+ padding: 5px; }
+ .notification-banner .notification-content {
+ padding: 5px;
+ spacing: 5px; }
+ .notification-banner .secondary-icon {
+ icon-size: 1.09em; }
+ .notification-banner .notification-actions {
+ background-color: #141722;
+ padding-top: 2px;
+ spacing: 1px; }
+ .notification-banner .notification-button {
+ padding: 4px 4px 5px;
+ background-color: rgba(24, 27, 40, 0.9); }
+ .notification-banner .notification-button:first-child {
+ border-radius: 0 0 0 3px; }
+ .notification-banner .notification-button:last-child {
+ border-radius: 0 0 3px 0; }
+ .notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus {
+ background-color: #141722;
+ color: #c50ed2; }
+
+.summary-source-counter {
+ font-size: 10pt;
+ font-weight: bold;
+ height: 1.6em;
+ width: 1.6em;
+ -shell-counter-overlap-x: 3px;
+ -shell-counter-overlap-y: 3px;
+ background-color: #c50ed2;
+ color: #f7f7f7;
+ border: 2px solid #98abb2;
+ box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
+ border-radius: 0.9em; }
+
+.secondary-icon {
+ icon-size: 1.09em; }
+
+.chat-body {
+ spacing: 5px; }
+
+.chat-response {
+ margin: 5px; }
+
+.chat-log-message {
+ color: #7b939c; }
+
+.chat-new-group {
+ padding-top: 1em; }
+
+.chat-received {
+ padding-left: 4px; }
+ .chat-received:rtl {
+ padding-left: 0px;
+ padding-right: 4px; }
+
+.chat-sent {
+ padding-left: 18pt;
+ color: #6c8791; }
+ .chat-sent:rtl {
+ padding-left: 0;
+ padding-right: 18pt; }
+
+.chat-meta-message {
+ padding-left: 4px;
+ font-size: 9pt;
+ font-weight: bold;
+ color: #627a82; }
+ .chat-meta-message:rtl {
+ padding-left: 0;
+ padding-right: 4px; }
+
+.hotplug-transient-box {
+ spacing: 6px;
+ padding: 2px 72px 2px 12px; }
+
+.hotplug-notification-item {
+ padding: 2px 10px; }
+ .hotplug-notification-item:focus {
+ padding: 1px 71px 1px 11px; }
+
+.hotplug-notification-item-icon {
+ icon-size: 24px;
+ padding: 2px 5px; }
+
+.hotplug-resident-box {
+ spacing: 8px; }
+
+.hotplug-resident-mount {
+ spacing: 8px;
+ border-radius: 4px; }
+ .hotplug-resident-mount:hover {
+ background-color: rgba(24, 27, 40, 0.3); }
+
+.hotplug-resident-mount-label {
+ color: inherit;
+ padding-left: 6px; }
+
+.hotplug-resident-mount-icon {
+ icon-size: 24px;
+ padding-left: 6px; }
+
+.hotplug-resident-eject-icon {
+ icon-size: 16px; }
+
+.hotplug-resident-eject-button {
+ padding: 7px;
+ border-radius: 5px;
+ color: pink; }
+
+/* Eeeky things */
+.magnifier-zoom-region {
+ border: 2px solid #c50ed2; }
+ .magnifier-zoom-region.full-screen {
+ border-width: 0; }
+
+/* On-screen Keyboard */
+#keyboard {
+ background-color: rgba(24, 27, 40, 0.65); }
+
+.keyboard-layout {
+ spacing: 10px;
+ padding: 10px; }
+
+.keyboard-row {
+ spacing: 15px; }
+
+.keyboard-key {
+ color: #98abb2;
+ background-color: #0e1018;
+ box-shadow: none;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ border: 1px solid #12151e;
+ background-color: #181b28;
+ min-height: 2em;
+ min-width: 2em;
+ font-size: 14pt;
+ font-weight: bold;
+ border-radius: 5px; }
+ .keyboard-key:focus {
+ color: #c50ed2;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ box-shadow: none;
+ border: 1px solid #12151e; }
+ .keyboard-key:hover, .keyboard-key:checked {
+ color: #c50ed2;
+ background-color: #12151e;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black; }
+ .keyboard-key:active {
+ color: #c50ed2;
+ background-color: rgba(24, 27, 40, 0.95);
+ border: 1px solid #12151e;
+ text-shadow: none;
+ icon-shadow: none; }
+ .keyboard-key:grayed {
+ background-color: rgba(24, 27, 40, 0.95);
+ color: #98abb2;
+ border-color: rgba(0, 0, 0, 0.7); }
+
+.keyboard-subkeys {
+ color: white;
+ padding: 5px;
+ -arrow-border-radius: 10px;
+ -arrow-background-color: rgba(24, 27, 40, 0.65);
+ -arrow-border-width: 2px;
+ -arrow-border-color: #98abb2;
+ -arrow-base: 20px;
+ -arrow-rise: 10px;
+ -boxpointer-gap: 5px; }
+
+.candidate-popup-content {
+ padding: 0.5em;
+ spacing: 0.3em; }
+
+.candidate-index {
+ padding: 0 0.5em 0 0;
+ color: #7b939c; }
+
+.candidate-box {
+ padding: 0.3em 0.5em 0.3em 0.5em;
+ border-radius: 4px; }
+ .candidate-box:selected, .candidate-box:hover {
+ background-color: #c50ed2;
+ color: #f7f7f7; }
+
+.candidate-page-button-box {
+ height: 2em; }
+ .vertical .candidate-page-button-box {
+ padding-top: 0.5em; }
+ .horizontal .candidate-page-button-box {
+ padding-left: 0.5em; }
+
+.candidate-page-button {
+ padding: 4px; }
+
+.candidate-page-button-previous {
+ border-radius: 4px 0px 0px 4px;
+ border-right-width: 0; }
+
+.candidate-page-button-next {
+ border-radius: 0px 4px 4px 0px; }
+
+.candidate-page-button-icon {
+ icon-size: 1em; }
+
+/* Auth Dialogs & Screen Shield */
+.framed-user-icon {
+ background-size: contain;
+ border: 2px solid #98abb2;
+ color: #98abb2;
+ border-radius: 3px; }
+ .framed-user-icon:hover {
+ border-color: #f0f2f3;
+ color: #f0f2f3; }
+
+.login-dialog-banner-view {
+ padding-top: 24px;
+ max-width: 23em; }
+
+.login-dialog {
+ border: none;
+ background-color: transparent; }
+ .login-dialog .modal-dialog-button-box {
+ spacing: 3px; }
+ .login-dialog .modal-dialog-button {
+ padding: 3px 18px; }
+ .login-dialog .modal-dialog-button:default {
+ color: #98abb2;
+ background-color: #0e1018;
+ box-shadow: none;
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black;
+ border: 1px solid #12151e; }
+ .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus {
+ color: #c50ed2;
+ background-color: rgba(197, 14, 210, 0.7);
+ border: 1px solid #12151e;
+ text-shadow: 0 1px black;
+ icon-shadow: 0 1px black; }
+ .login-dialog .modal-dialog-button:default:active {
+ color: #c50ed2;
+ background-color: #c50ed2;
+ border: 1px solid #12151e;
+ text-shadow: none;
+ icon-shadow: none; }
+ .login-dialog .modal-dialog-button:default:insensitive {
+ color: #58636d;
+ background-color: rgba(38, 43, 55, 0.66);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.22);
+ border: none;
+ text-shadow: none;
+ icon-shadow: none; }
+
+.login-dialog-logo-bin {
+ padding: 24px 0px; }
+
+.login-dialog-banner {
+ color: #7b939c; }
+
+.login-dialog-button-box {
+ spacing: 5px; }
+
+.login-dialog-message-warning {
+ color: #f47d49; }
+
+.login-dialog-message-hint {
+ padding-top: 0;
+ padding-bottom: 20px; }
+
+.login-dialog-user-selection-box {
+ padding: 100px 0px; }
+
+.login-dialog-not-listed-label {
+ padding-left: 2px; }
+ .login-dialog-not-listed-button:focus .login-dialog-not-listed-label,
+ .login-dialog-not-listed-button:hover .login-dialog-not-listed-label {
+ color: #98abb2; }
+
+.login-dialog-not-listed-label {
+ font-size: 90%;
+ font-weight: bold;
+ color: #4c5e65;
+ padding-top: 1em; }
+
+.login-dialog-user-list-view {
+ -st-vfade-offset: 1em; }
+
+.login-dialog-user-list {
+ spacing: 12px;
+ padding: .2em;
+ width: 23em; }
+ .login-dialog-user-list:expanded .login-dialog-user-list-item:selected {
+ background-color: #c50ed2;
+ color: #f7f7f7; }
+ .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
+ border-right: 2px solid #c50ed2; }
+
+.login-dialog-user-list-item {
+ border-radius: 5px;
+ padding: .2em;
+ color: #4c5e65; }
+ .login-dialog-user-list-item:ltr {
+ padding-right: 1em; }
+ .login-dialog-user-list-item:rtl {
+ padding-left: 1em; }
+ .login-dialog-user-list-item .login-dialog-timed-login-indicator {
+ height: 2px;
+ margin: 2px 0 0 0;
+ background-color: #98abb2; }
+ .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator {
+ background-color: #f7f7f7; }
+
+.login-dialog-username,
+.user-widget-label {
+ color: #98abb2;
+ font-size: 120%;
+ font-weight: bold;
+ text-align: left;
+ padding-left: 15px; }
+
+.user-widget-label:ltr {
+ padding-left: 18px; }
+
+.user-widget-label:rtl {
+ padding-right: 18px; }
+
+.login-dialog-prompt-layout {
+ padding-top: 24px;
+ padding-bottom: 12px;
+ spacing: 8px;
+ width: 23em; }
+
+.login-dialog-prompt-label {
+ color: #627a82;
+ font-size: 110%;
+ padding-top: 1em; }
+
+.login-dialog-session-list-button StIcon {
+ icon-size: 1.25em; }
+
+.login-dialog-session-list-button {
+ color: #4c5e65; }
+ .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus {
+ color: #98abb2; }
+ .login-dialog-session-list-button:active {
+ color: #20282b; }
+
+.screen-shield-arrows {
+ padding-bottom: 3em; }
+
+.screen-shield-arrows Gjs_Arrow {
+ color: white;
+ width: 80px;
+ height: 48px;
+ -arrow-thickness: 12px;
+ -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
+
+.screen-shield-clock {
+ color: white;
+ text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
+ font-weight: bold;
+ text-align: center;
+ padding-bottom: 1.5em; }
+
+.screen-shield-clock-time {
+ font-size: 72pt;
+ text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); }
+
+.screen-shield-clock-date {
+ font-size: 28pt; }
+
+.screen-shield-notifications-container {
+ spacing: 6px;
+ width: 30em;
+ background-color: transparent;
+ max-height: 500px; }
+ .screen-shield-notifications-container .summary-notification-stack-scrollview {
+ padding-top: 0;
+ padding-bottom: 0; }
+ .screen-shield-notifications-container .notification,
+ .screen-shield-notifications-container .screen-shield-notification-source {
+ padding: 12px 6px;
+ border: 1px solid #98abb2;
+ background-color: rgba(24, 27, 40, 0.45);
+ color: #98abb2;
+ border-radius: 4px; }
+ .screen-shield-notifications-container .notification {
+ margin-right: 15px; }
+
+.screen-shield-notification-label {
+ font-weight: bold;
+ padding: 0px 0px 0px 12px; }
+
+.screen-shield-notification-count-text {
+ padding: 0px 0px 0px 12px; }
+
+#panel.lock-screen {
+ background-color: rgba(24, 27, 40, 0.45); }
+
+.screen-shield-background {
+ background: black;
+ box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); }
+
+#lockDialogGroup {
+ background: #2e3436 url(resource:///org/gnome/shell/theme/noise-texture.png);
+ background-repeat: repeat; }
+
+#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle {
+ background-color: rgba(24, 27, 40, 0.3); }
+ #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus {
+ background-color: rgba(24, 27, 40, 0.5); }
+ #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active {
+ background-color: rgba(197, 14, 210, 0.5); }
+
+#LookingGlassDialog {
+ background-color: rgba(0, 0, 0, 0.8);
+ spacing: 4px;
+ padding: 4px;
+ border: 2px solid grey;
+ border-radius: 4px; }
+ #LookingGlassDialog > #Toolbar {
+ border: 1px solid grey;
+ border-radius: 4px; }
+ #LookingGlassDialog .labels {
+ spacing: 4px; }
+ #LookingGlassDialog .notebook-tab {
+ -natural-hpadding: 12px;
+ -minimum-hpadding: 6px;
+ font-weight: bold;
+ color: #ccc;
+ transition-duration: 100ms;
+ padding-left: .3em;
+ padding-right: .3em; }
+ #LookingGlassDialog .notebook-tab:hover {
+ color: white;
+ text-shadow: black 0px 2px 2px; }
+ #LookingGlassDialog .notebook-tab:selected {
+ border-bottom-width: 2px;
+ border-color: #db10ea;
+ color: white;
+ text-shadow: black 0px 2px 2px; }
+ #LookingGlassDialog StBoxLayout#EvalBox {
+ padding: 4px;
+ spacing: 4px; }
+ #LookingGlassDialog StBoxLayout#ResultsArea {
+ spacing: 4px; }
+
+.lg-dialog StEntry {
+ selection-background-color: #bbbbbb;
+ selected-color: #333333; }
+
+.lg-dialog .shell-link {
+ color: #999999; }
+ .lg-dialog .shell-link:hover {
+ color: #dddddd; }
+
+.lg-completions-text {
+ font-size: .9em;
+ font-style: italic; }
+
+.lg-obj-inspector-title {
+ spacing: 4px; }
+
+.lg-obj-inspector-button {
+ border: 1px solid gray;
+ padding: 4px;
+ border-radius: 4px; }
+ .lg-obj-inspector-button:hover {
+ border: 1px solid #ffffff; }
+
+#lookingGlassExtensions {
+ padding: 4px; }
+
+.lg-extensions-list {
+ padding: 4px;
+ spacing: 6px; }
+
+.lg-extension {
+ border: 1px solid #6f6f6f;
+ border-radius: 4px;
+ padding: 4px; }
+
+.lg-extension-name {
+ font-weight: bold; }
+
+.lg-extension-meta {
+ spacing: 6px; }
+
+#LookingGlassPropertyInspector {
+ background: rgba(0, 0, 0, 0.8);
+ border: 2px solid grey;
+ border-radius: 4px;
+ padding: 6px; }
+
+.openweather-current-summarybox,
+.openweather-forecast-icon,
+.openweather-current-databox-captions,
+.openweather-current-databox-values,
+.openweather-current-icon,
+.openweather-forecast-summary,
+.openweather-forecast-temperature {
+ background: transparent; }
+
+.openweather-current-databox-captions, .openweather-forecast-day {
+ color: #00e8b7; }
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/apps/chrome.rc b/gtk/themes/Sweet-Dark/gtk-2.0/apps/chrome.rc
new file mode 100755
index 0000000..0c37ab3
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/apps/chrome.rc
@@ -0,0 +1,50 @@
+# ==============================================================================
+# CHROME/-UIM SPECIFIC SETTINGS
+# ==============================================================================
+
+# Chromium lets us define some colours and settings for better integration
+
+style "chrome-gtk-frame"
+{
+ ChromeGtkFrame::frame-color = @wm_color
+ ChromeGtkFrame::inactive-frame-color = @unfocused_wm_color
+
+ ChromeGtkFrame::frame-gradient-size = 16
+ ChromeGtkFrame::frame-gradient-color = shade(1.07, @wm_color)
+
+ ChromeGtkFrame::incognito-frame-color = shade(0.85, @wm_color)
+ ChromeGtkFrame::incognito-inactive-frame-color = @wm_color
+
+ ChromeGtkFrame::incognito-frame-gradient-color = @wm_color
+
+ ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @wm_color)
+ ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @wm_color)
+ ChromeGtkFrame::scrollbar-slider-normal-color = @wm_color
+}
+
+class "ChromeGtkFrame" style "chrome-gtk-frame"
+
+# Chromium uses base as the fill colour of its own entries
+#Â This would be fine but Gtk+ uses it to fill the surrounding space, so its set to bg
+#Â That results in Chromium using it for the fill, so we need to handle that
+
+style "chrome_entry" {
+ base[NORMAL] = @base_color
+ base[INSENSITIVE] = @base_color
+}
+
+widget_class "*Chrom*" style "chrome_entry"
+
+#Â Chrome Menu item background
+
+style "chrome_menu_item"
+{
+ bg[SELECTED] = @wm_color
+}
+
+widget_class "***" style "chrome_menu_item"
+
+
+#Â Chrome buttons
+
+widget_class "*Chrom*Button*" style "button"
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/apps/gimp.rc b/gtk/themes/Sweet-Dark/gtk-2.0/apps/gimp.rc
new file mode 100755
index 0000000..4908803
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/apps/gimp.rc
@@ -0,0 +1,83 @@
+# ==============================================================================
+# GIMP SPECIFIC SETTINGS
+# ==============================================================================
+
+# TODO: This could really look nicer
+style "gimp_spin_scale" {
+
+ # Spin background
+ bg[NORMAL] = @base_color
+
+ engine "pixmap" {
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_up"
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_up"
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_up"
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_up"
+ overlay_file = "assets/spin-up-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_down"
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_down"
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_down"
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_down"
+ overlay_file = "assets/spin-down-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ }
+
+}
+
+
+# Disable spin button assets for GimpSpinScale
+class "GimpSpinScale" style "gimp_spin_scale"
\ No newline at end of file
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/apps/libreoffice.rc b/gtk/themes/Sweet-Dark/gtk-2.0/apps/libreoffice.rc
new file mode 100755
index 0000000..6e976a2
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/apps/libreoffice.rc
@@ -0,0 +1,12 @@
+# ==============================================================================
+# OPEN/LIBREOFFICE SPECIFIC SETTINGS
+# ==============================================================================
+
+style "ooo_stepper_hack"
+{
+ GtkScrollbar::stepper-size = 13
+ GtkScrollbar::has-backward-stepper = 1
+ GtkScrollbar::has-forward-stepper = 1
+}
+
+widget "*openoffice-toplevel*" style "ooo_stepper_hack"
\ No newline at end of file
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/apps/terminal.rc b/gtk/themes/Sweet-Dark/gtk-2.0/apps/terminal.rc
new file mode 100755
index 0000000..07f4346
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/apps/terminal.rc
@@ -0,0 +1,48 @@
+# ==============================================================================
+# GNOME TERMINAL SPECIFIC SETTINGS
+# ==============================================================================
+
+style "terminal_window" = "dark" {
+}
+
+style "terminal_menubar"
+{
+
+ engine "murrine" {
+ }
+}
+
+style "terminal_notebook" = "dark"
+{
+ fg[ACTIVE] = mix (0.8, "#DADBDB", "#DADBDB")
+
+ engine "murrine" {
+ }
+}
+
+style "terminal_scrollbar" = "scrollbar"
+{
+ bg[NORMAL] = "#263238"
+ bg[PRELIGHT] = shade(1.08, "#263238")
+ bg[ACTIVE] = shade(0.94, "#263238")
+ bg[SELECTED] = shade(1.0, @selected_bg_color)
+ bg[INSENSITIVE] = "#263238"
+
+ engine "murrine" {
+ }
+}
+
+style "terminal_screen"
+{
+ text[NORMAL] = "#DADBDB"
+ base[NORMAL] = "#384952"
+
+ TerminalScreen::background-darkness = 0.95
+}
+
+widget "*TerminalWindow*" style "terminal_window"
+#widget "*TerminalWindow.*.*enu?ar" style "terminal_menubar"
+widget "*TerminalWindow.*.GtkNotebook*" style "terminal_notebook"
+widget "*TerminalWindow.*.GtkNotebook.*.GtkVScrollbar*" style "terminal_scrollbar"
+#widget "*TerminalWindow.*.GtkNotebook*utton*" style "terminal_button"
+widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen"
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/apps/thunar.rc b/gtk/themes/Sweet-Dark/gtk-2.0/apps/thunar.rc
new file mode 100755
index 0000000..2350816
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/apps/thunar.rc
@@ -0,0 +1,24 @@
+# ==============================================================================
+# THUNAR SPECIFIC SETTINGS
+# ==============================================================================
+
+style "sidepane" {
+ GtkTreeView::odd_row_color = @sidebar_bg
+ GtkTreeView::even_row_color = @sidebar_bg
+ base[NORMAL] = @bg_color
+ base[INSENSITIVE] = mix(0.4, shade(1.35, @selected_bg_color), shade(0.9, @base_color))
+ bg[NORMAL] = @bg_color
+ text[NORMAL] = mix(0.9, @sidebar_fg, @sidebar_fg)
+}
+
+style "thunar-frame" {
+ xthickness = 0
+ ythickness = 0
+}
+
+style "thunar-handle" { GtkPaned::handle-size = 2 }
+
+widget_class "*ThunarWindow*." style "thunar-frame"
+widget_class "*ThunarWindow*." style "thunar-handle"
+widget_class "*ThunarShortcutsView*" style "sidepane"
+widget_class "*ThunarTreeView*" style "sidepane"
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/apps/xfce.rc b/gtk/themes/Sweet-Dark/gtk-2.0/apps/xfce.rc
new file mode 100755
index 0000000..c01adca
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/apps/xfce.rc
@@ -0,0 +1,89 @@
+style "theme-panel" = "dark" {
+ xthickness = 1
+ ythickness = 1
+}
+
+style "xfdesktop-icon-view" {
+ XfdesktopIconView::label-alpha = 0
+ XfdesktopIconView::selected-label-alpha = 80
+ XfdesktopIconView::shadow-x-offset = 0
+ XfdesktopIconView::shadow-y-offset = 0
+ XfdesktopIconView::selected-shadow-x-offset = 0
+ XfdesktopIconView::selected-shadow-y-offset = 0
+ XfdesktopIconView::shadow-color = @tooltip_bg_color
+ XfdesktopIconView::selected-shadow-color = @tooltip_bg_color
+ XfdesktopIconView::cell-spacing = 2
+ XfdesktopIconView::cell-padding = 6
+ XfdesktopIconView::cell-text-width-proportion = 1.9
+
+ fg[NORMAL] = shade (0.9, @selected_fg_color)
+ fg[ACTIVE] = @selected_fg_color
+
+}
+
+style "theme-panel-text" = "dark" {
+}
+
+style "panel-entry" = "dark" {
+}
+
+style "theme-main-menu-text" = "theme-panel-text"
+{
+ fg[PRELIGHT] = "#ffffff"
+ text[PRELIGHT] = "#ffffff"
+}
+
+style "workspace-switcher" = "dark"
+{
+ bg[SELECTED] = shade (0.8, @selected_bg_color)
+}
+
+style "window-buttons" = "dark" {
+
+}
+
+style "indicator" = "theme-panel"
+{
+ xthickness = 0
+ ythickness = 0
+}
+
+widget "*PanelWidget*" style "theme-panel"
+widget "*PanelApplet*" style "theme-panel"
+widget "*fast-user-switch*" style "theme-panel"
+widget "*CPUFreq*Applet*" style "theme-panel"
+class "PanelApp*" style "theme-panel"
+class "PanelToplevel*" style "theme-panel"
+widget_class "*PanelToplevel*" style "theme-panel"
+widget_class "*notif*" style "theme-panel"
+widget_class "*Notif*" style "theme-panel"
+widget_class "*Tray*" style "theme-panel"
+widget_class "*tray*" style "theme-panel"
+widget_class "*computertemp*" style "theme-panel"
+widget_class "*Applet*Tomboy*" style "theme-panel"
+widget_class "*Applet*Netstatus*" style "theme-panel"
+
+# Fixes for tooltip text in some apps.
+widget_class "*Notif*Beagle*" style "theme-panel"
+widget_class "*Notif*Brasero*" style "theme-panel"
+
+# XFCE panel theming.
+widget "*Xfce*Panel*" style "theme-panel"
+class "*Xfce*Panel*" style "theme-panel"
+widget "*WnckPager*" style "workspace-switcher"
+widget "*XfdesktopIconView*" style "xfdesktop-icon-view"
+
+# Fix gtk-entries in the panel
+class "*SexyIconEntry*" style:highest "entry" # fixes dict-plugin
+widget "*xfce4-verve-plugin*GtkEntry" style:highest "entry" # fixes verve-plugin
+
+# Make sure panel text color doesn't change
+widget_class "*Panel*MenuBar*" style "theme-main-menu-text"
+widget_class "*Panel**" style "theme-main-menu-text"
+widget "*.clock-applet-button.*" style "theme-panel-text"
+widget "*PanelApplet*" style "theme-panel-text"
+
+# Override general panel-style with specific plugin-styles
+widget "*indicator-applet*" style "indicator"
+widget "*indicator-button*" style "indicator"
+#widget "*XfceTasklist*" style "dark_button"
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/border.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/border.png
new file mode 100644
index 0000000..42458ad
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/border.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-active.png
new file mode 100644
index 0000000..d77e368
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-hover.png
new file mode 100644
index 0000000..c79a588
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-insensitive.png
new file mode 100644
index 0000000..9f6427a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/button.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button.png
new file mode 100644
index 0000000..c8a9209
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/button.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-active.png
new file mode 100644
index 0000000..11713fc
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-hover.png
new file mode 100644
index 0000000..3bdd958
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-insensitive.png
new file mode 100644
index 0000000..30f90eb
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked.png
new file mode 100644
index 0000000..ced744f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-active.png
new file mode 100644
index 0000000..2ec13e6
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-hover.png
new file mode 100644
index 0000000..165dfa9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-insensitive.png
new file mode 100644
index 0000000..a56c2c4
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed.png
new file mode 100644
index 0000000..165dfa9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-active.png
new file mode 100644
index 0000000..dd4ce43
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png
new file mode 100644
index 0000000..72c58d9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-insensitive.png
new file mode 100644
index 0000000..307f22b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked.png
new file mode 100644
index 0000000..03b484e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/checkbox-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-active.png
new file mode 100644
index 0000000..7512ca5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-hover.png
new file mode 100644
index 0000000..695efe1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png
new file mode 100644
index 0000000..db4f980
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button.png
new file mode 100644
index 0000000..393394c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-button.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry-active.png
new file mode 100644
index 0000000..9f4d836
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png
new file mode 100644
index 0000000..02e1093
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry.png
new file mode 100644
index 0000000..9d01767
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-ltr-entry.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-active.png
new file mode 100644
index 0000000..0719cb2
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-hover.png
new file mode 100644
index 0000000..82beaba
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png
new file mode 100644
index 0000000..f598831
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button.png
new file mode 100644
index 0000000..b62c77b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-button.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry-active.png
new file mode 100644
index 0000000..5fe1f92
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png
new file mode 100644
index 0000000..646a02b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry.png
new file mode 100644
index 0000000..9773e29
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/combo-entry-rtl-entry.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-active.png
new file mode 100644
index 0000000..20bb9b8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-background-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-background-insensitive.png
new file mode 100644
index 0000000..b4932a1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-background-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-background.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-background.png
new file mode 100644
index 0000000..b4932a1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-background.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-insensitive.png
new file mode 100644
index 0000000..69b91a3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry.png
new file mode 100644
index 0000000..69b91a3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/entry.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/focus.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/focus.png
new file mode 100644
index 0000000..ba99343
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/focus.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame-inline.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame-inline.png
new file mode 100644
index 0000000..0ac4e86
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame-inline.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame-notebook.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame-notebook.png
new file mode 100644
index 0000000..926b79e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame-notebook.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame.png
new file mode 100644
index 0000000..327750f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/frame.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle-horz.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle-horz.png
new file mode 100644
index 0000000..94ffa3b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle-horz.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle-vert.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle-vert.png
new file mode 100644
index 0000000..add36b0
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle-vert.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle.png
new file mode 100644
index 0000000..b9c5b4d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/handle.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/line.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/line.png
new file mode 100644
index 0000000..41da5da
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/line.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-border.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-border.png
new file mode 100644
index 0000000..490cabb
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-border.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked-hover.png
new file mode 100644
index 0000000..de0bc3a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked-insensitive.png
new file mode 100644
index 0000000..8268000
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked.png
new file mode 100644
index 0000000..4a367cf
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-hover.png
new file mode 100644
index 0000000..22b7e11
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-insensitive.png
new file mode 100644
index 0000000..6e99d7b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed-hover.png
new file mode 100644
index 0000000..8b2112d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png
new file mode 100644
index 0000000..5d0fc82
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed.png
new file mode 100644
index 0000000..22c9a6e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox.png
new file mode 100644
index 0000000..22b7e11
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-checkbox.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-down-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-down-insensitive.png
new file mode 100644
index 0000000..c4d7e51
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-down-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-down.png
new file mode 100644
index 0000000..5c08bca
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left-hover.png
new file mode 100644
index 0000000..12fce5c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left-insensitive.png
new file mode 100644
index 0000000..3c70997
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left.png
new file mode 100644
index 0000000..12fce5c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-left.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right-hover.png
new file mode 100644
index 0000000..276ab08
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right-insensitive.png
new file mode 100644
index 0000000..e0e3f25
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right.png
new file mode 100644
index 0000000..276ab08
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-right.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-up-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-up-insensitive.png
new file mode 100644
index 0000000..3463134
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-up-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-up.png
new file mode 100644
index 0000000..278e881
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-pan-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked-hover.png
new file mode 100644
index 0000000..667b6b5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked-insensitive.png
new file mode 100644
index 0000000..fc206b2
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked.png
new file mode 100644
index 0000000..667b6b5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-hover.png
new file mode 100644
index 0000000..ce63c9e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-insensitive.png
new file mode 100644
index 0000000..09f6792
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed-hover.png
new file mode 100644
index 0000000..ffb9c92
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed-insensitive.png
new file mode 100644
index 0000000..aa29675
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed.png
new file mode 100644
index 0000000..ffb9c92
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio.png
new file mode 100644
index 0000000..ce63c9e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menu-radio.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/menubar-item-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menubar-item-active.png
new file mode 100644
index 0000000..8ad4c61
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/menubar-item-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png
new file mode 100644
index 0000000..d789caf
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png
new file mode 100644
index 0000000..4adeb38
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png
new file mode 100644
index 0000000..a54d220
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png
new file mode 100644
index 0000000..7679fb6
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png
new file mode 100644
index 0000000..c0e74ac
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png
new file mode 100644
index 0000000..8aebc1f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry-active.png
new file mode 100644
index 0000000..20bb9b8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry-insensitive.png
new file mode 100644
index 0000000..69b91a3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry.png
new file mode 100644
index 0000000..69b91a3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/notebook-entry.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-down-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-down-insensitive.png
new file mode 100644
index 0000000..c4d7e51
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-down-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-down.png
new file mode 100644
index 0000000..5c08bca
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left-insensitive.png
new file mode 100644
index 0000000..20818f4
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left-semi.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left-semi.png
new file mode 100644
index 0000000..15f3afc
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left-semi.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left.png
new file mode 100644
index 0000000..0056451
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-left.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right-insensitive.png
new file mode 100644
index 0000000..51d051a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right-semi.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right-semi.png
new file mode 100644
index 0000000..dd0ee64
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right-semi.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right.png
new file mode 100644
index 0000000..a1afbab
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-right.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-up-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-up-insensitive.png
new file mode 100644
index 0000000..3463134
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-up-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-up.png
new file mode 100644
index 0000000..278e881
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/pan-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-horz-trough.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-horz-trough.png
new file mode 100644
index 0000000..13a8006
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-horz-trough.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-horz.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-horz.png
new file mode 100644
index 0000000..008120e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-horz.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-vert-trough.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-vert-trough.png
new file mode 100644
index 0000000..a04b3ef
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-vert-trough.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-vert.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-vert.png
new file mode 100644
index 0000000..042b34a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/progressbar-vert.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-active.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-hover.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-insensitive.png
new file mode 100644
index 0000000..1f6a287
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked.png
new file mode 100644
index 0000000..f15edc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-checked.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-active.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-hover.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-insensitive.png
new file mode 100644
index 0000000..d51669c
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed.png
new file mode 100644
index 0000000..abf0a20
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-mixed.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-active.png
new file mode 100644
index 0000000..e46a6a5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-hover.png
new file mode 100644
index 0000000..e46a6a5
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-insensitive.png
new file mode 100644
index 0000000..9b495c7
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked.png
new file mode 100644
index 0000000..edfa964
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/radio-unchecked.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-focus.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-focus.png
new file mode 100644
index 0000000..803c04f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-focus.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-trough-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-trough-active.png
new file mode 100644
index 0000000..5eba8b6
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-trough-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-trough.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-trough.png
new file mode 100644
index 0000000..7619352
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-horz-trough.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-active.png
new file mode 100644
index 0000000..09ab88d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-hover.png
new file mode 100644
index 0000000..1b9e373
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-insensitive.png
new file mode 100644
index 0000000..d5ba29d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider.png
new file mode 100644
index 0000000..d5ba29d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-slider.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-vert-trough-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-vert-trough-active.png
new file mode 100644
index 0000000..2dd2f7e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-vert-trough-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-vert-trough.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-vert-trough.png
new file mode 100644
index 0000000..53d34d9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scale-vert-trough.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png
new file mode 100644
index 0000000..d185fad
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png
new file mode 100644
index 0000000..309063a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider.png
new file mode 100644
index 0000000..654d390
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-slider.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-trough.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-trough.png
new file mode 100644
index 0000000..abf8cf1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-horz-trough.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png
new file mode 100644
index 0000000..572efc3
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-active.png
new file mode 100644
index 0000000..88fa33d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png
new file mode 100644
index 0000000..af8d43d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-hover.png
new file mode 100644
index 0000000..5de7637
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-rtl.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-rtl.png
new file mode 100644
index 0000000..64dfa5a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider-rtl.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider.png
new file mode 100644
index 0000000..1db3423
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-slider.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-trough-rtl.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-trough-rtl.png
new file mode 100644
index 0000000..217239f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-trough-rtl.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-trough.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-trough.png
new file mode 100644
index 0000000..217239f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/scrollbar-vert-trough.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-down-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-down-insensitive.png
new file mode 100644
index 0000000..402ec2e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-down-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-down.png
new file mode 100644
index 0000000..f24143b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-active.png
new file mode 100644
index 0000000..117d67d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-hover.png
new file mode 100644
index 0000000..6f00be9
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-insensitive.png
new file mode 100644
index 0000000..a54da36
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down.png
new file mode 100644
index 0000000..882477d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-active.png
new file mode 100644
index 0000000..81c500a
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-hover.png
new file mode 100644
index 0000000..5faaf48
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-insensitive.png
new file mode 100644
index 0000000..ab91d76
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up.png
new file mode 100644
index 0000000..ab91d76
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-ltr-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-active.png
new file mode 100644
index 0000000..67d7f88
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-hover.png
new file mode 100644
index 0000000..f3e2e06
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-insensitive.png
new file mode 100644
index 0000000..fb1bd32
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down.png
new file mode 100644
index 0000000..953404d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-active.png
new file mode 100644
index 0000000..69fb466
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-hover.png
new file mode 100644
index 0000000..0678a18
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-insensitive.png
new file mode 100644
index 0000000..3d876a0
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up.png
new file mode 100644
index 0000000..3ee7b1e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-rtl-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-up-insensitive.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-up-insensitive.png
new file mode 100644
index 0000000..e6809bf
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-up-insensitive.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-up.png
new file mode 100644
index 0000000..6f988ee
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/spin-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-down-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-down-active.png
new file mode 100644
index 0000000..3f784b2
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-down-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-down.png
new file mode 100644
index 0000000..ec868b1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-horz-gap.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-horz-gap.png
new file mode 100644
index 0000000..0e67c14
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-horz-gap.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-left-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-left-active.png
new file mode 100644
index 0000000..b018d62
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-left-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-left.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-left.png
new file mode 100644
index 0000000..419c14e
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-left.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-right-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-right-active.png
new file mode 100644
index 0000000..f82887b
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-right-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-right.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-right.png
new file mode 100644
index 0000000..c24ec13
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-right.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-up-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-up-active.png
new file mode 100644
index 0000000..dc609e1
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-up-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-up.png
new file mode 100644
index 0000000..94d70d0
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-vert-gap.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-vert-gap.png
new file mode 100644
index 0000000..d6adeab
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/tab-vert-gap.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/toolbar-button-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/toolbar-button-active.png
new file mode 100644
index 0000000..b51dc5d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/toolbar-button-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/toolbar-button-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/toolbar-button-hover.png
new file mode 100644
index 0000000..0d662fa
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/toolbar-button-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down-active.png
new file mode 100644
index 0000000..cc46d25
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down-hover.png
new file mode 100644
index 0000000..7a1cb0f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down.png
new file mode 100644
index 0000000..3662cd7
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-down.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up-active.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up-active.png
new file mode 100644
index 0000000..aa79ad8
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up-active.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up-hover.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up-hover.png
new file mode 100644
index 0000000..1cec340
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up-hover.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up.png
new file mode 100644
index 0000000..69f6e69
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-pan-up.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-separator-ltr.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-separator-ltr.png
new file mode 100644
index 0000000..9b7596d
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-separator-ltr.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-separator-rtl.png b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-separator-rtl.png
new file mode 100644
index 0000000..462e25f
Binary files /dev/null and b/gtk/themes/Sweet-Dark/gtk-2.0/assets/treeview-separator-rtl.png differ
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/gtkrc b/gtk/themes/Sweet-Dark/gtk-2.0/gtkrc
new file mode 100755
index 0000000..4e0df46
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/gtkrc
@@ -0,0 +1,31 @@
+
+# Text/base colors
+gtk-color-scheme = "text_color:#C3C7D1\nbase_color:#181b28"
+# Foreground/background colors
+gtk-color-scheme = "fg_color:#C3C7D1\nbg_color:#161925"
+#Â Selection colors
+gtk-color-scheme = "selected_fg_color:#fefefe\nselected_bg_color:#c50ed2"
+# Tooltip colors
+gtk-color-scheme = "tooltip_fg_color:#2d2d2d\ntooltip_bg_color:#fefefe"
+# Window colors
+gtk-color-scheme = "wm_color:#31363d\nunfocused_wm_color:#31363d"
+# Panel colors
+gtk-color-scheme = "panel_bg_color:#263238\npanel_fg_color:#ffffff"
+# Dark Theme - Text/base colors
+gtk-color-scheme = "dark_text_color:#C3C7D1\ndark_base_color:#181b28"
+# Dark Theme - Foreground/background colors
+gtk-color-scheme = "dark_fg_color:#C3C7D1\ndark_bg_color:#161925"
+gtk-color-scheme = "sidebar_bg:#161925"
+gtk-color-scheme = "sidebar_fg:#98abb2"
+gtk-auto-mnemonics = 1
+gtk-primary-button-warps-slider = 1
+
+include "main.rc"
+
+# App stylings
+include "apps/chrome.rc"
+include "apps/gimp.rc"
+include "apps/libreoffice.rc"
+include "apps/terminal.rc"
+include "apps/thunar.rc"
+include "apps/xfce.rc"
diff --git a/gtk/themes/Sweet-Dark/gtk-2.0/main.rc b/gtk/themes/Sweet-Dark/gtk-2.0/main.rc
new file mode 100755
index 0000000..3589efc
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-2.0/main.rc
@@ -0,0 +1,2615 @@
+style "default" {
+
+ xthickness = 1
+ ythickness = 1
+
+ ####################
+ # Style Properties #
+ ####################
+
+ GtkWidget::focus-line-width = 1
+ GtkWidget::focus-line-pattern = "\2\1"
+
+ GtkToolbar::internal-padding = 4
+ GtkToolButton::icon-spacing = 4
+
+ GtkWidget::tooltip-radius = 3
+ GtkWidget::tooltip-alpha = 235
+ GtkWidget::new-tooltip-style = 1 #for compatibility
+
+ GtkWidget::link-color = shade(0.9, @selected_bg_color)
+ GtkWidget::visited-link-color = shade(0.8, @selected_bg_color)
+ GnomeHRef::link_color = shade(0.9, @selected_bg_color)
+ GtkHTML::link-color = shade(0.9, @selected_bg_color)
+ GtkHTML::vlink-color = shade(0.8, @selected_bg_color)
+ GtkIMHtml::hyperlink-color = shade(0.9, @selected_bg_color)
+ GtkIMHtml::hyperlink-visited-color = shade(0.8, @selected_bg_color)
+
+ GtkSeparatorMenuItem::horizontal-padding = 0
+ GtkSeparatorMenuItem::wide-separators = 1
+ GtkSeparatorMenuItem::separator-height = 1
+
+ GtkButton::child-displacement-y = 0
+
+ GtkButton::default-border = {0, 0, 0, 0}
+ GtkButton::default-outside-border = {0, 0, 0, 0}
+ GtkButton::inner-border = {4, 4, 4, 4}
+
+ GtkEntry::state-hint = 1
+ GtkEntry::inner-border = {7, 7, 4, 5}
+
+ GtkPaned::handle-size = 9
+ GtkHPaned::handle-size = 9
+ GtkVPaned::handle-size = 9
+
+ GtkScrollbar::trough-border = 0
+ GtkRange::trough-border = 0
+ GtkRange::slider-width = 13
+ GtkRange::stepper-size = 0
+ GtkRange::activate-slider = 1
+
+ GtkScrollbar::activate-slider = 1
+ GtkScrollbar::stepper-size = 0
+ GtkScrollbar::has-backward-stepper = 0
+ GtkScrollbar::has-forward-stepper = 0
+ GtkScrollbar::min-slider-length = 48 # 42 + 2*3 (margins)
+ GtkScrolledWindow::scrollbar-spacing = 0
+ GtkScrolledWindow::scrollbars-within-bevel = 1
+
+ GtkScale::slider_length = 26
+ GtkScale::slider_width = 26
+ GtkScale::trough-side-details = 1
+
+ GtkProgressBar::min-horizontal-bar-height = 6
+ GtkProgressBar::min-vertical-bar-width = 6
+ # Making this bigger than the min[height,width]-2*[y,x]spacing makes the
+ # whole progressbar thicker, so by setting it to the exact above value
+ #Â we get the maximum spacing between the text and the edges without
+ # doing so.
+ GtkProgressBar::xspacing = 4
+ GtkProgressBar::yspacing = 4
+
+ GtkStatusbar::shadow_type = GTK_SHADOW_NONE
+ GtkSpinButton::shadow_type = GTK_SHADOW_NONE
+ GtkMenuBar::shadow-type = GTK_SHADOW_NONE
+ GtkToolbar::shadow-type = GTK_SHADOW_NONE
+ # TODO: find out what this comment means:
+ # ( every window is misaligned for the sake of menus ):
+ GtkMenuBar::internal-padding = 0
+ GtkMenu::horizontal-padding = 0
+ GtkMenu::vertical-padding = 2
+ GtkMenu::double-arrows = 0
+ GtkMenuItem::arrow-scaling = 1
+ GtkMenuItem::toggle-spacing = 10
+
+ GtkCheckButton::indicator_spacing = 3
+ GtkOptionMenu::indicator_spacing = {13, 13, 5, 8}
+
+ GtkTreeView::expander-size = 16
+ GtkTreeView::vertical-separator = 0
+ GtkTreeView::horizontal-separator = 4
+ GtkTreeView::allow-rules = 1
+ #Â Set this because some apps read it
+ GtkTreeView::odd-row-color = @base_color
+ GtkTreeView::even-row-color = @base_color
+ GtkTreeView::odd_row_color = shade(0.90, @base_color)
+
+ GtkExpander::expander-size = 16
+
+ GtkNotebook::tab-overlap = 4
+
+ ##########
+ # Colors #
+ ##########
+
+ bg[NORMAL] = @bg_color
+ bg[PRELIGHT] = @bg_color
+ bg[SELECTED] = @selected_bg_color
+ bg[INSENSITIVE] = mix (0.6, @bg_color, @base_color)
+ bg[ACTIVE] = @bg_color
+
+ fg[NORMAL] = @fg_color
+ fg[PRELIGHT] = @fg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[INSENSITIVE] = mix (0.5, @fg_color, @bg_color)
+ fg[ACTIVE] = @fg_color
+
+ text[NORMAL] = @text_color
+ text[PRELIGHT] = @text_color
+ text[SELECTED] = @selected_fg_color
+ text[INSENSITIVE] = darker (@bg_color)
+ text[ACTIVE] = @selected_fg_color
+
+ base[NORMAL] = @base_color
+ base[PRELIGHT] = shade (0.95, @bg_color)
+ base[SELECTED] = @selected_bg_color
+ base[INSENSITIVE] = mix (0.5, @fg_color, @bg_color)
+ base[ACTIVE] = @selected_bg_color
+
+ # For succinctness, all reasonable pixmap options remain here
+
+ #Â Draw frame around menu in a non-compositied environment
+ # This needs to go before pixmap because we need to override some stuff
+ engine "adwaita" {}
+
+ engine "pixmap" {
+
+ #################
+ # Check Buttons #
+ #################
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = SELECTED
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/checkbox-checked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/checkbox-checked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = SELECTED
+ shadow = IN
+ overlay_file = "assets/checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/checkbox-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = SELECTED
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ #################
+ # Radio Buttons #
+ #################
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = SELECTED
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/radio-checked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/radio-checked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = SELECTED
+ shadow = IN
+ overlay_file = "assets/radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/radio-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = SELECTED
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ ##########
+ # Arrows #
+ ##########
+
+ #Â Overrides
+
+ #Â Disable arrows in spinbuttons
+ image {
+ function = ARROW
+ detail = "spinbutton"
+ }
+
+ # Disable arrows for qt in scrollbars
+ image {
+ function = ARROW
+ detail = "vscrollbar"
+ }
+ image {
+ function = ARROW
+ detail = "hscrollbar"
+ }
+
+ # Menu arrows
+
+ image {
+ function = ARROW
+ state = NORMAL
+ detail = "menuitem"
+ overlay_file = "assets/menu-pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ detail = "menuitem"
+ overlay_file = "assets/menu-pan-left-hover.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menuitem"
+ overlay_file = "assets/menu-pan-left-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ detail = "menuitem"
+ overlay_file = "assets/menu-pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ detail = "menuitem"
+ overlay_file = "assets/menu-pan-right-hover.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menuitem"
+ overlay_file = "assets/menu-pan-right-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menu_scroll_arrow_up"
+ overlay_file = "assets/menu-pan-up-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = ARROW
+ detail = "menu_scroll_arrow_up"
+ overlay_file = "assets/menu-pan-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menu_scroll_arrow_down"
+ overlay_file = "assets/menu-pan-down-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = ARROW
+ detail = "menu_scroll_arrow_down"
+ overlay_file = "assets/menu-pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ # Regular arrows
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-up-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-down-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-left-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-right-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ ######################
+ # Option Menu Arrows #
+ ######################
+
+ image {
+ function = TAB
+ state = NORMAL
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = TAB
+ state = PRELIGHT
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = TAB
+ state = ACTIVE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = TAB
+ state = INSENSITIVE
+ overlay_file = "assets/pan-down-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ #########
+ # Lines #
+ #########
+
+ image {
+ function = VLINE
+ file = "assets/line.png"
+ border = {1, 0, 0, 0}
+ }
+
+ image {
+ function = HLINE
+ file = "assets/line.png"
+ border = {0, 0, 1, 0}
+ }
+
+ #########
+ # Focus #
+ #########
+
+ image {
+ function = FOCUS
+ file = "assets/focus.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ }
+
+ ###########
+ # Handles #
+ ###########
+
+ image {
+ function = HANDLE
+ detail = "handlebox"
+ overlay_file = "assets/handle.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = HANDLE
+ file = "assets/handle-horz.png"
+ border = {0, 0, 4, 4}
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = HANDLE
+ file = "assets/handle-vert.png"
+ border = {4, 4, 0, 0}
+ orientation = VERTICAL
+ }
+
+ image {
+ function = RESIZE_GRIP
+ }
+
+ #############
+ # Expanders #
+ #############
+
+ image {
+ function = EXPANDER
+ expander_style = EXPANDED
+ file = "assets/pan-down.png"
+ }
+
+ #Â LTR
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ file = "assets/pan-right.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_COLLAPSED
+ file = "assets/pan-right-semi.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_EXPANDED
+ file = "assets/pan-right-semi.png"
+ direction = LTR
+ }
+
+ #Â RTL
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ file = "assets/pan-left.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_COLLAPSED
+ file = "assets/pan-left-semi.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_EXPANDED
+ file = "assets/pan-left-semi.png"
+ direction = RTL
+ }
+
+ #############
+ #Â Notebooks #
+ #############
+
+ # Left
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab-left-active.png"
+ border = { 3,3,3,3 }
+ stretch = TRUE
+ gap_side = RIGHT
+ }
+
+ image {
+ function = EXTENSION
+ file = "assets/tab-left.png"
+ border = { 3,3,3,3 }
+ stretch = TRUE
+ gap_side = RIGHT
+ }
+
+ # Right
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab-right-active.png"
+ border = { 3,3,3,3 }
+ stretch = TRUE
+ gap_side = LEFT
+ }
+
+ image {
+ function = EXTENSION
+ file = "assets/tab-right.png"
+ border = { 3,3,3,3 }
+ stretch = TRUE
+ gap_side = LEFT
+ }
+
+ # Up
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab-up-active.png"
+ border = { 3,3,5,3 }
+ stretch = TRUE
+ gap_side = BOTTOM
+ }
+
+ image {
+ function = EXTENSION
+ file = "assets/tab-up.png"
+ border = { 3,3,3,3 }
+ stretch = TRUE
+ gap_side = BOTTOM
+ }
+
+ # Down
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab-down-active.png"
+ border = { 3,3,3,5 }
+ stretch = TRUE
+ gap_side = TOP
+ }
+
+ image {
+ function = EXTENSION
+ file = "assets/tab-down.png"
+ border = { 3,3,3,3 }
+ stretch = TRUE
+ gap_side = TOP
+ }
+
+ # Inner frame
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab-vert-gap.png"
+ gap_border = {1, 0, 1, 1}
+ gap_side = LEFT
+ }
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab-vert-gap.png"
+ gap_border = {0, 1, 1, 1}
+ gap_side = RIGHT
+ }
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab-horz-gap.png"
+ gap_border = {1, 1, 1, 0}
+ gap_side = TOP
+ }
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab-horz-gap.png"
+ gap_border = {1, 1, 0, 1}
+ gap_side = BOTTOM
+ }
+
+ # Standalone frame
+ image {
+ function = BOX
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ }
+
+ ##############
+ #Â Scrollbars #
+ ##############
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/scrollbar-horz-trough.png"
+ border = {0, 0, 1, 0}
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/scrollbar-vert-trough.png"
+ border = {1, 0, 0, 0}
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/scrollbar-vert-trough-rtl.png"
+ border = {0, 1, 0, 0}
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+
+ #Â Disable insensitive sliders
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "slider"
+ }
+
+ # Horizontal sliders
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider.png"
+ border = {6, 6, 7, 6 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider-hover.png"
+ border = {6, 6, 7, 6 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider-active.png"
+ border = {6, 6, 7, 6 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ # Vertical sliders
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "slider"
+ file = "assets/scrollbar-vert-slider.png"
+ border = {7, 6, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "slider"
+ file = "assets/scrollbar-vert-slider-hover.png"
+ border = {7, 6, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "slider"
+ file = "assets/scrollbar-vert-slider-active.png"
+ border = {7, 6, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ #Â RTL
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "slider"
+ file = "assets/scrollbar-vert-slider-rtl.png"
+ border = {6, 7, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "slider"
+ file = "assets/scrollbar-vert-slider-hover-rtl.png"
+ border = {6, 7, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "slider"
+ file = "assets/scrollbar-vert-slider-active-rtl.png"
+ border = {6, 7, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ ##########
+ # Scales #
+ ##########
+
+ #Â Troughs
+ #Â They are overrided later on
+ # We set them here too because some widgets don't specify their orientation
+
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-horz-trough.png"
+ border = {10, 10, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-horz-trough-active.png"
+ border = {10, 10, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-vert-trough.png"
+ border = {0, 0, 10, 10}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-vert-trough-active.png"
+ border = {0, 0, 10, 10}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ #Â Sliders
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "hscale"
+ file = "assets/scale-slider.png"
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "hscale"
+ file = "assets/scale-slider-hover.png"
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "hscale"
+ file = "assets/scale-slider-active.png"
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "hscale"
+ file = "assets/scale-slider-insensitive.png"
+ }
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "vscale"
+ file = "assets/scale-slider.png"
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "vscale"
+ file = "assets/scale-slider-hover.png"
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "vscale"
+ file = "assets/scale-slider-active.png"
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "vscale"
+ file = "assets/scale-slider-insensitive.png"
+ }
+
+ ###########
+ # Menubar #
+ ###########
+
+ image {
+ function = BOX
+ detail = "menubar"
+ file = "assets/line.png"
+ border = {0, 0, 0, 1}
+ }
+
+ #########
+ # Menus #
+ #########
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "menu_scroll_arrow_up"
+ file = "assets/line.png"
+ }
+
+ image {
+ function = BOX
+ detail = "menu_scroll_arrow_up"
+ file = "assets/line.png"
+ border = {0, 0, 0, 1}
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "menu_scroll_arrow_down"
+ file = "assets/line.png"
+ }
+
+ image {
+ function = BOX
+ detail = "menu_scroll_arrow_down"
+ file = "assets/line.png"
+ border = {0, 0, 1, 0}
+ }
+
+ ###########
+ # Entries #
+ ###########
+
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ file = "assets/entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = FLAT_BOX
+ state = ACTIVE
+ detail = "entry_bg"
+ file = "assets/entry-background.png"
+ }
+
+ image {
+ function = FLAT_BOX
+ state = INSENSITIVE
+ detail = "entry_bg"
+ file = "assets/entry-background-insensitive.png"
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "entry_bg"
+ file = "assets/entry-background.png"
+ }
+ #########
+ # Spins #
+ #########
+
+ # Spin-Up LTR
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up.png"
+ border = {1, 4, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up-hover.png"
+ border = {1, 4, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up-active.png"
+ border = {1, 4, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up-insensitive.png"
+ border = {1, 4, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up-insensitive.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ # Spin-Up RTL
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up.png"
+ border = {4, 1, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up-hover.png"
+ border = {4, 1, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up-hover.png"
+ border = {4, 1, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up-insensitive.png"
+ border = {4, 1, 4, 0}
+ stretch = TRUE
+ overlay_file = "assets/spin-up-insensitive.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ # Spin-Down LTR
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down.png"
+ border = {1, 4, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down-hover.png"
+ border = {1, 4, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down-active.png"
+ border = {1, 4, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down-insensitive.png"
+ border = {1, 4, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down-insensitive.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ # Spin-Down RTL
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down.png"
+ border = {4, 1, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down-hover.png"
+ border = {4, 1, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down-active.png"
+ border = {4, 1, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down-insensitive.png"
+ border = {4, 1, 1, 4}
+ stretch = TRUE
+ overlay_file = "assets/spin-down-insensitive.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ ##############
+ # Scrollbars #
+ ##############
+
+ image {
+ function = BOX
+ detail = "bar"
+ file = "assets/progressbar-horz.png"
+ stretch = TRUE
+ border = {2, 2, 1, 1}
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "bar"
+ file = "assets/progressbar-vert.png"
+ stretch = TRUE
+ border = {1, 1, 2, 2}
+ orientation = VERTICAL
+ }
+
+ #############
+ # Treeviews #
+ #############
+
+ #Â Disable active the column highlight
+ # We need to match specific cells or we break stuff
+ # Looking at you deadbeef
+
+ image {
+ function = FLAT_BOX
+ detail = "cell_even_sorted"
+ state = NORMAL
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "cell_odd_sorted"
+ state = NORMAL
+ }
+
+ #Â Disable all the other shadows
+ # This prevents the Raleigh effect
+ image {
+ function = SHADOW
+ }
+
+ }
+
+}
+
+style "menubar" {
+
+ # Needed to fix Firefox's menubar text
+ bg[NORMAL] = @dark_bg_color
+ text[NORMAL] = @dark_fg_color
+ fg[NORMAL] = @dark_fg_color
+ fg[PRELIGHT] = @dark_fg_color
+ bg[SELECTED] = @dark_bg_color
+ fg[SELECTED] = shade(0.9, @dark_fg_color)
+
+}
+
+style "menubar_item" {
+
+ xthickness = 3
+ ythickness = 4
+
+ fg[NORMAL] = @dark_fg_color
+ fg[PRELIGHT] = @dark_fg_color
+ text[NORMAL] = @dark_fg_color
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ state = PRELIGHT
+ file = "assets/menubar-item-active.png"
+ border = {0, 0, 0, 3}
+ }
+ }
+
+}
+
+style "menu" {
+
+ xthickness = 0
+ ythickness = 0
+
+ bg[NORMAL] = @base_color
+ bg[INSENSITIVE] = @base_color
+ bg[PRELIGHT] = @base_color
+ bg[SELECTED] = @selected_bg_color
+
+}
+
+style "menu_item" {
+
+ xthickness = 3
+ ythickness = 4
+
+ bg[PRELIGHT] = @selected_bg_color
+ # Chromium uses this setting
+ bg[SELECTED] = @selected_bg_color
+
+ fg[PRELIGHT] = @selected_fg_color
+ # Some widgets use text, we need to handle that
+ text[NORMAL] = @fg_color
+ text[PRELIGHT] = @selected_fg_color
+
+ #Â Unfortunately we can't tell regular and menu checks/radios apart
+ # Without the heirarchy
+ engine "pixmap" {
+
+ #################
+ # Check Buttons #
+ #################
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ #################
+ # Radio Buttons #
+ #################
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/menu-radio.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/menu-radio-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/menu-radio.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/menu-radio-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+
+
+ }
+
+}
+
+style "separator_menu_item" {
+
+ xthickness = 0
+ ythickness = 0
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ file = "assets/line.png"
+ }
+ }
+
+}
+
+style "button_label" {
+ fg[PRELIGHT] = @selected_fg_color
+ fg[ACTIVE] = @selected_fg_color
+}
+
+style "misc_button_label" {
+ fg[PRELIGHT] = @fg_color
+ fg[ACTIVE] = @fg_color
+}
+
+style "button" {
+
+ xthickness = 2
+ ythickness = 2
+
+ fg[PRELIGHT] = @selected_fg_color
+ fg[ACTIVE] = @selected_fg_color
+ font_name = "Bold"
+
+ # For the sake of sanity style buttons this way
+ engine "pixmap" {
+
+ ###########
+ #Â Buttons #
+ ###########
+
+ image {
+ function = BOX
+ state = NORMAL
+ file = "assets/button.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = OUT
+ file = "assets/button-hover.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ # Don't add hover effect on pressed buttons
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = IN
+ file = "assets/button-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ file = "assets/button-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ file = "assets/button-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+ }
+}
+
+style "link_button" {
+
+ # Disable the button effect, leave just the link
+ engine "pixmap" {
+ image {
+ function = BOX
+ }
+ }
+
+}
+
+style "entry" {
+
+ #Â We set this same as the border of the border of the entry
+ #Â This way theres no overlap
+ xthickness = 4
+ ythickness = 4
+
+}
+
+style "combobox" {
+
+ xthickness = 6
+ ythickness = 4
+
+ # This affects only the button beside an entry
+ GtkButton::inner-border = {0, 0, 0, 0}
+
+}
+
+style "combobox_cellview" {
+ text[NORMAL] = @fg_color
+ text[PRELIGHT] = @fg_color
+}
+
+style "combobox_entry" {
+
+ # Since one side of the button is missing, we need to shift the arrow a little to the right
+ GtkButton::inner-border = {0, 1, 0, 0}
+
+ engine "pixmap" {
+
+ #############
+ # LTR entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/combo-entry-ltr-entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/combo-entry-ltr-entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/combo-entry-ltr-entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ #############
+ # RTL entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/combo-entry-rtl-entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/combo-entry-rtl-entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/combo-entry-rtl-entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ ##############
+ # LTR button #
+ ##############
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "button"
+ file = "assets/combo-entry-ltr-button.png"
+ border = {0, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "button"
+ file = "assets/combo-entry-ltr-button-hover.png"
+ border = {0, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "button"
+ file = "assets/combo-entry-ltr-button-active.png"
+ border = {0, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "button"
+ file = "assets/combo-entry-ltr-button-insensitive.png"
+ border = {0, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ ##############
+ # RTL button #
+ ##############
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "button"
+ file = "assets/combo-entry-rtl-button.png"
+ border = {4, 0, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "button"
+ file = "assets/combo-entry-rtl-button-hover.png"
+ border = {4, 0, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "button"
+ file = "assets/combo-entry-rtl-button-active.png"
+ border = {4, 0, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "button"
+ file = "assets/combo-entry-rtl-button-insensitive.png"
+ border = {4, 0, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ }
+
+}
+
+style "combo_button_padding" {
+
+ # Since one side of the button is missing, we need to shift the arrow a little to the right
+ #Â This is the same thing we've done above but the combo, unlike the combobox,
+ # uses padding the same way as a button
+ GtkButton::inner-border = {6, 8, 4, 4}
+
+}
+
+style "notebook" {
+
+ xthickness = 5
+ ythickness = 2
+
+}
+
+style "notebook_viewport" {
+ bg[NORMAL] = @base_color
+}
+
+style "notebook_bg" {
+ bg[NORMAL] = @base_color
+ bg[PRELIGHT] = @base_color
+ bg[INSENSITIVE] = @base_color
+}
+
+style "notebook_entry" {
+
+ engine "pixmap" {
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/notebook-entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/notebook-entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ file = "assets/notebook-entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+ }
+}
+
+style "normal_bg" {
+ bg[NORMAL] = @bg_color
+ bg[PRELIGHT] = @bg_color
+ bg[INSENSITIVE] = mix (0.6, @bg_color, @base_color)
+}
+
+style "normal_entry" {
+
+ engine "pixmap" {
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ file = "assets/entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+ }
+}
+
+style "notebook_combo" {
+
+ engine "pixmap" {
+
+ #############
+ # LTR entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/notebook-combo-entry-ltr-entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/notebook-combo-entry-ltr-entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/notebook-combo-entry-ltr-entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ #############
+ # RTL entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/notebook-combo-entry-rtl-entry.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/notebook-combo-entry-rtl-entry-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/notebook-combo-entry-rtl-entry-insensitive.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ }
+
+}
+
+style "textview" {
+ bg[NORMAL] = @base_color
+}
+
+style "scale_horz" {
+
+ engine "pixmap" {
+
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-horz-trough.png"
+ border = {10, 10, 0, 0}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-horz-trough-active.png"
+ border = {10, 10, 0, 0}
+ stretch = TRUE
+ }
+
+ }
+
+}
+
+style "scale_vert" {
+
+ engine "pixmap" {
+
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-vert-trough.png"
+ border = {0, 0, 10, 10}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-vert-trough-active.png"
+ border = {0, 0, 10, 10}
+ stretch = TRUE
+ }
+
+ }
+
+}
+
+style "progressbar" {
+
+ xthickness = 1
+ ythickness = 1
+
+ fg[PRELIGHT] = @selected_fg_color
+
+ engine "pixmap" {
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/progressbar-horz-trough.png"
+ border = {3, 3, 2, 2}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/progressbar-vert-trough.png"
+ border = {2, 2, 3, 3}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ }
+
+}
+
+style "treeview_header" {
+
+ xthickness = 1
+ ythickness = 0
+
+ fg[NORMAL] = mix(0.5, @fg_color, @base_color)
+ fg[PRELIGHT] = mix(0.5, mix(0.5, @fg_color, @base_color), @fg_color)
+
+ font_name = "Bold"
+
+ GtkButton::inner-border = {5, 5, 0, 1}
+
+ engine "pixmap" {
+
+ image {
+ function = BOX
+ file = "assets/treeview-separator-ltr.png"
+ border = {0, 1, 0, 1}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ file = "assets/treeview-separator-rtl.png"
+ border = {1, 0, 0, 1}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/treeview-pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/treeview-pan-up-hover.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/treeview-pan-up-active.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/treeview-pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/treeview-pan-down-hover.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/treeview-pan-down-active.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ }
+
+}
+
+style "scrolled_window" {
+
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ file = "assets/frame.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ }
+ }
+
+}
+
+style "frame" {
+
+ engine "pixmap" {
+
+ image {
+ function = SHADOW
+ file = "assets/frame.png"
+ border = {0, 0, 0, 0}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW_GAP
+ file = "assets/frame.png"
+ border = {0, 0, 0, 0}
+ stretch = TRUE
+ gap_start_file = "assets/border.png"
+ gap_end_file = "assets/border.png"
+ }
+
+ }
+
+}
+
+style "toolbar_button" {
+
+ xthickness = 2
+ ythickness = 2
+
+ GtkButton::inner-border = {2, 2, 2, 2}
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = OUT
+ file = "assets/toolbar-button-hover.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ # Don't add hover effect on pressed buttons
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = IN
+ file = "assets/toolbar-button-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ file = "assets/toolbar-button-active.png"
+ border = {4, 4, 4, 4}
+ stretch = TRUE
+ }
+ }
+}
+
+style "toolbar_separator" {
+
+ GtkWidget::wide-separators = 1
+ GtkWidget::separator-width = 1
+ GtkWidget::separator-height = 1
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ file = "assets/line.png"
+ }
+ }
+
+}
+
+style "inline_toolbar" {
+
+ GtkToolbar::button-relief = GTK_RELIEF_NORMAL
+
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ file = "assets/frame-inline.png"
+ border = {1, 1, 0, 1}
+ stretch = TRUE
+ }
+ }
+
+}
+
+style "tooltip" {
+
+ xthickness = 13
+ ythickness = 13
+
+ bg[NORMAL] = @tooltip_bg_color
+ fg[NORMAL] = @tooltip_fg_color
+ bg[SELECTED] = @tooltip_bg_color
+
+}
+
+
+style "disable_shadow" {
+
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ }
+ }
+
+}
+
+style "disable_separator" {
+
+ xthickness = 0
+ ythickness = 0
+
+ GtkWidget::wide-separators = 1
+
+}
+
+# Text Style
+style "text" = "default" {
+ engine "murrine" { textstyle = 0 }
+}
+
+style "menu_text" = "menu_item" {
+ engine "murrine" { textstyle = 0 }
+}
+
+# Default style, containing most of the stuff
+class "GtkWidget" style "default"
+
+# Override padding, style and colour
+class "GtkButton" style "button"
+class "GtkLinkButton" style "link_button"
+class "GtkEntry" style "entry"
+class "GtkOldEditable" style "entry"
+class "GtkNotebook" style "notebook"
+class "GtkHScale" style "scale_horz"
+class "GtkVScale" style "scale_vert"
+class "GtkProgressBar" style "progressbar"
+class "GtkScrolledWindow" style "scrolled_window"
+class "GtkFrame" style "frame"
+class "GtkSeparatorToolItem" style "toolbar_separator"
+class "GtkMenuBar" style "menubar"
+class "GtkMenu" style "menu"
+class "GtkTextView" style "textview"
+
+widget_class "**" style "button_label"
+widget_class "**" style "misc_button_label"
+
+# Menu and menubar items
+widget_class "**" style "menu_item"
+widget_class "*.*" style "menubar_item"
+widget_class "**" style "separator_menu_item"
+
+# Frames in statusbars look ugly, let's disable them
+widget_class "**" style "disable_shadow"
+# Disable the frame around poor Wilbert too
+widget_class "**" style "disable_shadow"
+
+# Treeview buttons
+widget_class "***" style "treeview_header"
+
+# Give the file chooser toolbar a border
+widget_class "**" style "inline_toolbar"
+
+#Â Fix padding on regular comboboxes
+widget_class "*." style "combobox"
+# And disable separators on them
+widget_class "*.*" style "disable_separator"
+
+#Â Join together the ComboBoxEntry entry and button
+widget_class "**" style "combobox_entry"
+
+#Â Join the Combo entry and button
+widget_class "**" style "combobox_entry"
+#Â Tweak the padding on the button a little bit because it uses it a bit differently
+widget_class "*." style "combo_button_padding"
+
+#Â Alas we cannot do the same for ComboBoxText because there isn't a way to apply the style to only
+#Â the comboboxes that have an entry inside
+
+# Toolbar buttons have different paddings
+widget_class "**" style "toolbar_button"
+
+# Notebooks are white, act accordingly
+widget_class "**" style "notebook_entry"
+widget_class "**" style "notebook_bg"
+widget_class "**" style "notebook_bg"
+widget_class "***" style "notebook_bg"
+widget_class "**" style "notebook_bg"
+widget_class "*.*" style "notebook_bg"
+widget_class "***" style "notebook_combo"
+widget_class "***" style "notebook_combo"
+
+# However, stuff inside eventboxes inside notebooks is grey again, react
+widget_class "***" style "normal_entry"
+widget_class "***" style "normal_bg"
+widget_class "***" style "normal_bg"
+widget_class "****" style "combobox_entry"
+widget_class "****" style "combobox_entry"
+widget_class "***." style "combo_button_padding"
+
+# ComboBoxes tend to draw the button label with text[] instead of fg[], we need to fix that
+widget_class "**" style "combobox_cellview"
+
+# GTK tooltips
+widget "gtk-tooltip*" style "tooltip"
+
+# Fixes ugly text shadows for insensitive text
+widget_class "*" style "text"
+widget_class "**" style "menu_text"
+widget_class "**" style "text"
+widget_class "**" style "text"
+widget_class "**" style "text"
\ No newline at end of file
diff --git a/gtk/themes/Sweet-Dark/gtk-3.0/gtk-dark.css b/gtk/themes/Sweet-Dark/gtk-3.0/gtk-dark.css
new file mode 100755
index 0000000..e170df6
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-3.0/gtk-dark.css
@@ -0,0 +1,6071 @@
+/*$selected_bg_color: #00e8c6;06d6a0*/
+/* GTK NAMED COLORS
+ ----------------
+ use responsibly! */
+/* widget text/foreground color */
+@define-color theme_fg_color #C3C7D1;
+/* text color for entries, views and content in general */
+@define-color theme_text_color #C3C7D1;
+/* widget base background color */
+@define-color theme_bg_color #161925;
+/* text widgets and the like base background color */
+@define-color theme_base_color #181b28;
+/* base background color of selections */
+@define-color theme_selected_bg_color #c50ed2;
+/* text/foreground color of selections */
+@define-color theme_selected_fg_color #fefefe;
+/* base background color of disabled widgets */
+@define-color insensitive_bg_color #171a26;
+/* text foreground color of disabled widgets */
+@define-color insensitive_fg_color #6d707b;
+/* disabled text widgets and the like base background color */
+@define-color insensitive_base_color #181b28;
+/* widget text/foreground color on backdrop windows */
+@define-color theme_unfocused_fg_color #6d707b;
+/* text color for entries, views and content in general on backdrop windows */
+@define-color theme_unfocused_text_color #C3C7D1;
+/* widget base background color on backdrop windows */
+@define-color theme_unfocused_bg_color #161925;
+/* text widgets and the like base background color on backdrop windows */
+@define-color theme_unfocused_base_color #1a1d2b;
+/* base background color of selections on backdrop windows */
+@define-color theme_unfocused_selected_bg_color #c50ed2;
+/* text/foreground color of selections on backdrop windows */
+@define-color theme_unfocused_selected_fg_color #fefefe;
+/* widgets main borders color */
+@define-color borders rgba(12, 14, 21, 0.8);
+/* widgets main borders color on backdrop windows */
+@define-color unfocused_borders rgba(13, 16, 23, 0.82);
+/* these are pretty self explicative */
+@define-color warning_color #cc5500;
+@define-color error_color #e6133e;
+@define-color success_color #0096b1;
+/* these colors are exported for the window manager and shouldn't be used in applications,
+read if you used those and something break with a version upgrade you're on your own... */
+@define-color wm_title shade(#C3C7D1, 1.8);
+@define-color wm_unfocused_title #6d707b;
+@define-color wm_highlight rgba(0, 0, 0, 0);
+@define-color wm_borders_edge rgba(255, 255, 255, 0.1);
+@define-color wm_bg_a shade(#161925, 1.2);
+@define-color wm_bg_b #161925;
+@define-color wm_shadow alpha(black, 0.35);
+@define-color wm_border alpha(black, 0.18);
+@define-color wm_button_hover_color_a shade(#161925, 1.3);
+@define-color wm_button_hover_color_b #161925;
+@define-color wm_button_active_color_a shade(#161925, 0.85);
+@define-color wm_button_active_color_b shade(#161925, 0.89);
+@define-color wm_button_active_color_c shade(#161925, 0.9);
+@define-color content_view_bg #181b28;
+@define-color budgie_tasklist_indicator_color #c50ed2;
+@define-color budgie_tasklist_indicator_color_active #c50ed2;
+/*****************
+* Drawing mixins *
+*****************/
+/*********
+* Common *
+*********/
+* {
+ padding: 0;
+ -GtkToolButton-icon-spacing: 4;
+ -GtkTextView-error-underline-color: #e6133e;
+ -GtkScrolledWindow-scrollbar-spacing: 0;
+ -GtkToolItemGroup-expander-size: 11;
+ -GtkWidget-text-handle-width: 20;
+ -GtkWidget-text-handle-height: 24;
+ -GtkDialog-button-spacing: 4;
+ -GtkDialog-action-area-border: 0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ outline-style: dashed;
+ outline-offset: -3px;
+ outline-width: 1px;
+ -gtk-outline-radius: 2px;
+ -gtk-secondary-caret-color: #c50ed2; }
+
+/***********
+ * Widgets *
+ ***********/
+/***************
+* Action bars *
+***************/
+.action-bar {
+ background-color: #030305;
+ border: solid rgba(12, 14, 21, 0.8);
+ border-width: 1px 0 0 0;
+ color: #C3C7D1;
+ box-shadow: none; }
+ .action-bar:backdrop {
+ background-color: #030305;
+ box-shadow: none;
+ -gtk-icon-effect: dim; }
+ .action-bar:first-child {
+ border-radius: 6px 6px 0px 0px;
+ border-width: 1px 1px 0px 1px; }
+ .action-bar:last-child {
+ border-radius: 0 0 6px 6px;
+ border-width: 0px 1px 1px 1px; }
+
+/*********************
+ * App Notifications *
+ *********************/
+.app-notification,
+.app-notification.frame {
+ padding: 10px;
+ border-radius: 0 0 5px 5px;
+ background-color: rgba(20, 23, 26, 0.8);
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px);
+ background-clip: padding-box; }
+ .app-notification:backdrop,
+ .app-notification.frame:backdrop {
+ background-image: none;
+ transition: 200ms ease-out; }
+ .app-notification border,
+ .app-notification.frame border {
+ border: none; }
+
+/***************
+ * Base States *
+ ***************/
+.background {
+ color: #C3C7D1;
+ background-color: #161925; }
+ .background:backdrop {
+ color: #6d707b;
+ background-color: #161925;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+/*
+ These wildcard seems unavoidable, need to investigate.
+ Wildcards are bad and troublesome, use them with care,
+ or better, just don't.
+ Everytime a wildcard is used a kitten dies, painfully.
+*/
+*:disabled {
+ -gtk-icon-effect: dim; }
+
+.gtkstyle-fallback {
+ color: #C3C7D1;
+ background-color: #161925; }
+ .gtkstyle-fallback:hover {
+ color: #C3C7D1;
+ background-color: #292f45; }
+ .gtkstyle-fallback:active {
+ color: #C3C7D1;
+ background-color: #030305; }
+ .gtkstyle-fallback:disabled {
+ color: #6d707b;
+ background-color: #171a26; }
+ .gtkstyle-fallback:selected {
+ color: #fefefe;
+ background-color: #c50ed2; }
+
+.view, iconview,
+.view text,
+iconview text,
+textview text {
+ color: #C3C7D1;
+ background-color: #181b28; }
+ .view:backdrop, iconview:backdrop,
+ .view text:backdrop,
+ iconview text:backdrop,
+ textview text:backdrop {
+ color: #a1a5b0;
+ background-color: #1a1d2b; }
+ .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected,
+ .view text:selected:focus,
+ iconview text:selected:focus,
+ textview text:selected:focus,
+ .view text:selected,
+ iconview text:selected,
+ textview text:selected {
+ border-radius: 3px; }
+
+textview border {
+ background-color: #171a27; }
+
+.rubberband,
+rubberband,
+flowbox rubberband,
+.content-view rubberband,
+treeview.view rubberband {
+ border: 1px solid #980ba2;
+ background-color: rgba(152, 11, 162, 0.2); }
+
+flowbox flowboxchild {
+ padding: 3px;
+ border-radius: 3px; }
+ flowbox flowboxchild:selected {
+ outline-offset: -2px; }
+
+label {
+ caret-color: currentColor; }
+ label.separator {
+ color: #C3C7D1; }
+ label.separator:backdrop {
+ color: #6d707b; }
+ label selection {
+ background-color: #c50ed2;
+ color: #fefefe; }
+ label:disabled {
+ color: #6d707b; }
+ label:disabled:backdrop {
+ color: #333955; }
+ label:backdrop {
+ color: #6d707b; }
+
+.dim-label, label.separator, .titlebar .subtitle,
+headerbar .subtitle {
+ opacity: 0.55;
+ text-shadow: none; }
+
+assistant .sidebar {
+ background-color: #181b28;
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ assistant .sidebar:backdrop {
+ background-color: #1a1d2b;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+assistant.csd .sidebar {
+ border-top-style: none; }
+
+assistant .sidebar label {
+ padding: 6px 12px; }
+
+assistant .sidebar label.highlight {
+ background-color: #393c47; }
+
+.app-notification,
+.app-notification.frame, .osd .scale-popup, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier, .csd popover.background.osd, popover.background.osd, .osd {
+ color: #fefefe;
+ border: none;
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ outline-color: rgba(254, 254, 254, 0.3);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .app-notification:backdrop, .osd .scale-popup:backdrop, popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, popover.background.osd:backdrop, .osd:backdrop {
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+*:selected {
+ background: #c50ed2;
+ color: #fefefe; }
+
+/***********
+ * Buttons *
+ ***********/
+@keyframes needs_attention {
+ from {
+ background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e63bf2), to(transparent)); }
+ to {
+ background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#c50ed2), to(transparent)); } }
+
+notebook > header > tabs > arrow,
+button {
+ min-height: 20px;
+ min-width: 16px;
+ padding: 2px 6px;
+ border: 1px solid rgba(12, 14, 21, 0.8);
+ border-radius: 4px;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+ notebook > header > tabs > arrow,
+ button.flat {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ transition: none; }
+ notebook > header > tabs > arrow:hover,
+ button.flat:hover {
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ transition-duration: 500ms; }
+ notebook > header > tabs > arrow:hover:active,
+ button.flat:hover:active {
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
+ notebook > header > tabs > arrow:hover,
+ button:hover {
+ color: #fefefe;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none;
+ -gtk-icon-effect: highlight; }
+ notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked,
+ button:active,
+ button:checked {
+ color: #fefefe;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #af0cba;
+ text-shadow: none;
+ transition-duration: 50ms; }
+ notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:backdrop,
+ button:backdrop.flat,
+ button:backdrop {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #1a1d2b;
+ text-shadow: none;
+ transition: 200ms ease-out;
+ -gtk-icon-effect: none; }
+ notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked,
+ button:backdrop.flat:active,
+ button:backdrop.flat:checked,
+ button:backdrop:active,
+ button:backdrop:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label,
+ button:backdrop.flat:active label,
+ button:backdrop.flat:checked label,
+ button:backdrop:active label,
+ button:backdrop:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ notebook > header > tabs > arrow:backdrop:disabled, notebook > header > tabs > arrow:backdrop:disabled,
+ button:backdrop.flat:disabled,
+ button:backdrop:disabled {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #171a26;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked,
+ button:backdrop.flat:disabled:active,
+ button:backdrop.flat:disabled:checked,
+ button:backdrop:disabled:active,
+ button:backdrop:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:disabled, notebook > header > tabs > arrow:backdrop:disabled,
+ button.flat:backdrop,
+ button.flat:disabled,
+ button.flat:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ notebook > header > tabs > arrow:disabled,
+ button:disabled {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #171a26;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked,
+ button:disabled:active,
+ button:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:disabled:active label, notebook > header > tabs > arrow:disabled:checked label,
+ button:disabled:active label,
+ button:disabled:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ notebook > header > tabs > arrow.image-button,
+ button.image-button {
+ min-width: 24px;
+ padding-left: 4px;
+ padding-right: 4px; }
+ notebook > header > tabs > arrow.image-button.circular, notebook > header > tabs > arrow.image-button.sidebar-button,
+ button.image-button.circular,
+ button.image-button.sidebar-button {
+ padding: 6px 4px;
+ border-radius: 50px;
+ box-shadow: none; }
+ notebook > header > tabs > arrow.image-button.sidebar-button,
+ button.image-button.sidebar-button {
+ background-color: #252a3e;
+ color: #fff; }
+ notebook > header > tabs > arrow.image-button.sidebar-button:hover,
+ button.image-button.sidebar-button:hover {
+ background-color: #c50ed2; }
+ notebook > header > tabs > arrow.text-button,
+ button.text-button {
+ padding-left: 16px;
+ padding-right: 16px; }
+ notebook > header > tabs > arrow.text-button.image-button,
+ button.text-button.image-button {
+ padding-left: 8px;
+ padding-right: 8px;
+ border-radius: 2px; }
+ notebook > header > tabs > arrow.text-button.image-button label,
+ button.text-button.image-button label {
+ padding-left: 8px;
+ padding-right: 8px; }
+ combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active),
+ button:drop(active) {
+ color: #4e9a06;
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 1px #4e9a06; }
+
+row:selected
+button.flat:not(:active):not(:checked):not(:hover):not(disabled) {
+ color: #fefefe;
+ border-color: transparent; }
+ row:selected
+ button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop {
+ color: #6d707b; }
+
+
+button.osd {
+ min-width: 24px;
+ min-height: 20px;
+ color: #fefefe;
+ border-radius: 5px;
+ outline-color: rgba(254, 254, 254, 0.3);
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border: none;
+ box-shadow: none; }
+
+ button.osd.image-button {
+ min-width: 32px; }
+
+ button.osd:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border: none;
+ box-shadow: none; }
+
+ button.osd:active,
+ button.osd:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border: none;
+ box-shadow: none; }
+
+ button.osd:disabled:backdrop,
+ button.osd:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ border: none; }
+
+ button.osd:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ border: none; }
+
+.app-notification button,
+.app-notification.frame button, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, popover.background.touch-selection button, popover.background.magnifier button,
+.osd
+button {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover,
+ .osd
+ button:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button:active:backdrop, popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked:backdrop, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked,
+ .osd
+ button:active:backdrop,
+ .osd
+ button:active,
+ .osd
+ button:checked:backdrop,
+ .osd
+ button:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button:disabled:backdrop, popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled,
+ .osd
+ button:disabled:backdrop,
+ .osd
+ button:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop,
+ .osd
+ button:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat,
+ .osd
+ button.flat {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ box-shadow: none;
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover,
+ .osd
+ button.flat:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled,
+ .osd
+ button.flat:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ background-image: none;
+ border-color: transparent;
+ box-shadow: none; }
+ .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop,
+ .osd
+ button.flat:backdrop {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked,
+ .osd
+ button.flat:active,
+ .osd
+ button.flat:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+
+
+button.suggested-action {
+ border: none;
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .selection-mode button.titlebutton,
+ button.suggested-action.flat {
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+
+ button.suggested-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+
+ button.suggested-action:active,
+ button.suggested-action:checked {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop,
+ button.suggested-action:backdrop,
+ button.suggested-action.flat:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop label,
+ button.suggested-action:backdrop label,
+ button.suggested-action.flat:backdrop label {
+ color: rgba(255, 255, 255, 0.5); }
+ .selection-mode button.titlebutton:backdrop:active, .selection-mode button.titlebutton:backdrop:checked,
+ button.suggested-action:backdrop:active,
+ button.suggested-action:backdrop:checked,
+ button.suggested-action.flat:backdrop:active,
+ button.suggested-action.flat:backdrop:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop:active label, .selection-mode button.titlebutton:backdrop:checked label,
+ button.suggested-action:backdrop:active label,
+ button.suggested-action:backdrop:checked label,
+ button.suggested-action.flat:backdrop:active label,
+ button.suggested-action.flat:backdrop:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ .selection-mode button.titlebutton:backdrop:disabled,
+ button.suggested-action:backdrop:disabled,
+ button.suggested-action.flat:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop:disabled label,
+ button.suggested-action:backdrop:disabled label,
+ button.suggested-action.flat:backdrop:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+ .selection-mode button.titlebutton:backdrop:disabled:active, .selection-mode button.titlebutton:backdrop:disabled:checked,
+ button.suggested-action:backdrop:disabled:active,
+ button.suggested-action:backdrop:disabled:checked,
+ button.suggested-action.flat:backdrop:disabled:active,
+ button.suggested-action.flat:backdrop:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop, .selection-mode button.titlebutton:disabled, .selection-mode button.titlebutton:backdrop:disabled,
+ button.suggested-action.flat:backdrop,
+ button.suggested-action.flat:disabled,
+ button.suggested-action.flat:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(0, 193, 228, 0.8); }
+
+ button.suggested-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+
+ button.suggested-action:disabled:active,
+ button.suggested-action:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+
+ button.suggested-action:disabled:active label,
+ button.suggested-action:disabled:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ .osd
+ button.suggested-action {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(0, 193, 228, 0.5);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.suggested-action:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(0, 193, 228, 0.7), rgba(0, 193, 228, 0.7));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.suggested-action:active:backdrop, .osd
+ button.suggested-action:active, .osd
+ button.suggested-action:checked:backdrop, .osd
+ button.suggested-action:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, #00c1e4, #00c1e4);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.suggested-action:disabled:backdrop, .osd
+ button.suggested-action:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd
+ button.suggested-action:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(0, 193, 228, 0.5), rgba(0, 193, 228, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+
+button.destructive-action {
+ border: none;
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #FF416C, #FF4B2B); }
+
+ button.destructive-action.flat {
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+
+ button.destructive-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:active,
+ button.destructive-action:checked {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop,
+ button.destructive-action.flat:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop label,
+ button.destructive-action.flat:backdrop label {
+ color: rgba(255, 255, 255, 0.5); }
+
+ button.destructive-action:backdrop:active,
+ button.destructive-action:backdrop:checked,
+ button.destructive-action.flat:backdrop:active,
+ button.destructive-action.flat:backdrop:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop:active label,
+ button.destructive-action:backdrop:checked label,
+ button.destructive-action.flat:backdrop:active label,
+ button.destructive-action.flat:backdrop:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+
+ button.destructive-action:backdrop:disabled,
+ button.destructive-action.flat:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop:disabled label,
+ button.destructive-action.flat:backdrop:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+
+ button.destructive-action:backdrop:disabled:active,
+ button.destructive-action:backdrop:disabled:checked,
+ button.destructive-action.flat:backdrop:disabled:active,
+ button.destructive-action.flat:backdrop:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+
+ button.destructive-action.flat:backdrop,
+ button.destructive-action.flat:disabled,
+ button.destructive-action.flat:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(206, 17, 56, 0.8); }
+
+ button.destructive-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:disabled:active,
+ button.destructive-action:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:disabled:active label,
+ button.destructive-action:disabled:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ .osd
+ button.destructive-action {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(206, 17, 56, 0.5);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.destructive-action:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(206, 17, 56, 0.7), rgba(206, 17, 56, 0.7));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.destructive-action:active:backdrop, .osd
+ button.destructive-action:active, .osd
+ button.destructive-action:checked:backdrop, .osd
+ button.destructive-action:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, #ce1138, #ce1138);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.destructive-action:disabled:backdrop, .osd
+ button.destructive-action:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd
+ button.destructive-action:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(206, 17, 56, 0.5), rgba(206, 17, 56, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+.stack-switcher >
+button {
+ outline-offset: -3px; }
+ .stack-switcher >
+ button > label {
+ padding-left: 6px;
+ padding-right: 6px; }
+ .stack-switcher >
+ button > image {
+ padding-left: 6px;
+ padding-right: 6px;
+ padding-top: 3px;
+ padding-bottom: 3px; }
+ .stack-switcher >
+ button.text-button {
+ padding-left: 10px;
+ padding-right: 10px; }
+ .stack-switcher >
+ button.image-button {
+ padding-left: 2px;
+ padding-right: 2px; }
+ .stack-switcher >
+ button.needs-attention:active > label,
+ .stack-switcher >
+ button.needs-attention:active > image, .stack-switcher >
+ button.needs-attention:checked > label,
+ .stack-switcher >
+ button.needs-attention:checked > image {
+ animation: none;
+ background-image: none; }
+
+.inline-toolbar
+button, .inline-toolbar
+button:backdrop {
+ border-radius: 2px;
+ border-width: 1px; }
+
+.primary-toolbar
+button {
+ -gtk-icon-shadow: none; }
+
+.stack-switcher > button.needs-attention > label,
+.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
+ animation: needs_attention 150ms ease-in;
+ background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e63bf2), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.45, to(rgba(0, 0, 0, 0.907451)), to(transparent));
+ background-size: 6px 6px, 6px 6px;
+ background-repeat: no-repeat;
+ background-position: right 3px, right 2px; }
+ .stack-switcher > button.needs-attention > label:backdrop,
+ .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop {
+ background-size: 6px 6px, 0 0; }
+ .stack-switcher > button.needs-attention > label:dir(rtl),
+ .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) {
+ background-position: left 3px, left 2px; }
+
+toolbar button:hover {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+
+toolbar button:active {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+
+.inline-toolbar toolbutton > button {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .inline-toolbar toolbutton > button:hover {
+ color: #c50ed2; }
+ .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked {
+ color: #af0cba; }
+ .inline-toolbar toolbutton > button:disabled {
+ color: #a1a5b0; }
+ .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked {
+ color: rgba(175, 12, 186, 0.3); }
+ .inline-toolbar toolbutton > button:backdrop {
+ color: #a1a5b0; }
+ .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked {
+ color: #af0cba; }
+ .inline-toolbar toolbutton > button:backdrop:disabled {
+ color: #a1a5b0; }
+ .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked {
+ color: rgba(175, 12, 186, 0.3); }
+
+toolbar.inline-toolbar toolbutton > button.flat:backdrop,
+toolbar.inline-toolbar toolbutton:backdrop > button.flat:backdrop {
+ border-color: transparent;
+ box-shadow: none; }
+
+.inline-toolbar button, .inline-toolbar button:backdrop, .linked > button,
+.linked > button:hover,
+.linked > button:active,
+.linked > button:checked,
+.linked > button:backdrop, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) {
+ border: 1px solid rgba(12, 14, 21, 0.8);
+ border-radius: 0;
+ border-right-style: none;
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); }
+
+.inline-toolbar button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child {
+ border-top-left-radius: 3px;
+ border-bottom-left-radius: 3px; }
+
+.inline-toolbar button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child {
+ border-top-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border-right-style: solid; }
+
+.inline-toolbar button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child {
+ border-radius: 3px;
+ border-style: solid; }
+
+.linked.vertical > button,
+.linked.vertical > button:hover,
+.linked.vertical > button:active,
+.linked.vertical > button:checked,
+.linked.vertical > button:backdrop, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > combobox > box > button.combo {
+ border-style: solid solid none solid;
+ border-radius: 0; }
+
+.linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px; }
+
+.linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child {
+ border-bottom-left-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border-style: solid; }
+
+.linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child {
+ border-radius: 3px;
+ border-style: solid; }
+
+modelbutton.flat, popover.background checkbutton,
+popover.background radiobutton,
+.menuitem.button.flat, modelbutton.flat:backdrop, popover.background checkbutton:backdrop,
+popover.background radiobutton:backdrop, modelbutton.flat:backdrop:hover, popover.background checkbutton:backdrop:hover,
+popover.background radiobutton:backdrop:hover,
+.menuitem.button.flat:backdrop,
+.menuitem.button.flat:backdrop:hover, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:disabled, button:link,
+button:visited, button:link:hover, button:link:active, button:link:checked,
+button:visited:hover,
+button:visited:active,
+button:visited:checked, .scale-popup button:hover, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop {
+ background-color: transparent;
+ background-image: none;
+ border-color: transparent;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+/* menu buttons */
+modelbutton.flat, popover.background checkbutton,
+popover.background radiobutton,
+.menuitem.button.flat {
+ min-height: 26px;
+ padding-left: 5px;
+ padding-right: 5px;
+ border-radius: 3px;
+ outline-offset: -2px; }
+ modelbutton.flat:hover, popover.background checkbutton:hover,
+ popover.background radiobutton:hover,
+ .menuitem.button.flat:hover {
+ background-color: #202435; }
+ modelbutton.flat check:last-child, popover.background checkbutton check:last-child, popover.background radiobutton check:last-child,
+ modelbutton.flat radio:last-child,
+ popover.background checkbutton radio:last-child,
+ popover.background radiobutton radio:last-child,
+ .menuitem.button.flat check:last-child,
+ .menuitem.button.flat radio:last-child {
+ margin-left: 8px; }
+ modelbutton.flat check:first-child, popover.background checkbutton check:first-child, popover.background radiobutton check:first-child,
+ modelbutton.flat radio:first-child,
+ popover.background checkbutton radio:first-child,
+ popover.background radiobutton radio:first-child,
+ .menuitem.button.flat check:first-child,
+ .menuitem.button.flat radio:first-child {
+ margin-right: 8px; }
+
+modelbutton.flat arrow, popover.background checkbutton arrow, popover.background radiobutton arrow {
+ background: none; }
+ modelbutton.flat arrow:hover, popover.background checkbutton arrow:hover, popover.background radiobutton arrow:hover {
+ background: none; }
+ modelbutton.flat arrow.left, popover.background checkbutton arrow.left, popover.background radiobutton arrow.left {
+ -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
+ modelbutton.flat arrow.right, popover.background checkbutton arrow.right, popover.background radiobutton arrow.right {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
+
+button.color {
+ padding: 4px; }
+ button.color colorswatch:only-child, button.color colorswatch:only-child overlay {
+ border-radius: 0; }
+
+notebook button, list button, .view button, iconview button, popover button {
+ box-shadow: none; }
+ notebook button:backdrop, list button:backdrop, .view button:backdrop, iconview button:backdrop, popover button:backdrop {
+ box-shadow: none; }
+
+notebook .linked > button, list .linked > button, .view .linked > button, iconview .linked > button, popover .linked > button {
+ box-shadow: none; }
+
+/************
+ * Calendar *
+ ***********/
+calendar {
+ color: #C3C7D1;
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ calendar:selected {
+ border-radius: 3px; }
+ calendar.header {
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+ border-radius: 0; }
+ calendar.header:backdrop {
+ border-color: rgba(0, 0, 0, 0.1); }
+ calendar.button {
+ color: rgba(195, 199, 209, 0.45); }
+ calendar.button:hover {
+ color: #C3C7D1; }
+ calendar.button:backdrop {
+ color: rgba(109, 112, 123, 0.45); }
+ calendar.button:disabled {
+ color: rgba(109, 112, 123, 0.45); }
+ calendar:indeterminate, calendar:indeterminate:backdrop {
+ color: alpha(currentColor,0.55); }
+ calendar.highlight, calendar.highlight:backdrop {
+ font-size: smaller;
+ color: #C3C7D1; }
+ calendar:backdrop {
+ color: #a1a5b0;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+/*************************
+ * Check and Radio Items *
+ *************************/
+check {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-dark.png"), url("../assets/radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-hover-dark.png"), url("../assets/checkbox-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover-dark.png"), url("../assets/radio-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-active-dark.png"), url("../assets/checkbox-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active-dark.png"), url("../assets/radio-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-backdrop-dark.png"), url("../assets/checkbox-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-dark.png"), url("../assets/radio-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-dark.png"), url("../assets/radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-hover-dark.png"), url("../assets/checkbox-checked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover-dark.png"), url("../assets/radio-checked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-active-dark.png"), url("../assets/checkbox-checked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active-dark.png"), url("../assets/radio-checked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-backdrop-dark.png"), url("../assets/checkbox-checked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-dark.png"), url("../assets/radio-checked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed.png"), url("../assets/checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-hover.png"), url("../assets/checkbox-mixed-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-active.png"), url("../assets/checkbox-mixed-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-backdrop.png"), url("../assets/checkbox-mixed-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check, iconview.content-view check,
+.view.content-view.check,
+iconview.content-view.check {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio, iconview.content-view radio,
+.view.content-view.radio,
+iconview.content-view.radio {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked.png"), url("../assets/radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:hover, iconview.content-view check:hover,
+.view.content-view.check:hover,
+iconview.content-view.check:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-hover.png"), url("../assets/checkbox-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:hover, iconview.content-view radio:hover,
+.view.content-view.radio:hover,
+iconview.content-view.radio:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:active, iconview.content-view check:active,
+.view.content-view.check:active,
+iconview.content-view.check:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-active.png"), url("../assets/checkbox-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:active, iconview.content-view radio:active,
+.view.content-view.radio:active,
+iconview.content-view.radio:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:backdrop, iconview.content-view check:backdrop,
+.view.content-view.check:backdrop,
+iconview.content-view.check:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop.png"), url("../assets/checkbox-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:backdrop, iconview.content-view radio:backdrop,
+.view.content-view.radio:backdrop,
+iconview.content-view.radio:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:disabled, iconview.content-view check:disabled,
+.view.content-view.check:disabled,
+iconview.content-view.check:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-insensitive.png"), url("../assets/checkbox-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:disabled, iconview.content-view radio:disabled,
+.view.content-view.radio:disabled,
+iconview.content-view.radio:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:disabled:backdrop, iconview.content-view check:disabled:backdrop,
+.view.content-view.check:disabled:backdrop,
+iconview.content-view.check:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop-insensitive.png"), url("../assets/checkbox-unchecked-backdrop-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:disabled:backdrop, iconview.content-view radio:disabled:backdrop,
+.view.content-view.radio:disabled:backdrop,
+iconview.content-view.radio:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+checkbutton.text-button, radiobutton.text-button {
+ padding: 2px 0;
+ outline-offset: 0; }
+ checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child {
+ margin-left: 4px; }
+ checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child {
+ margin-right: 4px; }
+
+check,
+radio {
+ margin: 0 4px;
+ min-height: 16px;
+ min-width: 16px;
+ border: none; }
+ menu menuitem check, menu menuitem
+ radio {
+ margin: 0; }
+ menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem
+ radio, menu menuitem
+ radio:hover, menu menuitem
+ radio:disabled {
+ min-height: 14px;
+ min-width: 14px;
+ background-image: none;
+ background-color: transparent;
+ box-shadow: none;
+ -gtk-icon-shadow: none;
+ color: inherit;
+ border-color: currentColor;
+ animation: none; }
+
+/*****************
+ * Color Chooser *
+ *****************/
+colorswatch, colorswatch:drop(active) {
+ border-style: none; }
+
+colorswatch.top {
+ border-top-left-radius: 5.5px;
+ border-top-right-radius: 5.5px; }
+ colorswatch.top overlay {
+ border-top-left-radius: 5px;
+ border-top-right-radius: 5px; }
+
+colorswatch.bottom {
+ border-bottom-left-radius: 5.5px;
+ border-bottom-right-radius: 5.5px; }
+ colorswatch.bottom overlay {
+ border-bottom-left-radius: 5px;
+ border-bottom-right-radius: 5px; }
+
+colorswatch.left, colorswatch:first-child:not(.top) {
+ border-top-left-radius: 5.5px;
+ border-bottom-left-radius: 5.5px; }
+ colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
+ border-top-left-radius: 5px;
+ border-bottom-left-radius: 5px; }
+
+colorswatch.right, colorswatch:last-child:not(.bottom) {
+ border-top-right-radius: 5.5px;
+ border-bottom-right-radius: 5.5px; }
+ colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
+ border-top-right-radius: 5px;
+ border-bottom-right-radius: 5px; }
+
+colorswatch.dark overlay {
+ color: #fefefe; }
+ colorswatch.dark overlay:hover {
+ border-color: rgba(12, 14, 21, 0.8); }
+ colorswatch.dark overlay:backdrop {
+ color: rgba(254, 254, 254, 0.5); }
+
+colorswatch.light overlay {
+ color: #C3C7D1; }
+ colorswatch.light overlay:hover {
+ border-color: rgba(12, 14, 21, 0.8); }
+ colorswatch.light overlay:backdrop {
+ color: #a1a5b0; }
+
+colorswatch:drop(active) {
+ box-shadow: none; }
+ colorswatch:drop(active).light overlay {
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 2px rgba(12, 14, 21, 0.8), inset 0 0 0 1px #4e9a06; }
+ colorswatch:drop(active).dark overlay {
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 2px rgba(12, 14, 21, 0.8), inset 0 0 0 1px #4e9a06; }
+
+colorswatch overlay {
+ box-shadow: inset 0 3px 2px -2px rgba(0, 0, 0, 0.5);
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ colorswatch overlay:hover {
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); }
+ colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover {
+ border-color: rgba(12, 14, 21, 0.8);
+ box-shadow: none; }
+
+colorswatch#add-color-button {
+ border-radius: 5px 5px 0 0; }
+ colorswatch#add-color-button:only-child {
+ border-radius: 5px; }
+ colorswatch#add-color-button overlay {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+ colorswatch#add-color-button overlay:hover {
+ color: #C3C7D1;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #181b28;
+ text-shadow: none; }
+ colorswatch#add-color-button overlay:backdrop {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #1a1d2b;
+ text-shadow: none; }
+
+colorswatch:disabled {
+ opacity: 0.5; }
+ colorswatch:disabled overlay {
+ border-color: rgba(0, 0, 0, 0.6);
+ box-shadow: none; }
+
+row:selected colorswatch {
+ box-shadow: 0 0 0 2px #fefefe; }
+
+colorswatch#editor-color-sample {
+ border-radius: 4px; }
+ colorswatch#editor-color-sample overlay {
+ border-radius: 4.5px; }
+
+colorchooser .popover.osd {
+ border-radius: 5px; }
+
+/**************
+ * ComboBoxes *
+ **************/
+combobox arrow {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
+ min-height: 16px;
+ min-width: 16px; }
+
+combobox:drop(active) {
+ box-shadow: none; }
+
+/***********
+ * Dialogs *
+ ***********/
+messagedialog .titlebar:not(headerbar) {
+ background-color: rgba(22, 25, 37, 0.95); }
+
+messagedialog .titlebar {
+ min-height: 20px;
+ background-image: none;
+ background-color: rgba(22, 25, 37, 0.95);
+ border-style: none;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px; }
+
+messagedialog.csd.background {
+ background-color: rgba(22, 25, 37, 0.95);
+ color: #C3C7D1;
+ border-bottom-left-radius: 5px;
+ border-bottom-right-radius: 5px; }
+
+messagedialog.csd .dialog-action-area button {
+ padding: 10px 14px;
+ border-radius: 0;
+ border-left-style: solid;
+ border-right-style: none;
+ border-bottom-style: none;
+ background-color: transparent;
+ color: #C3C7D1;
+ box-shadow: none; }
+ messagedialog.csd .dialog-action-area button:hover {
+ background-color: rgba(197, 14, 210, 0.9);
+ color: white; }
+ messagedialog.csd .dialog-action-area button:first-child {
+ border-left-style: none;
+ border-bottom-left-radius: 4px; }
+ messagedialog.csd .dialog-action-area button:last-child {
+ border-bottom-right-radius: 4px; }
+ messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.suggested-action {
+ color: white; }
+
+filechooser .dialog-action-box {
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ filechooser .dialog-action-box:backdrop {
+ border-top-color: rgba(13, 16, 23, 0.82); }
+
+filechooser #pathbarbox {
+ border-bottom: 1px solid #161925; }
+
+filechooserbutton:drop(active) {
+ box-shadow: none;
+ border-color: transparent; }
+
+/****************
+ * Text Entries *
+ ****************/
+spinbutton:not(.vertical),
+entry {
+ min-height: 28px;
+ padding-left: 8px;
+ padding-right: 8px;
+ border: 1px solid;
+ border-radius: 3px;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ color: #C3C7D1;
+ border-color: rgba(12, 14, 21, 0.8);
+ background-color: #181b28; }
+ spinbutton:not(.vertical) image.left,
+ entry image.left {
+ padding-left: 0;
+ padding-right: 6px; }
+ spinbutton:not(.vertical) image.right,
+ entry image.right {
+ padding-left: 6px;
+ padding-right: 0; }
+ spinbutton:not(.vertical) undershoot.left,
+ entry undershoot.left {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-left: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: left center;
+ border: none;
+ box-shadow: none; }
+ spinbutton:not(.vertical) undershoot.right,
+ entry undershoot.right {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-right: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: right center;
+ border: none;
+ box-shadow: none; }
+ spinbutton.flat:focus:not(.vertical), spinbutton.flat:not(.vertical),
+ entry.flat:focus,
+ entry.flat {
+ min-height: 0;
+ padding: 2px;
+ background-image: none;
+ border-color: transparent;
+ box-shadow: none;
+ border-radius: 0; }
+ spinbutton:focus:not(.vertical),
+ entry:focus {
+ border-color: #980ba2; }
+ spinbutton:disabled:not(.vertical),
+ entry:disabled {
+ color: #6d707b;
+ border-color: rgba(12, 14, 21, 0.8);
+ background-color: #171a26;
+ box-shadow: none; }
+ spinbutton:backdrop:not(.vertical),
+ entry:backdrop {
+ color: #a1a5b0;
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #1a1d2b;
+ box-shadow: none;
+ transition: 200ms ease-out; }
+ spinbutton:backdrop:disabled:not(.vertical),
+ entry:backdrop:disabled {
+ color: #333955;
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #171a26;
+ box-shadow: none; }
+ spinbutton.error:not(.vertical),
+ entry.error {
+ color: #e6133e;
+ border-color: #410512; }
+ spinbutton.error:focus:not(.vertical),
+ entry.error:focus {
+ border-color: #410512; }
+ spinbutton.error:selected:focus:not(.vertical), spinbutton.error:selected:not(.vertical),
+ entry.error:selected:focus,
+ entry.error:selected {
+ background-color: #e6133e; }
+ spinbutton.warning:not(.vertical),
+ entry.warning {
+ color: #cc5500;
+ border-color: #1a0b00; }
+ spinbutton.warning:focus:not(.vertical),
+ entry.warning:focus {
+ border-color: #1a0b00; }
+ spinbutton.warning:selected:focus:not(.vertical), spinbutton.warning:selected:not(.vertical),
+ entry.warning:selected:focus,
+ entry.warning:selected {
+ background-color: #cc5500; }
+ spinbutton:not(.vertical) image,
+ entry image {
+ color: #a1a5af; }
+ spinbutton:not(.vertical) image:hover,
+ entry image:hover {
+ color: #C3C7D1; }
+ spinbutton:not(.vertical) image:active,
+ entry image:active {
+ color: #c50ed2; }
+ spinbutton:not(.vertical) image:backdrop,
+ entry image:backdrop {
+ color: #5c5f6b; }
+ spinbutton:drop(active):focus:not(.vertical), spinbutton:drop(active):not(.vertical),
+ entry:drop(active):focus,
+ entry:drop(active) {
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 1px #4e9a06; }
+ .osd spinbutton:not(.vertical), .osd
+ entry {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(0, 0, 0, 0.5);
+ box-shadow: none;
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .osd spinbutton:focus:not(.vertical), .osd
+ entry:focus {
+ color: white;
+ border-color: #c50ed2;
+ background-color: rgba(0, 0, 0, 0.5);
+ background-clip: padding-box;
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .osd spinbutton:backdrop:not(.vertical), .osd
+ entry:backdrop {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(0, 0, 0, 0.5);
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd spinbutton:disabled:not(.vertical), .osd
+ entry:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(43, 46, 49, 0.5);
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+spinbutton:not(.vertical) progress,
+entry progress {
+ margin: 2px -6px;
+ background-color: transparent;
+ background-image: none;
+ border-radius: 0;
+ border-width: 0 0 2px;
+ border-color: #c50ed2;
+ border-style: solid;
+ box-shadow: none; }
+ spinbutton:not(.vertical) progress:backdrop,
+ entry progress:backdrop {
+ background-color: transparent; }
+
+.linked:not(.vertical) > spinbutton:focus:not(.vertical) + spinbutton:not(.vertical),
+.linked:not(.vertical) > spinbutton:focus:not(.vertical) + button,
+.linked:not(.vertical) > spinbutton:focus:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > entry:focus + spinbutton:not(.vertical),
+.linked:not(.vertical) >
+entry:focus + button,
+.linked:not(.vertical) >
+entry:focus + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + entry, .linked:not(.vertical) >
+entry:focus +
+entry {
+ border-left-color: #980ba2; }
+
+.linked:not(.vertical) > spinbutton:focus:not(.vertical), .linked:not(.vertical) >
+entry:focus {
+ border-color: #980ba2; }
+
+.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical),
+.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button,
+.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > entry:drop(active) + spinbutton:not(.vertical),
+.linked:not(.vertical) >
+entry:drop(active) + button,
+.linked:not(.vertical) >
+entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + entry, .linked:not(.vertical) >
+entry:drop(active) +
+entry {
+ border-left-color: #4e9a06; }
+
+.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled),
+.linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical >
+entry:not(:disabled) + entry:not(:disabled),
+.linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) {
+ border-top-color: rgba(21, 24, 36, 0.94);
+ background-image: linear-gradient(to bottom, #181b28, #181b28); }
+ .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop,
+ .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical >
+ entry:not(:disabled) + entry:not(:disabled):backdrop,
+ .linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) {
+ border-top-color: rgba(23, 26, 39, 0.946);
+ background-image: linear-gradient(to bottom, #1a1d2b, #1a1d2b); }
+
+.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical),
+.linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > entry:disabled + spinbutton:disabled:not(.vertical),
+.linked.vertical >
+entry:disabled + entry:disabled {
+ border-top-color: rgba(21, 24, 36, 0.94); }
+
+.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical),
+.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > entry + spinbutton:focus:not(:only-child):not(.vertical),
+.linked.vertical >
+entry + entry:focus:not(:only-child) {
+ border-top-color: #980ba2; }
+
+.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical),
+.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > entry + spinbutton:drop(active):not(:only-child):not(.vertical),
+.linked.vertical >
+entry + entry:drop(active):not(:only-child) {
+ border-top-color: #4e9a06; }
+
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical),
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry,
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button,
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:focus:not(:only-child) + spinbutton:not(.vertical),
+.linked.vertical >
+entry:focus:not(:only-child) + entry,
+.linked.vertical >
+entry:focus:not(:only-child) + button,
+.linked.vertical >
+entry:focus:not(:only-child) + combobox > box > button.combo {
+ border-top-color: #980ba2; }
+
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical),
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry,
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button,
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:drop(active):not(:only-child) + spinbutton:not(.vertical),
+.linked.vertical >
+entry:drop(active):not(:only-child) + entry,
+.linked.vertical >
+entry:drop(active):not(:only-child) + button,
+.linked.vertical >
+entry:drop(active):not(:only-child) + combobox > box > button.combo {
+ border-top-color: #4e9a06; }
+
+treeview entry:focus:dir(rtl), treeview entry:focus:dir(ltr) {
+ background-color: #181b28;
+ transition-property: color, background; }
+
+treeview entry.flat, treeview entry {
+ border-radius: 0;
+ background-image: none;
+ background-color: #181b28; }
+ treeview entry.flat:focus, treeview entry:focus {
+ border-color: #c50ed2; }
+
+/*************
+ * Expanders *
+ *************/
+expander arrow {
+ min-width: 16px;
+ min-height: 16px;
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
+ expander arrow:dir(rtl) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
+ expander arrow:hover {
+ color: white; }
+ expander arrow:checked {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+
+/****************
+ * Floating Bar *
+ ****************/
+.floating-bar {
+ background-color: #161925;
+ border-width: 1px;
+ border-style: solid solid none;
+ border-color: rgba(12, 14, 21, 0.8);
+ border-radius: 3px 3px 0 0;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ .floating-bar.bottom.left {
+ border-left-style: none;
+ border-top-left-radius: 0; }
+ .floating-bar.bottom.right {
+ border-right-style: none;
+ border-top-right-radius: 0; }
+ .floating-bar > button {
+ padding: 4px; }
+ .floating-bar:backdrop {
+ background-color: #161925;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+/**********
+ * Frames *
+ **********/
+frame > border,
+.frame {
+ box-shadow: none;
+ margin: 0;
+ padding: 0;
+ border-radius: 0;
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ frame > border.flat,
+ .frame.flat {
+ border-style: none; }
+ frame > border:backdrop,
+ .frame:backdrop {
+ border-color: rgba(13, 16, 23, 0.82); }
+
+actionbar > revealer > box {
+ padding: 6px;
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ actionbar > revealer > box:backdrop {
+ border-color: rgba(13, 16, 23, 0.82); }
+
+scrolledwindow viewport.frame {
+ border-style: none; }
+
+scrolledwindow overshoot.top {
+ background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 100% 5%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.top:backdrop {
+ background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 100% 5%;
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow overshoot.bottom {
+ background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 100% 5%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: center bottom;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.bottom:backdrop {
+ background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 100% 5%;
+ background-repeat: no-repeat;
+ background-position: center bottom;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow overshoot.left {
+ background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 5% 100%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.left:backdrop {
+ background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 5% 100%;
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow overshoot.right {
+ background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 5% 100%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: right center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.right:backdrop {
+ background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 5% 100%;
+ background-repeat: no-repeat;
+ background-position: right center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.top {
+ background-color: transparent;
+ background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-top: 1px;
+ background-size: 10px 1px;
+ background-repeat: repeat-x;
+ background-origin: content-box;
+ background-position: center top;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.bottom {
+ background-color: transparent;
+ background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-bottom: 1px;
+ background-size: 10px 1px;
+ background-repeat: repeat-x;
+ background-origin: content-box;
+ background-position: center bottom;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.left {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-left: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: left center;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.right {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-right: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: right center;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow junction {
+ border-color: transparent;
+ border-image: linear-gradient(to bottom, rgba(12, 14, 21, 0.8) 1px, transparent 1px) 0 0 0 1/0 1px stretch;
+ background-color: #171a27; }
+ scrolledwindow junction:dir(rtl) {
+ border-image-slice: 0 1 0 0; }
+ scrolledwindow junction:backdrop {
+ border-image-source: linear-gradient(to bottom, rgba(13, 16, 23, 0.82) 1px, transparent 1px);
+ background-color: #10131b;
+ transition: 200ms ease-out; }
+
+separator {
+ background: rgba(0, 0, 0, 0.1); }
+
+/************
+ * Popovers *
+ ************/
+GraniteWidgetsPopOver {
+ -GraniteWidgetsPopOver-arrow-width: 21;
+ -GraniteWidgetsPopOver-arrow-height: 10;
+ -GraniteWidgetsPopOver-border-radius: 8px;
+ -GraniteWidgetsPopOver-border-width: 0;
+ -GraniteWidgetsPopOver-shadow-size: 12;
+ border: 1px solid #181b28;
+ background: #181b28;
+ color: #C3C7D1; }
+ GraniteWidgetsPopOver .button {
+ background-image: none;
+ background: none;
+ border: none; }
+ GraniteWidgetsPopOver .button:active, GraniteWidgetsPopOver .button:active:hover {
+ color: #c50ed2; }
+ GraniteWidgetsPopOver > .frame {
+ border: none; }
+ GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar {
+ border: none;
+ background: none; }
+
+GraniteWidgetsStaticNotebook .frame {
+ border: none; }
+
+.popover_bg {
+ background-color: #181b28;
+ background-image: none;
+ border: 1px solid #181b28;
+ color: #C3C7D1; }
+
+/***********
+ * Welcome *
+ **********/
+GraniteWidgetsWelcome {
+ background-color: #181b28; }
+ GraniteWidgetsWelcome GtkLabel {
+ color: #C3C7D1; }
+ GraniteWidgetsWelcome .h1, GraniteWidgetsWelcome .h3 {
+ color: rgba(195, 199, 209, 0.8); }
+
+/**************
+* Source List *
+***************/
+.source-list {
+ -GtkTreeView-horizontal-separator: 1px;
+ -GtkTreeView-vertical-separator: 6px;
+ background-color: #161925;
+ border: solid rgba(12, 14, 21, 0.8);
+ color: #C3C7D1;
+ border-right-width: 1px; }
+ .source-list .category-expander {
+ color: transparent; }
+ .source-list .badge {
+ background-image: none;
+ background-color: rgba(0, 0, 0, 0.4);
+ color: #161925;
+ border-radius: 10px;
+ padding: 0 6px;
+ margin: 0 3px;
+ border-width: 0; }
+ .source-list .badge:selected:backdrop, .source-list .badge:selected:hover:backdrop {
+ background-color: rgba(0, 0, 0, 0.2);
+ color: #0c0e15; }
+ .source-list row,
+ .source-list .list-row {
+ border: none;
+ padding: 0; }
+ .source-list row > GtkLabel,
+ .source-list row > label,
+ .source-list .list-row > GtkLabel,
+ .source-list .list-row > label {
+ padding-left: 6px;
+ padding-right: 6px; }
+
+/**************
+* Text Styles *
+**************/
+.h1 {
+ font-size: 24px; }
+
+.h2 {
+ font-weight: 300;
+ font-size: 18px; }
+
+.h3 {
+ font-size: 11px; }
+
+.h4,
+.category-label {
+ font-size: 12px;
+ padding: 6px;
+ color: rgba(195, 199, 209, 0.3);
+ font-weight: bold;
+ text-shadow: 0 1px rgba(255, 255, 255, 0.2); }
+
+/**************
+* Storage Bar *
+**************/
+.storage-bar .trough {
+ border: none;
+ box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
+ background-image: none;
+ background-color: transparent;
+ padding: 8px 6px; }
+
+.storage-bar .fill-block {
+ background-color: #f9dc5c;
+ border: none;
+ box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
+ transition: all 200ms ease-in-out;
+ padding: 8px 6px; }
+ .storage-bar .fill-block:first-child {
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ border-left-width: 1px;
+ box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); }
+ .storage-bar .fill-block:last-child {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); }
+ .storage-bar .fill-block.empty-block {
+ background-color: #181b28; }
+ .storage-bar .fill-block.app {
+ background-color: #7cb7ff; }
+ .storage-bar .fill-block.audio {
+ background-color: #ff6a00; }
+ .storage-bar .fill-block.photo {
+ background-color: #ed254e; }
+ .storage-bar .fill-block.video {
+ background-color: #c74ded; }
+ .storage-bar .fill-block .legend {
+ padding: 12px;
+ border-radius: 4px; }
+
+/***************
+ * Header bars *
+ ***************/
+.titlebar:not(headerbar), .titlebar,
+headerbar {
+ padding: 0px 13px;
+ min-height: 34px;
+ background: #0c0e14;
+ color: #C3C7D1;
+ border-radius: 0; }
+ .titlebar:backdrop,
+ headerbar:backdrop {
+ border-color: rgba(13, 16, 23, 0.82);
+ transition: 200ms ease-out; }
+ .titlebar .title,
+ headerbar .title {
+ font-weight: bold;
+ padding-left: 12px;
+ padding-right: 12px; }
+ .titlebar .subtitle,
+ headerbar .subtitle {
+ font-size: smaller;
+ padding-left: 12px;
+ padding-right: 12px; }
+ .titlebar:not(headerbar) entry, .titlebar entry,
+ headerbar entry {
+ min-height: 24px; }
+ .titlebar:not(headerbar) button, .titlebar button,
+ headerbar button {
+ color: #8b8b8b;
+ text-shadow: none;
+ box-shadow: none;
+ background: transparent;
+ border: none;
+ min-height: 14px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ box-shadow: none; }
+ .titlebar button.image-button,
+ headerbar button.image-button {
+ padding: 3px 4px; }
+ .titlebar button.suggested-action,
+ headerbar button.suggested-action {
+ box-shadow: none;
+ border: none;
+ background-image: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .titlebar button.suggested-action:disabled, .titlebar button.suggested-action:disabled:backdrop, .titlebar button.suggested-action:backdrop,
+ headerbar button.suggested-action:disabled,
+ headerbar button.suggested-action:disabled:backdrop,
+ headerbar button.suggested-action:backdrop {
+ border: none;
+ background-image: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .titlebar button.suggested-action:disabled:hover, .titlebar button.suggested-action:disabled:active, .titlebar button.suggested-action:disabled:checked, .titlebar button.suggested-action:disabled:backdrop:hover, .titlebar button.suggested-action:disabled:backdrop:active, .titlebar button.suggested-action:disabled:backdrop:checked, .titlebar button.suggested-action:backdrop:hover, .titlebar button.suggested-action:backdrop:active, .titlebar button.suggested-action:backdrop:checked,
+ headerbar button.suggested-action:disabled:hover,
+ headerbar button.suggested-action:disabled:active,
+ headerbar button.suggested-action:disabled:checked,
+ headerbar button.suggested-action:disabled:backdrop:hover,
+ headerbar button.suggested-action:disabled:backdrop:active,
+ headerbar button.suggested-action:disabled:backdrop:checked,
+ headerbar button.suggested-action:backdrop:hover,
+ headerbar button.suggested-action:backdrop:active,
+ headerbar button.suggested-action:backdrop:checked {
+ border: none;
+ background-image: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .titlebar button.appmenu,
+ headerbar button.appmenu {
+ background: transparent; }
+ .titlebar button.appmenu:backdrop,
+ headerbar button.appmenu:backdrop {
+ background: transparent; }
+ .titlebar button:hover, .titlebar button:active, .titlebar button:checked,
+ headerbar button:hover,
+ headerbar button:active,
+ headerbar button:checked {
+ background-color: transparent;
+ color: #c50ed2;
+ box-shadow: none;
+ border: none; }
+ .titlebar button:backdrop, .titlebar button:disabled, .titlebar button:backdrop:disabled,
+ headerbar button:backdrop,
+ headerbar button:disabled,
+ headerbar button:backdrop:disabled {
+ color: rgba(195, 199, 209, 0.2);
+ background-color: transparent;
+ border-radius: 0;
+ text-shadow: none;
+ box-shadow: none;
+ border: none; }
+ .titlebar button:backdrop:hover, .titlebar button:backdrop:active, .titlebar button:backdrop:checked,
+ headerbar button:backdrop:hover,
+ headerbar button:backdrop:active,
+ headerbar button:backdrop:checked {
+ background-color: transparent;
+ color: #c50ed2;
+ box-shadow: none; }
+ .titlebar button:backdrop:hover label, .titlebar button:backdrop:active label, .titlebar button:backdrop:checked label,
+ headerbar button:backdrop:hover label,
+ headerbar button:backdrop:active label,
+ headerbar button:backdrop:checked label {
+ color: #c50ed2; }
+ .titlebar button.suggested-action,
+ headerbar button.suggested-action {
+ font-weight: bold;
+ min-height: 24px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ border-radius: 4px;
+ font-weight: bold;
+ color: white;
+ background-color: #181b28;
+ text-shadow: none;
+ box-shadow: none; }
+ .titlebar button.suggested-action:hover,
+ headerbar button.suggested-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.suggested-action:active,
+ headerbar button.suggested-action:active {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.suggested-action:disabled,
+ headerbar button.suggested-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.suggested-action:disabled label,
+ headerbar button.suggested-action:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+ .titlebar button.suggested-action:backdrop,
+ headerbar button.suggested-action:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none;
+ border-radius: 3px; }
+ .titlebar button.suggested-action:backdrop:disabled,
+ headerbar button.suggested-action:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.destructive-action,
+ headerbar button.destructive-action {
+ font-weight: bold;
+ min-height: 24px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ border-radius: 4px;
+ font-weight: bold;
+ color: white;
+ background-color: #181b28;
+ text-shadow: none;
+ box-shadow: none; }
+ .titlebar button.destructive-action:hover,
+ headerbar button.destructive-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.destructive-action:active,
+ headerbar button.destructive-action:active {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.destructive-action:disabled,
+ headerbar button.destructive-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.destructive-action:disabled label,
+ headerbar button.destructive-action:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+ .titlebar button.destructive-action:backdrop,
+ headerbar button.destructive-action:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none;
+ border-radius: 3px; }
+ .titlebar button.destructive-action:backdrop:disabled,
+ headerbar button.destructive-action:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.titlebutton,
+ headerbar button.titlebutton {
+ color: transparent;
+ box-shadow: none;
+ border: none;
+ background-color: transparent;
+ background-image: none;
+ background-repeat: no-repeat; }
+ .titlebar button.titlebutton:hover, .titlebar button.titlebutton:active, .titlebar button.titlebutton:checked, .titlebar button.titlebutton:backdrop, .titlebar button.titlebutton:backdrop:hover, .titlebar button.titlebutton *,
+ headerbar button.titlebutton:hover,
+ headerbar button.titlebutton:active,
+ headerbar button.titlebutton:checked,
+ headerbar button.titlebutton:backdrop,
+ headerbar button.titlebutton:backdrop:hover,
+ headerbar button.titlebutton * {
+ color: transparent;
+ box-shadow: none;
+ background-color: transparent; }
+ .titlebar .linked > button,
+ .titlebar headerbar .linked > button, .titlebar .linked > button:active, .titlebar .linked > button:checked, .titlebar .linked > button:hover,
+ .titlebar .linked > button:backdrop,
+ headerbar .titlebar .linked > button,
+ .titlebar headerbar .linked > button,
+ headerbar .linked > button,
+ headerbar .titlebar .linked > button:active,
+ .titlebar headerbar .linked > button:active,
+ headerbar .linked > button:active,
+ headerbar .titlebar .linked > button:checked,
+ .titlebar headerbar .linked > button:checked,
+ headerbar .linked > button:checked,
+ headerbar .titlebar .linked > button:hover,
+ .titlebar headerbar .linked > button:hover,
+ headerbar .titlebar .linked > button:backdrop,
+ .titlebar headerbar .linked > button:backdrop,
+ headerbar .linked > button:hover,
+ headerbar .linked > button:backdrop {
+ border-radius: 23px;
+ border-right-style: none;
+ border: none;
+ box-shadow: none;
+ margin: 10px 0px;
+ min-height: 20px;
+ transition: all .1s ease-in; }
+ .titlebar .linked > button:only-child,
+ .titlebar headerbar .linked > button:only-child,
+ headerbar .titlebar .linked > button:only-child,
+ headerbar .linked > button:only-child {
+ border-radius: 13px;
+ border-style: none; }
+ .titlebar .linked > button:active,
+ headerbar .linked > button:active {
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ color: snow; }
+ .titlebar .linked > button:checked,
+ headerbar .linked > button:checked {
+ border-radius: 23px;
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
+ color: snow; }
+ .titlebar .linked > button:checked:backdrop,
+ headerbar .linked > button:checked:backdrop {
+ color: #ffe6e6; }
+ .titlebar .linked > button:checked:backdrop label,
+ headerbar .linked > button:checked:backdrop label {
+ color: #ffe6e6; }
+ .selection-mode.titlebar button:backdrop.flat:active, .selection-mode.titlebar button:backdrop.flat:checked, .selection-mode.titlebar button:backdrop:active, .selection-mode.titlebar button:backdrop:checked,
+ headerbar.selection-mode button:backdrop.flat:active,
+ headerbar.selection-mode button:backdrop.flat:checked,
+ headerbar.selection-mode button:backdrop:active,
+ headerbar.selection-mode button:backdrop:checked {
+ border-color: #980ba2; }
+ .selection-mode.titlebar button:backdrop.flat:active label, .selection-mode.titlebar button:backdrop.flat:checked label, .selection-mode.titlebar button:backdrop:active label, .selection-mode.titlebar button:backdrop:checked label,
+ headerbar.selection-mode button:backdrop.flat:active label,
+ headerbar.selection-mode button:backdrop.flat:checked label,
+ headerbar.selection-mode button:backdrop:active label,
+ headerbar.selection-mode button:backdrop:checked label {
+ color: rgba(197, 14, 210, 0.6); }
+ .tiled .titlebar,
+ .maximized .titlebar, .tiled
+ headerbar.titlebar,
+ .maximized
+ headerbar.titlebar {
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }
+ .tiled .titlebar:backdrop, .tiled .titlebar,
+ .maximized .titlebar:backdrop,
+ .maximized .titlebar, .tiled
+ headerbar:backdrop, .tiled
+ headerbar,
+ .maximized
+ headerbar:backdrop,
+ .maximized
+ headerbar {
+ border-radius: 0; }
+ .default-decoration.titlebar,
+ headerbar.default-decoration {
+ padding: 5px 4px;
+ min-height: 20px; }
+ .default-decoration.titlebar button.titlebutton,
+ headerbar.default-decoration button.titlebutton {
+ min-height: 20px;
+ min-width: 20px;
+ margin: 0;
+ padding: 0; }
+
+headerbar entry,
+headerbar spinbutton,
+headerbar separator {
+ margin-top: 5px;
+ margin-bottom: 5px; }
+
+headerbar switch {
+ margin-top: 10px;
+ margin-bottom: 10px; }
+
+headerbar separator {
+ background: transparent; }
+
+.background:not(.tiled):not(.maximized) .titlebar {
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(0, 0, 0, 0.1); }
+ .background:not(.tiled):not(.maximized) .titlebar:backdrop, .background:not(.tiled):not(.maximized) .titlebar {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px; }
+
+window:not(.tiled):not(.maximized) separator:first-child + headerbar:backdrop, window:not(.tiled):not(.maximized) separator:first-child + headerbar,
+window:not(.tiled):not(.maximized) headerbar:first-child:backdrop,
+window:not(.tiled):not(.maximized) headerbar:first-child {
+ border-top-left-radius: 4px; }
+
+window:not(.tiled):not(.maximized) headerbar:last-child:backdrop, window:not(.tiled):not(.maximized) headerbar:last-child {
+ border-top-right-radius: 4px; }
+
+window.csd > .titlebar:not(headerbar) {
+ padding: 0;
+ background-color: transparent;
+ background-image: none;
+ border-style: none;
+ border-color: transparent;
+ box-shadow: none; }
+
+.titlebar:not(headerbar) > separator {
+ background: transparent; }
+
+/**************
+ * GtkInfoBar *
+ **************/
+.info, .warning, .question, .error,
+infobar {
+ text-shadow: none;
+ color: #C3C7D1;
+ background-color: #161925;
+ border-bottom: 1px solid #030305;
+ box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.15); }
+
+.info, .warning, .question, .error {
+ text-shadow: none;
+ color: #fefefe;
+ border: none; }
+ .info .label, .warning .label, .question .label, .error .label {
+ color: #fefefe; }
+ .info .label:backdrop, .warning .label:backdrop, .question .label:backdrop, .error .label:backdrop {
+ color: rgba(254, 254, 254, 0.5); }
+ .info button, .warning button, .question button, .error button {
+ border-radius: 2px;
+ border: none;
+ background: rgba(24, 27, 40, 0.98);
+ color: #C3C7D1;
+ box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2); }
+ .info button .label, .warning button .label, .question button .label, .error button .label {
+ color: #C3C7D1; }
+ .info button:active, .warning button:active, .question button:active, .error button:active {
+ background: #181b28;
+ color: #C3C7D1;
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); }
+ .info button:active:backdrop, .warning button:active:backdrop, .question button:active:backdrop, .error button:active:backdrop {
+ background: rgba(24, 27, 40, 0.8);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+ .info button:hover, .warning button:hover, .question button:hover, .error button:hover, .info button:focus, .warning button:focus, .question button:focus, .error button:focus {
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); }
+ .info button:disabled, .warning button:disabled, .question button:disabled, .error button:disabled {
+ background: rgba(24, 27, 40, 0.6);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+ .info button:disabled:backdrop, .warning button:disabled:backdrop, .question button:disabled:backdrop, .error button:disabled:backdrop {
+ background: rgba(24, 27, 40, 0.5);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+ .info button:backdrop, .warning button:backdrop, .question button:backdrop, .error button:backdrop {
+ background: rgba(24, 27, 40, 0.8);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+
+.info {
+ background-color: #71f79f; }
+ .info:backdrop {
+ background-color: #a1fac0;
+ color: rgba(254, 254, 254, 0.5); }
+
+.warning {
+ background-color: #cc5500; }
+ .warning:backdrop {
+ background-color: #ff6a00;
+ color: rgba(254, 254, 254, 0.5); }
+
+.question {
+ background-color: #00c1e4; }
+ .question:backdrop {
+ background-color: #18dcff;
+ color: rgba(254, 254, 254, 0.5); }
+
+.error {
+ background-color: #e6133e; }
+ .error:backdrop {
+ background-color: #ef3d61;
+ color: rgba(254, 254, 254, 0.5); }
+
+/*************
+ * Level Bar *
+ *************/
+levelbar block {
+ min-width: 32px;
+ min-height: 6px; }
+
+levelbar.vertical block {
+ min-width: 6px;
+ min-height: 32px; }
+
+levelbar:backdrop {
+ transition: 200ms ease-out; }
+
+levelbar trough {
+ padding: 3px;
+ border-radius: 3px;
+ background-color: rgba(255, 255, 255, 0.2);
+ box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+ levelbar trough:backdrop {
+ background-color: rgba(255, 255, 255, 0.06);
+ box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+
+levelbar.horizontal.discrete block {
+ margin: 0 1px; }
+
+levelbar.vertical.discrete block {
+ margin: 1px 0; }
+
+levelbar block {
+ border-radius: 2px; }
+ levelbar block:backdrop {
+ box-shadow: none; }
+ levelbar block.low {
+ background-color: #cc5500; }
+ levelbar block.low:backdrop {
+ border-color: #cc5500; }
+ levelbar block.high, levelbar block:not(.empty) {
+ background-color: #00c1e4; }
+ levelbar block.high:backdrop, levelbar block:not(.empty):backdrop {
+ border-color: #00c1e4; }
+ levelbar block.full {
+ background-color: #0096b1; }
+ levelbar block.full:backdrop {
+ border-color: #0096b1; }
+ levelbar block.empty {
+ background-color: rgba(0, 0, 0, 0.35);
+ box-shadow: none; }
+
+/*********
+ * Links *
+ *********/
+*:link, button:link,
+button:visited {
+ color: #7cb7ff; }
+ *:link:visited,
+ button:visited {
+ color: rgba(124, 183, 255, 0.5); }
+ *:selected *:link:visited, *:selected button:visited:link,
+ *:selected button:visited {
+ color: #e79eec; }
+ *:link:hover, button:hover:link,
+ button:hover:visited {
+ color: #afd3ff; }
+ *:selected *:link:hover, *:selected button:hover:link,
+ *:selected button:hover:visited {
+ color: #f8e6fa; }
+ *:link:active, button:active:link,
+ button:active:visited {
+ color: #7cb7ff; }
+ *:selected *:link:active, *:selected button:active:link,
+ *:selected button:active:visited {
+ color: #f3cef5; }
+ *:link:backdrop:backdrop:hover, button:backdrop:backdrop:hover:link,
+ button:backdrop:backdrop:hover:visited, *:link:backdrop:backdrop:hover:selected, button:backdrop:backdrop:hover:selected:link,
+ button:backdrop:backdrop:hover:selected:visited, *:link:backdrop, button:backdrop:link,
+ button:backdrop:visited {
+ color: #c50ed2; }
+ *:link:selected, button:selected:link,
+ button:selected:visited,
+ *:selected *:link,
+ *:selected button:link,
+ *:selected button:visited {
+ color: #f3cef5; }
+
+button:link,
+button:visited {
+ text-shadow: none; }
+ button:link:hover, button:link:active, button:link:checked,
+ button:visited:hover,
+ button:visited:active,
+ button:visited:checked {
+ text-shadow: none; }
+ button:link > label,
+ button:visited > label {
+ text-decoration-line: underline; }
+
+/*********
+ * Lists *
+ *********/
+list {
+ color: #C3C7D1;
+ background-color: #181b28;
+ border-color: rgba(12, 14, 21, 0.8); }
+ list:backdrop {
+ background-color: #1a1d2b;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+row {
+ padding: 5px 11px;
+ transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
+ row label {
+ padding-left: 8px; }
+ row:hover {
+ transition: none; }
+ row:backdrop {
+ transition: 200ms ease-out; }
+ row.activatable.has-open-popup, row.activatable:hover {
+ background-color: rgba(195, 199, 209, 0.05); }
+ row.activatable:active {
+ box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); }
+ row.activatable:backdrop:hover {
+ background-color: transparent; }
+ row.activatable:selected:active {
+ box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); }
+ row.activatable:selected.has-open-popup, row.activatable:selected:hover {
+ background-color: rgba(197, 14, 210, 0.5); }
+ row.activatable:selected:backdrop {
+ background-color: rgba(197, 14, 210, 0.6); }
+ row.activatable button:not(.image-button) {
+ background-color: transparent; }
+
+/*********
+ * Menus *
+ *********/
+menubar,
+.menubar {
+ background-color: #161925;
+ color: #C3C7D1;
+ -GtkWidget-window-dragging: true;
+ padding: 0px;
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }
+ menubar > menuitem,
+ .menubar > menuitem {
+ min-height: 16px;
+ padding: 4px 8px; }
+ menubar > menuitem:hover,
+ .menubar > menuitem:hover {
+ box-shadow: inset 0 -3px #c50ed2; }
+ menubar > menuitem:disabled,
+ .menubar > menuitem:disabled {
+ color: #6d707b;
+ box-shadow: none; }
+
+menu,
+.menu,
+.context-menu {
+ font: initial;
+ margin: 4px;
+ padding: 2px 0px;
+ background: linear-gradient(to bottom, #1a1d2b, #12151f);
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ .csd menu, .csd
+ .menu, .csd
+ .context-menu {
+ border: none; }
+ menu:backdrop,
+ .menu:backdrop,
+ .context-menu:backdrop {
+ background-color: #191c2a; }
+ menu menuitem,
+ .menu menuitem,
+ .context-menu menuitem {
+ min-height: 17px;
+ min-width: 40px;
+ padding: 4px 6px;
+ text-shadow: none; }
+ menu menuitem:hover,
+ .menu menuitem:hover,
+ .context-menu menuitem:hover {
+ color: #fefefe;
+ background-color: #c50ed2; }
+ menu menuitem:disabled,
+ .menu menuitem:disabled,
+ .context-menu menuitem:disabled {
+ color: #6d707b; }
+ menu menuitem:disabled:backdrop,
+ .menu menuitem:disabled:backdrop,
+ .context-menu menuitem:disabled:backdrop {
+ color: #333955; }
+ menu menuitem:backdrop, menu menuitem:backdrop:hover,
+ .menu menuitem:backdrop,
+ .menu menuitem:backdrop:hover,
+ .context-menu menuitem:backdrop,
+ .context-menu menuitem:backdrop:hover {
+ color: #6d707b;
+ background-color: transparent; }
+ menu menuitem arrow,
+ .menu menuitem arrow,
+ .context-menu menuitem arrow {
+ min-height: 16px;
+ min-width: 16px; }
+ menu menuitem arrow:dir(ltr),
+ .menu menuitem arrow:dir(ltr),
+ .context-menu menuitem arrow:dir(ltr) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
+ margin-left: 10px; }
+ menu menuitem arrow:dir(rtl),
+ .menu menuitem arrow:dir(rtl),
+ .context-menu menuitem arrow:dir(rtl) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
+ margin-right: 10px; }
+ menu menuitem label:dir(rtl), menu menuitem label:dir(ltr),
+ .menu menuitem label:dir(rtl),
+ .menu menuitem label:dir(ltr),
+ .context-menu menuitem label:dir(rtl),
+ .context-menu menuitem label:dir(ltr) {
+ color: inherit; }
+ menu > arrow,
+ .menu > arrow,
+ .context-menu > arrow {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ min-height: 16px;
+ min-width: 16px;
+ padding: 4px;
+ background-color: #181b28;
+ border-radius: 0; }
+ menu > arrow.top,
+ .menu > arrow.top,
+ .context-menu > arrow.top {
+ margin-top: -6px;
+ border-bottom: 1px solid #292c39;
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
+ menu > arrow.bottom,
+ .menu > arrow.bottom,
+ .context-menu > arrow.bottom {
+ margin-bottom: -6px;
+ border-top: 1px solid #292c39;
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ menu > arrow:hover,
+ .menu > arrow:hover,
+ .context-menu > arrow:hover {
+ background-color: #292c39; }
+ menu > arrow:backdrop,
+ .menu > arrow:backdrop,
+ .context-menu > arrow:backdrop {
+ background-color: #191c2a; }
+ menu > arrow:disabled,
+ .menu > arrow:disabled,
+ .context-menu > arrow:disabled {
+ color: transparent;
+ background-color: transparent;
+ border-color: transparent; }
+
+menuitem accelerator {
+ color: alpha(currentColor,0.55); }
+
+menuitem check,
+menuitem radio {
+ min-height: 16px;
+ min-width: 16px; }
+ menuitem check:dir(ltr),
+ menuitem radio:dir(ltr) {
+ margin-right: 7px; }
+ menuitem check:dir(rtl),
+ menuitem radio:dir(rtl) {
+ margin-left: 7px; }
+
+/********
+ * Misc *
+ ********/
+.content-view {
+ background-color: #090a0f; }
+ .content-view:hover {
+ -gtk-icon-effect: highlight; }
+ .content-view:backdrop {
+ background-color: #090a0f; }
+
+.osd .scale-popup button.flat {
+ border-style: none;
+ border-radius: 5px; }
+
+.scale-popup button:hover {
+ background-color: rgba(195, 199, 209, 0.1);
+ border-radius: 5px; }
+
+/************
+* Assistant *
+*************/
+assistant {
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px; }
+ assistant .sidebar {
+ background-color: #181b28;
+ border-top: 1px solid rgba(12, 14, 21, 0.8);
+ border-bottom-left-radius: 4px; }
+ assistant .sidebar:backdrop {
+ background-color: #1a1d2b;
+ border-color: rgba(13, 16, 23, 0.82); }
+ assistant.csd .sidebar {
+ border-top-style: none; }
+ assistant .sidebar GtkLabel,
+ assistant .sidebar label {
+ padding: 6px 12px; }
+ assistant .sidebar GtkLabel.highlight,
+ assistant .sidebar label.highlight {
+ background-color: #393c47; }
+
+/*************
+ * Notebooks *
+ *************/
+notebook > header {
+ padding: 1px;
+ border-color: rgba(12, 14, 21, 0.8);
+ border-width: 1px;
+ background-color: #181b28; }
+ notebook > header:backdrop {
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #161925; }
+ notebook > header tabs {
+ margin: 0px; }
+ notebook > header.top {
+ border-bottom-style: solid; }
+ notebook > header.top > tabs {
+ margin-bottom: -3px; }
+ notebook > header.top > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.top > tabs > tab:checked {
+ background-color: #181b28; }
+ notebook > header.top > tabs > tab:checked:hover {
+ background-color: #181b28; }
+ notebook > header.bottom {
+ border-top-style: solid; }
+ notebook > header.bottom > tabs {
+ margin-top: -2px; }
+ notebook > header.bottom > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.bottom > tabs > tab:checked {
+ background-color: #181b28;
+ box-shadow: -1px 0 0 rgba(12, 14, 21, 0.8), 0px 1px 0 rgba(12, 14, 21, 0.8), 1px 0 0 rgba(12, 14, 21, 0.8); }
+ notebook > header.left {
+ border-right-style: solid; }
+ notebook > header.left > tabs {
+ margin-right: -2px; }
+ notebook > header.left > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.left > tabs > tab:checked {
+ background-color: #181b28;
+ box-shadow: 0px 1px 0 rgba(12, 14, 21, 0.8), 0px -1px 0 rgba(12, 14, 21, 0.8), 0px 1px 0 rgba(12, 14, 21, 0.8); }
+ notebook > header.right {
+ border-left-style: solid; }
+ notebook > header.right > tabs {
+ margin-left: -2px; }
+ notebook > header.right > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.right > tabs > tab:checked {
+ background-color: #181b28;
+ box-shadow: 0px 1px 0 rgba(12, 14, 21, 0.8), 0px -1px 0 rgba(12, 14, 21, 0.8), 1px 0 0 rgba(12, 14, 21, 0.8); }
+ notebook > header.top > tabs > arrow {
+ border-top-style: none; }
+ notebook > header.bottom > tabs > arrow {
+ border-bottom-style: none; }
+ notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
+ margin-left: -5px;
+ margin-right: -5px;
+ padding-left: 4px;
+ padding-right: 4px; }
+ notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
+ -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
+ notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
+ notebook > header.left > tabs > arrow {
+ border-left-style: none; }
+ notebook > header.right > tabs > arrow {
+ border-right-style: none; }
+ notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
+ margin-top: -5px;
+ margin-bottom: -5px;
+ padding-top: 4px;
+ padding-bottom: 4px; }
+ notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
+ notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ notebook > header > tabs > arrow {
+ min-height: 14px;
+ min-width: 14px;
+ border-radius: 0; }
+ notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) {
+ background-clip: padding-box;
+ background-image: none;
+ background-color: rgba(255, 255, 255, 0.3);
+ border-color: transparent;
+ box-shadow: none; }
+ notebook > header > tabs > arrow:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ notebook > header tab {
+ min-height: 24px;
+ min-width: 24px;
+ padding: 1px 12px;
+ outline-offset: -5px;
+ color: #6d707b;
+ font-weight: bold;
+ border-width: 1px;
+ border-color: transparent; }
+ notebook > header tab:hover {
+ color: #989ca6; }
+ notebook > header tab:hover.reorderable-page {
+ border-color: rgba(12, 14, 21, 0.1);
+ background-color: rgba(22, 25, 37, 0.2); }
+ notebook > header tab:backdrop {
+ color: #4a4d59; }
+ notebook > header tab:backdrop.reorderable-page {
+ border-color: transparent;
+ background-color: transparent; }
+ notebook > header tab:checked {
+ color: #C3C7D1;
+ box-shadow: -1px 0 0 rgba(12, 14, 21, 0.8), 0px -1px 0 rgba(12, 14, 21, 0.8), 1px 0 0 rgba(12, 14, 21, 0.8); }
+ notebook > header tab:checked.reorderable-page {
+ border-color: rgba(12, 14, 21, 0.3);
+ background-color: rgba(22, 25, 37, 0.5); }
+ notebook > header tab:checked.reorderable-page:hover {
+ background-color: rgba(22, 25, 37, 0.7); }
+ notebook > header tab:backdrop:checked {
+ color: #6d707b; }
+ notebook > header tab:backdrop:checked.reorderable-page {
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #1a1d2b; }
+ notebook > header tab button.flat {
+ padding: 0;
+ margin-top: 4px;
+ margin-bottom: 4px;
+ min-width: 20px;
+ min-height: 20px; }
+ notebook > header tab button.flat:hover {
+ background: transparent;
+ box-shadow: none;
+ color: #ed254e; }
+ notebook > header tab button.flat, notebook > header tab button.flat:backdrop {
+ color: alpha(currentColor,0.3); }
+ notebook > header tab button.flat:last-child {
+ margin-left: 4px;
+ margin-right: -4px; }
+ notebook > header tab button.flat:first-child {
+ margin-left: -4px;
+ margin-right: 4px; }
+ notebook > header.top tabs, notebook > header.bottom tabs {
+ padding-left: 0px;
+ padding-right: 0px; }
+ notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) {
+ margin-left: 0.5px;
+ margin-right: 0.5px; }
+ notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
+ margin-left: -1px; }
+ notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
+ margin-right: -1px; }
+ notebook > header.top tabs tab, notebook > header.bottom tabs tab {
+ margin-left: 0.5px;
+ margin-right: 0.5px; }
+ notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
+ border-style: none solid; }
+ notebook > header.left tabs, notebook > header.right tabs {
+ padding-top: 4px;
+ padding-bottom: 4px; }
+ notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) {
+ margin-top: 3px;
+ margin-bottom: 3px; }
+ notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
+ margin-top: -1px; }
+ notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
+ margin-bottom: -1px; }
+ notebook > header.left tabs tab, notebook > header.right tabs tab {
+ margin-top: 4px;
+ margin-bottom: 4px; }
+ notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
+ border-style: solid none; }
+ notebook > header.top tab {
+ padding-bottom: 3px; }
+ notebook > header.bottom tab {
+ padding-top: 3px; }
+ notebook > header button {
+ margin-top: 1px;
+ margin-bottom: 1px;
+ padding: 1px 1px; }
+
+notebook > stack:not(:only-child) {
+ background-color: #181b28; }
+ notebook > stack:not(:only-child):backdrop {
+ background-color: #1a1d2b; }
+
+/*********
+ * Paned *
+ *********/
+paned > separator {
+ min-width: 1px;
+ min-height: 1px;
+ -gtk-icon-source: none;
+ border-style: none;
+ background-color: transparent;
+ background-image: image(rgba(12, 14, 21, 0.8));
+ background-size: 1px 1px; }
+ paned > separator:selected {
+ background-image: image(#c50ed2); }
+ paned > separator:backdrop {
+ background-image: image(rgba(13, 16, 23, 0.82)); }
+ paned > separator.wide {
+ min-width: 5px;
+ min-height: 5px;
+ background-color: #161925;
+ background-image: image(rgba(12, 14, 21, 0.8)), image(rgba(12, 14, 21, 0.8));
+ background-size: 1px 1px, 1px 1px; }
+ paned > separator.wide:backdrop {
+ background-color: #161925;
+ background-image: image(rgba(13, 16, 23, 0.82)), image(rgba(13, 16, 23, 0.82)); }
+
+paned.horizontal > separator {
+ background-repeat: repeat-y; }
+ paned.horizontal > separator:dir(ltr) {
+ margin: 0 -8px 0 0;
+ padding: 0 8px 0 0;
+ background-position: left; }
+ paned.horizontal > separator:dir(rtl) {
+ margin: 0 0 0 -8px;
+ padding: 0 0 0 8px;
+ background-position: right; }
+ paned.horizontal > separator.wide {
+ margin: 0;
+ padding: 0;
+ background-repeat: repeat-y, repeat-y;
+ background-position: left, right; }
+
+paned.vertical > separator {
+ margin: 0 0 -8px 0;
+ padding: 0 0 8px 0;
+ background-repeat: repeat-x;
+ background-position: top; }
+ paned.vertical > separator.wide {
+ margin: 0;
+ padding: 0;
+ background-repeat: repeat-x, repeat-x;
+ background-position: bottom, top; }
+
+/************
+ * Pathbars *
+ ************/
+.path-bar button.text-button, .path-bar button.image-button, .path-bar button {
+ padding-left: 4px;
+ padding-right: 4px; }
+
+.path-bar button.text-button.image-button label {
+ padding-left: 0;
+ padding-right: 0; }
+
+.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child {
+ padding-right: 8px; }
+
+.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child {
+ padding-left: 8px; }
+
+.path-bar button image {
+ padding-left: 4px;
+ padding-right: 4px; }
+
+.path-bar button.slider-button {
+ padding-left: 0;
+ padding-right: 0; }
+
+/***************
+ * Popovers *
+ ***************/
+popover.background {
+ padding: 2px;
+ border-radius: 5px;
+ background: linear-gradient(to bottom, #1a1d2b, #12151f);
+ box-shadow: 0 4px 6px transparent; }
+ .csd popover.background, popover.background {
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ popover.background:backdrop {
+ background-color: #161925;
+ box-shadow: none; }
+ popover.background > list,
+ popover.background > .view,
+ popover.background > iconview,
+ popover.background > toolbar {
+ border-style: none;
+ background-color: transparent; }
+ .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier {
+ border: 1px solid rgba(255, 255, 255, 0.1); }
+ popover.background separator {
+ margin: 3px; }
+ popover.background list separator {
+ margin: 0px; }
+
+/*****************
+ * Progress bars *
+ *****************/
+progressbar {
+ font-size: smaller;
+ color: rgba(195, 199, 209, 0.4); }
+ progressbar.horizontal trough,
+ progressbar.horizontal progress {
+ min-height: 6px; }
+ progressbar.vertical trough,
+ progressbar.vertical progress {
+ min-width: 6px; }
+ progressbar.horizontal progress {
+ margin: 0; }
+ progressbar.vertical progress {
+ margin: 0;
+ background: linear-gradient(to bottom, #00f17d, #00f7d2); }
+ progressbar:backdrop {
+ box-shadow: none;
+ transition: 200ms ease-out; }
+ progressbar.osd {
+ min-width: 3px;
+ min-height: 3px;
+ background-color: transparent; }
+ progressbar.osd trough {
+ border-style: none;
+ border-radius: 0;
+ background-color: transparent;
+ box-shadow: none; }
+ progressbar.osd progress {
+ border-style: none;
+ border-radius: 0; }
+
+/************
+ * GtkScale *
+ ************/
+progressbar trough, scale trough, scale fill {
+ background-color: rgba(255, 255, 255, 0.14);
+ border: none;
+ border-radius: 3px;
+ margin: 0; }
+ progressbar trough:disabled, scale trough:disabled, scale fill:disabled {
+ background-color: rgba(255, 255, 255, 0.06); }
+ progressbar trough:backdrop, progressbar:backdrop trough, scale trough:backdrop, scale fill:backdrop {
+ background-color: rgba(255, 255, 255, 0.06);
+ transition: 200ms ease-out; }
+ progressbar trough:backdrop:disabled, progressbar:backdrop trough:disabled, scale trough:backdrop:disabled, scale fill:backdrop:disabled {
+ background-color: rgba(255, 255, 255, 0.06); }
+
+progressbar progress, scale highlight {
+ border: none;
+ background: linear-gradient(to right, #00f17d, #00f7d2);
+ border-radius: 3px;
+ margin: 0; }
+ progressbar progress:disabled, scale highlight:disabled {
+ border: none;
+ background-color: rgba(255, 255, 255, 0.14); }
+ progressbar progress:backdrop, progressbar:backdrop progress, scale highlight:backdrop, progressbar progress:active:backdrop, progressbar:backdrop progress:active, scale highlight:active:backdrop {
+ border-color: #db10ea;
+ background-color: #db10ea; }
+ progressbar progress:backdrop:disabled, progressbar:backdrop progress:disabled, scale highlight:backdrop:disabled, progressbar progress:active:backdrop:disabled, progressbar:backdrop progress:active:disabled, scale highlight:active:backdrop:disabled {
+ background-color: rgba(255, 255, 255, 0.06); }
+
+scale {
+ min-height: 16px;
+ min-width: 16px;
+ padding: 8px; }
+ scale.horizontal trough,
+ scale.horizontal progress {
+ min-height: 6px; }
+ scale.vertical trough,
+ scale.vertical progress {
+ min-width: 6px; }
+ scale.vertical highlight {
+ background: linear-gradient(to bottom, #00f17d, #00f7d2); }
+ scale slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ border-radius: 12px;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ transition-property: background, border, box-shadow; }
+ scale slider:active {
+ background-color: #c50ed2; }
+ scale slider:active:disabled {
+ background-color: #171a26;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.fine-tune.horizontal {
+ padding-top: 9px;
+ padding-bottom: 9px;
+ min-height: 16px; }
+ scale.fine-tune.vertical {
+ padding-left: 9px;
+ padding-right: 9px;
+ min-width: 16px; }
+ scale.fine-tune slider {
+ margin: -6px; }
+ scale.fine-tune fill,
+ scale.fine-tune highlight,
+ scale.fine-tune trough {
+ border-radius: 5px;
+ -gtk-outline-radius: 7px; }
+ scale trough {
+ outline-offset: 2px;
+ -gtk-outline-radius: 5px;
+ outline-color: transparent; }
+ scale fill:backdrop, scale fill {
+ background-color: rgba(12, 14, 21, 0.8); }
+ scale fill:disabled:backdrop, scale fill:disabled {
+ border-color: transparent;
+ background-color: transparent; }
+ .osd scale fill {
+ background-color: rgba(97, 97, 97, 0.775); }
+ .osd scale fill:disabled:backdrop, .osd scale fill:disabled {
+ border-color: transparent;
+ background-color: transparent; }
+ scale slider {
+ border-color: #181b28;
+ border: 2px solid #00f17d;
+ border-radius: 12px;
+ background-color: #292f45; }
+ scale slider:active {
+ border-color: #980ba2; }
+ scale slider:disabled {
+ background-color: #0c0e15;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+ scale slider:backdrop, scale slider:backdrop:disabled {
+ transition: 200ms ease-out;
+ background-color: #0c0e15;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+ row:selected scale slider:disabled, row:selected scale slider {
+ border-color: #980ba2; }
+ .osd scale slider {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: #14171a; }
+ .osd scale slider:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #14171a; }
+ .osd scale slider:active {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #14171a; }
+ .osd scale slider:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ background-color: #14171a; }
+ .osd scale slider:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ background-color: #14171a; }
+ .osd scale slider:backdrop:disabled {
+ background-color: #14171a; }
+ scale value {
+ color: alpha(currentColor,0.4); }
+ scale marks {
+ color: alpha(currentColor,0.4); }
+ scale marks.top {
+ margin-bottom: 6px;
+ margin-top: -12px; }
+ scale marks.bottom {
+ margin-top: 6px;
+ margin-bottom: -12px; }
+ scale marks.top {
+ margin-right: 6px;
+ margin-left: -12px; }
+ scale marks.bottom {
+ margin-left: 6px;
+ margin-right: -12px; }
+ scale.fine-tune marks.top {
+ margin-bottom: 6px;
+ margin-top: -9px; }
+ scale.fine-tune marks.bottom {
+ margin-top: 6px;
+ margin-bottom: -9px; }
+ scale.fine-tune marks.top {
+ margin-right: 6px;
+ margin-left: -9px; }
+ scale.fine-tune marks.bottom {
+ margin-left: 6px;
+ margin-right: -9px; }
+ scale.horizontal indicator {
+ min-height: 6px;
+ min-width: 1px; }
+ scale.horizontal.fine-tune indicator {
+ min-height: 3px; }
+ scale.vertical indicator {
+ min-height: 1px;
+ min-width: 6px; }
+ scale.vertical.fine-tune indicator {
+ min-width: 3px; }
+ scale.horizontal.marks-before:not(.marks-after) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.color {
+ min-height: 0;
+ min-width: 0; }
+ scale.color trough {
+ background-image: image(rgba(12, 14, 21, 0.8));
+ background-repeat: no-repeat; }
+ scale.color.horizontal {
+ padding: 0 0 15px 0; }
+ scale.color.horizontal trough {
+ padding-bottom: 4px;
+ background-position: 0 -3px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+ scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) {
+ margin-bottom: -15px;
+ margin-top: 6px; }
+ scale.color.vertical:dir(ltr) {
+ padding: 0 0 0 15px; }
+ scale.color.vertical:dir(ltr) trough {
+ padding-left: 4px;
+ background-position: 3px 0;
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0; }
+ scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider {
+ margin-left: -15px;
+ margin-right: 6px; }
+ scale.color.vertical:dir(rtl) {
+ padding: 0 15px 0 0; }
+ scale.color.vertical:dir(rtl) trough {
+ padding-right: 4px;
+ background-position: -3px 0;
+ border-bottom-left-radius: 0;
+ border-top-left-radius: 0; }
+ scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider {
+ margin-right: -15px;
+ margin-left: 6px; }
+ scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) {
+ padding: 0 0 12px 0; }
+ scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough {
+ padding-bottom: 7px;
+ background-position: 0 -6px; }
+ scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider {
+ margin-bottom: -15px;
+ margin-top: 6px; }
+ scale.color.fine-tune.vertical:dir(ltr) {
+ padding: 0 0 0 12px; }
+ scale.color.fine-tune.vertical:dir(ltr) trough {
+ padding-left: 7px;
+ background-position: 6px 0; }
+ scale.color.fine-tune.vertical:dir(ltr) slider {
+ margin-left: -15px;
+ margin-right: 6px; }
+ scale.color.fine-tune.vertical:dir(rtl) {
+ padding: 0 12px 0 0; }
+ scale.color.fine-tune.vertical:dir(rtl) trough {
+ padding-right: 7px;
+ background-position: -6px 0; }
+ scale.color.fine-tune.vertical:dir(rtl) slider {
+ margin-right: -15px;
+ margin-left: 6px; }
+
+/**************
+ * Scrollbars *
+ **************/
+scrollbar {
+ background-color: #171a27;
+ transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
+ * {
+ -GtkScrollbar-has-backward-stepper: false;
+ -GtkScrollbar-has-forward-stepper: false; }
+ scrollbar.top {
+ border-bottom: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar.bottom {
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar.left {
+ border-right: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar.right {
+ border-left: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar:backdrop {
+ background-color: #10131b;
+ border-color: rgba(13, 16, 23, 0.82);
+ transition: 200ms ease-out; }
+ scrollbar slider {
+ min-width: 6px;
+ min-height: 6px;
+ margin: -1px;
+ border: 4px solid transparent;
+ border-radius: 8px;
+ background-clip: padding-box;
+ background-color: #7e818c; }
+ scrollbar slider:hover {
+ background-color: #a0a4af; }
+ scrollbar slider:hover:active {
+ background-color: #e323f0; }
+ scrollbar slider:backdrop {
+ background-color: #393c47; }
+ scrollbar slider:disabled {
+ background-color: transparent; }
+ scrollbar.fine-tune slider {
+ min-width: 4px;
+ min-height: 4px; }
+ scrollbar.fine-tune.horizontal slider {
+ border-width: 5px 4px; }
+ scrollbar.fine-tune.vertical slider {
+ border-width: 4px 5px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
+ border-color: transparent;
+ opacity: 0.4;
+ background-color: transparent; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
+ margin: 0;
+ min-width: 3px;
+ min-height: 3px;
+ background-color: #C3C7D1;
+ border: 1px solid black; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
+ min-width: 5px;
+ min-height: 5px;
+ background-color: #C3C7D1;
+ background-clip: padding-box;
+ border-radius: 100%;
+ border: 1px solid black;
+ -gtk-icon-source: none; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
+ margin: 0 2px;
+ min-width: 40px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
+ margin: 1px 2px;
+ min-width: 5px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
+ margin: 2px 0;
+ min-height: 40px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
+ margin: 2px 1px;
+ min-height: 5px; }
+ scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
+ opacity: 0.8; }
+ scrollbar.horizontal slider {
+ min-width: 40px; }
+ scrollbar.vertical slider {
+ min-height: 40px; }
+ scrollbar button {
+ padding: 0;
+ min-width: 12px;
+ min-height: 12px;
+ border-style: none;
+ border-radius: 0;
+ transition-property: min-height, min-width, color;
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #7e818c; }
+ scrollbar button:hover {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #a0a4af; }
+ scrollbar button:active, scrollbar button:checked {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #e323f0; }
+ scrollbar button:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(126, 129, 140, 0.2); }
+ scrollbar button:backdrop {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #393c47; }
+ scrollbar button:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(57, 60, 71, 0.2); }
+ scrollbar.vertical button.down {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ scrollbar.vertical button.up {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
+ scrollbar.horizontal button.down {
+ -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); }
+ scrollbar.horizontal button.up {
+ -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); }
+
+treeview ~ scrollbar.vertical {
+ border-top: 1px solid rgba(12, 14, 21, 0.8);
+ margin-top: -1px; }
+
+/***********
+ * Sidebar *
+ ***********/
+.sidebar {
+ border-style: none;
+ border-width: 0;
+ background-color: #171a27; }
+ .sidebar .frame {
+ border: none; }
+ stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
+ border-right: none;
+ border-left-style: none; }
+ stacksidebar.sidebar:dir(rtl) list .sidebar:dir(rtl), stacksidebar.sidebar.right list .sidebar:dir(rtl), .sidebar.right {
+ border-left: 1px solid rgba(12, 14, 21, 0.8);
+ border-right-style: none; }
+ .sidebar:backdrop {
+ background-color: #181b28;
+ border-color: rgba(13, 16, 23, 0.82);
+ transition: 200ms ease-out; }
+ .sidebar row {
+ padding: 8px 12px;
+ transition: all .12s ease-in; }
+ .sidebar row label {
+ color: #98abb2; }
+ .sidebar row:selected {
+ color: #fff; }
+ .sidebar row:selected:backdrop {
+ color: rgba(197, 14, 210, 0.6);
+ background: transparent; }
+ .sidebar row:selected:backdrop label {
+ color: #fff; }
+ .sidebar row:selected label {
+ color: #fff; }
+ .sidebar.source-list {
+ background: #181b28;
+ padding: 4px 0px; }
+ .sidebar.source-list.view, iconview.sidebar.source-list {
+ transition: all .12s ease-in; }
+ .sidebar.source-list.view:selected, iconview.sidebar.source-list:selected {
+ padding-left: 4px;
+ background: rgba(238, 238, 238, 0.5);
+ color: #ACACAC;
+ border-left: 4px solid #c50ed2; }
+ .sidebar.source-list.view:selected:active, iconview.sidebar.source-list:selected:active {
+ box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); }
+ .sidebar.source-list.view:selected.has-open-popup, iconview.sidebar.source-list:selected.has-open-popup, .sidebar.source-list.view:selected:hover, iconview.sidebar.source-list:selected:hover {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .sidebar.source-list.view:selected:backdrop, iconview.sidebar.source-list:selected:backdrop {
+ background-color: rgba(197, 14, 210, 0.6); }
+ .sidebar.source-list.view:hover, iconview.sidebar.source-list:hover, .sidebar.source-list.view iconview.source-list:hover, iconview.sidebar.source-list iconview.source-list:hover {
+ background-color: rgba(22, 25, 37, 0.4); }
+ paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
+ border-style: none;
+ border-color: rgba(12, 14, 21, 0.8); }
+
+stacksidebar row {
+ padding: 10px 4px; }
+ stacksidebar row > label {
+ padding-left: 6px;
+ padding-right: 6px; }
+ stacksidebar row.needs-attention > label {
+ background-size: 6px 6px, 0 0; }
+
+/*******************************************************************/
+/* PLACESSIDEBAR */
+/*******************************************************************/
+/*--*/
+placessidebar.sidebar {
+ background-color: transparent;
+ background-image: linear-gradient(to right, #171e27 40px, #161925 35px, #161925 36px, #161925 36px, #161925 99%, #161925 100%); }
+ placessidebar.sidebar row.sidebar-row.sidebar-row .sidebar-icon {
+ margin-left: -14px;
+ margin-right: 12px;
+ padding-left: 14px;
+ padding-right: 12px;
+ color: #9ecfa2; }
+ placessidebar.sidebar row.sidebar-row:hover {
+ transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ color: rgba(0, 0, 0, 0.76);
+ background-color: transparent;
+ /*rgba(65,67,75,0.4); */
+ background-image: linear-gradient(to right, rgba(65, 67, 75, 0) 40px, rgba(0, 0, 0, 0.12) 40px, rgba(0, 0, 0, 0.12) 97%); }
+ placessidebar.sidebar row.sidebar-row:active:hover {
+ color: rgba(0, 0, 0, 0.76);
+ background-color: rgba(0, 0, 0, 0.23); }
+ placessidebar.sidebar row.sidebar-row:selected {
+ color: rgba(255, 255, 255, 0.938);
+ background-color: transparent;
+ background-image: linear-gradient(to right, #c50ed2 40px, rgba(65, 67, 75, 0) 36px, rgba(65, 67, 75, 0) 97%); }
+ placessidebar.sidebar row.sidebar-row:selected:hover {
+ color: #ffffff;
+ background-color: rgba(0, 0, 0, 0.24); }
+ placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon {
+ color: #ffffff; }
+ placessidebar.sidebar row.sidebar-row:selected:backdrop {
+ color: rgba(0, 0, 0, 0.54);
+ background-color: transparent;
+ background-image: linear-gradient(to right, #c50ed2 40px, rgba(65, 67, 75, 0) 36px, rgba(65, 67, 75, 0) 97%); }
+ placessidebar.sidebar row.sidebar-row:selected .sidebar-icon {
+ -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.8);
+ color: inherit; }
+
+placessidebar list {
+ background-color: transparent; }
+ placessidebar list:backdrop {
+ background-color: transparent; }
+
+/*****************
+ * GtkSpinButton *
+ *****************/
+spinbutton:not(.vertical) {
+ padding: 0; }
+ spinbutton:not(.vertical) entry {
+ min-width: 28px;
+ margin: 0;
+ background: none;
+ background-color: transparent;
+ border: none;
+ border-radius: 0;
+ box-shadow: none; }
+ spinbutton:not(.vertical) button {
+ min-height: 16px;
+ margin: 0;
+ padding-bottom: 0;
+ padding-top: 0;
+ color: #b2b6c0;
+ background-image: none;
+ border-style: none none none solid;
+ border-color: rgba(12, 14, 21, 0.1);
+ border-radius: 0;
+ box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); }
+ spinbutton:not(.vertical) button:dir(rtl) {
+ border-style: none solid none none; }
+ spinbutton:not(.vertical) button:hover {
+ color: #C3C7D1;
+ background-color: rgba(195, 199, 209, 0.05); }
+ spinbutton:not(.vertical) button:disabled {
+ color: rgba(109, 112, 123, 0.3); }
+ spinbutton:not(.vertical) button:active {
+ background-color: rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); }
+ spinbutton:not(.vertical) button:backdrop {
+ color: #656873;
+ background-color: transparent;
+ border-color: rgba(13, 16, 23, 0.12);
+ transition: 200ms ease-out; }
+ spinbutton:not(.vertical) button:backdrop:disabled {
+ color: rgba(51, 57, 85, 0.3);
+ background-image: none;
+ border-style: none none none solid;
+ box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); }
+ spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) {
+ border-style: none solid none none; }
+ spinbutton:not(.vertical) button:last-child {
+ border-top-right-radius: 2px;
+ border-bottom-right-radius: 2px; }
+
+.osd spinbutton:not(.vertical) button {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #fefefe;
+ border-style: none none none solid;
+ border-color: rgba(0, 0, 0, 0.4);
+ border-radius: 0;
+ box-shadow: none;
+ -gtk-icon-shadow: 0 1px black; }
+ .osd spinbutton:not(.vertical) button:dir(rtl) {
+ border-style: none solid none none; }
+ .osd spinbutton:not(.vertical) button:hover {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.5);
+ background-color: rgba(254, 254, 254, 0.1);
+ -gtk-icon-shadow: 0 1px black;
+ box-shadow: none; }
+ .osd spinbutton:not(.vertical) button:backdrop {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.5);
+ -gtk-icon-shadow: none;
+ box-shadow: none; }
+ .osd spinbutton:not(.vertical) button:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.5);
+ -gtk-icon-shadow: none;
+ box-shadow: none; }
+ .osd spinbutton:not(.vertical) button:last-child {
+ border-radius: 0 3px 3px 0; }
+ .osd spinbutton:not(.vertical) button:dir(rtl):first-child {
+ border-radius: 3px 0 0 3px; }
+
+spinbutton.vertical:disabled {
+ color: #6d707b; }
+
+spinbutton.vertical:backdrop:disabled {
+ color: #333955; }
+
+spinbutton.vertical:drop(active) {
+ border-color: transparent;
+ box-shadow: none; }
+
+spinbutton.vertical entry {
+ min-height: 32px;
+ min-width: 32px;
+ padding: 0;
+ border-radius: 0; }
+
+spinbutton.vertical button {
+ min-height: 32px;
+ min-width: 32px;
+ padding: 0;
+ border-width: 1px;
+ border-color: rgba(12, 14, 21, 0.8);
+ box-shadow: 0 1px rgba(255, 255, 255, 0.1); }
+
+spinbutton.vertical button.up {
+ border-radius: 3px 3px 0 0;
+ border-style: solid solid none solid; }
+
+spinbutton.vertical button.down {
+ border-radius: 0 0 3px 3px;
+ border-style: none solid solid solid; }
+
+.osd spinbutton.vertical button:first-child {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd spinbutton.vertical button:first-child:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd spinbutton.vertical button:first-child:active {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd spinbutton.vertical button:first-child:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd spinbutton.vertical button:first-child:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+treeview spinbutton:not(.vertical) {
+ min-height: 0;
+ border-style: none;
+ border-radius: 0; }
+ treeview spinbutton:not(.vertical) entry {
+ min-height: 0;
+ padding: 1px 2px; }
+
+/***********
+ * Spinner *
+ ***********/
+menu spinner {
+ color: #c50ed2; }
+
+/*********************
+ * Spinner Animation *
+ *********************/
+@keyframes spin {
+ to {
+ -gtk-icon-transform: rotate(1turn); } }
+
+spinner {
+ background: none;
+ opacity: 0;
+ -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
+ spinner:checked {
+ opacity: 1;
+ animation: spin 1s linear infinite; }
+ spinner:checked:disabled {
+ opacity: 0.5; }
+
+/**********
+ * Switch *
+ **********/
+switch {
+ font-size: 1px;
+ font-weight: bold;
+ outline-offset: -4px;
+ transition: all 200ms ease-in;
+ border: none;
+ border-radius: 14px;
+ color: transparent;
+ padding: 2.3px 0px;
+ background: linear-gradient(to right, #859398, #859398); }
+ switch:disabled {
+ background-color: #171a26; }
+ switch:backdrop {
+ background-color: #161925;
+ transition: 200ms ease-out; }
+ switch:backdrop:disabled {
+ background-color: #171a26; }
+ switch:active, switch:checked {
+ background: linear-gradient(to right, #ff9200, #fadd00); }
+ switch:active slider, switch:checked slider {
+ background: #fff; }
+ switch:active:backdrop, switch:checked:backdrop {
+ background: linear-gradient(to right, #e68300, #e1c600); }
+ switch:active:backdrop slider:backdrop, switch:checked:backdrop slider:backdrop {
+ box-shadow: none;
+ background-color: rgba(24, 27, 40, 0.9);
+ border: none; }
+ switch slider {
+ padding: 2px;
+ margin: 0 2.3px;
+ min-width: 12px;
+ min-height: 12px;
+ border-radius: 100%;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ background-color: #bcc4c7; }
+ switch slider:backdrop {
+ padding: 2px;
+ box-shadow: none;
+ background-color: #181b28; }
+ switch trough:active, switch trough:checked {
+ background-color: #c50ed2; }
+ switch trough:active:backdrop, switch trough:checked:backdrop {
+ background-color: rgba(197, 14, 210, 0.6); }
+
+/************
+ * Toolbars *
+ ************/
+toolbar, .inline-toolbar, searchbar,
+.location-bar {
+ -GtkWidget-window-dragging: true;
+ padding: 4px;
+ background-color: #161925; }
+
+toolbar {
+ padding: 4px 3px 3px 4px; }
+ .osd toolbar {
+ background-color: transparent; }
+ toolbar.osd {
+ padding: 13px;
+ border: none;
+ border-radius: 5px;
+ background-color: rgba(20, 23, 26, 0.8); }
+ toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom {
+ border-radius: 0; }
+ toolbar.horizontal separator {
+ margin: 0 7px 1px 6px; }
+ toolbar.vertical separator {
+ margin: 6px 1px 7px 0; }
+ toolbar:not(.inline-toolbar):not(.osd) switch,
+ toolbar:not(.inline-toolbar):not(.osd) scale,
+ toolbar:not(.inline-toolbar):not(.osd) entry,
+ toolbar:not(.inline-toolbar):not(.osd) spinbutton,
+ toolbar:not(.inline-toolbar):not(.osd) button {
+ margin-right: 1px;
+ margin-bottom: 1px; }
+
+.inline-toolbar {
+ padding: 3px;
+ border-width: 0 1px 1px;
+ border-radius: 0 0 5px 5px; }
+
+searchbar,
+.location-bar {
+ border-width: 0 0 1px;
+ padding: 3px; }
+
+.inline-toolbar, searchbar,
+.location-bar {
+ border-style: solid;
+ border-color: rgba(12, 14, 21, 0.8);
+ background-color: rgba(20, 23, 33, 0.94); }
+ .inline-toolbar:backdrop, searchbar:backdrop,
+ .location-bar:backdrop {
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: rgba(20, 23, 33, 0.937);
+ box-shadow: none;
+ transition: 200ms ease-out; }
+
+searchbar {
+ background: #181b28; }
+
+/************
+ * Tooltips *
+ ************/
+tooltip {
+ padding: 4px;
+ /* not working */
+ border-radius: 5px;
+ box-shadow: none;
+ text-shadow: 0 1px black; }
+ tooltip.background {
+ background-color: rgba(0, 0, 0, 0.8);
+ background-clip: padding-box;
+ border: 1px solid rgba(255, 255, 255, 0.1); }
+ tooltip decoration {
+ background-color: transparent; }
+ tooltip * {
+ padding: 4px;
+ background-color: transparent;
+ color: white; }
+
+/**************
+ * Tree Views *
+ **************/
+treeview.view {
+ border-left-color: #6d717d;
+ border-top-color: #161925; }
+ * {
+ -GtkTreeView-horizontal-separator: 4;
+ -GtkTreeView-grid-line-width: 1;
+ -GtkTreeView-grid-line-pattern: '';
+ -GtkTreeView-tree-line-width: 1;
+ -GtkTreeView-tree-line-pattern: '';
+ -GtkTreeView-expander-size: 16; }
+ treeview.view:selected:focus, treeview.view:selected {
+ border-radius: 0; }
+ treeview.view:selected:backdrop, treeview.view:selected {
+ border-left-color: #e286e8;
+ border-top-color: rgba(195, 199, 209, 0.1); }
+ treeview.view:disabled {
+ color: #6d707b; }
+ treeview.view:disabled:selected {
+ color: #dc6ee4; }
+ treeview.view:disabled:selected:backdrop {
+ color: rgba(204, 44, 216, 0.85); }
+ treeview.view:disabled:backdrop {
+ color: #333955; }
+ treeview.view.separator {
+ min-height: 2px;
+ color: #161925; }
+ treeview.view.separator:backdrop {
+ color: rgba(22, 25, 37, 0.1); }
+ treeview.view:backdrop {
+ border-left-color: #424550;
+ border-top: #161925; }
+ treeview.view:drop(active) {
+ border-style: solid none;
+ border-width: 1px;
+ border-color: #980ba2; }
+ treeview.view:drop(active).after {
+ border-top-style: none; }
+ treeview.view:drop(active).before {
+ border-bottom-style: none; }
+ treeview.view.expander {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
+ color: #90939e; }
+ treeview.view.expander:dir(rtl) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
+ treeview.view.expander:hover {
+ color: #C3C7D1; }
+ treeview.view.expander:selected {
+ color: #edb6f1; }
+ treeview.view.expander:selected:hover {
+ color: #fefefe; }
+ treeview.view.expander:selected:backdrop {
+ color: rgba(222, 119, 229, 0.65); }
+ treeview.view.expander:checked {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ treeview.view.expander:backdrop {
+ color: #545763; }
+ treeview.view.progressbar {
+ border: 1px solid #980ba2;
+ border-radius: 4px;
+ background-color: #c50ed2;
+ background-image: linear-gradient(to bottom, #c50ed2, #980ba2);
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.1); }
+ treeview.view.progressbar:selected:focus, treeview.view.progressbar:selected {
+ border-radius: 4px;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
+ background-image: linear-gradient(to bottom, #181b28, #050608); }
+ treeview.view.progressbar:selected:focus:backdrop, treeview.view.progressbar:selected:backdrop {
+ border-color: #1a1d2b;
+ background-color: #1a1d2b; }
+ treeview.view.progressbar:backdrop {
+ border-color: #1a1d2b;
+ background-image: none;
+ box-shadow: none; }
+ treeview.view.trough {
+ background-color: rgba(195, 199, 209, 0.1);
+ border-radius: 4px; }
+ treeview.view.trough:selected:focus, treeview.view.trough:selected {
+ background-color: #980ba2;
+ border-radius: 4px; }
+ treeview.view header button {
+ color: #6d717d;
+ background-color: #181b28;
+ font-weight: bold;
+ text-shadow: none;
+ box-shadow: none; }
+ treeview.view header button:hover {
+ color: #989ca7;
+ box-shadow: none;
+ transition: none; }
+ treeview.view header button:active {
+ color: #C3C7D1;
+ transition: none; }
+ treeview.view header button:last-child:backdrop, treeview.view header button:last-child {
+ border-right-style: none; }
+ treeview.view button.dnd:active, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd,
+ treeview.view header.button.dnd:active,
+ treeview.view header.button.dnd:selected,
+ treeview.view header.button.dnd:hover,
+ treeview.view header.button.dnd {
+ padding: 0 6px;
+ transition: none;
+ background-image: none;
+ background-color: #c50ed2;
+ color: #181b28;
+ border-radius: 0;
+ border-style: none;
+ box-shadow: inset 0 0 0 1px #181b28;
+ text-shadow: none; }
+ treeview.view acceleditor > label {
+ background-color: #c50ed2; }
+
+treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
+ padding: 0 6px;
+ border-radius: 0;
+ background-image: none;
+ text-shadow: none;
+ border-width: 1px;
+ border-style: none solid solid none;
+ border-color: #161925; }
+ treeview.view header button:disabled {
+ border-color: #161925;
+ background-image: none; }
+ treeview.view header button:backdrop {
+ border-color: #161925;
+ border-style: none solid solid none;
+ color: #424550;
+ background-image: none;
+ background-color: #1a1d2b; }
+ treeview.view header button:backdrop:disabled {
+ border-color: #161925;
+ background-image: none; }
+
+/**********************
+ * Window Decorations *
+ *********************/
+decoration {
+ border-radius: 4px 4px 0 0;
+ border-width: 0px;
+ border-width: 0px;
+ box-shadow: 0 4px 10px 2px rgba(33, 26, 30, 0.4);
+ margin: 10px; }
+ decoration:backdrop {
+ box-shadow: 0 4px 10px 2px rgba(33, 26, 30, 0.2);
+ transition: 200ms ease-out; }
+ .maximized decoration,
+ .fullscreen decoration,
+ .tiled decoration {
+ border-radius: 0; }
+ .popup decoration {
+ box-shadow: none; }
+ .ssd decoration {
+ box-shadow: none; }
+ .csd.popup decoration {
+ border-radius: 0;
+ box-shadow: 0 4px 8px transparent;
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ tooltip.csd decoration {
+ border-radius: 5px;
+ box-shadow: none; }
+ messagedialog.csd decoration {
+ border-radius: 7px;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(12, 14, 21, 0.6); }
+ .solid-csd decoration {
+ border-radius: 0;
+ margin: 4px;
+ background-color: #161925;
+ border: solid 1px rgba(13, 16, 23, 0.82);
+ box-shadow: none; }
+
+button.titlebutton {
+ background-repeat: no-repeat;
+ background-position: center;
+ min-height: 20px;
+ padding: 0 1px;
+ box-shadow: none; }
+ button.titlebutton.close {
+ background-image: -gtk-scaled(url("../assets/close.png"), url("../assets/close@2.png")); }
+ button.titlebutton.close:hover, button.titlebutton.close:active {
+ background-image: -gtk-scaled(url("../assets/close_prelight.png"), url("../assets/close_prelight@2.png")); }
+ button.titlebutton.maximize {
+ background-image: -gtk-scaled(url("../assets/maximize.png"), url("../assets/maximize@2.png")); }
+ button.titlebutton.maximize:hover, button.titlebutton.maximize:active {
+ background-image: -gtk-scaled(url("../assets/maximize_prelight.png"), url("../assets/maximize_prelight@2.png")); }
+ button.titlebutton.minimize {
+ background-image: -gtk-scaled(url("../assets/min.png"), url("../assets/min@2.png")); }
+ button.titlebutton.minimize:hover, button.titlebutton.minimize:active {
+ background-image: -gtk-scaled(url("../assets/min_prelight.png"), url("../assets/min_prelight@2.png")); }
+ button.titlebutton:backdrop {
+ -gtk-icon-shadow: none;
+ background-image: -gtk-scaled(url("../assets/close_unfocused.png"), url("../assets/close_unfocused@2.png")); }
+
+headerbar.selection-mode button.titlebutton,
+.titlebar.selection-mode button.titlebutton {
+ text-shadow: 0 -1px rgba(0, 0, 0, 0.648627);
+ -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.648627); }
+ headerbar.selection-mode button.titlebutton:backdrop,
+ .titlebar.selection-mode button.titlebutton:backdrop {
+ -gtk-icon-shadow: none; }
+
+.view:selected:focus, .view:selected, iconview:selected, .view text:selected, iconview text:selected,
+textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection,
+textview text selection:focus,
+textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected,
+popover.background radiobutton:selected,
+.menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
+entry selection:focus,
+entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected {
+ background-color: #c50ed2; }
+ row:selected label, label:selected, .selection-mode button.titlebutton, .view:selected:focus, .view:selected, iconview:selected, .view text:selected, iconview text:selected,
+ textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection,
+ textview text selection:focus,
+ textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected,
+ popover.background radiobutton:selected,
+ .menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
+ entry selection:focus,
+ entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected {
+ color: #fefefe;
+ font-weight: bold; }
+ row:selected label:disabled, label:disabled:selected, .selection-mode button.titlebutton:disabled, iconview:disabled:selected:focus, .view:disabled:selected, iconview:disabled:selected, iconview text:disabled:selected:focus,
+ textview text:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected,
+ textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled,
+ textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, modelbutton.flat:disabled:selected, popover.background checkbutton:disabled:selected,
+ popover.background radiobutton:disabled:selected,
+ .menuitem.button.flat:disabled:selected, calendar:disabled:selected, spinbutton:not(.vertical) selection:disabled:focus, spinbutton:not(.vertical) selection:disabled,
+ entry selection:disabled, row:disabled:selected {
+ color: #e286e8; }
+ row:selected label:backdrop, label:backdrop:selected, .selection-mode button.titlebutton:backdrop, iconview:backdrop:selected:focus, .view:backdrop:selected, iconview:backdrop:selected, iconview text:backdrop:selected:focus,
+ textview text:backdrop:selected:focus, .view text:backdrop:selected, iconview text:backdrop:selected,
+ textview text:backdrop:selected, iconview text selection:backdrop:focus, .view text selection:backdrop, iconview text selection:backdrop,
+ textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, modelbutton.flat:backdrop:selected, popover.background checkbutton:backdrop:selected,
+ popover.background radiobutton:backdrop:selected,
+ .menuitem.button.flat:backdrop:selected, calendar:backdrop:selected, spinbutton:not(.vertical) selection:backdrop:focus, spinbutton:not(.vertical) selection:backdrop,
+ entry selection:backdrop, row:backdrop:selected {
+ color: rgba(254, 254, 254, 0.5); }
+ row:selected label:backdrop:disabled, label:backdrop:disabled:selected, .selection-mode button.titlebutton:backdrop:disabled, .view:backdrop:disabled:selected, iconview:backdrop:disabled:selected, .view text:backdrop:disabled:selected, iconview text:backdrop:disabled:selected,
+ textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, iconview text selection:backdrop:disabled,
+ textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selection:disabled, modelbutton.flat:backdrop:disabled:selected, popover.background checkbutton:backdrop:disabled:selected,
+ popover.background radiobutton:backdrop:disabled:selected,
+ .menuitem.button.flat:backdrop:disabled:selected, calendar:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled,
+ entry selection:backdrop:disabled, row:backdrop:disabled:selected {
+ color: rgba(204, 44, 216, 0.85); }
+
+.monospace {
+ font-family: Monospace; }
+
+/**********************
+ * DE-Specific Styles *
+ **********************/
+/*********
+* Budgie *
+*********/
+.budgie-container {
+ background-color: transparent; }
+ .budgie-container:backdrop {
+ background-color: transparent; }
+ .budgie-container popover list,
+ .budgie-container popover row {
+ border: none;
+ background: none;
+ padding: 0;
+ margin: 0; }
+
+.budgie-popover .container,
+.budgie-popover border,
+.budgie-popover list,
+.budgie-popover row {
+ padding: 0;
+ margin: 0;
+ background: none;
+ border: none;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ opacity: 1;
+ min-width: 0;
+ min-height: 0; }
+
+.budgie-popover,
+.budgie-popover.background {
+ border-radius: 2px;
+ padding: 0;
+ background: #0c0e14;
+ background-clip: border-box;
+ box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.35);
+ border: 1px solid #030305; }
+ .budgie-popover list:hover,
+ .budgie-popover row:hover,
+ .budgie-popover.background list:hover,
+ .budgie-popover.background row:hover {
+ background: none; }
+ .budgie-popover > frame.container,
+ .budgie-popover.background > frame.container {
+ margin: 0 -1px -1px;
+ padding: 2px 0 0; }
+ .budgie-popover button,
+ .budgie-popover.background button {
+ color: #C3C7D1;
+ border: none;
+ background: transparent; }
+ .budgie-popover button:hover,
+ .budgie-popover.background button:hover {
+ color: #c50ed2; }
+
+.budgie-popover > .container {
+ padding: 2px; }
+
+.budgie-menu {
+ color: #C3C7D1; }
+ .budgie-menu .container {
+ padding: 0; }
+ .budgie-menu button:hover {
+ -gtk-icon-effect: none; }
+ .budgie-menu entry.search {
+ border: none;
+ background: none;
+ padding: 5px 2px;
+ border-bottom: 1px solid #030305;
+ border-radius: 0;
+ font-size: 120%;
+ box-shadow: none;
+ color: #C3C7D1; }
+ .budgie-menu entry.search image:dir(ltr) {
+ padding-left: 8px;
+ padding-right: 12px; }
+ .budgie-menu entry.search image:dir(rtl) {
+ padding-left: 12px;
+ padding-right: 8px; }
+ .budgie-menu .categories {
+ border-width: 0;
+ margin-left: 3px;
+ background: transparent; }
+ .budgie-menu .categories:dir(ltr) {
+ border-right: 1px solid #030305; }
+ .budgie-menu .categories:dir(rtl) {
+ border-left: 1px solid #030305; }
+ .budgie-menu .category-button {
+ padding: 7px;
+ border-radius: 2px 0 0 2px; }
+ .budgie-menu .category-button:hover {
+ background-color: rgba(195, 199, 209, 0.05);
+ color: #C3C7D1; }
+ .budgie-menu .category-button:active {
+ box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); }
+ .budgie-menu .category-button:checked {
+ color: #fefefe;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .budgie-menu .category-button:checked:hover {
+ color: rgba(254, 254, 254, 0.9); }
+ .budgie-menu .category-button:checked:disabled {
+ opacity: 0.5; }
+ .budgie-menu .category-button:checked:disabled label {
+ color: rgba(254, 254, 254, 0.7); }
+ .budgie-menu scrollbar {
+ background-color: transparent;
+ border-color: #030305; }
+ .budgie-menu button:not(.category-button) {
+ padding-top: 5px;
+ padding-bottom: 5px;
+ border-radius: 0;
+ box-shadow: none;
+ background: yellow; }
+ .budgie-menu button {
+ border: none;
+ background: transparent; }
+ .budgie-menu undershoot, .budgie-menu overshoot {
+ background: none; }
+ .budgie-menu list {
+ color: rgba(195, 199, 209, 0.7); }
+
+button.budgie-menu-launcher {
+ padding: 0 2px;
+ color: #C3C7D1;
+ box-shadow: none;
+ background-color: transparent; }
+ button.budgie-menu-launcher:hover {
+ color: #C3C7D1; }
+ button.budgie-menu-launcher:active, button.budgie-menu-launcher:checked {
+ color: #C3C7D1; }
+ button.budgie-menu-launcher:backdrop {
+ color: #C3C7D1;
+ background-color: transparent; }
+ button.budgie-menu-launcher:backdrop:hover {
+ color: #C3C7D1; }
+ button.budgie-menu-launcher:backdrop:active, button.budgie-menu-launcher:backdrop:checked {
+ color: #c50ed2;
+ box-shadow: none;
+ background-color: #181b28; }
+
+.user-menu .content-box separator {
+ margin-left: 6px;
+ margin-right: 6px;
+ background-color: rgba(195, 199, 209, 0.1); }
+
+.user-menu button {
+ margin: 5px; }
+
+.user-menu > box.vertical row.activatable:first-child .indicator-item,
+.user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item {
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
+ background-color: #c50ed2;
+ transition-duration: 0.2s; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(ltr),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(ltr) {
+ padding-left: 7px;
+ background-position: left center;
+ background-repeat: no-repeat;
+ background-size: 38px auto; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(rtl),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(rtl) {
+ padding-right: 7px;
+ background-position: right center;
+ background-repeat: no-repeat;
+ background-size: 38px auto; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item label,
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label {
+ color: #fefefe; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(ltr),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(ltr) {
+ padding-left: 5px; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(rtl),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(rtl) {
+ padding-right: 5px; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item image,
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image {
+ color: #fefefe; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item image:first-child,
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image:first-child {
+ min-width: 24px;
+ min-height: 20px; }
+
+button.raven-trigger {
+ padding-left: 2px;
+ padding-right: 2px;
+ color: #C3C7D1;
+ box-shadow: none; }
+ button.raven-trigger:hover {
+ color: #C3C7D1;
+ background-color: transparent; }
+ button.raven-trigger:active, button.raven-trigger:checked {
+ box-shadow: none;
+ background-color: transparent;
+ color: #c50ed2; }
+ button.raven-trigger:backdrop {
+ color: #C3C7D1; }
+ button.raven-trigger:backdrop:hover {
+ color: #C3C7D1; }
+ button.raven-trigger:backdrop:active, button.raven-trigger:backdrop:checked {
+ box-shadow: none;
+ color: #c50ed2;
+ background-color: transparent; }
+
+.places-menu .container {
+ padding: 0; }
+
+.places-menu .message-bar {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px; }
+
+.places-menu .name-button {
+ border: 0;
+ border-radius: 0;
+ padding: 4px 6px; }
+
+.places-menu .unmount-button {
+ padding: 4px 4px;
+ border: 0;
+ border-radius: 0; }
+
+.places-menu .places-section-header {
+ padding: 0px;
+ border-bottom: 1px solid rgba(3, 3, 5, 0.95);
+ box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.03); }
+
+.places-menu .places-section-header > button {
+ padding: 8px;
+ border: none;
+ border-bottom-left-radius: 0px;
+ border-bottom-right-radius: 0px; }
+
+.places-menu .places-list {
+ background: rgba(195, 199, 209, 0.04);
+ border-bottom: 1px solid rgba(3, 3, 5, 0.95); }
+
+.places-menu .unlock-area {
+ border-top: 1px solid rgba(3, 3, 5, 0.85);
+ border-bottom: 1px solid rgba(3, 3, 5, 0.85); }
+
+.places-menu .unlock-area entry {
+ border-radius: 0;
+ border: 0; }
+
+.places-menu .unlock-area button {
+ border-radius: 0;
+ border: 0;
+ border-left: 1px solid rgba(3, 3, 5, 0.85); }
+
+.places-menu .alternative-label {
+ font-size: 15px;
+ padding: 3px; }
+
+.places-menu .always-expand {
+ background: transparent;
+ border-bottom: none; }
+
+.night-light-indicator .container {
+ padding: 0; }
+
+.night-light-indicator .view-header {
+ font-size: 14px;
+ padding: 10px;
+ border-bottom: 1px solid mix(@theme_base_color, #000000, 0.35);;
+ box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.04);; }
+
+.night-light-indicator .display-settings-button {
+ border-top-left-radius: 0px;
+ border-top-right-radius: 0px;
+ border: none;
+ padding: 3px;
+ border-top: 1px solid mix(@theme_base_color, #000000, 0.35);;
+ box-shadow: inset 0px 1px 1px alpha(@theme_fg_color, 0.04);; }
+
+.budgie-panel {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.95);
+ background-image: none;
+ box-shadow: none;
+ border: none;
+ transition: all 150ms ease-in; }
+ .budgie-panel .alert {
+ color: #ed254e; }
+ .budgie-panel:backdrop {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.95); }
+ .budgie-panel button {
+ border-top-width: 0;
+ border-bottom-width: 0;
+ border-radius: 0; }
+ .budgie-panel button.flat {
+ background: transparent;
+ border: 1px solid rgba(3, 3, 5, 0.95); }
+ .budgie-panel button.flat:hover, .budgie-panel button.flat:active, .budgie-panel button.flat:checked {
+ background: transparent;
+ color: #c50ed2; }
+ .budgie-panel popover list,
+ .budgie-panel popover row {
+ padding: 0;
+ margin: 0; }
+ .budgie-panel label {
+ color: #C3C7D1;
+ font-weight: 700; }
+ .budgie-panel.transparent {
+ background-color: transparent; }
+ .top .budgie-panel.transparent {
+ border-bottom-color: transparent; }
+ .bottom .budgie-panel.transparent {
+ border-top-color: transparent; }
+ .left .budgie-panel.transparent {
+ border-right-color: transparent; }
+ .right .budgie-panel.transparent {
+ border-left-color: transparent; }
+ .budgie-panel .end-region {
+ border-radius: 0px; }
+ .budgie-panel .end-region separator {
+ background-color: rgba(195, 199, 209, 0.15); }
+ .budgie-panel .end-region label {
+ font-weight: 700;
+ color: #C3C7D1; }
+
+.budgie-panel #tasklist-button,
+.budgie-panel #tasklist-button:backdrop {
+ outline-color: transparent;
+ transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ border-color: rgba(3, 3, 5, 0);
+ border-radius: 0;
+ background-color: transparent;
+ box-shadow: none;
+ background-clip: padding-box; }
+
+.budgie-panel button.flat.launcher {
+ outline-color: transparent;
+ transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ border-color: rgba(3, 3, 5, 0);
+ border-radius: 0;
+ padding: 0;
+ background-clip: padding-box;
+ background-color: transparent; }
+ .budgie-panel button.flat.launcher {
+ box-shadow: none; }
+
+.budgie-panel #tasklist-button:hover, .budgie-panel .unpinned button.flat.launcher:hover,
+.budgie-panel .pinned button.flat.launcher.running:hover {
+ box-shadow: none; }
+
+.budgie-panel #tasklist-button:active, .budgie-panel .unpinned button.flat.launcher:active,
+.budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel #tasklist-button:checked, .budgie-panel .unpinned button.flat.launcher:checked,
+.budgie-panel .pinned button.flat.launcher.running:checked {
+ box-shadow: none; }
+
+.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher,
+.top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running {
+ padding-bottom: 2px;
+ border-top: 2px solid transparent; }
+ .top .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-top: 2px solid transparent; }
+ .top .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-top: 2px solid rgba(255, 255, 255, 0.1); }
+ .top .budgie-panel .unpinned button.flat.launcher,
+ .top .budgie-panel .pinned button.flat.launcher.running {
+ border-top: 2px solid rgba(255, 255, 255, 0.1); }
+ .top .budgie-panel #tasklist-button:hover, .budgie-panel .top #tasklist-button:hover, .top .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .top button.flat.launcher:hover,
+ .top .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .top button.flat.launcher.running:hover {
+ border-top: 2px solid rgba(255, 255, 255, 0.25); }
+ .top .budgie-panel #tasklist-button:active, .budgie-panel .top #tasklist-button:active, .top .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .top button.flat.launcher:active,
+ .top .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .top button.flat.launcher.running:active, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .top button.flat.launcher:checked,
+ .top .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .top button.flat.launcher.running:checked {
+ border-top: 2px solid #c50ed2; }
+
+.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher,
+.bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running {
+ padding-top: 2px;
+ border-bottom: 2px solid transparent; }
+ .bottom .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-bottom: 2px solid transparent; }
+ .bottom .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-bottom: 2px solid rgba(255, 255, 255, 0.1); }
+ .bottom .budgie-panel .unpinned button.flat.launcher,
+ .bottom .budgie-panel .pinned button.flat.launcher.running {
+ border-bottom: 2px solid rgba(255, 255, 255, 0.1); }
+ .bottom .budgie-panel #tasklist-button:hover, .budgie-panel .bottom #tasklist-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .bottom button.flat.launcher:hover,
+ .bottom .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .bottom button.flat.launcher.running:hover {
+ border-bottom: 2px solid rgba(255, 255, 255, 0.25); }
+ .bottom .budgie-panel #tasklist-button:active, .budgie-panel .bottom #tasklist-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .bottom button.flat.launcher:active,
+ .bottom .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .bottom button.flat.launcher.running:active, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .bottom button.flat.launcher:checked,
+ .bottom .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .bottom button.flat.launcher.running:checked {
+ border-bottom: 2px solid #c50ed2; }
+
+.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher,
+.left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running {
+ padding-right: 2px;
+ border-left: 2px solid transparent; }
+ .left .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-left: 2px solid transparent; }
+ .left .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-left: 2px solid rgba(255, 255, 255, 0.1); }
+ .left .budgie-panel .unpinned button.flat.launcher,
+ .left .budgie-panel .pinned button.flat.launcher.running {
+ border-left: 2px solid rgba(255, 255, 255, 0.1); }
+ .left .budgie-panel #tasklist-button:hover, .budgie-panel .left #tasklist-button:hover, .left .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .left button.flat.launcher:hover,
+ .left .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .left button.flat.launcher.running:hover {
+ border-left: 2px solid rgba(255, 255, 255, 0.25); }
+ .left .budgie-panel #tasklist-button:active, .budgie-panel .left #tasklist-button:active, .left .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .left button.flat.launcher:active,
+ .left .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .left button.flat.launcher.running:active, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .left button.flat.launcher:checked,
+ .left .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .left button.flat.launcher.running:checked {
+ border-left: 2px solid #c50ed2; }
+
+.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher,
+.right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running {
+ padding-left: 2px;
+ border-right: 2px solid transparent; }
+ .right .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-right: 2px solid transparent; }
+ .right .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-right: 2px solid rgba(255, 255, 255, 0.1); }
+ .right .budgie-panel .unpinned button.flat.launcher,
+ .right .budgie-panel .pinned button.flat.launcher.running {
+ border-right: 2px solid rgba(255, 255, 255, 0.1); }
+ .right .budgie-panel #tasklist-button:hover, .budgie-panel .right #tasklist-button:hover, .right .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .right button.flat.launcher:hover,
+ .right .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .right button.flat.launcher.running:hover {
+ border-right: 2px solid rgba(255, 255, 255, 0.25); }
+ .right .budgie-panel #tasklist-button:active, .budgie-panel .right #tasklist-button:active, .right .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .right button.flat.launcher:active,
+ .right .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .right button.flat.launcher.running:active, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .right button.flat.launcher:checked,
+ .right .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .right button.flat.launcher.running:checked {
+ border-right: 2px solid #c50ed2; }
+
+.top .budgie-panel {
+ border-bottom: 1px solid rgba(3, 3, 5, 0.92); }
+
+.top .raven-frame {
+ padding: 0;
+ background: none; }
+ .top .raven-frame border {
+ border: none;
+ border-bottom: 1px solid rgba(3, 3, 5, 0.92); }
+
+.top .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); }
+
+.bottom .budgie-panel {
+ border-top: 1px solid rgba(3, 3, 5, 0.92); }
+
+.bottom .raven-frame {
+ padding: 0;
+ background: none; }
+ .bottom .raven-frame border {
+ border: none;
+ border-top: 1px solid rgba(3, 3, 5, 0.92); }
+
+.bottom .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); }
+
+.left .budgie-panel {
+ border-right: 1px solid rgba(3, 3, 5, 0.92); }
+
+.left .raven-frame {
+ padding: 0;
+ background: none; }
+ .left .raven-frame border {
+ border: none;
+ border-right: 1px solid rgba(3, 3, 5, 0.92); }
+
+.left .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); }
+
+.right .budgie-panel {
+ border-left: 1px solid rgba(3, 3, 5, 0.92); }
+
+.right .raven-frame {
+ padding: 0;
+ background: none; }
+ .right .raven-frame border {
+ border: none;
+ border-left: 1px solid rgba(3, 3, 5, 0.92); }
+
+.right .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); }
+
+.raven {
+ padding: 0;
+ color: #C3C7D1;
+ background: #0c0e14;
+ transition: 170ms ease-out; }
+ .raven .raven-header {
+ min-height: 32px;
+ color: #C3C7D1;
+ border: solid rgba(3, 3, 5, 0.95);
+ border-width: 1px 0;
+ background-color: rgba(9, 10, 15, 0.45); }
+ .raven .raven-header * {
+ padding-top: 0;
+ padding-bottom: 0; }
+ .raven .raven-header.top {
+ border-top-style: none;
+ border-color: transparent;
+ margin-top: 3px;
+ min-height: 32px; }
+ .raven .raven-header.top button.image-button:hover {
+ color: #af0cba;
+ box-shadow: none; }
+ .raven .raven-header > button.text-button {
+ border-radius: 2px;
+ color: #fefefe;
+ background-color: rgba(230, 19, 62, 0.9);
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); }
+ .raven .raven-header > button.text-button:hover {
+ border-radius: 2px;
+ color: #fefefe;
+ background-color: rgba(237, 37, 78, 0.9);
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); }
+ .raven .raven-header > button.text-button:active {
+ color: #fefefe;
+ background-color: rgba(239, 61, 97, 0.9);
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); }
+ .raven .raven-header.bottom {
+ border-bottom-style: none; }
+ .raven .raven-header button {
+ color: #8b8b8b;
+ text-shadow: none;
+ box-shadow: none;
+ background: transparent;
+ border: none;
+ border-radius: 0; }
+ .raven .raven-header button:hover {
+ color: #c50ed2;
+ border-radius: 0;
+ text-shadow: none;
+ border: none;
+ border-radius: 0; }
+ .raven .raven-header button:disabled {
+ color: #6d707b; }
+ .raven .raven-header button.text-button.radio {
+ margin: 5px 0px;
+ min-height: 20px;
+ padding: 3px; }
+ .raven .raven-header button.text-button.radio:active, .raven .raven-header button.text-button.radio:checked {
+ border-radius: 23px;
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
+ color: snow; }
+ .raven list {
+ color: #C3C7D1;
+ background-color: transparent; }
+ .raven list:selected {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .raven list row,
+ .raven list row.activatable {
+ background-color: transparent; }
+ .raven list row:hover,
+ .raven list row.activatable:hover {
+ background-color: rgba(32, 36, 53, 0.25); }
+ .raven list row:selected,
+ .raven list row.activatable:selected {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .raven .raven-background {
+ color: #C3C7D1;
+ background-color: transparent;
+ border-color: transparent; }
+ .raven .raven-background.middle {
+ border-bottom-style: none; }
+ .raven .powerstrip {
+ background-color: transparent;
+ border-top-color: transparent; }
+ .raven .powerstrip button.image-button {
+ border-radius: 50%;
+ padding: 5px;
+ min-width: 32px;
+ min-height: 32px;
+ margin-bottom: 3px;
+ background: #c74ded;
+ color: #fefefe;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
+ border: none;
+ font-size: 100%; }
+ .raven .powerstrip button.image-button:hover {
+ background: rgba(199, 77, 237, 0.85);
+ color: #fefefe; }
+ .raven .powerstrip button.image-button:active {
+ background: #c74ded;
+ color: #fefefe; }
+ .raven .powerstrip button.image-button:first-child {
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .raven .powerstrip button.image-button:first-child:hover {
+ background: rgba(197, 14, 210, 0.85); }
+ .raven .powerstrip button.image-button:first-child:active {
+ background: #c50ed2; }
+ .raven .powerstrip button.image-button:last-child {
+ background: linear-gradient(to right, #FF416C, #FF4B2B); }
+ .raven .powerstrip button.image-button:last-child:hover {
+ background: rgba(237, 37, 78, 0.85); }
+ .raven .powerstrip button.image-button:last-child:active {
+ background: #ed254e; }
+ .raven .option-subtitle {
+ font-size: 13px; }
+
+calendar.raven-calendar {
+ padding: 6px;
+ color: #C3C7D1;
+ background: transparent;
+ border-color: transparent; }
+ calendar.raven-calendar:indeterminate {
+ color: alpha(currentColor,0.3); }
+ calendar.raven-calendar:selected {
+ background: transparent;
+ color: #b30dbf;
+ font-weight: bold; }
+ calendar.raven-calendar:backdrop {
+ background-color: transparent; }
+ calendar.raven-calendar.header {
+ color: #C3C7D1;
+ border: none;
+ border-radius: 0;
+ background-color: transparent; }
+ calendar.raven-calendar button, calendar.raven-calendar button:focus {
+ color: alpha(currentColor,0.5);
+ background-color: transparent; }
+ calendar.raven-calendar button:hover, calendar.raven-calendar button:focus:hover {
+ color: #C3C7D1;
+ background-color: transparent; }
+
+.raven-mpris {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.9);
+ border: solid rgba(255, 255, 255, 0.1);
+ border-width: 1px 0;
+ border-bottom-color: rgba(0, 0, 0, 0.1); }
+ .raven-mpris button.image-button {
+ padding: 10px;
+ background-color: #181b28;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); }
+ .raven-mpris button.image-button:hover {
+ background-color: #c50ed2; }
+ .raven-mpris button.image-button:active {
+ background-color: #af0cba; }
+ .raven-mpris button.image-button:first-child {
+ margin-right: 4px; }
+ .raven-mpris button.image-button:last-child {
+ margin-left: 4px; }
+ .raven-mpris button.image-button:last-child, .raven-mpris button.image-button:first-child {
+ padding: 4px;
+ margin-top: 6px;
+ margin-bottom: 6px; }
+
+.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window {
+ background: none;
+ border-radius: 1px; }
+ .budgie-notification-window button, .budgie-osd-window button, .budgie-switcher-window button {
+ background-color: #c50ed2;
+ color: #fefefe;
+ border: none; }
+ .budgie-notification-window button:hover, .budgie-osd-window button:hover, .budgie-switcher-window button:hover {
+ background-color: #af0cba;
+ border: none; }
+ .budgie-notification-window button:active, .budgie-osd-window button:active, .budgie-switcher-window button:active, .budgie-notification-window button:checked, .budgie-osd-window button:checked, .budgie-switcher-window button:checked {
+ background-color: #af0cba; }
+
+.budgie-notification.background, .background.budgie-osd, .background.budgie-switcher {
+ border-radius: 1px; }
+
+.budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher .notification-title {
+ font-size: 110%;
+ color: #C3C7D1; }
+
+.budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher .notification-body {
+ color: rgba(195, 199, 209, 0.7); }
+
+.budgie-notification button, .budgie-osd button, .budgie-switcher button {
+ background-color: transparent;
+ color: #fefefe; }
+ .budgie-notification button:hover, .budgie-osd button:hover, .budgie-switcher button:hover {
+ background-color: transparent;
+ color: #ed254e;
+ box-shadow: none; }
+ .budgie-notification button:active, .budgie-osd button:active, .budgie-switcher button:active, .budgie-notification button:checked, .budgie-osd button:checked, .budgie-switcher button:checked {
+ background-color: transparent;
+ color: #e6133e; }
+
+.drop-shadow, .budgie-session-dialog.background, .background.budgie-polkit-dialog, .background.budgie-run-dialog {
+ color: #C3C7D1;
+ background-color: rgba(22, 25, 37, 0.95);
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
+ border-radius: 2px; }
+
+.budgie-switcher-window flowbox {
+ color: #C3C7D1; }
+
+.budgie-switcher-window flowboxchild {
+ padding: 3px;
+ margin: 3px;
+ color: #C3C7D1; }
+ .budgie-switcher-window flowboxchild:hover {
+ background-color: transparent; }
+ .budgie-switcher-window flowboxchild:active {
+ color: #C3C7D1; }
+ .budgie-switcher-window flowboxchild:selected {
+ color: #fefefe;
+ background-color: rgba(197, 14, 210, 0.5); }
+ .budgie-switcher-window flowboxchild:selected:active {
+ color: #fefefe; }
+ .budgie-switcher-window flowboxchild:selected:hover {
+ background-color: #b10dbd; }
+ .budgie-switcher-window flowboxchild:selected:disabled {
+ color: rgba(254, 254, 254, 0.7);
+ background-color: rgba(197, 14, 210, 0.7); }
+ .budgie-switcher-window flowboxchild:selected:disabled label {
+ color: rgba(254, 254, 254, 0.7); }
+
+.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.95); }
+ .budgie-session-dialog label:backdrop, .budgie-polkit-dialog label:backdrop, .budgie-run-dialog label:backdrop {
+ color: rgba(195, 199, 209, 0.8); }
+ .budgie-session-dialog .dialog-title, .budgie-polkit-dialog .dialog-title, .budgie-run-dialog .dialog-title {
+ font-size: 120%; }
+ .budgie-session-dialog .linked.horizontal > button, .budgie-polkit-dialog .linked.horizontal > button, .budgie-run-dialog .linked.horizontal > button {
+ margin-bottom: 0;
+ min-height: 32px;
+ border-bottom: none;
+ border-color: #030305;
+ border-radius: 0;
+ color: #fff;
+ background-color: transparent;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.2); }
+ .budgie-session-dialog .linked.horizontal > button label, .budgie-polkit-dialog .linked.horizontal > button label, .budgie-run-dialog .linked.horizontal > button label {
+ font-weight: 700; }
+ .budgie-session-dialog .linked.horizontal > button:first-child, .budgie-polkit-dialog .linked.horizontal > button:first-child, .budgie-run-dialog .linked.horizontal > button:first-child {
+ border-left: none;
+ border-bottom-left-radius: 2px; }
+ .budgie-session-dialog .linked.horizontal > button:last-child, .budgie-polkit-dialog .linked.horizontal > button:last-child, .budgie-run-dialog .linked.horizontal > button:last-child {
+ border-right: none;
+ border-bottom-right-radius: 2px; }
+ .budgie-session-dialog .linked.horizontal > button:hover, .budgie-polkit-dialog .linked.horizontal > button:hover, .budgie-run-dialog .linked.horizontal > button:hover {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button:hover:backdrop label, .budgie-polkit-dialog .linked.horizontal > button:hover:backdrop label, .budgie-run-dialog .linked.horizontal > button:hover:backdrop label {
+ color: rgba(255, 255, 255, 0.5); }
+ .budgie-session-dialog .linked.horizontal > button.suggested-action, .budgie-polkit-dialog .linked.horizontal > button.suggested-action, .budgie-run-dialog .linked.horizontal > button.suggested-action {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.suggested-action:hover, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:hover, .budgie-run-dialog .linked.horizontal > button.suggested-action:hover {
+ background-color: rgba(219, 16, 234, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.suggested-action:active, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:active, .budgie-run-dialog .linked.horizontal > button.suggested-action:active, .budgie-session-dialog .linked.horizontal > button.suggested-action:checked, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:checked, .budgie-run-dialog .linked.horizontal > button.suggested-action:checked {
+ background-color: rgba(219, 16, 234, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.destructive-action, .budgie-polkit-dialog .linked.horizontal > button.destructive-action, .budgie-run-dialog .linked.horizontal > button.destructive-action {
+ background-color: rgba(206, 17, 56, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.destructive-action:hover, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:hover, .budgie-run-dialog .linked.horizontal > button.destructive-action:hover {
+ background-color: rgba(230, 19, 62, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.destructive-action:active, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:active, .budgie-run-dialog .linked.horizontal > button.destructive-action:active, .budgie-session-dialog .linked.horizontal > button.destructive-action:checked, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:checked, .budgie-run-dialog .linked.horizontal > button.destructive-action:checked {
+ background-color: rgba(230, 19, 62, 0.9); }
+ .budgie-session-dialog entry, .budgie-polkit-dialog entry, .budgie-run-dialog entry {
+ background-color: #505359;
+ color: #C3C7D1; }
+ .budgie-session-dialog entry:focus, .budgie-polkit-dialog entry:focus, .budgie-run-dialog entry:focus {
+ background-color: #505359; }
+ .budgie-session-dialog entry:backdrop, .budgie-polkit-dialog entry:backdrop, .budgie-run-dialog entry:backdrop {
+ background-color: #505359; }
+
+.budgie-polkit-dialog .message {
+ color: rgba(195, 199, 209, 0.7); }
+
+.budgie-polkit-dialog .failure {
+ color: #ed254e; }
+
+.budgie-run-dialog entry.search, .budgie-run-dialog entry.search:focus {
+ font-size: 120%;
+ padding: 8px 5px;
+ border: none;
+ box-shadow: none; }
+ .budgie-run-dialog entry.search image, .budgie-run-dialog entry.search:focus image {
+ color: #C3C7D1; }
+ .budgie-run-dialog entry.search image:dir(ltr), .budgie-run-dialog entry.search:focus image:dir(ltr) {
+ padding-left: 8px;
+ padding-right: 12px; }
+ .budgie-run-dialog entry.search image:dir(rtl), .budgie-run-dialog entry.search:focus image:dir(rtl) {
+ padding-left: 12px;
+ padding-right: 8px; }
+
+.budgie-run-dialog list row:selected .dim-label, .budgie-run-dialog list row:selected label.separator, .budgie-run-dialog list row:selected .titlebar .subtitle, .titlebar .budgie-run-dialog list row:selected .subtitle,
+.budgie-run-dialog list row:selected headerbar .subtitle, headerbar .budgie-run-dialog list row:selected .subtitle {
+ opacity: 1; }
+
+.budgie-run-dialog scrolledwindow {
+ border-top: 1px solid rgba(0, 0, 0, 0); }
+
+.budgie-menubar menu {
+ margin: 4px;
+ padding: 5px;
+ border-radius: 0;
+ background-color: rgba(3, 3, 5, 0.95); }
+ .budgie-menubar menu menuitem:hover {
+ background-color: #c50ed2;
+ color: #fefefe; }
+
+.budgie-menubar arrow {
+ border: none;
+ min-width: 16px;
+ min-height: 16px; }
+ .budgie-menubar arrow.top {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
+ border-bottom: 1px solid rgba(42, 45, 57, 0.928); }
+ .budgie-menubar arrow.bottom {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
+ border-top: 1px solid rgba(42, 45, 57, 0.928); }
+
+.budgie-menubar menuitem accelerator {
+ color: rgba(195, 199, 209, 0.35); }
+
+.budgie-menubar menuitem check, .budgie-menubar menuitem radio {
+ min-height: 16px;
+ min-width: 16px; }
+
+window.background.budgie-settings-window.csd > box.horizontal > stack > scrolledwindow buttonbox.inline-toolbar {
+ border-style: none none solid; }
+
+/************
+ * Nautilus *
+ ************/
+.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop {
+ background: transparent;
+ color: #c50ed2; }
+ .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label {
+ color: #c50ed2; }
+
+.nautilus-window paned > separator {
+ background-image: none; }
+
+.nautilus-window .sidebar {
+ background-color: transparent; }
+ .nautilus-window .sidebar:backdrop {
+ background-color: transparent; }
+ .nautilus-window .sidebar .list-row button {
+ border: none;
+ background-color: rgba(18, 21, 31, 0.95); }
+ .nautilus-window .sidebar .list-row button:active {
+ background-color: rgba(197, 14, 210, 0.75); }
+ .nautilus-window .sidebar .list-row:selected {
+ background-color: rgba(197, 14, 210, 0.75); }
+ .nautilus-window .sidebar .list-row:selected:hover {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .nautilus-window .sidebar .list-row:hover {
+ background-color: rgba(24, 27, 40, 0.5); }
+ .nautilus-window .sidebar .list-row:hover:active {
+ background-color: rgba(197, 14, 210, 0.9); }
+
+.nautilus-window.background {
+ background-color: rgba(18, 21, 31, 0.95); }
+ .nautilus-window.background:backdrop {
+ background-color: rgba(18, 21, 31, 0.95); }
+
+.nautilus-window notebook > stack:only-child {
+ background-color: #181b28; }
+ .nautilus-window notebook > stack:only-child:backdrop {
+ background-color: #1a1d2b; }
+
+.nautilus-window searchbar {
+ border-top: 1px solid rgba(0, 0, 0, 0.12); }
+
+.nautilus-window .searchbar-container {
+ margin-top: -1px; }
+
+.nautilus-window .titlebar .path-bar-box .dim-label, .nautilus-window .titlebar .path-bar-box label.separator, .nautilus-window .titlebar .path-bar-box .subtitle {
+ color: transparent; }
+
+.nautilus-window .titlebar .path-bar-box button:active, .nautilus-window .titlebar .path-bar-box button:checked {
+ border-radius: 23px;
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
+ color: #fafafa; }
+ .nautilus-window .titlebar .path-bar-box button:active:backdrop, .nautilus-window .titlebar .path-bar-box button:checked:backdrop {
+ color: #f0f0f0; }
+ .nautilus-window .titlebar .path-bar-box button:active:backdrop label, .nautilus-window .titlebar .path-bar-box button:checked:backdrop label {
+ color: #f0f0f0; }
+
+.nautilus-window .titlebar .linked button:active, .nautilus-window .titlebar .linked button:checked, .nautilus-window .titlebar .linked button:active:backdrop, .nautilus-window .titlebar .linked button:checked:backdrop {
+ background: transparent;
+ color: #c50ed2;
+ box-shadow: none;
+ border: none; }
+
+.nautilus-circular-button {
+ border-radius: 20px;
+ -gtk-outline-radius: 20px; }
+
+.disk-space-display {
+ border: 2px solid; }
+ .disk-space-display .unknown {
+ background-color: #888a85;
+ border-color: #555653; }
+ .disk-space-display .used {
+ background-color: #9FB0B9;
+ border-color: #667f8c; }
+ .disk-space-display .free {
+ background-color: #D8D8D8;
+ border-color: #a5a5a5; }
+
+.nautilus-desktop {
+ color: #C3C7D1; }
+ .nautilus-desktop .nautilus-canvas-item {
+ border-radius: 5px;
+ color: #fefefe;
+ text-shadow: 1px 1px rgba(0, 0, 0, 0.6); }
+ .nautilus-desktop .nautilus-canvas-item:active {
+ color: #C3C7D1;
+ text-shadow: none; }
+ .nautilus-desktop .nautilus-canvas-item:hover {
+ color: #C3C7D1;
+ text-shadow: none; }
+ .nautilus-desktop .nautilus-canvas-item:selected {
+ color: #fefefe;
+ text-shadow: none; }
+ .nautilus-desktop .nautilus-canvas-item .dim-label:selected, .nautilus-desktop .nautilus-canvas-item label.separator:selected, .nautilus-desktop .nautilus-canvas-item .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-canvas-item .subtitle:selected,
+ .nautilus-desktop .nautilus-canvas-item headerbar .subtitle:selected, headerbar .nautilus-desktop .nautilus-canvas-item .subtitle:selected {
+ color: #fefefe; }
+ .nautilus-desktop .nautilus-list .dim-label:selected, .nautilus-desktop .nautilus-list label.separator:selected, .nautilus-desktop .nautilus-list .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-list .subtitle:selected,
+ .nautilus-desktop .nautilus-list headerbar .subtitle:selected, headerbar .nautilus-desktop .nautilus-list .subtitle:selected {
+ color: #fefefe; }
+
+/*********
+ * Gedit *
+ *********/
+.gedit-search-slider {
+ padding: 4px;
+ border-radius: 0 0 3px 3px;
+ border: 0;
+ background-color: #161925; }
+
+.xfce4-panel.panel {
+ background-color: #181b28;
+ color: #C3C7D1; }
+
+/********
+ * Gala *
+ *******/
+.gala-notification {
+ border-width: 0;
+ border-radius: 2px;
+ color: white;
+ border: 1px solid #181b28;
+ background-color: #181b28; }
+ .gala-notification .title,
+ .gala-notification .label {
+ color: #C3C7D1; }
+
+.gala-button {
+ padding: 3px;
+ color: #181b28;
+ border: none;
+ border-radius: 50%;
+ background-image: linear-gradient(to bottom, #7e7e7e, #3e3e3e);
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.98), inset 0 1px 0 0 rgba(255, 255, 255, 0.93), inset 0 -1px 0 0 rgba(255, 255, 255, 0.99), 0 0 0 1px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.84), 0 3px 6px rgba(0, 0, 0, 0.77);
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
+
+/**********
+ * Notify *
+ *********/
+.notify {
+ /*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/
+ border-radius: 5px;
+ border: 1px solid rgba(0, 0, 0, 0.7);
+ background-color: rgba(24, 27, 40, 0.05); }
+
+/***************
+ * SwitchBoard *
+ ***************/
+.category-label {
+ font-weight: bold;
+ color: #C3C7D1; }
+
+/*************
+ * Slingshot *
+ ************/
+.button.app {
+ border: none;
+ border-radius: 0;
+ box-shadow: none;
+ background-image: none; }
+ .button.app .app:hover {
+ border-radius: 8px;
+ border: none;
+ background-color: rgba(197, 14, 210, 0.3);
+ color: white; }
+ .button.app .app:focus {
+ /*background-color: transparentize(black, 0.20);*/ }
+
+.search-item {
+ border-radius: 0;
+ border: none;
+ color: #C3C7D1;
+ background: none; }
+ .search-item:hover, .search-item:focus {
+ border-radius: 0;
+ background-color: rgba(197, 14, 210, 0.3);
+ color: #fefefe; }
+
+.search-entry-large,
+.search-entry-large:focus {
+ border: none;
+ font-size: 18px;
+ font-weight: 300;
+ background-image: none;
+ background: none;
+ box-shadow: none;
+ border-radius: 0; }
+
+.search-category-header {
+ font-weight: bold;
+ color: #C3C7D1; }
+
+/*********
+ * Panel *
+ ********/
+.panel {
+ background-color: transparent;
+ transition: all 100ms ease-in-out; }
+ .panel.maximized {
+ background-color: #000; }
+ .panel.translucent {
+ background-color: rgba(0, 0, 0, 0.5); }
+
+menubar.panel,
+.panel menubar {
+ box-shadow: none;
+ border: none; }
+
+.composited-indicator > revealer,
+.composited-indicator > revealer image,
+.composited-indicator > revealer label,
+.composited-indicator > revealer spinner {
+ color: #fff;
+ font-weight: bold;
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5);
+ transition: all 200ms ease-in-out;
+ -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); }
+
+.composited-indicator > revealer image:first-child + label {
+ margin-left: 5px; }
+
+.panel.color-light .composited-indicator > revealer,
+.panel.color-light .composited-indicator > revealer image,
+.panel.color-light .composited-indicator > revealer label,
+.panel.color-light .composited-indicator > revealer spinner {
+ color: rgba(0, 0, 0, 0.6);
+ text-shadow: 0 1px rgba(255, 255, 255, 0.1);
+ -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.1); }
+
+/**************
+ * Calculator *
+ **************/
+PantheonCalculatorMainWindow {
+ border-radius: 0 0 4px 4px; }
+ PantheonCalculatorMainWindow .window-frame {
+ border-radius: 3px; }
+
+/*********
+ * Cards *
+ *********/
+.deck {
+ background-color: #07080b; }
+
+.card {
+ background-color: #181b28;
+ border: none;
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.2);
+ transition: all 150ms ease-in-out; }
+
+.card.collapsed {
+ background-color: #0e1018;
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.2); }
+
+/*********
+ * Noise *
+ *********/
+NoiseLibraryWindow {
+ border-radius: 0 0 4px 4px; }
+ NoiseLibraryWindow .action-bar {
+ border-radius: 0 0 4px 4px; }
+ NoiseLibraryWindow .window-frame {
+ border-radius: 3px; }
+
+/********
+ * Snap *
+ ********/
+SnapMainWindow .take-button,
+SnapSnapWindow .take-button {
+ border-radius: 0; }
+
+/*******************
+ * Photos/Shotwell *
+ *******************/
+DirectWindow .the-button-in-the-combobox,
+LibraryWindow .the-button-in-the-combobox {
+ background: none; }
+
+.checkerboard-layout {
+ background-color: #161925;
+ background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1));
+ background-size: 24px 24px;
+ background-position: 0 0, 12px 12px; }
+
+.checkboard-layout .item {
+ background-color: #C3C7D1; }
+
+/*********
+* Avatar *
+*********/
+.avatar {
+ border: 1px solid rgba(0, 0, 0, 0.23);
+ border-radius: 50%;
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.23); }
+
+/********
+* Unity *
+*********/
+/* Unity window border color */
+/* Unity window text color */
+/* Backdrop Unity window text color */
+/* Unity panel color #454D50 */
+UnityDecoration {
+ /* Border properties (top, right, bottom, left) */
+ -UnityDecoration-extents: 28px 1px 1px 1px;
+ /* the size of the decorations */
+ -UnityDecoration-input-extents: 10px;
+ /* the extra size of the input areas */
+ /* Shadows settings */
+ -UnityDecoration-shadow-offset-x: 1px;
+ /* Size property, the shadow x offset */
+ -UnityDecoration-shadow-offset-y: 1px;
+ /* Size property, the shadow y offset */
+ -UnityDecoration-active-shadow-color: rgba 0, 0, 0, 0.647;
+ /* Color property, active window shadow color */
+ -UnityDecoration-active-shadow-radius: 8px;
+ /* Size property, active window shadow radius */
+ -UnityDecoration-inactive-shadow-color: rgba 0, 0, 0, 0.647;
+ /* Color property, inactive windows shadow color */
+ -UnityDecoration-inactive-shadow-radius: 5px;
+ /* Size property, inactive windows shadow radius */
+ /* Glow applied to the selected scaled window */
+ -UnityDecoration-glow-size: 8px;
+ /* Size property, size of glow */
+ -UnityDecoration-glow-color: #c50ed2;
+ /* Color property of the glow */
+ /* Title settings */
+ -UnityDecoration-title-indent: 10px;
+ /* Size property, left indent of the title */
+ -UnityDecoration-title-fade: 35px;
+ /* Size property, space of the title that can be faded */
+ -UnityDecoration-title-alignment: 0.0;
+ /* Float from 0.0 to 1.0, to align the title */
+ background-color: #eeeeee;
+ color: #31363D; }
+ UnityDecoration .top {
+ padding: 0 5px 0 5px;
+ border-radius: 4px 4px 0px 0px;
+ box-shadow: none;
+ border: 1px solid #eeeeee;
+ border-bottom-width: 0;
+ background-color: #eeeeee;
+ color: #31363D;
+ border-top: 1px solid rgba(255, 255, 255, 0.1); }
+ UnityDecoration .top:backdrop {
+ border-bottom-width: 0;
+ color: #1a1d21;
+ border-top: 1px solid rgba(255, 255, 255, 0.1); }
+ UnityDecoration .top .menuitem {
+ color: #31363D; }
+ UnityDecoration .top .menuitem:backdrop {
+ color: #1a1d21; }
+
+UnityDecoration.left,
+UnityDecoration.right {
+ background-repeat: repeat-x;
+ background-color: #ececec;
+ background-size: 1px 120px;
+ background-clip: border-box;
+ background-image: linear-gradient(to bottom, #eeeeee, #ececec); }
+
+UnityDecoration.bottom {
+ background-size: 1px;
+ background-repeat: repeat-x;
+ background-color: #ececec; }
+
+UnityDecoration.left:backdrop,
+UnityDecoration.right:backdrop,
+UnityDecoration.bottom:backdrop {
+ background-size: 1px;
+ background-repeat: repeat-x; }
+
+/**************
+* Unity Panel *
+***************/
+UnityPanelWidget,
+.unity-panel {
+ background-color: #d5d5d5;
+ color: #31363D; }
+
+UnityPanelWidget:backdrop,
+.unity-panel:backdrop {
+ color: #1a1d21; }
+
+.unity-panel.menuitem,
+.unity-panel .menuitem {
+ border-width: 0 1px;
+ color: #31363D; }
+
+.unity-panel.menubar,
+.unity-panel .menubar {
+ color: #31363D; }
+
+.unity-panel.menu.menubar,
+.unity-panel .menu .menubar {
+ background-color: #d5d5d5;
+ color: #31363D; }
+
+.unity-panel.menubar:backdrop,
+.unity-panel .menubar *:backdrop {
+ color: #6d707b; }
+
+.unity-panel.menubar.menuitem,
+.unity-panel.menubar .menuitem {
+ padding: 3px 5px;
+ border-width: 1px;
+ border-style: solid;
+ border: none;
+ background: none;
+ color: #31363D;
+ box-shadow: none; }
+
+.unity-panel.menubar.menuitem:hover,
+.unity-panel.menubar .menuitem:hover {
+ border-radius: 0;
+ background-color: #ebebeb;
+ color: #31363D;
+ box-shadow: none; }
+
+.unity-panel.menubar .menuitem *:hover {
+ color: white;
+ box-shadow: none; }
+
+.unity-panel.menubar .menuitem.separator,
+.unity-panel.menubar.menuitem.separator {
+ border: none;
+ color: rgba(12, 14, 21, 0.8); }
+
+/* Force Quit */
+SheetStyleDialog.unity-force-quit {
+ background-color: #181b28; }
+
+@keyframes playbackmenuitem_spinner {
+ to {
+ -gtk-icon-transform: rotate(1turn); } }
+
+.menu IdoPlaybackMenuItem.menuitem:active {
+ -gtk-icon-source: -gtk-icontheme("process-working-symbolic");
+ animation: playbackmenuitem_spinner 1s infinite linear;
+ color: #c50ed2; }
+
+/***********************
+ * App-Specific Styles *
+ ***********************/
+/*********
+ * Geary *
+ *********/
+.geary-titlebar-left .separator,
+.geary-titlebar-right .separator {
+ opacity: 0; }
+
+ConversationListView {
+ -GtkTreeView-grid-line-width: 0; }
+ ConversationListView .view:active, ConversationListView iconview:active, ConversationListView .view:selected, ConversationListView iconview:selected {
+ background-color: #c50ed2;
+ color: #fefefe; }
+ ConversationListView .view:active:backdrop, ConversationListView iconview:active:backdrop, ConversationListView .view:selected:backdrop, ConversationListView iconview:selected:backdrop {
+ background-color: rgba(197, 14, 210, 0.6);
+ color: rgba(254, 254, 254, 0.5); }
+ ConversationListView .view .cell, ConversationListView iconview .cell {
+ border: solid rgba(0, 0, 0, 0.2);
+ border-width: 0 0 1px 0; }
+ ConversationListView .view .cell:selected, ConversationListView iconview .cell:selected {
+ color: #fefefe;
+ border: 0px solid #980ba2; }
+
+/***********
+ * LightDm *
+ ***********/
+#panel_window {
+ background-color: rgba(0, 0, 0, 0.7);
+ color: white;
+ font-weight: bold;
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.7); }
+ #panel_window .menubar,
+ #panel_window .menubar > .menuitem menubar,
+ #panel_window menubar > menuitem {
+ background-color: transparent;
+ color: white;
+ font-weight: bold; }
+ #panel_window .menubar .menuitem:disabled,
+ #panel_window menubar menuitem:disabled {
+ color: rgba(255, 255, 255, 0.5); }
+ #panel_window .menubar .menuitem:disabled GtkLabel,
+ #panel_window menubar menuitem:disabled GtkLabel {
+ color: inherit; }
+ #panel_window .menubar .menuitem:disabled label,
+ #panel_window menubar menuitem:disabled label {
+ color: inherit; }
+ #panel_window .menubar .menu > .menuitem,
+ #panel_window menubar menu > menuitem {
+ font-weight: normal; }
+
+#login_window,
+#shutdown_dialog,
+#restart_dialog {
+ font-weight: normal;
+ border-style: none;
+ background-color: transparent;
+ color: #C3C7D1; }
+
+#content_frame {
+ padding-bottom: 14px;
+ background-color: #161925;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ border: solid rgba(0, 0, 0, 0.1);
+ border-width: 1px 1px 0 1px; }
+
+#content_frame button {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+ #content_frame button:hover {
+ color: #C3C7D1;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #181b28;
+ text-shadow: none; }
+ #content_frame button:active, #content_frame button:checked {
+ color: #C3C7D1;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ #content_frame button:disabled {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #171a26;
+ text-shadow: none; }
+
+#buttonbox_frame {
+ padding-top: 20px;
+ padding-bottom: 0px;
+ border-style: none;
+ background-color: #161925;
+ border-bottom-left-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border: solid rgba(0, 0, 0, 0.1);
+ border-width: 0 1px 1px 1px; }
+
+#buttonbox_frame button {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ #buttonbox_frame button:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ #buttonbox_frame button:active, #buttonbox_frame button:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ #buttonbox_frame button:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+#login_window #user_combobox {
+ color: #C3C7D1;
+ font-size: 13px; }
+ #login_window #user_combobox .menu,
+ #login_window #user_combobox menu {
+ font-weight: normal; }
+
+#user_image {
+ padding: 3px;
+ border-radius: 2px; }
+
+#greeter_infobar {
+ border-bottom-width: 0;
+ font-weight: bold; }
diff --git a/gtk/themes/Sweet-Dark/gtk-3.0/gtk.css b/gtk/themes/Sweet-Dark/gtk-3.0/gtk.css
new file mode 100755
index 0000000..e170df6
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/gtk-3.0/gtk.css
@@ -0,0 +1,6071 @@
+/*$selected_bg_color: #00e8c6;06d6a0*/
+/* GTK NAMED COLORS
+ ----------------
+ use responsibly! */
+/* widget text/foreground color */
+@define-color theme_fg_color #C3C7D1;
+/* text color for entries, views and content in general */
+@define-color theme_text_color #C3C7D1;
+/* widget base background color */
+@define-color theme_bg_color #161925;
+/* text widgets and the like base background color */
+@define-color theme_base_color #181b28;
+/* base background color of selections */
+@define-color theme_selected_bg_color #c50ed2;
+/* text/foreground color of selections */
+@define-color theme_selected_fg_color #fefefe;
+/* base background color of disabled widgets */
+@define-color insensitive_bg_color #171a26;
+/* text foreground color of disabled widgets */
+@define-color insensitive_fg_color #6d707b;
+/* disabled text widgets and the like base background color */
+@define-color insensitive_base_color #181b28;
+/* widget text/foreground color on backdrop windows */
+@define-color theme_unfocused_fg_color #6d707b;
+/* text color for entries, views and content in general on backdrop windows */
+@define-color theme_unfocused_text_color #C3C7D1;
+/* widget base background color on backdrop windows */
+@define-color theme_unfocused_bg_color #161925;
+/* text widgets and the like base background color on backdrop windows */
+@define-color theme_unfocused_base_color #1a1d2b;
+/* base background color of selections on backdrop windows */
+@define-color theme_unfocused_selected_bg_color #c50ed2;
+/* text/foreground color of selections on backdrop windows */
+@define-color theme_unfocused_selected_fg_color #fefefe;
+/* widgets main borders color */
+@define-color borders rgba(12, 14, 21, 0.8);
+/* widgets main borders color on backdrop windows */
+@define-color unfocused_borders rgba(13, 16, 23, 0.82);
+/* these are pretty self explicative */
+@define-color warning_color #cc5500;
+@define-color error_color #e6133e;
+@define-color success_color #0096b1;
+/* these colors are exported for the window manager and shouldn't be used in applications,
+read if you used those and something break with a version upgrade you're on your own... */
+@define-color wm_title shade(#C3C7D1, 1.8);
+@define-color wm_unfocused_title #6d707b;
+@define-color wm_highlight rgba(0, 0, 0, 0);
+@define-color wm_borders_edge rgba(255, 255, 255, 0.1);
+@define-color wm_bg_a shade(#161925, 1.2);
+@define-color wm_bg_b #161925;
+@define-color wm_shadow alpha(black, 0.35);
+@define-color wm_border alpha(black, 0.18);
+@define-color wm_button_hover_color_a shade(#161925, 1.3);
+@define-color wm_button_hover_color_b #161925;
+@define-color wm_button_active_color_a shade(#161925, 0.85);
+@define-color wm_button_active_color_b shade(#161925, 0.89);
+@define-color wm_button_active_color_c shade(#161925, 0.9);
+@define-color content_view_bg #181b28;
+@define-color budgie_tasklist_indicator_color #c50ed2;
+@define-color budgie_tasklist_indicator_color_active #c50ed2;
+/*****************
+* Drawing mixins *
+*****************/
+/*********
+* Common *
+*********/
+* {
+ padding: 0;
+ -GtkToolButton-icon-spacing: 4;
+ -GtkTextView-error-underline-color: #e6133e;
+ -GtkScrolledWindow-scrollbar-spacing: 0;
+ -GtkToolItemGroup-expander-size: 11;
+ -GtkWidget-text-handle-width: 20;
+ -GtkWidget-text-handle-height: 24;
+ -GtkDialog-button-spacing: 4;
+ -GtkDialog-action-area-border: 0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ outline-style: dashed;
+ outline-offset: -3px;
+ outline-width: 1px;
+ -gtk-outline-radius: 2px;
+ -gtk-secondary-caret-color: #c50ed2; }
+
+/***********
+ * Widgets *
+ ***********/
+/***************
+* Action bars *
+***************/
+.action-bar {
+ background-color: #030305;
+ border: solid rgba(12, 14, 21, 0.8);
+ border-width: 1px 0 0 0;
+ color: #C3C7D1;
+ box-shadow: none; }
+ .action-bar:backdrop {
+ background-color: #030305;
+ box-shadow: none;
+ -gtk-icon-effect: dim; }
+ .action-bar:first-child {
+ border-radius: 6px 6px 0px 0px;
+ border-width: 1px 1px 0px 1px; }
+ .action-bar:last-child {
+ border-radius: 0 0 6px 6px;
+ border-width: 0px 1px 1px 1px; }
+
+/*********************
+ * App Notifications *
+ *********************/
+.app-notification,
+.app-notification.frame {
+ padding: 10px;
+ border-radius: 0 0 5px 5px;
+ background-color: rgba(20, 23, 26, 0.8);
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px);
+ background-clip: padding-box; }
+ .app-notification:backdrop,
+ .app-notification.frame:backdrop {
+ background-image: none;
+ transition: 200ms ease-out; }
+ .app-notification border,
+ .app-notification.frame border {
+ border: none; }
+
+/***************
+ * Base States *
+ ***************/
+.background {
+ color: #C3C7D1;
+ background-color: #161925; }
+ .background:backdrop {
+ color: #6d707b;
+ background-color: #161925;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+/*
+ These wildcard seems unavoidable, need to investigate.
+ Wildcards are bad and troublesome, use them with care,
+ or better, just don't.
+ Everytime a wildcard is used a kitten dies, painfully.
+*/
+*:disabled {
+ -gtk-icon-effect: dim; }
+
+.gtkstyle-fallback {
+ color: #C3C7D1;
+ background-color: #161925; }
+ .gtkstyle-fallback:hover {
+ color: #C3C7D1;
+ background-color: #292f45; }
+ .gtkstyle-fallback:active {
+ color: #C3C7D1;
+ background-color: #030305; }
+ .gtkstyle-fallback:disabled {
+ color: #6d707b;
+ background-color: #171a26; }
+ .gtkstyle-fallback:selected {
+ color: #fefefe;
+ background-color: #c50ed2; }
+
+.view, iconview,
+.view text,
+iconview text,
+textview text {
+ color: #C3C7D1;
+ background-color: #181b28; }
+ .view:backdrop, iconview:backdrop,
+ .view text:backdrop,
+ iconview text:backdrop,
+ textview text:backdrop {
+ color: #a1a5b0;
+ background-color: #1a1d2b; }
+ .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected,
+ .view text:selected:focus,
+ iconview text:selected:focus,
+ textview text:selected:focus,
+ .view text:selected,
+ iconview text:selected,
+ textview text:selected {
+ border-radius: 3px; }
+
+textview border {
+ background-color: #171a27; }
+
+.rubberband,
+rubberband,
+flowbox rubberband,
+.content-view rubberband,
+treeview.view rubberband {
+ border: 1px solid #980ba2;
+ background-color: rgba(152, 11, 162, 0.2); }
+
+flowbox flowboxchild {
+ padding: 3px;
+ border-radius: 3px; }
+ flowbox flowboxchild:selected {
+ outline-offset: -2px; }
+
+label {
+ caret-color: currentColor; }
+ label.separator {
+ color: #C3C7D1; }
+ label.separator:backdrop {
+ color: #6d707b; }
+ label selection {
+ background-color: #c50ed2;
+ color: #fefefe; }
+ label:disabled {
+ color: #6d707b; }
+ label:disabled:backdrop {
+ color: #333955; }
+ label:backdrop {
+ color: #6d707b; }
+
+.dim-label, label.separator, .titlebar .subtitle,
+headerbar .subtitle {
+ opacity: 0.55;
+ text-shadow: none; }
+
+assistant .sidebar {
+ background-color: #181b28;
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ assistant .sidebar:backdrop {
+ background-color: #1a1d2b;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+assistant.csd .sidebar {
+ border-top-style: none; }
+
+assistant .sidebar label {
+ padding: 6px 12px; }
+
+assistant .sidebar label.highlight {
+ background-color: #393c47; }
+
+.app-notification,
+.app-notification.frame, .osd .scale-popup, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier, .csd popover.background.osd, popover.background.osd, .osd {
+ color: #fefefe;
+ border: none;
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ outline-color: rgba(254, 254, 254, 0.3);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .app-notification:backdrop, .osd .scale-popup:backdrop, popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, popover.background.osd:backdrop, .osd:backdrop {
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+*:selected {
+ background: #c50ed2;
+ color: #fefefe; }
+
+/***********
+ * Buttons *
+ ***********/
+@keyframes needs_attention {
+ from {
+ background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e63bf2), to(transparent)); }
+ to {
+ background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#c50ed2), to(transparent)); } }
+
+notebook > header > tabs > arrow,
+button {
+ min-height: 20px;
+ min-width: 16px;
+ padding: 2px 6px;
+ border: 1px solid rgba(12, 14, 21, 0.8);
+ border-radius: 4px;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+ notebook > header > tabs > arrow,
+ button.flat {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ transition: none; }
+ notebook > header > tabs > arrow:hover,
+ button.flat:hover {
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ transition-duration: 500ms; }
+ notebook > header > tabs > arrow:hover:active,
+ button.flat:hover:active {
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
+ notebook > header > tabs > arrow:hover,
+ button:hover {
+ color: #fefefe;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none;
+ -gtk-icon-effect: highlight; }
+ notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked,
+ button:active,
+ button:checked {
+ color: #fefefe;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #af0cba;
+ text-shadow: none;
+ transition-duration: 50ms; }
+ notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:backdrop,
+ button:backdrop.flat,
+ button:backdrop {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #1a1d2b;
+ text-shadow: none;
+ transition: 200ms ease-out;
+ -gtk-icon-effect: none; }
+ notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked,
+ button:backdrop.flat:active,
+ button:backdrop.flat:checked,
+ button:backdrop:active,
+ button:backdrop:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label,
+ button:backdrop.flat:active label,
+ button:backdrop.flat:checked label,
+ button:backdrop:active label,
+ button:backdrop:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ notebook > header > tabs > arrow:backdrop:disabled, notebook > header > tabs > arrow:backdrop:disabled,
+ button:backdrop.flat:disabled,
+ button:backdrop:disabled {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #171a26;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked,
+ button:backdrop.flat:disabled:active,
+ button:backdrop.flat:disabled:checked,
+ button:backdrop:disabled:active,
+ button:backdrop:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:disabled, notebook > header > tabs > arrow:backdrop:disabled,
+ button.flat:backdrop,
+ button.flat:disabled,
+ button.flat:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ notebook > header > tabs > arrow:disabled,
+ button:disabled {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #171a26;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked,
+ button:disabled:active,
+ button:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ notebook > header > tabs > arrow:disabled:active label, notebook > header > tabs > arrow:disabled:checked label,
+ button:disabled:active label,
+ button:disabled:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ notebook > header > tabs > arrow.image-button,
+ button.image-button {
+ min-width: 24px;
+ padding-left: 4px;
+ padding-right: 4px; }
+ notebook > header > tabs > arrow.image-button.circular, notebook > header > tabs > arrow.image-button.sidebar-button,
+ button.image-button.circular,
+ button.image-button.sidebar-button {
+ padding: 6px 4px;
+ border-radius: 50px;
+ box-shadow: none; }
+ notebook > header > tabs > arrow.image-button.sidebar-button,
+ button.image-button.sidebar-button {
+ background-color: #252a3e;
+ color: #fff; }
+ notebook > header > tabs > arrow.image-button.sidebar-button:hover,
+ button.image-button.sidebar-button:hover {
+ background-color: #c50ed2; }
+ notebook > header > tabs > arrow.text-button,
+ button.text-button {
+ padding-left: 16px;
+ padding-right: 16px; }
+ notebook > header > tabs > arrow.text-button.image-button,
+ button.text-button.image-button {
+ padding-left: 8px;
+ padding-right: 8px;
+ border-radius: 2px; }
+ notebook > header > tabs > arrow.text-button.image-button label,
+ button.text-button.image-button label {
+ padding-left: 8px;
+ padding-right: 8px; }
+ combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active),
+ button:drop(active) {
+ color: #4e9a06;
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 1px #4e9a06; }
+
+row:selected
+button.flat:not(:active):not(:checked):not(:hover):not(disabled) {
+ color: #fefefe;
+ border-color: transparent; }
+ row:selected
+ button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop {
+ color: #6d707b; }
+
+
+button.osd {
+ min-width: 24px;
+ min-height: 20px;
+ color: #fefefe;
+ border-radius: 5px;
+ outline-color: rgba(254, 254, 254, 0.3);
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border: none;
+ box-shadow: none; }
+
+ button.osd.image-button {
+ min-width: 32px; }
+
+ button.osd:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border: none;
+ box-shadow: none; }
+
+ button.osd:active,
+ button.osd:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border: none;
+ box-shadow: none; }
+
+ button.osd:disabled:backdrop,
+ button.osd:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ border: none; }
+
+ button.osd:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ border: none; }
+
+.app-notification button,
+.app-notification.frame button, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, popover.background.touch-selection button, popover.background.magnifier button,
+.osd
+button {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover,
+ .osd
+ button:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button:active:backdrop, popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked:backdrop, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked,
+ .osd
+ button:active:backdrop,
+ .osd
+ button:active,
+ .osd
+ button:checked:backdrop,
+ .osd
+ button:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button:disabled:backdrop, popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled,
+ .osd
+ button:disabled:backdrop,
+ .osd
+ button:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop,
+ .osd
+ button:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat,
+ .osd
+ button.flat {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ box-shadow: none;
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover,
+ .osd
+ button.flat:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled,
+ .osd
+ button.flat:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ background-image: none;
+ border-color: transparent;
+ box-shadow: none; }
+ .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop,
+ .osd
+ button.flat:backdrop {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked,
+ .osd
+ button.flat:active,
+ .osd
+ button.flat:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+
+
+button.suggested-action {
+ border: none;
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .selection-mode button.titlebutton,
+ button.suggested-action.flat {
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+
+ button.suggested-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+
+ button.suggested-action:active,
+ button.suggested-action:checked {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop,
+ button.suggested-action:backdrop,
+ button.suggested-action.flat:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop label,
+ button.suggested-action:backdrop label,
+ button.suggested-action.flat:backdrop label {
+ color: rgba(255, 255, 255, 0.5); }
+ .selection-mode button.titlebutton:backdrop:active, .selection-mode button.titlebutton:backdrop:checked,
+ button.suggested-action:backdrop:active,
+ button.suggested-action:backdrop:checked,
+ button.suggested-action.flat:backdrop:active,
+ button.suggested-action.flat:backdrop:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop:active label, .selection-mode button.titlebutton:backdrop:checked label,
+ button.suggested-action:backdrop:active label,
+ button.suggested-action:backdrop:checked label,
+ button.suggested-action.flat:backdrop:active label,
+ button.suggested-action.flat:backdrop:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ .selection-mode button.titlebutton:backdrop:disabled,
+ button.suggested-action:backdrop:disabled,
+ button.suggested-action.flat:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop:disabled label,
+ button.suggested-action:backdrop:disabled label,
+ button.suggested-action.flat:backdrop:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+ .selection-mode button.titlebutton:backdrop:disabled:active, .selection-mode button.titlebutton:backdrop:disabled:checked,
+ button.suggested-action:backdrop:disabled:active,
+ button.suggested-action:backdrop:disabled:checked,
+ button.suggested-action.flat:backdrop:disabled:active,
+ button.suggested-action.flat:backdrop:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ .selection-mode button.titlebutton:backdrop, .selection-mode button.titlebutton:disabled, .selection-mode button.titlebutton:backdrop:disabled,
+ button.suggested-action.flat:backdrop,
+ button.suggested-action.flat:disabled,
+ button.suggested-action.flat:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(0, 193, 228, 0.8); }
+
+ button.suggested-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+
+ button.suggested-action:disabled:active,
+ button.suggested-action:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+
+ button.suggested-action:disabled:active label,
+ button.suggested-action:disabled:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ .osd
+ button.suggested-action {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(0, 193, 228, 0.5);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.suggested-action:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(0, 193, 228, 0.7), rgba(0, 193, 228, 0.7));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.suggested-action:active:backdrop, .osd
+ button.suggested-action:active, .osd
+ button.suggested-action:checked:backdrop, .osd
+ button.suggested-action:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, #00c1e4, #00c1e4);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.suggested-action:disabled:backdrop, .osd
+ button.suggested-action:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd
+ button.suggested-action:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(0, 193, 228, 0.5), rgba(0, 193, 228, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+
+button.destructive-action {
+ border: none;
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #FF416C, #FF4B2B); }
+
+ button.destructive-action.flat {
+ box-shadow: none;
+ color: white;
+ border-radius: 100px;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+
+ button.destructive-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:active,
+ button.destructive-action:checked {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop,
+ button.destructive-action.flat:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop label,
+ button.destructive-action.flat:backdrop label {
+ color: rgba(255, 255, 255, 0.5); }
+
+ button.destructive-action:backdrop:active,
+ button.destructive-action:backdrop:checked,
+ button.destructive-action.flat:backdrop:active,
+ button.destructive-action.flat:backdrop:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop:active label,
+ button.destructive-action:backdrop:checked label,
+ button.destructive-action.flat:backdrop:active label,
+ button.destructive-action.flat:backdrop:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+
+ button.destructive-action:backdrop:disabled,
+ button.destructive-action.flat:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:backdrop:disabled label,
+ button.destructive-action.flat:backdrop:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+
+ button.destructive-action:backdrop:disabled:active,
+ button.destructive-action:backdrop:disabled:checked,
+ button.destructive-action.flat:backdrop:disabled:active,
+ button.destructive-action.flat:backdrop:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+
+ button.destructive-action.flat:backdrop,
+ button.destructive-action.flat:disabled,
+ button.destructive-action.flat:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(206, 17, 56, 0.8); }
+
+ button.destructive-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:disabled:active,
+ button.destructive-action:disabled:checked {
+ color: rgba(254, 254, 254, 0.7);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+
+ button.destructive-action:disabled:active label,
+ button.destructive-action:disabled:checked label {
+ color: rgba(254, 254, 254, 0.7); }
+ .osd
+ button.destructive-action {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(206, 17, 56, 0.5);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.destructive-action:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(206, 17, 56, 0.7), rgba(206, 17, 56, 0.7));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.destructive-action:active:backdrop, .osd
+ button.destructive-action:active, .osd
+ button.destructive-action:checked:backdrop, .osd
+ button.destructive-action:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, #ce1138, #ce1138);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd
+ button.destructive-action:disabled:backdrop, .osd
+ button.destructive-action:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd
+ button.destructive-action:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(206, 17, 56, 0.5), rgba(206, 17, 56, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+.stack-switcher >
+button {
+ outline-offset: -3px; }
+ .stack-switcher >
+ button > label {
+ padding-left: 6px;
+ padding-right: 6px; }
+ .stack-switcher >
+ button > image {
+ padding-left: 6px;
+ padding-right: 6px;
+ padding-top: 3px;
+ padding-bottom: 3px; }
+ .stack-switcher >
+ button.text-button {
+ padding-left: 10px;
+ padding-right: 10px; }
+ .stack-switcher >
+ button.image-button {
+ padding-left: 2px;
+ padding-right: 2px; }
+ .stack-switcher >
+ button.needs-attention:active > label,
+ .stack-switcher >
+ button.needs-attention:active > image, .stack-switcher >
+ button.needs-attention:checked > label,
+ .stack-switcher >
+ button.needs-attention:checked > image {
+ animation: none;
+ background-image: none; }
+
+.inline-toolbar
+button, .inline-toolbar
+button:backdrop {
+ border-radius: 2px;
+ border-width: 1px; }
+
+.primary-toolbar
+button {
+ -gtk-icon-shadow: none; }
+
+.stack-switcher > button.needs-attention > label,
+.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
+ animation: needs_attention 150ms ease-in;
+ background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e63bf2), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.45, to(rgba(0, 0, 0, 0.907451)), to(transparent));
+ background-size: 6px 6px, 6px 6px;
+ background-repeat: no-repeat;
+ background-position: right 3px, right 2px; }
+ .stack-switcher > button.needs-attention > label:backdrop,
+ .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop {
+ background-size: 6px 6px, 0 0; }
+ .stack-switcher > button.needs-attention > label:dir(rtl),
+ .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) {
+ background-position: left 3px, left 2px; }
+
+toolbar button:hover {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+
+toolbar button:active {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+
+.inline-toolbar toolbutton > button {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .inline-toolbar toolbutton > button:hover {
+ color: #c50ed2; }
+ .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked {
+ color: #af0cba; }
+ .inline-toolbar toolbutton > button:disabled {
+ color: #a1a5b0; }
+ .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked {
+ color: rgba(175, 12, 186, 0.3); }
+ .inline-toolbar toolbutton > button:backdrop {
+ color: #a1a5b0; }
+ .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked {
+ color: #af0cba; }
+ .inline-toolbar toolbutton > button:backdrop:disabled {
+ color: #a1a5b0; }
+ .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked {
+ color: rgba(175, 12, 186, 0.3); }
+
+toolbar.inline-toolbar toolbutton > button.flat:backdrop,
+toolbar.inline-toolbar toolbutton:backdrop > button.flat:backdrop {
+ border-color: transparent;
+ box-shadow: none; }
+
+.inline-toolbar button, .inline-toolbar button:backdrop, .linked > button,
+.linked > button:hover,
+.linked > button:active,
+.linked > button:checked,
+.linked > button:backdrop, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) {
+ border: 1px solid rgba(12, 14, 21, 0.8);
+ border-radius: 0;
+ border-right-style: none;
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); }
+
+.inline-toolbar button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child {
+ border-top-left-radius: 3px;
+ border-bottom-left-radius: 3px; }
+
+.inline-toolbar button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child {
+ border-top-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border-right-style: solid; }
+
+.inline-toolbar button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child {
+ border-radius: 3px;
+ border-style: solid; }
+
+.linked.vertical > button,
+.linked.vertical > button:hover,
+.linked.vertical > button:active,
+.linked.vertical > button:checked,
+.linked.vertical > button:backdrop, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > combobox > box > button.combo {
+ border-style: solid solid none solid;
+ border-radius: 0; }
+
+.linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px; }
+
+.linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child {
+ border-bottom-left-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border-style: solid; }
+
+.linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child {
+ border-radius: 3px;
+ border-style: solid; }
+
+modelbutton.flat, popover.background checkbutton,
+popover.background radiobutton,
+.menuitem.button.flat, modelbutton.flat:backdrop, popover.background checkbutton:backdrop,
+popover.background radiobutton:backdrop, modelbutton.flat:backdrop:hover, popover.background checkbutton:backdrop:hover,
+popover.background radiobutton:backdrop:hover,
+.menuitem.button.flat:backdrop,
+.menuitem.button.flat:backdrop:hover, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:disabled, button:link,
+button:visited, button:link:hover, button:link:active, button:link:checked,
+button:visited:hover,
+button:visited:active,
+button:visited:checked, .scale-popup button:hover, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop {
+ background-color: transparent;
+ background-image: none;
+ border-color: transparent;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+/* menu buttons */
+modelbutton.flat, popover.background checkbutton,
+popover.background radiobutton,
+.menuitem.button.flat {
+ min-height: 26px;
+ padding-left: 5px;
+ padding-right: 5px;
+ border-radius: 3px;
+ outline-offset: -2px; }
+ modelbutton.flat:hover, popover.background checkbutton:hover,
+ popover.background radiobutton:hover,
+ .menuitem.button.flat:hover {
+ background-color: #202435; }
+ modelbutton.flat check:last-child, popover.background checkbutton check:last-child, popover.background radiobutton check:last-child,
+ modelbutton.flat radio:last-child,
+ popover.background checkbutton radio:last-child,
+ popover.background radiobutton radio:last-child,
+ .menuitem.button.flat check:last-child,
+ .menuitem.button.flat radio:last-child {
+ margin-left: 8px; }
+ modelbutton.flat check:first-child, popover.background checkbutton check:first-child, popover.background radiobutton check:first-child,
+ modelbutton.flat radio:first-child,
+ popover.background checkbutton radio:first-child,
+ popover.background radiobutton radio:first-child,
+ .menuitem.button.flat check:first-child,
+ .menuitem.button.flat radio:first-child {
+ margin-right: 8px; }
+
+modelbutton.flat arrow, popover.background checkbutton arrow, popover.background radiobutton arrow {
+ background: none; }
+ modelbutton.flat arrow:hover, popover.background checkbutton arrow:hover, popover.background radiobutton arrow:hover {
+ background: none; }
+ modelbutton.flat arrow.left, popover.background checkbutton arrow.left, popover.background radiobutton arrow.left {
+ -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
+ modelbutton.flat arrow.right, popover.background checkbutton arrow.right, popover.background radiobutton arrow.right {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
+
+button.color {
+ padding: 4px; }
+ button.color colorswatch:only-child, button.color colorswatch:only-child overlay {
+ border-radius: 0; }
+
+notebook button, list button, .view button, iconview button, popover button {
+ box-shadow: none; }
+ notebook button:backdrop, list button:backdrop, .view button:backdrop, iconview button:backdrop, popover button:backdrop {
+ box-shadow: none; }
+
+notebook .linked > button, list .linked > button, .view .linked > button, iconview .linked > button, popover .linked > button {
+ box-shadow: none; }
+
+/************
+ * Calendar *
+ ***********/
+calendar {
+ color: #C3C7D1;
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ calendar:selected {
+ border-radius: 3px; }
+ calendar.header {
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+ border-radius: 0; }
+ calendar.header:backdrop {
+ border-color: rgba(0, 0, 0, 0.1); }
+ calendar.button {
+ color: rgba(195, 199, 209, 0.45); }
+ calendar.button:hover {
+ color: #C3C7D1; }
+ calendar.button:backdrop {
+ color: rgba(109, 112, 123, 0.45); }
+ calendar.button:disabled {
+ color: rgba(109, 112, 123, 0.45); }
+ calendar:indeterminate, calendar:indeterminate:backdrop {
+ color: alpha(currentColor,0.55); }
+ calendar.highlight, calendar.highlight:backdrop {
+ font-size: smaller;
+ color: #C3C7D1; }
+ calendar:backdrop {
+ color: #a1a5b0;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+/*************************
+ * Check and Radio Items *
+ *************************/
+check {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-dark.png"), url("../assets/radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-hover-dark.png"), url("../assets/checkbox-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover-dark.png"), url("../assets/radio-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-active-dark.png"), url("../assets/checkbox-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active-dark.png"), url("../assets/radio-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-backdrop-dark.png"), url("../assets/checkbox-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-dark.png"), url("../assets/radio-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-dark.png"), url("../assets/radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-hover-dark.png"), url("../assets/checkbox-checked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover-dark.png"), url("../assets/radio-checked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-active-dark.png"), url("../assets/checkbox-checked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active-dark.png"), url("../assets/radio-checked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-backdrop-dark.png"), url("../assets/checkbox-checked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-dark.png"), url("../assets/radio-checked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed.png"), url("../assets/checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-hover.png"), url("../assets/checkbox-mixed-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-active.png"), url("../assets/checkbox-mixed-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-backdrop.png"), url("../assets/checkbox-mixed-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:checked:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:checked:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:hover:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:active:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+check:indeterminate:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+radio:indeterminate:disabled:backdrop:selected {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check, iconview.content-view check,
+.view.content-view.check,
+iconview.content-view.check {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked.png"), url("../assets/checkbox-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio, iconview.content-view radio,
+.view.content-view.radio,
+iconview.content-view.radio {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked.png"), url("../assets/radio-unchecked@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:hover, iconview.content-view check:hover,
+.view.content-view.check:hover,
+iconview.content-view.check:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-hover.png"), url("../assets/checkbox-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:hover, iconview.content-view radio:hover,
+.view.content-view.radio:hover,
+iconview.content-view.radio:hover {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:active, iconview.content-view check:active,
+.view.content-view.check:active,
+iconview.content-view.check:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-active.png"), url("../assets/checkbox-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:active, iconview.content-view radio:active,
+.view.content-view.radio:active,
+iconview.content-view.radio:active {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:backdrop, iconview.content-view check:backdrop,
+.view.content-view.check:backdrop,
+iconview.content-view.check:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop.png"), url("../assets/checkbox-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:backdrop, iconview.content-view radio:backdrop,
+.view.content-view.radio:backdrop,
+iconview.content-view.radio:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:disabled, iconview.content-view check:disabled,
+.view.content-view.check:disabled,
+iconview.content-view.check:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-insensitive.png"), url("../assets/checkbox-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:disabled, iconview.content-view radio:disabled,
+.view.content-view.radio:disabled,
+iconview.content-view.radio:disabled {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view check:disabled:backdrop, iconview.content-view check:disabled:backdrop,
+.view.content-view.check:disabled:backdrop,
+iconview.content-view.check:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop-insensitive.png"), url("../assets/checkbox-unchecked-backdrop-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+.view.content-view radio:disabled:backdrop, iconview.content-view radio:disabled:backdrop,
+.view.content-view.radio:disabled:backdrop,
+iconview.content-view.radio:disabled:backdrop {
+ -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png"));
+ -gtk-icon-shadow: none; }
+
+checkbutton.text-button, radiobutton.text-button {
+ padding: 2px 0;
+ outline-offset: 0; }
+ checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child {
+ margin-left: 4px; }
+ checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child {
+ margin-right: 4px; }
+
+check,
+radio {
+ margin: 0 4px;
+ min-height: 16px;
+ min-width: 16px;
+ border: none; }
+ menu menuitem check, menu menuitem
+ radio {
+ margin: 0; }
+ menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem
+ radio, menu menuitem
+ radio:hover, menu menuitem
+ radio:disabled {
+ min-height: 14px;
+ min-width: 14px;
+ background-image: none;
+ background-color: transparent;
+ box-shadow: none;
+ -gtk-icon-shadow: none;
+ color: inherit;
+ border-color: currentColor;
+ animation: none; }
+
+/*****************
+ * Color Chooser *
+ *****************/
+colorswatch, colorswatch:drop(active) {
+ border-style: none; }
+
+colorswatch.top {
+ border-top-left-radius: 5.5px;
+ border-top-right-radius: 5.5px; }
+ colorswatch.top overlay {
+ border-top-left-radius: 5px;
+ border-top-right-radius: 5px; }
+
+colorswatch.bottom {
+ border-bottom-left-radius: 5.5px;
+ border-bottom-right-radius: 5.5px; }
+ colorswatch.bottom overlay {
+ border-bottom-left-radius: 5px;
+ border-bottom-right-radius: 5px; }
+
+colorswatch.left, colorswatch:first-child:not(.top) {
+ border-top-left-radius: 5.5px;
+ border-bottom-left-radius: 5.5px; }
+ colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
+ border-top-left-radius: 5px;
+ border-bottom-left-radius: 5px; }
+
+colorswatch.right, colorswatch:last-child:not(.bottom) {
+ border-top-right-radius: 5.5px;
+ border-bottom-right-radius: 5.5px; }
+ colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
+ border-top-right-radius: 5px;
+ border-bottom-right-radius: 5px; }
+
+colorswatch.dark overlay {
+ color: #fefefe; }
+ colorswatch.dark overlay:hover {
+ border-color: rgba(12, 14, 21, 0.8); }
+ colorswatch.dark overlay:backdrop {
+ color: rgba(254, 254, 254, 0.5); }
+
+colorswatch.light overlay {
+ color: #C3C7D1; }
+ colorswatch.light overlay:hover {
+ border-color: rgba(12, 14, 21, 0.8); }
+ colorswatch.light overlay:backdrop {
+ color: #a1a5b0; }
+
+colorswatch:drop(active) {
+ box-shadow: none; }
+ colorswatch:drop(active).light overlay {
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 2px rgba(12, 14, 21, 0.8), inset 0 0 0 1px #4e9a06; }
+ colorswatch:drop(active).dark overlay {
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 2px rgba(12, 14, 21, 0.8), inset 0 0 0 1px #4e9a06; }
+
+colorswatch overlay {
+ box-shadow: inset 0 3px 2px -2px rgba(0, 0, 0, 0.5);
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ colorswatch overlay:hover {
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); }
+ colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover {
+ border-color: rgba(12, 14, 21, 0.8);
+ box-shadow: none; }
+
+colorswatch#add-color-button {
+ border-radius: 5px 5px 0 0; }
+ colorswatch#add-color-button:only-child {
+ border-radius: 5px; }
+ colorswatch#add-color-button overlay {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+ colorswatch#add-color-button overlay:hover {
+ color: #C3C7D1;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #181b28;
+ text-shadow: none; }
+ colorswatch#add-color-button overlay:backdrop {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #1a1d2b;
+ text-shadow: none; }
+
+colorswatch:disabled {
+ opacity: 0.5; }
+ colorswatch:disabled overlay {
+ border-color: rgba(0, 0, 0, 0.6);
+ box-shadow: none; }
+
+row:selected colorswatch {
+ box-shadow: 0 0 0 2px #fefefe; }
+
+colorswatch#editor-color-sample {
+ border-radius: 4px; }
+ colorswatch#editor-color-sample overlay {
+ border-radius: 4.5px; }
+
+colorchooser .popover.osd {
+ border-radius: 5px; }
+
+/**************
+ * ComboBoxes *
+ **************/
+combobox arrow {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
+ min-height: 16px;
+ min-width: 16px; }
+
+combobox:drop(active) {
+ box-shadow: none; }
+
+/***********
+ * Dialogs *
+ ***********/
+messagedialog .titlebar:not(headerbar) {
+ background-color: rgba(22, 25, 37, 0.95); }
+
+messagedialog .titlebar {
+ min-height: 20px;
+ background-image: none;
+ background-color: rgba(22, 25, 37, 0.95);
+ border-style: none;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px; }
+
+messagedialog.csd.background {
+ background-color: rgba(22, 25, 37, 0.95);
+ color: #C3C7D1;
+ border-bottom-left-radius: 5px;
+ border-bottom-right-radius: 5px; }
+
+messagedialog.csd .dialog-action-area button {
+ padding: 10px 14px;
+ border-radius: 0;
+ border-left-style: solid;
+ border-right-style: none;
+ border-bottom-style: none;
+ background-color: transparent;
+ color: #C3C7D1;
+ box-shadow: none; }
+ messagedialog.csd .dialog-action-area button:hover {
+ background-color: rgba(197, 14, 210, 0.9);
+ color: white; }
+ messagedialog.csd .dialog-action-area button:first-child {
+ border-left-style: none;
+ border-bottom-left-radius: 4px; }
+ messagedialog.csd .dialog-action-area button:last-child {
+ border-bottom-right-radius: 4px; }
+ messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.suggested-action {
+ color: white; }
+
+filechooser .dialog-action-box {
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ filechooser .dialog-action-box:backdrop {
+ border-top-color: rgba(13, 16, 23, 0.82); }
+
+filechooser #pathbarbox {
+ border-bottom: 1px solid #161925; }
+
+filechooserbutton:drop(active) {
+ box-shadow: none;
+ border-color: transparent; }
+
+/****************
+ * Text Entries *
+ ****************/
+spinbutton:not(.vertical),
+entry {
+ min-height: 28px;
+ padding-left: 8px;
+ padding-right: 8px;
+ border: 1px solid;
+ border-radius: 3px;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ color: #C3C7D1;
+ border-color: rgba(12, 14, 21, 0.8);
+ background-color: #181b28; }
+ spinbutton:not(.vertical) image.left,
+ entry image.left {
+ padding-left: 0;
+ padding-right: 6px; }
+ spinbutton:not(.vertical) image.right,
+ entry image.right {
+ padding-left: 6px;
+ padding-right: 0; }
+ spinbutton:not(.vertical) undershoot.left,
+ entry undershoot.left {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-left: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: left center;
+ border: none;
+ box-shadow: none; }
+ spinbutton:not(.vertical) undershoot.right,
+ entry undershoot.right {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-right: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: right center;
+ border: none;
+ box-shadow: none; }
+ spinbutton.flat:focus:not(.vertical), spinbutton.flat:not(.vertical),
+ entry.flat:focus,
+ entry.flat {
+ min-height: 0;
+ padding: 2px;
+ background-image: none;
+ border-color: transparent;
+ box-shadow: none;
+ border-radius: 0; }
+ spinbutton:focus:not(.vertical),
+ entry:focus {
+ border-color: #980ba2; }
+ spinbutton:disabled:not(.vertical),
+ entry:disabled {
+ color: #6d707b;
+ border-color: rgba(12, 14, 21, 0.8);
+ background-color: #171a26;
+ box-shadow: none; }
+ spinbutton:backdrop:not(.vertical),
+ entry:backdrop {
+ color: #a1a5b0;
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #1a1d2b;
+ box-shadow: none;
+ transition: 200ms ease-out; }
+ spinbutton:backdrop:disabled:not(.vertical),
+ entry:backdrop:disabled {
+ color: #333955;
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #171a26;
+ box-shadow: none; }
+ spinbutton.error:not(.vertical),
+ entry.error {
+ color: #e6133e;
+ border-color: #410512; }
+ spinbutton.error:focus:not(.vertical),
+ entry.error:focus {
+ border-color: #410512; }
+ spinbutton.error:selected:focus:not(.vertical), spinbutton.error:selected:not(.vertical),
+ entry.error:selected:focus,
+ entry.error:selected {
+ background-color: #e6133e; }
+ spinbutton.warning:not(.vertical),
+ entry.warning {
+ color: #cc5500;
+ border-color: #1a0b00; }
+ spinbutton.warning:focus:not(.vertical),
+ entry.warning:focus {
+ border-color: #1a0b00; }
+ spinbutton.warning:selected:focus:not(.vertical), spinbutton.warning:selected:not(.vertical),
+ entry.warning:selected:focus,
+ entry.warning:selected {
+ background-color: #cc5500; }
+ spinbutton:not(.vertical) image,
+ entry image {
+ color: #a1a5af; }
+ spinbutton:not(.vertical) image:hover,
+ entry image:hover {
+ color: #C3C7D1; }
+ spinbutton:not(.vertical) image:active,
+ entry image:active {
+ color: #c50ed2; }
+ spinbutton:not(.vertical) image:backdrop,
+ entry image:backdrop {
+ color: #5c5f6b; }
+ spinbutton:drop(active):focus:not(.vertical), spinbutton:drop(active):not(.vertical),
+ entry:drop(active):focus,
+ entry:drop(active) {
+ border-color: #4e9a06;
+ box-shadow: inset 0 0 0 1px #4e9a06; }
+ .osd spinbutton:not(.vertical), .osd
+ entry {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(0, 0, 0, 0.5);
+ box-shadow: none;
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .osd spinbutton:focus:not(.vertical), .osd
+ entry:focus {
+ color: white;
+ border-color: #c50ed2;
+ background-color: rgba(0, 0, 0, 0.5);
+ background-clip: padding-box;
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black; }
+ .osd spinbutton:backdrop:not(.vertical), .osd
+ entry:backdrop {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(0, 0, 0, 0.5);
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd spinbutton:disabled:not(.vertical), .osd
+ entry:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(43, 46, 49, 0.5);
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+spinbutton:not(.vertical) progress,
+entry progress {
+ margin: 2px -6px;
+ background-color: transparent;
+ background-image: none;
+ border-radius: 0;
+ border-width: 0 0 2px;
+ border-color: #c50ed2;
+ border-style: solid;
+ box-shadow: none; }
+ spinbutton:not(.vertical) progress:backdrop,
+ entry progress:backdrop {
+ background-color: transparent; }
+
+.linked:not(.vertical) > spinbutton:focus:not(.vertical) + spinbutton:not(.vertical),
+.linked:not(.vertical) > spinbutton:focus:not(.vertical) + button,
+.linked:not(.vertical) > spinbutton:focus:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > entry:focus + spinbutton:not(.vertical),
+.linked:not(.vertical) >
+entry:focus + button,
+.linked:not(.vertical) >
+entry:focus + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + entry, .linked:not(.vertical) >
+entry:focus +
+entry {
+ border-left-color: #980ba2; }
+
+.linked:not(.vertical) > spinbutton:focus:not(.vertical), .linked:not(.vertical) >
+entry:focus {
+ border-color: #980ba2; }
+
+.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical),
+.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button,
+.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > entry:drop(active) + spinbutton:not(.vertical),
+.linked:not(.vertical) >
+entry:drop(active) + button,
+.linked:not(.vertical) >
+entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + entry, .linked:not(.vertical) >
+entry:drop(active) +
+entry {
+ border-left-color: #4e9a06; }
+
+.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled),
+.linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical >
+entry:not(:disabled) + entry:not(:disabled),
+.linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) {
+ border-top-color: rgba(21, 24, 36, 0.94);
+ background-image: linear-gradient(to bottom, #181b28, #181b28); }
+ .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop,
+ .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical >
+ entry:not(:disabled) + entry:not(:disabled):backdrop,
+ .linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) {
+ border-top-color: rgba(23, 26, 39, 0.946);
+ background-image: linear-gradient(to bottom, #1a1d2b, #1a1d2b); }
+
+.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical),
+.linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > entry:disabled + spinbutton:disabled:not(.vertical),
+.linked.vertical >
+entry:disabled + entry:disabled {
+ border-top-color: rgba(21, 24, 36, 0.94); }
+
+.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical),
+.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > entry + spinbutton:focus:not(:only-child):not(.vertical),
+.linked.vertical >
+entry + entry:focus:not(:only-child) {
+ border-top-color: #980ba2; }
+
+.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical),
+.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > entry + spinbutton:drop(active):not(:only-child):not(.vertical),
+.linked.vertical >
+entry + entry:drop(active):not(:only-child) {
+ border-top-color: #4e9a06; }
+
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical),
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry,
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button,
+.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:focus:not(:only-child) + spinbutton:not(.vertical),
+.linked.vertical >
+entry:focus:not(:only-child) + entry,
+.linked.vertical >
+entry:focus:not(:only-child) + button,
+.linked.vertical >
+entry:focus:not(:only-child) + combobox > box > button.combo {
+ border-top-color: #980ba2; }
+
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical),
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry,
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button,
+.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:drop(active):not(:only-child) + spinbutton:not(.vertical),
+.linked.vertical >
+entry:drop(active):not(:only-child) + entry,
+.linked.vertical >
+entry:drop(active):not(:only-child) + button,
+.linked.vertical >
+entry:drop(active):not(:only-child) + combobox > box > button.combo {
+ border-top-color: #4e9a06; }
+
+treeview entry:focus:dir(rtl), treeview entry:focus:dir(ltr) {
+ background-color: #181b28;
+ transition-property: color, background; }
+
+treeview entry.flat, treeview entry {
+ border-radius: 0;
+ background-image: none;
+ background-color: #181b28; }
+ treeview entry.flat:focus, treeview entry:focus {
+ border-color: #c50ed2; }
+
+/*************
+ * Expanders *
+ *************/
+expander arrow {
+ min-width: 16px;
+ min-height: 16px;
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
+ expander arrow:dir(rtl) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
+ expander arrow:hover {
+ color: white; }
+ expander arrow:checked {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+
+/****************
+ * Floating Bar *
+ ****************/
+.floating-bar {
+ background-color: #161925;
+ border-width: 1px;
+ border-style: solid solid none;
+ border-color: rgba(12, 14, 21, 0.8);
+ border-radius: 3px 3px 0 0;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ .floating-bar.bottom.left {
+ border-left-style: none;
+ border-top-left-radius: 0; }
+ .floating-bar.bottom.right {
+ border-right-style: none;
+ border-top-right-radius: 0; }
+ .floating-bar > button {
+ padding: 4px; }
+ .floating-bar:backdrop {
+ background-color: #161925;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+/**********
+ * Frames *
+ **********/
+frame > border,
+.frame {
+ box-shadow: none;
+ margin: 0;
+ padding: 0;
+ border-radius: 0;
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ frame > border.flat,
+ .frame.flat {
+ border-style: none; }
+ frame > border:backdrop,
+ .frame:backdrop {
+ border-color: rgba(13, 16, 23, 0.82); }
+
+actionbar > revealer > box {
+ padding: 6px;
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ actionbar > revealer > box:backdrop {
+ border-color: rgba(13, 16, 23, 0.82); }
+
+scrolledwindow viewport.frame {
+ border-style: none; }
+
+scrolledwindow overshoot.top {
+ background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 100% 5%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.top:backdrop {
+ background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 100% 5%;
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow overshoot.bottom {
+ background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 100% 5%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: center bottom;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.bottom:backdrop {
+ background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 100% 5%;
+ background-repeat: no-repeat;
+ background-position: center bottom;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow overshoot.left {
+ background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 5% 100%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.left:backdrop {
+ background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 5% 100%;
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow overshoot.right {
+ background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(195, 199, 209, 0.07)), to(rgba(195, 199, 209, 0)));
+ background-size: 5% 100%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: right center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+ scrolledwindow overshoot.right:backdrop {
+ background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(rgba(13, 16, 23, 0.82)), to(rgba(13, 16, 23, 0)));
+ background-size: 5% 100%;
+ background-repeat: no-repeat;
+ background-position: right center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.top {
+ background-color: transparent;
+ background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-top: 1px;
+ background-size: 10px 1px;
+ background-repeat: repeat-x;
+ background-origin: content-box;
+ background-position: center top;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.bottom {
+ background-color: transparent;
+ background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-bottom: 1px;
+ background-size: 10px 1px;
+ background-repeat: repeat-x;
+ background-origin: content-box;
+ background-position: center bottom;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.left {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-left: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: left center;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow undershoot.right {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
+ padding-right: 1px;
+ background-size: 1px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: right center;
+ border: none;
+ box-shadow: none; }
+
+scrolledwindow junction {
+ border-color: transparent;
+ border-image: linear-gradient(to bottom, rgba(12, 14, 21, 0.8) 1px, transparent 1px) 0 0 0 1/0 1px stretch;
+ background-color: #171a27; }
+ scrolledwindow junction:dir(rtl) {
+ border-image-slice: 0 1 0 0; }
+ scrolledwindow junction:backdrop {
+ border-image-source: linear-gradient(to bottom, rgba(13, 16, 23, 0.82) 1px, transparent 1px);
+ background-color: #10131b;
+ transition: 200ms ease-out; }
+
+separator {
+ background: rgba(0, 0, 0, 0.1); }
+
+/************
+ * Popovers *
+ ************/
+GraniteWidgetsPopOver {
+ -GraniteWidgetsPopOver-arrow-width: 21;
+ -GraniteWidgetsPopOver-arrow-height: 10;
+ -GraniteWidgetsPopOver-border-radius: 8px;
+ -GraniteWidgetsPopOver-border-width: 0;
+ -GraniteWidgetsPopOver-shadow-size: 12;
+ border: 1px solid #181b28;
+ background: #181b28;
+ color: #C3C7D1; }
+ GraniteWidgetsPopOver .button {
+ background-image: none;
+ background: none;
+ border: none; }
+ GraniteWidgetsPopOver .button:active, GraniteWidgetsPopOver .button:active:hover {
+ color: #c50ed2; }
+ GraniteWidgetsPopOver > .frame {
+ border: none; }
+ GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar {
+ border: none;
+ background: none; }
+
+GraniteWidgetsStaticNotebook .frame {
+ border: none; }
+
+.popover_bg {
+ background-color: #181b28;
+ background-image: none;
+ border: 1px solid #181b28;
+ color: #C3C7D1; }
+
+/***********
+ * Welcome *
+ **********/
+GraniteWidgetsWelcome {
+ background-color: #181b28; }
+ GraniteWidgetsWelcome GtkLabel {
+ color: #C3C7D1; }
+ GraniteWidgetsWelcome .h1, GraniteWidgetsWelcome .h3 {
+ color: rgba(195, 199, 209, 0.8); }
+
+/**************
+* Source List *
+***************/
+.source-list {
+ -GtkTreeView-horizontal-separator: 1px;
+ -GtkTreeView-vertical-separator: 6px;
+ background-color: #161925;
+ border: solid rgba(12, 14, 21, 0.8);
+ color: #C3C7D1;
+ border-right-width: 1px; }
+ .source-list .category-expander {
+ color: transparent; }
+ .source-list .badge {
+ background-image: none;
+ background-color: rgba(0, 0, 0, 0.4);
+ color: #161925;
+ border-radius: 10px;
+ padding: 0 6px;
+ margin: 0 3px;
+ border-width: 0; }
+ .source-list .badge:selected:backdrop, .source-list .badge:selected:hover:backdrop {
+ background-color: rgba(0, 0, 0, 0.2);
+ color: #0c0e15; }
+ .source-list row,
+ .source-list .list-row {
+ border: none;
+ padding: 0; }
+ .source-list row > GtkLabel,
+ .source-list row > label,
+ .source-list .list-row > GtkLabel,
+ .source-list .list-row > label {
+ padding-left: 6px;
+ padding-right: 6px; }
+
+/**************
+* Text Styles *
+**************/
+.h1 {
+ font-size: 24px; }
+
+.h2 {
+ font-weight: 300;
+ font-size: 18px; }
+
+.h3 {
+ font-size: 11px; }
+
+.h4,
+.category-label {
+ font-size: 12px;
+ padding: 6px;
+ color: rgba(195, 199, 209, 0.3);
+ font-weight: bold;
+ text-shadow: 0 1px rgba(255, 255, 255, 0.2); }
+
+/**************
+* Storage Bar *
+**************/
+.storage-bar .trough {
+ border: none;
+ box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
+ background-image: none;
+ background-color: transparent;
+ padding: 8px 6px; }
+
+.storage-bar .fill-block {
+ background-color: #f9dc5c;
+ border: none;
+ box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
+ transition: all 200ms ease-in-out;
+ padding: 8px 6px; }
+ .storage-bar .fill-block:first-child {
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ border-left-width: 1px;
+ box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); }
+ .storage-bar .fill-block:last-child {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); }
+ .storage-bar .fill-block.empty-block {
+ background-color: #181b28; }
+ .storage-bar .fill-block.app {
+ background-color: #7cb7ff; }
+ .storage-bar .fill-block.audio {
+ background-color: #ff6a00; }
+ .storage-bar .fill-block.photo {
+ background-color: #ed254e; }
+ .storage-bar .fill-block.video {
+ background-color: #c74ded; }
+ .storage-bar .fill-block .legend {
+ padding: 12px;
+ border-radius: 4px; }
+
+/***************
+ * Header bars *
+ ***************/
+.titlebar:not(headerbar), .titlebar,
+headerbar {
+ padding: 0px 13px;
+ min-height: 34px;
+ background: #0c0e14;
+ color: #C3C7D1;
+ border-radius: 0; }
+ .titlebar:backdrop,
+ headerbar:backdrop {
+ border-color: rgba(13, 16, 23, 0.82);
+ transition: 200ms ease-out; }
+ .titlebar .title,
+ headerbar .title {
+ font-weight: bold;
+ padding-left: 12px;
+ padding-right: 12px; }
+ .titlebar .subtitle,
+ headerbar .subtitle {
+ font-size: smaller;
+ padding-left: 12px;
+ padding-right: 12px; }
+ .titlebar:not(headerbar) entry, .titlebar entry,
+ headerbar entry {
+ min-height: 24px; }
+ .titlebar:not(headerbar) button, .titlebar button,
+ headerbar button {
+ color: #8b8b8b;
+ text-shadow: none;
+ box-shadow: none;
+ background: transparent;
+ border: none;
+ min-height: 14px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ box-shadow: none; }
+ .titlebar button.image-button,
+ headerbar button.image-button {
+ padding: 3px 4px; }
+ .titlebar button.suggested-action,
+ headerbar button.suggested-action {
+ box-shadow: none;
+ border: none;
+ background-image: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .titlebar button.suggested-action:disabled, .titlebar button.suggested-action:disabled:backdrop, .titlebar button.suggested-action:backdrop,
+ headerbar button.suggested-action:disabled,
+ headerbar button.suggested-action:disabled:backdrop,
+ headerbar button.suggested-action:backdrop {
+ border: none;
+ background-image: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .titlebar button.suggested-action:disabled:hover, .titlebar button.suggested-action:disabled:active, .titlebar button.suggested-action:disabled:checked, .titlebar button.suggested-action:disabled:backdrop:hover, .titlebar button.suggested-action:disabled:backdrop:active, .titlebar button.suggested-action:disabled:backdrop:checked, .titlebar button.suggested-action:backdrop:hover, .titlebar button.suggested-action:backdrop:active, .titlebar button.suggested-action:backdrop:checked,
+ headerbar button.suggested-action:disabled:hover,
+ headerbar button.suggested-action:disabled:active,
+ headerbar button.suggested-action:disabled:checked,
+ headerbar button.suggested-action:disabled:backdrop:hover,
+ headerbar button.suggested-action:disabled:backdrop:active,
+ headerbar button.suggested-action:disabled:backdrop:checked,
+ headerbar button.suggested-action:backdrop:hover,
+ headerbar button.suggested-action:backdrop:active,
+ headerbar button.suggested-action:backdrop:checked {
+ border: none;
+ background-image: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .titlebar button.appmenu,
+ headerbar button.appmenu {
+ background: transparent; }
+ .titlebar button.appmenu:backdrop,
+ headerbar button.appmenu:backdrop {
+ background: transparent; }
+ .titlebar button:hover, .titlebar button:active, .titlebar button:checked,
+ headerbar button:hover,
+ headerbar button:active,
+ headerbar button:checked {
+ background-color: transparent;
+ color: #c50ed2;
+ box-shadow: none;
+ border: none; }
+ .titlebar button:backdrop, .titlebar button:disabled, .titlebar button:backdrop:disabled,
+ headerbar button:backdrop,
+ headerbar button:disabled,
+ headerbar button:backdrop:disabled {
+ color: rgba(195, 199, 209, 0.2);
+ background-color: transparent;
+ border-radius: 0;
+ text-shadow: none;
+ box-shadow: none;
+ border: none; }
+ .titlebar button:backdrop:hover, .titlebar button:backdrop:active, .titlebar button:backdrop:checked,
+ headerbar button:backdrop:hover,
+ headerbar button:backdrop:active,
+ headerbar button:backdrop:checked {
+ background-color: transparent;
+ color: #c50ed2;
+ box-shadow: none; }
+ .titlebar button:backdrop:hover label, .titlebar button:backdrop:active label, .titlebar button:backdrop:checked label,
+ headerbar button:backdrop:hover label,
+ headerbar button:backdrop:active label,
+ headerbar button:backdrop:checked label {
+ color: #c50ed2; }
+ .titlebar button.suggested-action,
+ headerbar button.suggested-action {
+ font-weight: bold;
+ min-height: 24px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ border-radius: 4px;
+ font-weight: bold;
+ color: white;
+ background-color: #181b28;
+ text-shadow: none;
+ box-shadow: none; }
+ .titlebar button.suggested-action:hover,
+ headerbar button.suggested-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.suggested-action:active,
+ headerbar button.suggested-action:active {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.suggested-action:disabled,
+ headerbar button.suggested-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.suggested-action:disabled label,
+ headerbar button.suggested-action:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+ .titlebar button.suggested-action:backdrop,
+ headerbar button.suggested-action:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none;
+ border-radius: 3px; }
+ .titlebar button.suggested-action:backdrop:disabled,
+ headerbar button.suggested-action:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #00c1e4;
+ text-shadow: none; }
+ .titlebar button.destructive-action,
+ headerbar button.destructive-action {
+ font-weight: bold;
+ min-height: 24px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ border-radius: 4px;
+ font-weight: bold;
+ color: white;
+ background-color: #181b28;
+ text-shadow: none;
+ box-shadow: none; }
+ .titlebar button.destructive-action:hover,
+ headerbar button.destructive-action:hover {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.destructive-action:active,
+ headerbar button.destructive-action:active {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.destructive-action:disabled,
+ headerbar button.destructive-action:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.destructive-action:disabled label,
+ headerbar button.destructive-action:disabled label {
+ color: rgba(255, 255, 255, 0.5); }
+ .titlebar button.destructive-action:backdrop,
+ headerbar button.destructive-action:backdrop {
+ color: rgba(255, 255, 255, 0.4);
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none;
+ border-radius: 3px; }
+ .titlebar button.destructive-action:backdrop:disabled,
+ headerbar button.destructive-action:backdrop:disabled {
+ color: white;
+ outline-color: rgba(255, 255, 255, 0.3);
+ background-color: #ce1138;
+ text-shadow: none; }
+ .titlebar button.titlebutton,
+ headerbar button.titlebutton {
+ color: transparent;
+ box-shadow: none;
+ border: none;
+ background-color: transparent;
+ background-image: none;
+ background-repeat: no-repeat; }
+ .titlebar button.titlebutton:hover, .titlebar button.titlebutton:active, .titlebar button.titlebutton:checked, .titlebar button.titlebutton:backdrop, .titlebar button.titlebutton:backdrop:hover, .titlebar button.titlebutton *,
+ headerbar button.titlebutton:hover,
+ headerbar button.titlebutton:active,
+ headerbar button.titlebutton:checked,
+ headerbar button.titlebutton:backdrop,
+ headerbar button.titlebutton:backdrop:hover,
+ headerbar button.titlebutton * {
+ color: transparent;
+ box-shadow: none;
+ background-color: transparent; }
+ .titlebar .linked > button,
+ .titlebar headerbar .linked > button, .titlebar .linked > button:active, .titlebar .linked > button:checked, .titlebar .linked > button:hover,
+ .titlebar .linked > button:backdrop,
+ headerbar .titlebar .linked > button,
+ .titlebar headerbar .linked > button,
+ headerbar .linked > button,
+ headerbar .titlebar .linked > button:active,
+ .titlebar headerbar .linked > button:active,
+ headerbar .linked > button:active,
+ headerbar .titlebar .linked > button:checked,
+ .titlebar headerbar .linked > button:checked,
+ headerbar .linked > button:checked,
+ headerbar .titlebar .linked > button:hover,
+ .titlebar headerbar .linked > button:hover,
+ headerbar .titlebar .linked > button:backdrop,
+ .titlebar headerbar .linked > button:backdrop,
+ headerbar .linked > button:hover,
+ headerbar .linked > button:backdrop {
+ border-radius: 23px;
+ border-right-style: none;
+ border: none;
+ box-shadow: none;
+ margin: 10px 0px;
+ min-height: 20px;
+ transition: all .1s ease-in; }
+ .titlebar .linked > button:only-child,
+ .titlebar headerbar .linked > button:only-child,
+ headerbar .titlebar .linked > button:only-child,
+ headerbar .linked > button:only-child {
+ border-radius: 13px;
+ border-style: none; }
+ .titlebar .linked > button:active,
+ headerbar .linked > button:active {
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ color: snow; }
+ .titlebar .linked > button:checked,
+ headerbar .linked > button:checked {
+ border-radius: 23px;
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
+ color: snow; }
+ .titlebar .linked > button:checked:backdrop,
+ headerbar .linked > button:checked:backdrop {
+ color: #ffe6e6; }
+ .titlebar .linked > button:checked:backdrop label,
+ headerbar .linked > button:checked:backdrop label {
+ color: #ffe6e6; }
+ .selection-mode.titlebar button:backdrop.flat:active, .selection-mode.titlebar button:backdrop.flat:checked, .selection-mode.titlebar button:backdrop:active, .selection-mode.titlebar button:backdrop:checked,
+ headerbar.selection-mode button:backdrop.flat:active,
+ headerbar.selection-mode button:backdrop.flat:checked,
+ headerbar.selection-mode button:backdrop:active,
+ headerbar.selection-mode button:backdrop:checked {
+ border-color: #980ba2; }
+ .selection-mode.titlebar button:backdrop.flat:active label, .selection-mode.titlebar button:backdrop.flat:checked label, .selection-mode.titlebar button:backdrop:active label, .selection-mode.titlebar button:backdrop:checked label,
+ headerbar.selection-mode button:backdrop.flat:active label,
+ headerbar.selection-mode button:backdrop.flat:checked label,
+ headerbar.selection-mode button:backdrop:active label,
+ headerbar.selection-mode button:backdrop:checked label {
+ color: rgba(197, 14, 210, 0.6); }
+ .tiled .titlebar,
+ .maximized .titlebar, .tiled
+ headerbar.titlebar,
+ .maximized
+ headerbar.titlebar {
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }
+ .tiled .titlebar:backdrop, .tiled .titlebar,
+ .maximized .titlebar:backdrop,
+ .maximized .titlebar, .tiled
+ headerbar:backdrop, .tiled
+ headerbar,
+ .maximized
+ headerbar:backdrop,
+ .maximized
+ headerbar {
+ border-radius: 0; }
+ .default-decoration.titlebar,
+ headerbar.default-decoration {
+ padding: 5px 4px;
+ min-height: 20px; }
+ .default-decoration.titlebar button.titlebutton,
+ headerbar.default-decoration button.titlebutton {
+ min-height: 20px;
+ min-width: 20px;
+ margin: 0;
+ padding: 0; }
+
+headerbar entry,
+headerbar spinbutton,
+headerbar separator {
+ margin-top: 5px;
+ margin-bottom: 5px; }
+
+headerbar switch {
+ margin-top: 10px;
+ margin-bottom: 10px; }
+
+headerbar separator {
+ background: transparent; }
+
+.background:not(.tiled):not(.maximized) .titlebar {
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(0, 0, 0, 0.1); }
+ .background:not(.tiled):not(.maximized) .titlebar:backdrop, .background:not(.tiled):not(.maximized) .titlebar {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px; }
+
+window:not(.tiled):not(.maximized) separator:first-child + headerbar:backdrop, window:not(.tiled):not(.maximized) separator:first-child + headerbar,
+window:not(.tiled):not(.maximized) headerbar:first-child:backdrop,
+window:not(.tiled):not(.maximized) headerbar:first-child {
+ border-top-left-radius: 4px; }
+
+window:not(.tiled):not(.maximized) headerbar:last-child:backdrop, window:not(.tiled):not(.maximized) headerbar:last-child {
+ border-top-right-radius: 4px; }
+
+window.csd > .titlebar:not(headerbar) {
+ padding: 0;
+ background-color: transparent;
+ background-image: none;
+ border-style: none;
+ border-color: transparent;
+ box-shadow: none; }
+
+.titlebar:not(headerbar) > separator {
+ background: transparent; }
+
+/**************
+ * GtkInfoBar *
+ **************/
+.info, .warning, .question, .error,
+infobar {
+ text-shadow: none;
+ color: #C3C7D1;
+ background-color: #161925;
+ border-bottom: 1px solid #030305;
+ box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.15); }
+
+.info, .warning, .question, .error {
+ text-shadow: none;
+ color: #fefefe;
+ border: none; }
+ .info .label, .warning .label, .question .label, .error .label {
+ color: #fefefe; }
+ .info .label:backdrop, .warning .label:backdrop, .question .label:backdrop, .error .label:backdrop {
+ color: rgba(254, 254, 254, 0.5); }
+ .info button, .warning button, .question button, .error button {
+ border-radius: 2px;
+ border: none;
+ background: rgba(24, 27, 40, 0.98);
+ color: #C3C7D1;
+ box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2); }
+ .info button .label, .warning button .label, .question button .label, .error button .label {
+ color: #C3C7D1; }
+ .info button:active, .warning button:active, .question button:active, .error button:active {
+ background: #181b28;
+ color: #C3C7D1;
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); }
+ .info button:active:backdrop, .warning button:active:backdrop, .question button:active:backdrop, .error button:active:backdrop {
+ background: rgba(24, 27, 40, 0.8);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+ .info button:hover, .warning button:hover, .question button:hover, .error button:hover, .info button:focus, .warning button:focus, .question button:focus, .error button:focus {
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); }
+ .info button:disabled, .warning button:disabled, .question button:disabled, .error button:disabled {
+ background: rgba(24, 27, 40, 0.6);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+ .info button:disabled:backdrop, .warning button:disabled:backdrop, .question button:disabled:backdrop, .error button:disabled:backdrop {
+ background: rgba(24, 27, 40, 0.5);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+ .info button:backdrop, .warning button:backdrop, .question button:backdrop, .error button:backdrop {
+ background: rgba(24, 27, 40, 0.8);
+ color: rgba(195, 199, 209, 0.5);
+ box-shadow: none; }
+
+.info {
+ background-color: #71f79f; }
+ .info:backdrop {
+ background-color: #a1fac0;
+ color: rgba(254, 254, 254, 0.5); }
+
+.warning {
+ background-color: #cc5500; }
+ .warning:backdrop {
+ background-color: #ff6a00;
+ color: rgba(254, 254, 254, 0.5); }
+
+.question {
+ background-color: #00c1e4; }
+ .question:backdrop {
+ background-color: #18dcff;
+ color: rgba(254, 254, 254, 0.5); }
+
+.error {
+ background-color: #e6133e; }
+ .error:backdrop {
+ background-color: #ef3d61;
+ color: rgba(254, 254, 254, 0.5); }
+
+/*************
+ * Level Bar *
+ *************/
+levelbar block {
+ min-width: 32px;
+ min-height: 6px; }
+
+levelbar.vertical block {
+ min-width: 6px;
+ min-height: 32px; }
+
+levelbar:backdrop {
+ transition: 200ms ease-out; }
+
+levelbar trough {
+ padding: 3px;
+ border-radius: 3px;
+ background-color: rgba(255, 255, 255, 0.2);
+ box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+ levelbar trough:backdrop {
+ background-color: rgba(255, 255, 255, 0.06);
+ box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+
+levelbar.horizontal.discrete block {
+ margin: 0 1px; }
+
+levelbar.vertical.discrete block {
+ margin: 1px 0; }
+
+levelbar block {
+ border-radius: 2px; }
+ levelbar block:backdrop {
+ box-shadow: none; }
+ levelbar block.low {
+ background-color: #cc5500; }
+ levelbar block.low:backdrop {
+ border-color: #cc5500; }
+ levelbar block.high, levelbar block:not(.empty) {
+ background-color: #00c1e4; }
+ levelbar block.high:backdrop, levelbar block:not(.empty):backdrop {
+ border-color: #00c1e4; }
+ levelbar block.full {
+ background-color: #0096b1; }
+ levelbar block.full:backdrop {
+ border-color: #0096b1; }
+ levelbar block.empty {
+ background-color: rgba(0, 0, 0, 0.35);
+ box-shadow: none; }
+
+/*********
+ * Links *
+ *********/
+*:link, button:link,
+button:visited {
+ color: #7cb7ff; }
+ *:link:visited,
+ button:visited {
+ color: rgba(124, 183, 255, 0.5); }
+ *:selected *:link:visited, *:selected button:visited:link,
+ *:selected button:visited {
+ color: #e79eec; }
+ *:link:hover, button:hover:link,
+ button:hover:visited {
+ color: #afd3ff; }
+ *:selected *:link:hover, *:selected button:hover:link,
+ *:selected button:hover:visited {
+ color: #f8e6fa; }
+ *:link:active, button:active:link,
+ button:active:visited {
+ color: #7cb7ff; }
+ *:selected *:link:active, *:selected button:active:link,
+ *:selected button:active:visited {
+ color: #f3cef5; }
+ *:link:backdrop:backdrop:hover, button:backdrop:backdrop:hover:link,
+ button:backdrop:backdrop:hover:visited, *:link:backdrop:backdrop:hover:selected, button:backdrop:backdrop:hover:selected:link,
+ button:backdrop:backdrop:hover:selected:visited, *:link:backdrop, button:backdrop:link,
+ button:backdrop:visited {
+ color: #c50ed2; }
+ *:link:selected, button:selected:link,
+ button:selected:visited,
+ *:selected *:link,
+ *:selected button:link,
+ *:selected button:visited {
+ color: #f3cef5; }
+
+button:link,
+button:visited {
+ text-shadow: none; }
+ button:link:hover, button:link:active, button:link:checked,
+ button:visited:hover,
+ button:visited:active,
+ button:visited:checked {
+ text-shadow: none; }
+ button:link > label,
+ button:visited > label {
+ text-decoration-line: underline; }
+
+/*********
+ * Lists *
+ *********/
+list {
+ color: #C3C7D1;
+ background-color: #181b28;
+ border-color: rgba(12, 14, 21, 0.8); }
+ list:backdrop {
+ background-color: #1a1d2b;
+ border-color: rgba(13, 16, 23, 0.82); }
+
+row {
+ padding: 5px 11px;
+ transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
+ row label {
+ padding-left: 8px; }
+ row:hover {
+ transition: none; }
+ row:backdrop {
+ transition: 200ms ease-out; }
+ row.activatable.has-open-popup, row.activatable:hover {
+ background-color: rgba(195, 199, 209, 0.05); }
+ row.activatable:active {
+ box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); }
+ row.activatable:backdrop:hover {
+ background-color: transparent; }
+ row.activatable:selected:active {
+ box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); }
+ row.activatable:selected.has-open-popup, row.activatable:selected:hover {
+ background-color: rgba(197, 14, 210, 0.5); }
+ row.activatable:selected:backdrop {
+ background-color: rgba(197, 14, 210, 0.6); }
+ row.activatable button:not(.image-button) {
+ background-color: transparent; }
+
+/*********
+ * Menus *
+ *********/
+menubar,
+.menubar {
+ background-color: #161925;
+ color: #C3C7D1;
+ -GtkWidget-window-dragging: true;
+ padding: 0px;
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }
+ menubar > menuitem,
+ .menubar > menuitem {
+ min-height: 16px;
+ padding: 4px 8px; }
+ menubar > menuitem:hover,
+ .menubar > menuitem:hover {
+ box-shadow: inset 0 -3px #c50ed2; }
+ menubar > menuitem:disabled,
+ .menubar > menuitem:disabled {
+ color: #6d707b;
+ box-shadow: none; }
+
+menu,
+.menu,
+.context-menu {
+ font: initial;
+ margin: 4px;
+ padding: 2px 0px;
+ background: linear-gradient(to bottom, #1a1d2b, #12151f);
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ .csd menu, .csd
+ .menu, .csd
+ .context-menu {
+ border: none; }
+ menu:backdrop,
+ .menu:backdrop,
+ .context-menu:backdrop {
+ background-color: #191c2a; }
+ menu menuitem,
+ .menu menuitem,
+ .context-menu menuitem {
+ min-height: 17px;
+ min-width: 40px;
+ padding: 4px 6px;
+ text-shadow: none; }
+ menu menuitem:hover,
+ .menu menuitem:hover,
+ .context-menu menuitem:hover {
+ color: #fefefe;
+ background-color: #c50ed2; }
+ menu menuitem:disabled,
+ .menu menuitem:disabled,
+ .context-menu menuitem:disabled {
+ color: #6d707b; }
+ menu menuitem:disabled:backdrop,
+ .menu menuitem:disabled:backdrop,
+ .context-menu menuitem:disabled:backdrop {
+ color: #333955; }
+ menu menuitem:backdrop, menu menuitem:backdrop:hover,
+ .menu menuitem:backdrop,
+ .menu menuitem:backdrop:hover,
+ .context-menu menuitem:backdrop,
+ .context-menu menuitem:backdrop:hover {
+ color: #6d707b;
+ background-color: transparent; }
+ menu menuitem arrow,
+ .menu menuitem arrow,
+ .context-menu menuitem arrow {
+ min-height: 16px;
+ min-width: 16px; }
+ menu menuitem arrow:dir(ltr),
+ .menu menuitem arrow:dir(ltr),
+ .context-menu menuitem arrow:dir(ltr) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
+ margin-left: 10px; }
+ menu menuitem arrow:dir(rtl),
+ .menu menuitem arrow:dir(rtl),
+ .context-menu menuitem arrow:dir(rtl) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
+ margin-right: 10px; }
+ menu menuitem label:dir(rtl), menu menuitem label:dir(ltr),
+ .menu menuitem label:dir(rtl),
+ .menu menuitem label:dir(ltr),
+ .context-menu menuitem label:dir(rtl),
+ .context-menu menuitem label:dir(ltr) {
+ color: inherit; }
+ menu > arrow,
+ .menu > arrow,
+ .context-menu > arrow {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ min-height: 16px;
+ min-width: 16px;
+ padding: 4px;
+ background-color: #181b28;
+ border-radius: 0; }
+ menu > arrow.top,
+ .menu > arrow.top,
+ .context-menu > arrow.top {
+ margin-top: -6px;
+ border-bottom: 1px solid #292c39;
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
+ menu > arrow.bottom,
+ .menu > arrow.bottom,
+ .context-menu > arrow.bottom {
+ margin-bottom: -6px;
+ border-top: 1px solid #292c39;
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ menu > arrow:hover,
+ .menu > arrow:hover,
+ .context-menu > arrow:hover {
+ background-color: #292c39; }
+ menu > arrow:backdrop,
+ .menu > arrow:backdrop,
+ .context-menu > arrow:backdrop {
+ background-color: #191c2a; }
+ menu > arrow:disabled,
+ .menu > arrow:disabled,
+ .context-menu > arrow:disabled {
+ color: transparent;
+ background-color: transparent;
+ border-color: transparent; }
+
+menuitem accelerator {
+ color: alpha(currentColor,0.55); }
+
+menuitem check,
+menuitem radio {
+ min-height: 16px;
+ min-width: 16px; }
+ menuitem check:dir(ltr),
+ menuitem radio:dir(ltr) {
+ margin-right: 7px; }
+ menuitem check:dir(rtl),
+ menuitem radio:dir(rtl) {
+ margin-left: 7px; }
+
+/********
+ * Misc *
+ ********/
+.content-view {
+ background-color: #090a0f; }
+ .content-view:hover {
+ -gtk-icon-effect: highlight; }
+ .content-view:backdrop {
+ background-color: #090a0f; }
+
+.osd .scale-popup button.flat {
+ border-style: none;
+ border-radius: 5px; }
+
+.scale-popup button:hover {
+ background-color: rgba(195, 199, 209, 0.1);
+ border-radius: 5px; }
+
+/************
+* Assistant *
+*************/
+assistant {
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px; }
+ assistant .sidebar {
+ background-color: #181b28;
+ border-top: 1px solid rgba(12, 14, 21, 0.8);
+ border-bottom-left-radius: 4px; }
+ assistant .sidebar:backdrop {
+ background-color: #1a1d2b;
+ border-color: rgba(13, 16, 23, 0.82); }
+ assistant.csd .sidebar {
+ border-top-style: none; }
+ assistant .sidebar GtkLabel,
+ assistant .sidebar label {
+ padding: 6px 12px; }
+ assistant .sidebar GtkLabel.highlight,
+ assistant .sidebar label.highlight {
+ background-color: #393c47; }
+
+/*************
+ * Notebooks *
+ *************/
+notebook > header {
+ padding: 1px;
+ border-color: rgba(12, 14, 21, 0.8);
+ border-width: 1px;
+ background-color: #181b28; }
+ notebook > header:backdrop {
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #161925; }
+ notebook > header tabs {
+ margin: 0px; }
+ notebook > header.top {
+ border-bottom-style: solid; }
+ notebook > header.top > tabs {
+ margin-bottom: -3px; }
+ notebook > header.top > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.top > tabs > tab:checked {
+ background-color: #181b28; }
+ notebook > header.top > tabs > tab:checked:hover {
+ background-color: #181b28; }
+ notebook > header.bottom {
+ border-top-style: solid; }
+ notebook > header.bottom > tabs {
+ margin-top: -2px; }
+ notebook > header.bottom > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.bottom > tabs > tab:checked {
+ background-color: #181b28;
+ box-shadow: -1px 0 0 rgba(12, 14, 21, 0.8), 0px 1px 0 rgba(12, 14, 21, 0.8), 1px 0 0 rgba(12, 14, 21, 0.8); }
+ notebook > header.left {
+ border-right-style: solid; }
+ notebook > header.left > tabs {
+ margin-right: -2px; }
+ notebook > header.left > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.left > tabs > tab:checked {
+ background-color: #181b28;
+ box-shadow: 0px 1px 0 rgba(12, 14, 21, 0.8), 0px -1px 0 rgba(12, 14, 21, 0.8), 0px 1px 0 rgba(12, 14, 21, 0.8); }
+ notebook > header.right {
+ border-left-style: solid; }
+ notebook > header.right > tabs {
+ margin-left: -2px; }
+ notebook > header.right > tabs > tab:backdrop {
+ box-shadow: none; }
+ notebook > header.right > tabs > tab:checked {
+ background-color: #181b28;
+ box-shadow: 0px 1px 0 rgba(12, 14, 21, 0.8), 0px -1px 0 rgba(12, 14, 21, 0.8), 1px 0 0 rgba(12, 14, 21, 0.8); }
+ notebook > header.top > tabs > arrow {
+ border-top-style: none; }
+ notebook > header.bottom > tabs > arrow {
+ border-bottom-style: none; }
+ notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
+ margin-left: -5px;
+ margin-right: -5px;
+ padding-left: 4px;
+ padding-right: 4px; }
+ notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
+ -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
+ notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
+ notebook > header.left > tabs > arrow {
+ border-left-style: none; }
+ notebook > header.right > tabs > arrow {
+ border-right-style: none; }
+ notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
+ margin-top: -5px;
+ margin-bottom: -5px;
+ padding-top: 4px;
+ padding-bottom: 4px; }
+ notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
+ notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ notebook > header > tabs > arrow {
+ min-height: 14px;
+ min-width: 14px;
+ border-radius: 0; }
+ notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) {
+ background-clip: padding-box;
+ background-image: none;
+ background-color: rgba(255, 255, 255, 0.3);
+ border-color: transparent;
+ box-shadow: none; }
+ notebook > header > tabs > arrow:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ notebook > header tab {
+ min-height: 24px;
+ min-width: 24px;
+ padding: 1px 12px;
+ outline-offset: -5px;
+ color: #6d707b;
+ font-weight: bold;
+ border-width: 1px;
+ border-color: transparent; }
+ notebook > header tab:hover {
+ color: #989ca6; }
+ notebook > header tab:hover.reorderable-page {
+ border-color: rgba(12, 14, 21, 0.1);
+ background-color: rgba(22, 25, 37, 0.2); }
+ notebook > header tab:backdrop {
+ color: #4a4d59; }
+ notebook > header tab:backdrop.reorderable-page {
+ border-color: transparent;
+ background-color: transparent; }
+ notebook > header tab:checked {
+ color: #C3C7D1;
+ box-shadow: -1px 0 0 rgba(12, 14, 21, 0.8), 0px -1px 0 rgba(12, 14, 21, 0.8), 1px 0 0 rgba(12, 14, 21, 0.8); }
+ notebook > header tab:checked.reorderable-page {
+ border-color: rgba(12, 14, 21, 0.3);
+ background-color: rgba(22, 25, 37, 0.5); }
+ notebook > header tab:checked.reorderable-page:hover {
+ background-color: rgba(22, 25, 37, 0.7); }
+ notebook > header tab:backdrop:checked {
+ color: #6d707b; }
+ notebook > header tab:backdrop:checked.reorderable-page {
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: #1a1d2b; }
+ notebook > header tab button.flat {
+ padding: 0;
+ margin-top: 4px;
+ margin-bottom: 4px;
+ min-width: 20px;
+ min-height: 20px; }
+ notebook > header tab button.flat:hover {
+ background: transparent;
+ box-shadow: none;
+ color: #ed254e; }
+ notebook > header tab button.flat, notebook > header tab button.flat:backdrop {
+ color: alpha(currentColor,0.3); }
+ notebook > header tab button.flat:last-child {
+ margin-left: 4px;
+ margin-right: -4px; }
+ notebook > header tab button.flat:first-child {
+ margin-left: -4px;
+ margin-right: 4px; }
+ notebook > header.top tabs, notebook > header.bottom tabs {
+ padding-left: 0px;
+ padding-right: 0px; }
+ notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) {
+ margin-left: 0.5px;
+ margin-right: 0.5px; }
+ notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
+ margin-left: -1px; }
+ notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
+ margin-right: -1px; }
+ notebook > header.top tabs tab, notebook > header.bottom tabs tab {
+ margin-left: 0.5px;
+ margin-right: 0.5px; }
+ notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
+ border-style: none solid; }
+ notebook > header.left tabs, notebook > header.right tabs {
+ padding-top: 4px;
+ padding-bottom: 4px; }
+ notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) {
+ margin-top: 3px;
+ margin-bottom: 3px; }
+ notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
+ margin-top: -1px; }
+ notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
+ margin-bottom: -1px; }
+ notebook > header.left tabs tab, notebook > header.right tabs tab {
+ margin-top: 4px;
+ margin-bottom: 4px; }
+ notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
+ border-style: solid none; }
+ notebook > header.top tab {
+ padding-bottom: 3px; }
+ notebook > header.bottom tab {
+ padding-top: 3px; }
+ notebook > header button {
+ margin-top: 1px;
+ margin-bottom: 1px;
+ padding: 1px 1px; }
+
+notebook > stack:not(:only-child) {
+ background-color: #181b28; }
+ notebook > stack:not(:only-child):backdrop {
+ background-color: #1a1d2b; }
+
+/*********
+ * Paned *
+ *********/
+paned > separator {
+ min-width: 1px;
+ min-height: 1px;
+ -gtk-icon-source: none;
+ border-style: none;
+ background-color: transparent;
+ background-image: image(rgba(12, 14, 21, 0.8));
+ background-size: 1px 1px; }
+ paned > separator:selected {
+ background-image: image(#c50ed2); }
+ paned > separator:backdrop {
+ background-image: image(rgba(13, 16, 23, 0.82)); }
+ paned > separator.wide {
+ min-width: 5px;
+ min-height: 5px;
+ background-color: #161925;
+ background-image: image(rgba(12, 14, 21, 0.8)), image(rgba(12, 14, 21, 0.8));
+ background-size: 1px 1px, 1px 1px; }
+ paned > separator.wide:backdrop {
+ background-color: #161925;
+ background-image: image(rgba(13, 16, 23, 0.82)), image(rgba(13, 16, 23, 0.82)); }
+
+paned.horizontal > separator {
+ background-repeat: repeat-y; }
+ paned.horizontal > separator:dir(ltr) {
+ margin: 0 -8px 0 0;
+ padding: 0 8px 0 0;
+ background-position: left; }
+ paned.horizontal > separator:dir(rtl) {
+ margin: 0 0 0 -8px;
+ padding: 0 0 0 8px;
+ background-position: right; }
+ paned.horizontal > separator.wide {
+ margin: 0;
+ padding: 0;
+ background-repeat: repeat-y, repeat-y;
+ background-position: left, right; }
+
+paned.vertical > separator {
+ margin: 0 0 -8px 0;
+ padding: 0 0 8px 0;
+ background-repeat: repeat-x;
+ background-position: top; }
+ paned.vertical > separator.wide {
+ margin: 0;
+ padding: 0;
+ background-repeat: repeat-x, repeat-x;
+ background-position: bottom, top; }
+
+/************
+ * Pathbars *
+ ************/
+.path-bar button.text-button, .path-bar button.image-button, .path-bar button {
+ padding-left: 4px;
+ padding-right: 4px; }
+
+.path-bar button.text-button.image-button label {
+ padding-left: 0;
+ padding-right: 0; }
+
+.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child {
+ padding-right: 8px; }
+
+.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child {
+ padding-left: 8px; }
+
+.path-bar button image {
+ padding-left: 4px;
+ padding-right: 4px; }
+
+.path-bar button.slider-button {
+ padding-left: 0;
+ padding-right: 0; }
+
+/***************
+ * Popovers *
+ ***************/
+popover.background {
+ padding: 2px;
+ border-radius: 5px;
+ background: linear-gradient(to bottom, #1a1d2b, #12151f);
+ box-shadow: 0 4px 6px transparent; }
+ .csd popover.background, popover.background {
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ popover.background:backdrop {
+ background-color: #161925;
+ box-shadow: none; }
+ popover.background > list,
+ popover.background > .view,
+ popover.background > iconview,
+ popover.background > toolbar {
+ border-style: none;
+ background-color: transparent; }
+ .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier {
+ border: 1px solid rgba(255, 255, 255, 0.1); }
+ popover.background separator {
+ margin: 3px; }
+ popover.background list separator {
+ margin: 0px; }
+
+/*****************
+ * Progress bars *
+ *****************/
+progressbar {
+ font-size: smaller;
+ color: rgba(195, 199, 209, 0.4); }
+ progressbar.horizontal trough,
+ progressbar.horizontal progress {
+ min-height: 6px; }
+ progressbar.vertical trough,
+ progressbar.vertical progress {
+ min-width: 6px; }
+ progressbar.horizontal progress {
+ margin: 0; }
+ progressbar.vertical progress {
+ margin: 0;
+ background: linear-gradient(to bottom, #00f17d, #00f7d2); }
+ progressbar:backdrop {
+ box-shadow: none;
+ transition: 200ms ease-out; }
+ progressbar.osd {
+ min-width: 3px;
+ min-height: 3px;
+ background-color: transparent; }
+ progressbar.osd trough {
+ border-style: none;
+ border-radius: 0;
+ background-color: transparent;
+ box-shadow: none; }
+ progressbar.osd progress {
+ border-style: none;
+ border-radius: 0; }
+
+/************
+ * GtkScale *
+ ************/
+progressbar trough, scale trough, scale fill {
+ background-color: rgba(255, 255, 255, 0.14);
+ border: none;
+ border-radius: 3px;
+ margin: 0; }
+ progressbar trough:disabled, scale trough:disabled, scale fill:disabled {
+ background-color: rgba(255, 255, 255, 0.06); }
+ progressbar trough:backdrop, progressbar:backdrop trough, scale trough:backdrop, scale fill:backdrop {
+ background-color: rgba(255, 255, 255, 0.06);
+ transition: 200ms ease-out; }
+ progressbar trough:backdrop:disabled, progressbar:backdrop trough:disabled, scale trough:backdrop:disabled, scale fill:backdrop:disabled {
+ background-color: rgba(255, 255, 255, 0.06); }
+
+progressbar progress, scale highlight {
+ border: none;
+ background: linear-gradient(to right, #00f17d, #00f7d2);
+ border-radius: 3px;
+ margin: 0; }
+ progressbar progress:disabled, scale highlight:disabled {
+ border: none;
+ background-color: rgba(255, 255, 255, 0.14); }
+ progressbar progress:backdrop, progressbar:backdrop progress, scale highlight:backdrop, progressbar progress:active:backdrop, progressbar:backdrop progress:active, scale highlight:active:backdrop {
+ border-color: #db10ea;
+ background-color: #db10ea; }
+ progressbar progress:backdrop:disabled, progressbar:backdrop progress:disabled, scale highlight:backdrop:disabled, progressbar progress:active:backdrop:disabled, progressbar:backdrop progress:active:disabled, scale highlight:active:backdrop:disabled {
+ background-color: rgba(255, 255, 255, 0.06); }
+
+scale {
+ min-height: 16px;
+ min-width: 16px;
+ padding: 8px; }
+ scale.horizontal trough,
+ scale.horizontal progress {
+ min-height: 6px; }
+ scale.vertical trough,
+ scale.vertical progress {
+ min-width: 6px; }
+ scale.vertical highlight {
+ background: linear-gradient(to bottom, #00f17d, #00f7d2); }
+ scale slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ border-radius: 12px;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ transition-property: background, border, box-shadow; }
+ scale slider:active {
+ background-color: #c50ed2; }
+ scale slider:active:disabled {
+ background-color: #171a26;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.fine-tune.horizontal {
+ padding-top: 9px;
+ padding-bottom: 9px;
+ min-height: 16px; }
+ scale.fine-tune.vertical {
+ padding-left: 9px;
+ padding-right: 9px;
+ min-width: 16px; }
+ scale.fine-tune slider {
+ margin: -6px; }
+ scale.fine-tune fill,
+ scale.fine-tune highlight,
+ scale.fine-tune trough {
+ border-radius: 5px;
+ -gtk-outline-radius: 7px; }
+ scale trough {
+ outline-offset: 2px;
+ -gtk-outline-radius: 5px;
+ outline-color: transparent; }
+ scale fill:backdrop, scale fill {
+ background-color: rgba(12, 14, 21, 0.8); }
+ scale fill:disabled:backdrop, scale fill:disabled {
+ border-color: transparent;
+ background-color: transparent; }
+ .osd scale fill {
+ background-color: rgba(97, 97, 97, 0.775); }
+ .osd scale fill:disabled:backdrop, .osd scale fill:disabled {
+ border-color: transparent;
+ background-color: transparent; }
+ scale slider {
+ border-color: #181b28;
+ border: 2px solid #00f17d;
+ border-radius: 12px;
+ background-color: #292f45; }
+ scale slider:active {
+ border-color: #980ba2; }
+ scale slider:disabled {
+ background-color: #0c0e15;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+ scale slider:backdrop, scale slider:backdrop:disabled {
+ transition: 200ms ease-out;
+ background-color: #0c0e15;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); }
+ row:selected scale slider:disabled, row:selected scale slider {
+ border-color: #980ba2; }
+ .osd scale slider {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: #14171a; }
+ .osd scale slider:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #14171a; }
+ .osd scale slider:active {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3);
+ background-color: #14171a; }
+ .osd scale slider:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ background-color: #14171a; }
+ .osd scale slider:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ background-color: #14171a; }
+ .osd scale slider:backdrop:disabled {
+ background-color: #14171a; }
+ scale value {
+ color: alpha(currentColor,0.4); }
+ scale marks {
+ color: alpha(currentColor,0.4); }
+ scale marks.top {
+ margin-bottom: 6px;
+ margin-top: -12px; }
+ scale marks.bottom {
+ margin-top: 6px;
+ margin-bottom: -12px; }
+ scale marks.top {
+ margin-right: 6px;
+ margin-left: -12px; }
+ scale marks.bottom {
+ margin-left: 6px;
+ margin-right: -12px; }
+ scale.fine-tune marks.top {
+ margin-bottom: 6px;
+ margin-top: -9px; }
+ scale.fine-tune marks.bottom {
+ margin-top: 6px;
+ margin-bottom: -9px; }
+ scale.fine-tune marks.top {
+ margin-right: 6px;
+ margin-left: -9px; }
+ scale.fine-tune marks.bottom {
+ margin-left: 6px;
+ margin-right: -9px; }
+ scale.horizontal indicator {
+ min-height: 6px;
+ min-width: 1px; }
+ scale.horizontal.fine-tune indicator {
+ min-height: 3px; }
+ scale.vertical indicator {
+ min-height: 1px;
+ min-width: 6px; }
+ scale.vertical.fine-tune indicator {
+ min-width: 3px; }
+ scale.horizontal.marks-before:not(.marks-after) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-before:not(.marks-after).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:hover {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:active {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:backdrop {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled {
+ min-height: 15px;
+ min-width: 15px;
+ margin: -7px;
+ border: 2px solid #00f17d;
+ border-radius: 50%;
+ background-color: #292f45;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
+ scale.vertical.marks-after:not(.marks-before).fine-tune slider {
+ margin: -7px; }
+ scale.color {
+ min-height: 0;
+ min-width: 0; }
+ scale.color trough {
+ background-image: image(rgba(12, 14, 21, 0.8));
+ background-repeat: no-repeat; }
+ scale.color.horizontal {
+ padding: 0 0 15px 0; }
+ scale.color.horizontal trough {
+ padding-bottom: 4px;
+ background-position: 0 -3px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+ scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) {
+ margin-bottom: -15px;
+ margin-top: 6px; }
+ scale.color.vertical:dir(ltr) {
+ padding: 0 0 0 15px; }
+ scale.color.vertical:dir(ltr) trough {
+ padding-left: 4px;
+ background-position: 3px 0;
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0; }
+ scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider {
+ margin-left: -15px;
+ margin-right: 6px; }
+ scale.color.vertical:dir(rtl) {
+ padding: 0 15px 0 0; }
+ scale.color.vertical:dir(rtl) trough {
+ padding-right: 4px;
+ background-position: -3px 0;
+ border-bottom-left-radius: 0;
+ border-top-left-radius: 0; }
+ scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider {
+ margin-right: -15px;
+ margin-left: 6px; }
+ scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) {
+ padding: 0 0 12px 0; }
+ scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough {
+ padding-bottom: 7px;
+ background-position: 0 -6px; }
+ scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider {
+ margin-bottom: -15px;
+ margin-top: 6px; }
+ scale.color.fine-tune.vertical:dir(ltr) {
+ padding: 0 0 0 12px; }
+ scale.color.fine-tune.vertical:dir(ltr) trough {
+ padding-left: 7px;
+ background-position: 6px 0; }
+ scale.color.fine-tune.vertical:dir(ltr) slider {
+ margin-left: -15px;
+ margin-right: 6px; }
+ scale.color.fine-tune.vertical:dir(rtl) {
+ padding: 0 12px 0 0; }
+ scale.color.fine-tune.vertical:dir(rtl) trough {
+ padding-right: 7px;
+ background-position: -6px 0; }
+ scale.color.fine-tune.vertical:dir(rtl) slider {
+ margin-right: -15px;
+ margin-left: 6px; }
+
+/**************
+ * Scrollbars *
+ **************/
+scrollbar {
+ background-color: #171a27;
+ transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
+ * {
+ -GtkScrollbar-has-backward-stepper: false;
+ -GtkScrollbar-has-forward-stepper: false; }
+ scrollbar.top {
+ border-bottom: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar.bottom {
+ border-top: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar.left {
+ border-right: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar.right {
+ border-left: 1px solid rgba(12, 14, 21, 0.8); }
+ scrollbar:backdrop {
+ background-color: #10131b;
+ border-color: rgba(13, 16, 23, 0.82);
+ transition: 200ms ease-out; }
+ scrollbar slider {
+ min-width: 6px;
+ min-height: 6px;
+ margin: -1px;
+ border: 4px solid transparent;
+ border-radius: 8px;
+ background-clip: padding-box;
+ background-color: #7e818c; }
+ scrollbar slider:hover {
+ background-color: #a0a4af; }
+ scrollbar slider:hover:active {
+ background-color: #e323f0; }
+ scrollbar slider:backdrop {
+ background-color: #393c47; }
+ scrollbar slider:disabled {
+ background-color: transparent; }
+ scrollbar.fine-tune slider {
+ min-width: 4px;
+ min-height: 4px; }
+ scrollbar.fine-tune.horizontal slider {
+ border-width: 5px 4px; }
+ scrollbar.fine-tune.vertical slider {
+ border-width: 4px 5px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
+ border-color: transparent;
+ opacity: 0.4;
+ background-color: transparent; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
+ margin: 0;
+ min-width: 3px;
+ min-height: 3px;
+ background-color: #C3C7D1;
+ border: 1px solid black; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
+ min-width: 5px;
+ min-height: 5px;
+ background-color: #C3C7D1;
+ background-clip: padding-box;
+ border-radius: 100%;
+ border: 1px solid black;
+ -gtk-icon-source: none; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
+ margin: 0 2px;
+ min-width: 40px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
+ margin: 1px 2px;
+ min-width: 5px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
+ margin: 2px 0;
+ min-height: 40px; }
+ scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
+ margin: 2px 1px;
+ min-height: 5px; }
+ scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
+ opacity: 0.8; }
+ scrollbar.horizontal slider {
+ min-width: 40px; }
+ scrollbar.vertical slider {
+ min-height: 40px; }
+ scrollbar button {
+ padding: 0;
+ min-width: 12px;
+ min-height: 12px;
+ border-style: none;
+ border-radius: 0;
+ transition-property: min-height, min-width, color;
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #7e818c; }
+ scrollbar button:hover {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #a0a4af; }
+ scrollbar button:active, scrollbar button:checked {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #e323f0; }
+ scrollbar button:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(126, 129, 140, 0.2); }
+ scrollbar button:backdrop {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #393c47; }
+ scrollbar button:backdrop:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: rgba(57, 60, 71, 0.2); }
+ scrollbar.vertical button.down {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ scrollbar.vertical button.up {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
+ scrollbar.horizontal button.down {
+ -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); }
+ scrollbar.horizontal button.up {
+ -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); }
+
+treeview ~ scrollbar.vertical {
+ border-top: 1px solid rgba(12, 14, 21, 0.8);
+ margin-top: -1px; }
+
+/***********
+ * Sidebar *
+ ***********/
+.sidebar {
+ border-style: none;
+ border-width: 0;
+ background-color: #171a27; }
+ .sidebar .frame {
+ border: none; }
+ stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
+ border-right: none;
+ border-left-style: none; }
+ stacksidebar.sidebar:dir(rtl) list .sidebar:dir(rtl), stacksidebar.sidebar.right list .sidebar:dir(rtl), .sidebar.right {
+ border-left: 1px solid rgba(12, 14, 21, 0.8);
+ border-right-style: none; }
+ .sidebar:backdrop {
+ background-color: #181b28;
+ border-color: rgba(13, 16, 23, 0.82);
+ transition: 200ms ease-out; }
+ .sidebar row {
+ padding: 8px 12px;
+ transition: all .12s ease-in; }
+ .sidebar row label {
+ color: #98abb2; }
+ .sidebar row:selected {
+ color: #fff; }
+ .sidebar row:selected:backdrop {
+ color: rgba(197, 14, 210, 0.6);
+ background: transparent; }
+ .sidebar row:selected:backdrop label {
+ color: #fff; }
+ .sidebar row:selected label {
+ color: #fff; }
+ .sidebar.source-list {
+ background: #181b28;
+ padding: 4px 0px; }
+ .sidebar.source-list.view, iconview.sidebar.source-list {
+ transition: all .12s ease-in; }
+ .sidebar.source-list.view:selected, iconview.sidebar.source-list:selected {
+ padding-left: 4px;
+ background: rgba(238, 238, 238, 0.5);
+ color: #ACACAC;
+ border-left: 4px solid #c50ed2; }
+ .sidebar.source-list.view:selected:active, iconview.sidebar.source-list:selected:active {
+ box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); }
+ .sidebar.source-list.view:selected.has-open-popup, iconview.sidebar.source-list:selected.has-open-popup, .sidebar.source-list.view:selected:hover, iconview.sidebar.source-list:selected:hover {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .sidebar.source-list.view:selected:backdrop, iconview.sidebar.source-list:selected:backdrop {
+ background-color: rgba(197, 14, 210, 0.6); }
+ .sidebar.source-list.view:hover, iconview.sidebar.source-list:hover, .sidebar.source-list.view iconview.source-list:hover, iconview.sidebar.source-list iconview.source-list:hover {
+ background-color: rgba(22, 25, 37, 0.4); }
+ paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
+ border-style: none;
+ border-color: rgba(12, 14, 21, 0.8); }
+
+stacksidebar row {
+ padding: 10px 4px; }
+ stacksidebar row > label {
+ padding-left: 6px;
+ padding-right: 6px; }
+ stacksidebar row.needs-attention > label {
+ background-size: 6px 6px, 0 0; }
+
+/*******************************************************************/
+/* PLACESSIDEBAR */
+/*******************************************************************/
+/*--*/
+placessidebar.sidebar {
+ background-color: transparent;
+ background-image: linear-gradient(to right, #171e27 40px, #161925 35px, #161925 36px, #161925 36px, #161925 99%, #161925 100%); }
+ placessidebar.sidebar row.sidebar-row.sidebar-row .sidebar-icon {
+ margin-left: -14px;
+ margin-right: 12px;
+ padding-left: 14px;
+ padding-right: 12px;
+ color: #9ecfa2; }
+ placessidebar.sidebar row.sidebar-row:hover {
+ transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ color: rgba(0, 0, 0, 0.76);
+ background-color: transparent;
+ /*rgba(65,67,75,0.4); */
+ background-image: linear-gradient(to right, rgba(65, 67, 75, 0) 40px, rgba(0, 0, 0, 0.12) 40px, rgba(0, 0, 0, 0.12) 97%); }
+ placessidebar.sidebar row.sidebar-row:active:hover {
+ color: rgba(0, 0, 0, 0.76);
+ background-color: rgba(0, 0, 0, 0.23); }
+ placessidebar.sidebar row.sidebar-row:selected {
+ color: rgba(255, 255, 255, 0.938);
+ background-color: transparent;
+ background-image: linear-gradient(to right, #c50ed2 40px, rgba(65, 67, 75, 0) 36px, rgba(65, 67, 75, 0) 97%); }
+ placessidebar.sidebar row.sidebar-row:selected:hover {
+ color: #ffffff;
+ background-color: rgba(0, 0, 0, 0.24); }
+ placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon {
+ color: #ffffff; }
+ placessidebar.sidebar row.sidebar-row:selected:backdrop {
+ color: rgba(0, 0, 0, 0.54);
+ background-color: transparent;
+ background-image: linear-gradient(to right, #c50ed2 40px, rgba(65, 67, 75, 0) 36px, rgba(65, 67, 75, 0) 97%); }
+ placessidebar.sidebar row.sidebar-row:selected .sidebar-icon {
+ -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.8);
+ color: inherit; }
+
+placessidebar list {
+ background-color: transparent; }
+ placessidebar list:backdrop {
+ background-color: transparent; }
+
+/*****************
+ * GtkSpinButton *
+ *****************/
+spinbutton:not(.vertical) {
+ padding: 0; }
+ spinbutton:not(.vertical) entry {
+ min-width: 28px;
+ margin: 0;
+ background: none;
+ background-color: transparent;
+ border: none;
+ border-radius: 0;
+ box-shadow: none; }
+ spinbutton:not(.vertical) button {
+ min-height: 16px;
+ margin: 0;
+ padding-bottom: 0;
+ padding-top: 0;
+ color: #b2b6c0;
+ background-image: none;
+ border-style: none none none solid;
+ border-color: rgba(12, 14, 21, 0.1);
+ border-radius: 0;
+ box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); }
+ spinbutton:not(.vertical) button:dir(rtl) {
+ border-style: none solid none none; }
+ spinbutton:not(.vertical) button:hover {
+ color: #C3C7D1;
+ background-color: rgba(195, 199, 209, 0.05); }
+ spinbutton:not(.vertical) button:disabled {
+ color: rgba(109, 112, 123, 0.3); }
+ spinbutton:not(.vertical) button:active {
+ background-color: rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); }
+ spinbutton:not(.vertical) button:backdrop {
+ color: #656873;
+ background-color: transparent;
+ border-color: rgba(13, 16, 23, 0.12);
+ transition: 200ms ease-out; }
+ spinbutton:not(.vertical) button:backdrop:disabled {
+ color: rgba(51, 57, 85, 0.3);
+ background-image: none;
+ border-style: none none none solid;
+ box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); }
+ spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) {
+ border-style: none solid none none; }
+ spinbutton:not(.vertical) button:last-child {
+ border-top-right-radius: 2px;
+ border-bottom-right-radius: 2px; }
+
+.osd spinbutton:not(.vertical) button {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #fefefe;
+ border-style: none none none solid;
+ border-color: rgba(0, 0, 0, 0.4);
+ border-radius: 0;
+ box-shadow: none;
+ -gtk-icon-shadow: 0 1px black; }
+ .osd spinbutton:not(.vertical) button:dir(rtl) {
+ border-style: none solid none none; }
+ .osd spinbutton:not(.vertical) button:hover {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.5);
+ background-color: rgba(254, 254, 254, 0.1);
+ -gtk-icon-shadow: 0 1px black;
+ box-shadow: none; }
+ .osd spinbutton:not(.vertical) button:backdrop {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.5);
+ -gtk-icon-shadow: none;
+ box-shadow: none; }
+ .osd spinbutton:not(.vertical) button:disabled {
+ background-color: transparent;
+ background-image: none;
+ background-color: #181b28;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.5);
+ -gtk-icon-shadow: none;
+ box-shadow: none; }
+ .osd spinbutton:not(.vertical) button:last-child {
+ border-radius: 0 3px 3px 0; }
+ .osd spinbutton:not(.vertical) button:dir(rtl):first-child {
+ border-radius: 3px 0 0 3px; }
+
+spinbutton.vertical:disabled {
+ color: #6d707b; }
+
+spinbutton.vertical:backdrop:disabled {
+ color: #333955; }
+
+spinbutton.vertical:drop(active) {
+ border-color: transparent;
+ box-shadow: none; }
+
+spinbutton.vertical entry {
+ min-height: 32px;
+ min-width: 32px;
+ padding: 0;
+ border-radius: 0; }
+
+spinbutton.vertical button {
+ min-height: 32px;
+ min-width: 32px;
+ padding: 0;
+ border-width: 1px;
+ border-color: rgba(12, 14, 21, 0.8);
+ box-shadow: 0 1px rgba(255, 255, 255, 0.1); }
+
+spinbutton.vertical button.up {
+ border-radius: 3px 3px 0 0;
+ border-style: solid solid none solid; }
+
+spinbutton.vertical button.down {
+ border-radius: 0 0 3px 3px;
+ border-style: none solid solid solid; }
+
+.osd spinbutton.vertical button:first-child {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd spinbutton.vertical button:first-child:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd spinbutton.vertical button:first-child:active {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ .osd spinbutton.vertical button:first-child:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+ .osd spinbutton.vertical button:first-child:backdrop {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(20, 23, 26, 0.8), rgba(20, 23, 26, 0.8));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+treeview spinbutton:not(.vertical) {
+ min-height: 0;
+ border-style: none;
+ border-radius: 0; }
+ treeview spinbutton:not(.vertical) entry {
+ min-height: 0;
+ padding: 1px 2px; }
+
+/***********
+ * Spinner *
+ ***********/
+menu spinner {
+ color: #c50ed2; }
+
+/*********************
+ * Spinner Animation *
+ *********************/
+@keyframes spin {
+ to {
+ -gtk-icon-transform: rotate(1turn); } }
+
+spinner {
+ background: none;
+ opacity: 0;
+ -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
+ spinner:checked {
+ opacity: 1;
+ animation: spin 1s linear infinite; }
+ spinner:checked:disabled {
+ opacity: 0.5; }
+
+/**********
+ * Switch *
+ **********/
+switch {
+ font-size: 1px;
+ font-weight: bold;
+ outline-offset: -4px;
+ transition: all 200ms ease-in;
+ border: none;
+ border-radius: 14px;
+ color: transparent;
+ padding: 2.3px 0px;
+ background: linear-gradient(to right, #859398, #859398); }
+ switch:disabled {
+ background-color: #171a26; }
+ switch:backdrop {
+ background-color: #161925;
+ transition: 200ms ease-out; }
+ switch:backdrop:disabled {
+ background-color: #171a26; }
+ switch:active, switch:checked {
+ background: linear-gradient(to right, #ff9200, #fadd00); }
+ switch:active slider, switch:checked slider {
+ background: #fff; }
+ switch:active:backdrop, switch:checked:backdrop {
+ background: linear-gradient(to right, #e68300, #e1c600); }
+ switch:active:backdrop slider:backdrop, switch:checked:backdrop slider:backdrop {
+ box-shadow: none;
+ background-color: rgba(24, 27, 40, 0.9);
+ border: none; }
+ switch slider {
+ padding: 2px;
+ margin: 0 2.3px;
+ min-width: 12px;
+ min-height: 12px;
+ border-radius: 100%;
+ transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ background-color: #bcc4c7; }
+ switch slider:backdrop {
+ padding: 2px;
+ box-shadow: none;
+ background-color: #181b28; }
+ switch trough:active, switch trough:checked {
+ background-color: #c50ed2; }
+ switch trough:active:backdrop, switch trough:checked:backdrop {
+ background-color: rgba(197, 14, 210, 0.6); }
+
+/************
+ * Toolbars *
+ ************/
+toolbar, .inline-toolbar, searchbar,
+.location-bar {
+ -GtkWidget-window-dragging: true;
+ padding: 4px;
+ background-color: #161925; }
+
+toolbar {
+ padding: 4px 3px 3px 4px; }
+ .osd toolbar {
+ background-color: transparent; }
+ toolbar.osd {
+ padding: 13px;
+ border: none;
+ border-radius: 5px;
+ background-color: rgba(20, 23, 26, 0.8); }
+ toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom {
+ border-radius: 0; }
+ toolbar.horizontal separator {
+ margin: 0 7px 1px 6px; }
+ toolbar.vertical separator {
+ margin: 6px 1px 7px 0; }
+ toolbar:not(.inline-toolbar):not(.osd) switch,
+ toolbar:not(.inline-toolbar):not(.osd) scale,
+ toolbar:not(.inline-toolbar):not(.osd) entry,
+ toolbar:not(.inline-toolbar):not(.osd) spinbutton,
+ toolbar:not(.inline-toolbar):not(.osd) button {
+ margin-right: 1px;
+ margin-bottom: 1px; }
+
+.inline-toolbar {
+ padding: 3px;
+ border-width: 0 1px 1px;
+ border-radius: 0 0 5px 5px; }
+
+searchbar,
+.location-bar {
+ border-width: 0 0 1px;
+ padding: 3px; }
+
+.inline-toolbar, searchbar,
+.location-bar {
+ border-style: solid;
+ border-color: rgba(12, 14, 21, 0.8);
+ background-color: rgba(20, 23, 33, 0.94); }
+ .inline-toolbar:backdrop, searchbar:backdrop,
+ .location-bar:backdrop {
+ border-color: rgba(13, 16, 23, 0.82);
+ background-color: rgba(20, 23, 33, 0.937);
+ box-shadow: none;
+ transition: 200ms ease-out; }
+
+searchbar {
+ background: #181b28; }
+
+/************
+ * Tooltips *
+ ************/
+tooltip {
+ padding: 4px;
+ /* not working */
+ border-radius: 5px;
+ box-shadow: none;
+ text-shadow: 0 1px black; }
+ tooltip.background {
+ background-color: rgba(0, 0, 0, 0.8);
+ background-clip: padding-box;
+ border: 1px solid rgba(255, 255, 255, 0.1); }
+ tooltip decoration {
+ background-color: transparent; }
+ tooltip * {
+ padding: 4px;
+ background-color: transparent;
+ color: white; }
+
+/**************
+ * Tree Views *
+ **************/
+treeview.view {
+ border-left-color: #6d717d;
+ border-top-color: #161925; }
+ * {
+ -GtkTreeView-horizontal-separator: 4;
+ -GtkTreeView-grid-line-width: 1;
+ -GtkTreeView-grid-line-pattern: '';
+ -GtkTreeView-tree-line-width: 1;
+ -GtkTreeView-tree-line-pattern: '';
+ -GtkTreeView-expander-size: 16; }
+ treeview.view:selected:focus, treeview.view:selected {
+ border-radius: 0; }
+ treeview.view:selected:backdrop, treeview.view:selected {
+ border-left-color: #e286e8;
+ border-top-color: rgba(195, 199, 209, 0.1); }
+ treeview.view:disabled {
+ color: #6d707b; }
+ treeview.view:disabled:selected {
+ color: #dc6ee4; }
+ treeview.view:disabled:selected:backdrop {
+ color: rgba(204, 44, 216, 0.85); }
+ treeview.view:disabled:backdrop {
+ color: #333955; }
+ treeview.view.separator {
+ min-height: 2px;
+ color: #161925; }
+ treeview.view.separator:backdrop {
+ color: rgba(22, 25, 37, 0.1); }
+ treeview.view:backdrop {
+ border-left-color: #424550;
+ border-top: #161925; }
+ treeview.view:drop(active) {
+ border-style: solid none;
+ border-width: 1px;
+ border-color: #980ba2; }
+ treeview.view:drop(active).after {
+ border-top-style: none; }
+ treeview.view:drop(active).before {
+ border-bottom-style: none; }
+ treeview.view.expander {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
+ color: #90939e; }
+ treeview.view.expander:dir(rtl) {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
+ treeview.view.expander:hover {
+ color: #C3C7D1; }
+ treeview.view.expander:selected {
+ color: #edb6f1; }
+ treeview.view.expander:selected:hover {
+ color: #fefefe; }
+ treeview.view.expander:selected:backdrop {
+ color: rgba(222, 119, 229, 0.65); }
+ treeview.view.expander:checked {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
+ treeview.view.expander:backdrop {
+ color: #545763; }
+ treeview.view.progressbar {
+ border: 1px solid #980ba2;
+ border-radius: 4px;
+ background-color: #c50ed2;
+ background-image: linear-gradient(to bottom, #c50ed2, #980ba2);
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.1); }
+ treeview.view.progressbar:selected:focus, treeview.view.progressbar:selected {
+ border-radius: 4px;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
+ background-image: linear-gradient(to bottom, #181b28, #050608); }
+ treeview.view.progressbar:selected:focus:backdrop, treeview.view.progressbar:selected:backdrop {
+ border-color: #1a1d2b;
+ background-color: #1a1d2b; }
+ treeview.view.progressbar:backdrop {
+ border-color: #1a1d2b;
+ background-image: none;
+ box-shadow: none; }
+ treeview.view.trough {
+ background-color: rgba(195, 199, 209, 0.1);
+ border-radius: 4px; }
+ treeview.view.trough:selected:focus, treeview.view.trough:selected {
+ background-color: #980ba2;
+ border-radius: 4px; }
+ treeview.view header button {
+ color: #6d717d;
+ background-color: #181b28;
+ font-weight: bold;
+ text-shadow: none;
+ box-shadow: none; }
+ treeview.view header button:hover {
+ color: #989ca7;
+ box-shadow: none;
+ transition: none; }
+ treeview.view header button:active {
+ color: #C3C7D1;
+ transition: none; }
+ treeview.view header button:last-child:backdrop, treeview.view header button:last-child {
+ border-right-style: none; }
+ treeview.view button.dnd:active, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd,
+ treeview.view header.button.dnd:active,
+ treeview.view header.button.dnd:selected,
+ treeview.view header.button.dnd:hover,
+ treeview.view header.button.dnd {
+ padding: 0 6px;
+ transition: none;
+ background-image: none;
+ background-color: #c50ed2;
+ color: #181b28;
+ border-radius: 0;
+ border-style: none;
+ box-shadow: inset 0 0 0 1px #181b28;
+ text-shadow: none; }
+ treeview.view acceleditor > label {
+ background-color: #c50ed2; }
+
+treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
+ padding: 0 6px;
+ border-radius: 0;
+ background-image: none;
+ text-shadow: none;
+ border-width: 1px;
+ border-style: none solid solid none;
+ border-color: #161925; }
+ treeview.view header button:disabled {
+ border-color: #161925;
+ background-image: none; }
+ treeview.view header button:backdrop {
+ border-color: #161925;
+ border-style: none solid solid none;
+ color: #424550;
+ background-image: none;
+ background-color: #1a1d2b; }
+ treeview.view header button:backdrop:disabled {
+ border-color: #161925;
+ background-image: none; }
+
+/**********************
+ * Window Decorations *
+ *********************/
+decoration {
+ border-radius: 4px 4px 0 0;
+ border-width: 0px;
+ border-width: 0px;
+ box-shadow: 0 4px 10px 2px rgba(33, 26, 30, 0.4);
+ margin: 10px; }
+ decoration:backdrop {
+ box-shadow: 0 4px 10px 2px rgba(33, 26, 30, 0.2);
+ transition: 200ms ease-out; }
+ .maximized decoration,
+ .fullscreen decoration,
+ .tiled decoration {
+ border-radius: 0; }
+ .popup decoration {
+ box-shadow: none; }
+ .ssd decoration {
+ box-shadow: none; }
+ .csd.popup decoration {
+ border-radius: 0;
+ box-shadow: 0 4px 8px transparent;
+ border: 1px solid rgba(12, 14, 21, 0.8); }
+ tooltip.csd decoration {
+ border-radius: 5px;
+ box-shadow: none; }
+ messagedialog.csd decoration {
+ border-radius: 7px;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(12, 14, 21, 0.6); }
+ .solid-csd decoration {
+ border-radius: 0;
+ margin: 4px;
+ background-color: #161925;
+ border: solid 1px rgba(13, 16, 23, 0.82);
+ box-shadow: none; }
+
+button.titlebutton {
+ background-repeat: no-repeat;
+ background-position: center;
+ min-height: 20px;
+ padding: 0 1px;
+ box-shadow: none; }
+ button.titlebutton.close {
+ background-image: -gtk-scaled(url("../assets/close.png"), url("../assets/close@2.png")); }
+ button.titlebutton.close:hover, button.titlebutton.close:active {
+ background-image: -gtk-scaled(url("../assets/close_prelight.png"), url("../assets/close_prelight@2.png")); }
+ button.titlebutton.maximize {
+ background-image: -gtk-scaled(url("../assets/maximize.png"), url("../assets/maximize@2.png")); }
+ button.titlebutton.maximize:hover, button.titlebutton.maximize:active {
+ background-image: -gtk-scaled(url("../assets/maximize_prelight.png"), url("../assets/maximize_prelight@2.png")); }
+ button.titlebutton.minimize {
+ background-image: -gtk-scaled(url("../assets/min.png"), url("../assets/min@2.png")); }
+ button.titlebutton.minimize:hover, button.titlebutton.minimize:active {
+ background-image: -gtk-scaled(url("../assets/min_prelight.png"), url("../assets/min_prelight@2.png")); }
+ button.titlebutton:backdrop {
+ -gtk-icon-shadow: none;
+ background-image: -gtk-scaled(url("../assets/close_unfocused.png"), url("../assets/close_unfocused@2.png")); }
+
+headerbar.selection-mode button.titlebutton,
+.titlebar.selection-mode button.titlebutton {
+ text-shadow: 0 -1px rgba(0, 0, 0, 0.648627);
+ -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.648627); }
+ headerbar.selection-mode button.titlebutton:backdrop,
+ .titlebar.selection-mode button.titlebutton:backdrop {
+ -gtk-icon-shadow: none; }
+
+.view:selected:focus, .view:selected, iconview:selected, .view text:selected, iconview text:selected,
+textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection,
+textview text selection:focus,
+textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected,
+popover.background radiobutton:selected,
+.menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
+entry selection:focus,
+entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected {
+ background-color: #c50ed2; }
+ row:selected label, label:selected, .selection-mode button.titlebutton, .view:selected:focus, .view:selected, iconview:selected, .view text:selected, iconview text:selected,
+ textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection,
+ textview text selection:focus,
+ textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected,
+ popover.background radiobutton:selected,
+ .menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
+ entry selection:focus,
+ entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected {
+ color: #fefefe;
+ font-weight: bold; }
+ row:selected label:disabled, label:disabled:selected, .selection-mode button.titlebutton:disabled, iconview:disabled:selected:focus, .view:disabled:selected, iconview:disabled:selected, iconview text:disabled:selected:focus,
+ textview text:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected,
+ textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled,
+ textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, modelbutton.flat:disabled:selected, popover.background checkbutton:disabled:selected,
+ popover.background radiobutton:disabled:selected,
+ .menuitem.button.flat:disabled:selected, calendar:disabled:selected, spinbutton:not(.vertical) selection:disabled:focus, spinbutton:not(.vertical) selection:disabled,
+ entry selection:disabled, row:disabled:selected {
+ color: #e286e8; }
+ row:selected label:backdrop, label:backdrop:selected, .selection-mode button.titlebutton:backdrop, iconview:backdrop:selected:focus, .view:backdrop:selected, iconview:backdrop:selected, iconview text:backdrop:selected:focus,
+ textview text:backdrop:selected:focus, .view text:backdrop:selected, iconview text:backdrop:selected,
+ textview text:backdrop:selected, iconview text selection:backdrop:focus, .view text selection:backdrop, iconview text selection:backdrop,
+ textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, modelbutton.flat:backdrop:selected, popover.background checkbutton:backdrop:selected,
+ popover.background radiobutton:backdrop:selected,
+ .menuitem.button.flat:backdrop:selected, calendar:backdrop:selected, spinbutton:not(.vertical) selection:backdrop:focus, spinbutton:not(.vertical) selection:backdrop,
+ entry selection:backdrop, row:backdrop:selected {
+ color: rgba(254, 254, 254, 0.5); }
+ row:selected label:backdrop:disabled, label:backdrop:disabled:selected, .selection-mode button.titlebutton:backdrop:disabled, .view:backdrop:disabled:selected, iconview:backdrop:disabled:selected, .view text:backdrop:disabled:selected, iconview text:backdrop:disabled:selected,
+ textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, iconview text selection:backdrop:disabled,
+ textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selection:disabled, modelbutton.flat:backdrop:disabled:selected, popover.background checkbutton:backdrop:disabled:selected,
+ popover.background radiobutton:backdrop:disabled:selected,
+ .menuitem.button.flat:backdrop:disabled:selected, calendar:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled,
+ entry selection:backdrop:disabled, row:backdrop:disabled:selected {
+ color: rgba(204, 44, 216, 0.85); }
+
+.monospace {
+ font-family: Monospace; }
+
+/**********************
+ * DE-Specific Styles *
+ **********************/
+/*********
+* Budgie *
+*********/
+.budgie-container {
+ background-color: transparent; }
+ .budgie-container:backdrop {
+ background-color: transparent; }
+ .budgie-container popover list,
+ .budgie-container popover row {
+ border: none;
+ background: none;
+ padding: 0;
+ margin: 0; }
+
+.budgie-popover .container,
+.budgie-popover border,
+.budgie-popover list,
+.budgie-popover row {
+ padding: 0;
+ margin: 0;
+ background: none;
+ border: none;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ opacity: 1;
+ min-width: 0;
+ min-height: 0; }
+
+.budgie-popover,
+.budgie-popover.background {
+ border-radius: 2px;
+ padding: 0;
+ background: #0c0e14;
+ background-clip: border-box;
+ box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.35);
+ border: 1px solid #030305; }
+ .budgie-popover list:hover,
+ .budgie-popover row:hover,
+ .budgie-popover.background list:hover,
+ .budgie-popover.background row:hover {
+ background: none; }
+ .budgie-popover > frame.container,
+ .budgie-popover.background > frame.container {
+ margin: 0 -1px -1px;
+ padding: 2px 0 0; }
+ .budgie-popover button,
+ .budgie-popover.background button {
+ color: #C3C7D1;
+ border: none;
+ background: transparent; }
+ .budgie-popover button:hover,
+ .budgie-popover.background button:hover {
+ color: #c50ed2; }
+
+.budgie-popover > .container {
+ padding: 2px; }
+
+.budgie-menu {
+ color: #C3C7D1; }
+ .budgie-menu .container {
+ padding: 0; }
+ .budgie-menu button:hover {
+ -gtk-icon-effect: none; }
+ .budgie-menu entry.search {
+ border: none;
+ background: none;
+ padding: 5px 2px;
+ border-bottom: 1px solid #030305;
+ border-radius: 0;
+ font-size: 120%;
+ box-shadow: none;
+ color: #C3C7D1; }
+ .budgie-menu entry.search image:dir(ltr) {
+ padding-left: 8px;
+ padding-right: 12px; }
+ .budgie-menu entry.search image:dir(rtl) {
+ padding-left: 12px;
+ padding-right: 8px; }
+ .budgie-menu .categories {
+ border-width: 0;
+ margin-left: 3px;
+ background: transparent; }
+ .budgie-menu .categories:dir(ltr) {
+ border-right: 1px solid #030305; }
+ .budgie-menu .categories:dir(rtl) {
+ border-left: 1px solid #030305; }
+ .budgie-menu .category-button {
+ padding: 7px;
+ border-radius: 2px 0 0 2px; }
+ .budgie-menu .category-button:hover {
+ background-color: rgba(195, 199, 209, 0.05);
+ color: #C3C7D1; }
+ .budgie-menu .category-button:active {
+ box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); }
+ .budgie-menu .category-button:checked {
+ color: #fefefe;
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .budgie-menu .category-button:checked:hover {
+ color: rgba(254, 254, 254, 0.9); }
+ .budgie-menu .category-button:checked:disabled {
+ opacity: 0.5; }
+ .budgie-menu .category-button:checked:disabled label {
+ color: rgba(254, 254, 254, 0.7); }
+ .budgie-menu scrollbar {
+ background-color: transparent;
+ border-color: #030305; }
+ .budgie-menu button:not(.category-button) {
+ padding-top: 5px;
+ padding-bottom: 5px;
+ border-radius: 0;
+ box-shadow: none;
+ background: yellow; }
+ .budgie-menu button {
+ border: none;
+ background: transparent; }
+ .budgie-menu undershoot, .budgie-menu overshoot {
+ background: none; }
+ .budgie-menu list {
+ color: rgba(195, 199, 209, 0.7); }
+
+button.budgie-menu-launcher {
+ padding: 0 2px;
+ color: #C3C7D1;
+ box-shadow: none;
+ background-color: transparent; }
+ button.budgie-menu-launcher:hover {
+ color: #C3C7D1; }
+ button.budgie-menu-launcher:active, button.budgie-menu-launcher:checked {
+ color: #C3C7D1; }
+ button.budgie-menu-launcher:backdrop {
+ color: #C3C7D1;
+ background-color: transparent; }
+ button.budgie-menu-launcher:backdrop:hover {
+ color: #C3C7D1; }
+ button.budgie-menu-launcher:backdrop:active, button.budgie-menu-launcher:backdrop:checked {
+ color: #c50ed2;
+ box-shadow: none;
+ background-color: #181b28; }
+
+.user-menu .content-box separator {
+ margin-left: 6px;
+ margin-right: 6px;
+ background-color: rgba(195, 199, 209, 0.1); }
+
+.user-menu button {
+ margin: 5px; }
+
+.user-menu > box.vertical row.activatable:first-child .indicator-item,
+.user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item {
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
+ background-color: #c50ed2;
+ transition-duration: 0.2s; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(ltr),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(ltr) {
+ padding-left: 7px;
+ background-position: left center;
+ background-repeat: no-repeat;
+ background-size: 38px auto; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(rtl),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(rtl) {
+ padding-right: 7px;
+ background-position: right center;
+ background-repeat: no-repeat;
+ background-size: 38px auto; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item label,
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label {
+ color: #fefefe; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(ltr),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(ltr) {
+ padding-left: 5px; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(rtl),
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(rtl) {
+ padding-right: 5px; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item image,
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image {
+ color: #fefefe; }
+ .user-menu > box.vertical row.activatable:first-child .indicator-item image:first-child,
+ .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image:first-child {
+ min-width: 24px;
+ min-height: 20px; }
+
+button.raven-trigger {
+ padding-left: 2px;
+ padding-right: 2px;
+ color: #C3C7D1;
+ box-shadow: none; }
+ button.raven-trigger:hover {
+ color: #C3C7D1;
+ background-color: transparent; }
+ button.raven-trigger:active, button.raven-trigger:checked {
+ box-shadow: none;
+ background-color: transparent;
+ color: #c50ed2; }
+ button.raven-trigger:backdrop {
+ color: #C3C7D1; }
+ button.raven-trigger:backdrop:hover {
+ color: #C3C7D1; }
+ button.raven-trigger:backdrop:active, button.raven-trigger:backdrop:checked {
+ box-shadow: none;
+ color: #c50ed2;
+ background-color: transparent; }
+
+.places-menu .container {
+ padding: 0; }
+
+.places-menu .message-bar {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px; }
+
+.places-menu .name-button {
+ border: 0;
+ border-radius: 0;
+ padding: 4px 6px; }
+
+.places-menu .unmount-button {
+ padding: 4px 4px;
+ border: 0;
+ border-radius: 0; }
+
+.places-menu .places-section-header {
+ padding: 0px;
+ border-bottom: 1px solid rgba(3, 3, 5, 0.95);
+ box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.03); }
+
+.places-menu .places-section-header > button {
+ padding: 8px;
+ border: none;
+ border-bottom-left-radius: 0px;
+ border-bottom-right-radius: 0px; }
+
+.places-menu .places-list {
+ background: rgba(195, 199, 209, 0.04);
+ border-bottom: 1px solid rgba(3, 3, 5, 0.95); }
+
+.places-menu .unlock-area {
+ border-top: 1px solid rgba(3, 3, 5, 0.85);
+ border-bottom: 1px solid rgba(3, 3, 5, 0.85); }
+
+.places-menu .unlock-area entry {
+ border-radius: 0;
+ border: 0; }
+
+.places-menu .unlock-area button {
+ border-radius: 0;
+ border: 0;
+ border-left: 1px solid rgba(3, 3, 5, 0.85); }
+
+.places-menu .alternative-label {
+ font-size: 15px;
+ padding: 3px; }
+
+.places-menu .always-expand {
+ background: transparent;
+ border-bottom: none; }
+
+.night-light-indicator .container {
+ padding: 0; }
+
+.night-light-indicator .view-header {
+ font-size: 14px;
+ padding: 10px;
+ border-bottom: 1px solid mix(@theme_base_color, #000000, 0.35);;
+ box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.04);; }
+
+.night-light-indicator .display-settings-button {
+ border-top-left-radius: 0px;
+ border-top-right-radius: 0px;
+ border: none;
+ padding: 3px;
+ border-top: 1px solid mix(@theme_base_color, #000000, 0.35);;
+ box-shadow: inset 0px 1px 1px alpha(@theme_fg_color, 0.04);; }
+
+.budgie-panel {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.95);
+ background-image: none;
+ box-shadow: none;
+ border: none;
+ transition: all 150ms ease-in; }
+ .budgie-panel .alert {
+ color: #ed254e; }
+ .budgie-panel:backdrop {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.95); }
+ .budgie-panel button {
+ border-top-width: 0;
+ border-bottom-width: 0;
+ border-radius: 0; }
+ .budgie-panel button.flat {
+ background: transparent;
+ border: 1px solid rgba(3, 3, 5, 0.95); }
+ .budgie-panel button.flat:hover, .budgie-panel button.flat:active, .budgie-panel button.flat:checked {
+ background: transparent;
+ color: #c50ed2; }
+ .budgie-panel popover list,
+ .budgie-panel popover row {
+ padding: 0;
+ margin: 0; }
+ .budgie-panel label {
+ color: #C3C7D1;
+ font-weight: 700; }
+ .budgie-panel.transparent {
+ background-color: transparent; }
+ .top .budgie-panel.transparent {
+ border-bottom-color: transparent; }
+ .bottom .budgie-panel.transparent {
+ border-top-color: transparent; }
+ .left .budgie-panel.transparent {
+ border-right-color: transparent; }
+ .right .budgie-panel.transparent {
+ border-left-color: transparent; }
+ .budgie-panel .end-region {
+ border-radius: 0px; }
+ .budgie-panel .end-region separator {
+ background-color: rgba(195, 199, 209, 0.15); }
+ .budgie-panel .end-region label {
+ font-weight: 700;
+ color: #C3C7D1; }
+
+.budgie-panel #tasklist-button,
+.budgie-panel #tasklist-button:backdrop {
+ outline-color: transparent;
+ transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ border-color: rgba(3, 3, 5, 0);
+ border-radius: 0;
+ background-color: transparent;
+ box-shadow: none;
+ background-clip: padding-box; }
+
+.budgie-panel button.flat.launcher {
+ outline-color: transparent;
+ transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
+ border-color: rgba(3, 3, 5, 0);
+ border-radius: 0;
+ padding: 0;
+ background-clip: padding-box;
+ background-color: transparent; }
+ .budgie-panel button.flat.launcher {
+ box-shadow: none; }
+
+.budgie-panel #tasklist-button:hover, .budgie-panel .unpinned button.flat.launcher:hover,
+.budgie-panel .pinned button.flat.launcher.running:hover {
+ box-shadow: none; }
+
+.budgie-panel #tasklist-button:active, .budgie-panel .unpinned button.flat.launcher:active,
+.budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel #tasklist-button:checked, .budgie-panel .unpinned button.flat.launcher:checked,
+.budgie-panel .pinned button.flat.launcher.running:checked {
+ box-shadow: none; }
+
+.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher,
+.top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running {
+ padding-bottom: 2px;
+ border-top: 2px solid transparent; }
+ .top .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-top: 2px solid transparent; }
+ .top .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-top: 2px solid rgba(255, 255, 255, 0.1); }
+ .top .budgie-panel .unpinned button.flat.launcher,
+ .top .budgie-panel .pinned button.flat.launcher.running {
+ border-top: 2px solid rgba(255, 255, 255, 0.1); }
+ .top .budgie-panel #tasklist-button:hover, .budgie-panel .top #tasklist-button:hover, .top .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .top button.flat.launcher:hover,
+ .top .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .top button.flat.launcher.running:hover {
+ border-top: 2px solid rgba(255, 255, 255, 0.25); }
+ .top .budgie-panel #tasklist-button:active, .budgie-panel .top #tasklist-button:active, .top .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .top button.flat.launcher:active,
+ .top .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .top button.flat.launcher.running:active, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .top button.flat.launcher:checked,
+ .top .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .top button.flat.launcher.running:checked {
+ border-top: 2px solid #c50ed2; }
+
+.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher,
+.bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running {
+ padding-top: 2px;
+ border-bottom: 2px solid transparent; }
+ .bottom .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-bottom: 2px solid transparent; }
+ .bottom .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-bottom: 2px solid rgba(255, 255, 255, 0.1); }
+ .bottom .budgie-panel .unpinned button.flat.launcher,
+ .bottom .budgie-panel .pinned button.flat.launcher.running {
+ border-bottom: 2px solid rgba(255, 255, 255, 0.1); }
+ .bottom .budgie-panel #tasklist-button:hover, .budgie-panel .bottom #tasklist-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .bottom button.flat.launcher:hover,
+ .bottom .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .bottom button.flat.launcher.running:hover {
+ border-bottom: 2px solid rgba(255, 255, 255, 0.25); }
+ .bottom .budgie-panel #tasklist-button:active, .budgie-panel .bottom #tasklist-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .bottom button.flat.launcher:active,
+ .bottom .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .bottom button.flat.launcher.running:active, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .bottom button.flat.launcher:checked,
+ .bottom .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .bottom button.flat.launcher.running:checked {
+ border-bottom: 2px solid #c50ed2; }
+
+.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher,
+.left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running {
+ padding-right: 2px;
+ border-left: 2px solid transparent; }
+ .left .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-left: 2px solid transparent; }
+ .left .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-left: 2px solid rgba(255, 255, 255, 0.1); }
+ .left .budgie-panel .unpinned button.flat.launcher,
+ .left .budgie-panel .pinned button.flat.launcher.running {
+ border-left: 2px solid rgba(255, 255, 255, 0.1); }
+ .left .budgie-panel #tasklist-button:hover, .budgie-panel .left #tasklist-button:hover, .left .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .left button.flat.launcher:hover,
+ .left .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .left button.flat.launcher.running:hover {
+ border-left: 2px solid rgba(255, 255, 255, 0.25); }
+ .left .budgie-panel #tasklist-button:active, .budgie-panel .left #tasklist-button:active, .left .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .left button.flat.launcher:active,
+ .left .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .left button.flat.launcher.running:active, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .left button.flat.launcher:checked,
+ .left .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .left button.flat.launcher.running:checked {
+ border-left: 2px solid #c50ed2; }
+
+.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher,
+.right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running {
+ padding-left: 2px;
+ border-right: 2px solid transparent; }
+ .right .budgie-panel .pinned button.flat.launcher:not(.running) {
+ border-right: 2px solid transparent; }
+ .right .budgie-panel .pinned button.flat.launcher:not(.running):hover {
+ border-right: 2px solid rgba(255, 255, 255, 0.1); }
+ .right .budgie-panel .unpinned button.flat.launcher,
+ .right .budgie-panel .pinned button.flat.launcher.running {
+ border-right: 2px solid rgba(255, 255, 255, 0.1); }
+ .right .budgie-panel #tasklist-button:hover, .budgie-panel .right #tasklist-button:hover, .right .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .right button.flat.launcher:hover,
+ .right .budgie-panel .pinned button.flat.launcher.running:hover, .budgie-panel .pinned .right button.flat.launcher.running:hover {
+ border-right: 2px solid rgba(255, 255, 255, 0.25); }
+ .right .budgie-panel #tasklist-button:active, .budgie-panel .right #tasklist-button:active, .right .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .right button.flat.launcher:active,
+ .right .budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel .pinned .right button.flat.launcher.running:active, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .right button.flat.launcher:checked,
+ .right .budgie-panel .pinned button.flat.launcher.running:checked, .budgie-panel .pinned .right button.flat.launcher.running:checked {
+ border-right: 2px solid #c50ed2; }
+
+.top .budgie-panel {
+ border-bottom: 1px solid rgba(3, 3, 5, 0.92); }
+
+.top .raven-frame {
+ padding: 0;
+ background: none; }
+ .top .raven-frame border {
+ border: none;
+ border-bottom: 1px solid rgba(3, 3, 5, 0.92); }
+
+.top .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); }
+
+.bottom .budgie-panel {
+ border-top: 1px solid rgba(3, 3, 5, 0.92); }
+
+.bottom .raven-frame {
+ padding: 0;
+ background: none; }
+ .bottom .raven-frame border {
+ border: none;
+ border-top: 1px solid rgba(3, 3, 5, 0.92); }
+
+.bottom .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); }
+
+.left .budgie-panel {
+ border-right: 1px solid rgba(3, 3, 5, 0.92); }
+
+.left .raven-frame {
+ padding: 0;
+ background: none; }
+ .left .raven-frame border {
+ border: none;
+ border-right: 1px solid rgba(3, 3, 5, 0.92); }
+
+.left .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); }
+
+.right .budgie-panel {
+ border-left: 1px solid rgba(3, 3, 5, 0.92); }
+
+.right .raven-frame {
+ padding: 0;
+ background: none; }
+ .right .raven-frame border {
+ border: none;
+ border-left: 1px solid rgba(3, 3, 5, 0.92); }
+
+.right .shadow-block {
+ background-color: transparent;
+ background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); }
+
+.raven {
+ padding: 0;
+ color: #C3C7D1;
+ background: #0c0e14;
+ transition: 170ms ease-out; }
+ .raven .raven-header {
+ min-height: 32px;
+ color: #C3C7D1;
+ border: solid rgba(3, 3, 5, 0.95);
+ border-width: 1px 0;
+ background-color: rgba(9, 10, 15, 0.45); }
+ .raven .raven-header * {
+ padding-top: 0;
+ padding-bottom: 0; }
+ .raven .raven-header.top {
+ border-top-style: none;
+ border-color: transparent;
+ margin-top: 3px;
+ min-height: 32px; }
+ .raven .raven-header.top button.image-button:hover {
+ color: #af0cba;
+ box-shadow: none; }
+ .raven .raven-header > button.text-button {
+ border-radius: 2px;
+ color: #fefefe;
+ background-color: rgba(230, 19, 62, 0.9);
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); }
+ .raven .raven-header > button.text-button:hover {
+ border-radius: 2px;
+ color: #fefefe;
+ background-color: rgba(237, 37, 78, 0.9);
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); }
+ .raven .raven-header > button.text-button:active {
+ color: #fefefe;
+ background-color: rgba(239, 61, 97, 0.9);
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); }
+ .raven .raven-header.bottom {
+ border-bottom-style: none; }
+ .raven .raven-header button {
+ color: #8b8b8b;
+ text-shadow: none;
+ box-shadow: none;
+ background: transparent;
+ border: none;
+ border-radius: 0; }
+ .raven .raven-header button:hover {
+ color: #c50ed2;
+ border-radius: 0;
+ text-shadow: none;
+ border: none;
+ border-radius: 0; }
+ .raven .raven-header button:disabled {
+ color: #6d707b; }
+ .raven .raven-header button.text-button.radio {
+ margin: 5px 0px;
+ min-height: 20px;
+ padding: 3px; }
+ .raven .raven-header button.text-button.radio:active, .raven .raven-header button.text-button.radio:checked {
+ border-radius: 23px;
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
+ color: snow; }
+ .raven list {
+ color: #C3C7D1;
+ background-color: transparent; }
+ .raven list:selected {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .raven list row,
+ .raven list row.activatable {
+ background-color: transparent; }
+ .raven list row:hover,
+ .raven list row.activatable:hover {
+ background-color: rgba(32, 36, 53, 0.25); }
+ .raven list row:selected,
+ .raven list row.activatable:selected {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .raven .raven-background {
+ color: #C3C7D1;
+ background-color: transparent;
+ border-color: transparent; }
+ .raven .raven-background.middle {
+ border-bottom-style: none; }
+ .raven .powerstrip {
+ background-color: transparent;
+ border-top-color: transparent; }
+ .raven .powerstrip button.image-button {
+ border-radius: 50%;
+ padding: 5px;
+ min-width: 32px;
+ min-height: 32px;
+ margin-bottom: 3px;
+ background: #c74ded;
+ color: #fefefe;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
+ border: none;
+ font-size: 100%; }
+ .raven .powerstrip button.image-button:hover {
+ background: rgba(199, 77, 237, 0.85);
+ color: #fefefe; }
+ .raven .powerstrip button.image-button:active {
+ background: #c74ded;
+ color: #fefefe; }
+ .raven .powerstrip button.image-button:first-child {
+ background: linear-gradient(to right, #654ea3 0%, #eaafc8 100%); }
+ .raven .powerstrip button.image-button:first-child:hover {
+ background: rgba(197, 14, 210, 0.85); }
+ .raven .powerstrip button.image-button:first-child:active {
+ background: #c50ed2; }
+ .raven .powerstrip button.image-button:last-child {
+ background: linear-gradient(to right, #FF416C, #FF4B2B); }
+ .raven .powerstrip button.image-button:last-child:hover {
+ background: rgba(237, 37, 78, 0.85); }
+ .raven .powerstrip button.image-button:last-child:active {
+ background: #ed254e; }
+ .raven .option-subtitle {
+ font-size: 13px; }
+
+calendar.raven-calendar {
+ padding: 6px;
+ color: #C3C7D1;
+ background: transparent;
+ border-color: transparent; }
+ calendar.raven-calendar:indeterminate {
+ color: alpha(currentColor,0.3); }
+ calendar.raven-calendar:selected {
+ background: transparent;
+ color: #b30dbf;
+ font-weight: bold; }
+ calendar.raven-calendar:backdrop {
+ background-color: transparent; }
+ calendar.raven-calendar.header {
+ color: #C3C7D1;
+ border: none;
+ border-radius: 0;
+ background-color: transparent; }
+ calendar.raven-calendar button, calendar.raven-calendar button:focus {
+ color: alpha(currentColor,0.5);
+ background-color: transparent; }
+ calendar.raven-calendar button:hover, calendar.raven-calendar button:focus:hover {
+ color: #C3C7D1;
+ background-color: transparent; }
+
+.raven-mpris {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.9);
+ border: solid rgba(255, 255, 255, 0.1);
+ border-width: 1px 0;
+ border-bottom-color: rgba(0, 0, 0, 0.1); }
+ .raven-mpris button.image-button {
+ padding: 10px;
+ background-color: #181b28;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); }
+ .raven-mpris button.image-button:hover {
+ background-color: #c50ed2; }
+ .raven-mpris button.image-button:active {
+ background-color: #af0cba; }
+ .raven-mpris button.image-button:first-child {
+ margin-right: 4px; }
+ .raven-mpris button.image-button:last-child {
+ margin-left: 4px; }
+ .raven-mpris button.image-button:last-child, .raven-mpris button.image-button:first-child {
+ padding: 4px;
+ margin-top: 6px;
+ margin-bottom: 6px; }
+
+.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window {
+ background: none;
+ border-radius: 1px; }
+ .budgie-notification-window button, .budgie-osd-window button, .budgie-switcher-window button {
+ background-color: #c50ed2;
+ color: #fefefe;
+ border: none; }
+ .budgie-notification-window button:hover, .budgie-osd-window button:hover, .budgie-switcher-window button:hover {
+ background-color: #af0cba;
+ border: none; }
+ .budgie-notification-window button:active, .budgie-osd-window button:active, .budgie-switcher-window button:active, .budgie-notification-window button:checked, .budgie-osd-window button:checked, .budgie-switcher-window button:checked {
+ background-color: #af0cba; }
+
+.budgie-notification.background, .background.budgie-osd, .background.budgie-switcher {
+ border-radius: 1px; }
+
+.budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher .notification-title {
+ font-size: 110%;
+ color: #C3C7D1; }
+
+.budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher .notification-body {
+ color: rgba(195, 199, 209, 0.7); }
+
+.budgie-notification button, .budgie-osd button, .budgie-switcher button {
+ background-color: transparent;
+ color: #fefefe; }
+ .budgie-notification button:hover, .budgie-osd button:hover, .budgie-switcher button:hover {
+ background-color: transparent;
+ color: #ed254e;
+ box-shadow: none; }
+ .budgie-notification button:active, .budgie-osd button:active, .budgie-switcher button:active, .budgie-notification button:checked, .budgie-osd button:checked, .budgie-switcher button:checked {
+ background-color: transparent;
+ color: #e6133e; }
+
+.drop-shadow, .budgie-session-dialog.background, .background.budgie-polkit-dialog, .background.budgie-run-dialog {
+ color: #C3C7D1;
+ background-color: rgba(22, 25, 37, 0.95);
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
+ border-radius: 2px; }
+
+.budgie-switcher-window flowbox {
+ color: #C3C7D1; }
+
+.budgie-switcher-window flowboxchild {
+ padding: 3px;
+ margin: 3px;
+ color: #C3C7D1; }
+ .budgie-switcher-window flowboxchild:hover {
+ background-color: transparent; }
+ .budgie-switcher-window flowboxchild:active {
+ color: #C3C7D1; }
+ .budgie-switcher-window flowboxchild:selected {
+ color: #fefefe;
+ background-color: rgba(197, 14, 210, 0.5); }
+ .budgie-switcher-window flowboxchild:selected:active {
+ color: #fefefe; }
+ .budgie-switcher-window flowboxchild:selected:hover {
+ background-color: #b10dbd; }
+ .budgie-switcher-window flowboxchild:selected:disabled {
+ color: rgba(254, 254, 254, 0.7);
+ background-color: rgba(197, 14, 210, 0.7); }
+ .budgie-switcher-window flowboxchild:selected:disabled label {
+ color: rgba(254, 254, 254, 0.7); }
+
+.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog {
+ color: #C3C7D1;
+ background-color: rgba(3, 3, 5, 0.95); }
+ .budgie-session-dialog label:backdrop, .budgie-polkit-dialog label:backdrop, .budgie-run-dialog label:backdrop {
+ color: rgba(195, 199, 209, 0.8); }
+ .budgie-session-dialog .dialog-title, .budgie-polkit-dialog .dialog-title, .budgie-run-dialog .dialog-title {
+ font-size: 120%; }
+ .budgie-session-dialog .linked.horizontal > button, .budgie-polkit-dialog .linked.horizontal > button, .budgie-run-dialog .linked.horizontal > button {
+ margin-bottom: 0;
+ min-height: 32px;
+ border-bottom: none;
+ border-color: #030305;
+ border-radius: 0;
+ color: #fff;
+ background-color: transparent;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.2); }
+ .budgie-session-dialog .linked.horizontal > button label, .budgie-polkit-dialog .linked.horizontal > button label, .budgie-run-dialog .linked.horizontal > button label {
+ font-weight: 700; }
+ .budgie-session-dialog .linked.horizontal > button:first-child, .budgie-polkit-dialog .linked.horizontal > button:first-child, .budgie-run-dialog .linked.horizontal > button:first-child {
+ border-left: none;
+ border-bottom-left-radius: 2px; }
+ .budgie-session-dialog .linked.horizontal > button:last-child, .budgie-polkit-dialog .linked.horizontal > button:last-child, .budgie-run-dialog .linked.horizontal > button:last-child {
+ border-right: none;
+ border-bottom-right-radius: 2px; }
+ .budgie-session-dialog .linked.horizontal > button:hover, .budgie-polkit-dialog .linked.horizontal > button:hover, .budgie-run-dialog .linked.horizontal > button:hover {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button:hover:backdrop label, .budgie-polkit-dialog .linked.horizontal > button:hover:backdrop label, .budgie-run-dialog .linked.horizontal > button:hover:backdrop label {
+ color: rgba(255, 255, 255, 0.5); }
+ .budgie-session-dialog .linked.horizontal > button.suggested-action, .budgie-polkit-dialog .linked.horizontal > button.suggested-action, .budgie-run-dialog .linked.horizontal > button.suggested-action {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.suggested-action:hover, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:hover, .budgie-run-dialog .linked.horizontal > button.suggested-action:hover {
+ background-color: rgba(219, 16, 234, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.suggested-action:active, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:active, .budgie-run-dialog .linked.horizontal > button.suggested-action:active, .budgie-session-dialog .linked.horizontal > button.suggested-action:checked, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:checked, .budgie-run-dialog .linked.horizontal > button.suggested-action:checked {
+ background-color: rgba(219, 16, 234, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.destructive-action, .budgie-polkit-dialog .linked.horizontal > button.destructive-action, .budgie-run-dialog .linked.horizontal > button.destructive-action {
+ background-color: rgba(206, 17, 56, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.destructive-action:hover, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:hover, .budgie-run-dialog .linked.horizontal > button.destructive-action:hover {
+ background-color: rgba(230, 19, 62, 0.9); }
+ .budgie-session-dialog .linked.horizontal > button.destructive-action:active, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:active, .budgie-run-dialog .linked.horizontal > button.destructive-action:active, .budgie-session-dialog .linked.horizontal > button.destructive-action:checked, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:checked, .budgie-run-dialog .linked.horizontal > button.destructive-action:checked {
+ background-color: rgba(230, 19, 62, 0.9); }
+ .budgie-session-dialog entry, .budgie-polkit-dialog entry, .budgie-run-dialog entry {
+ background-color: #505359;
+ color: #C3C7D1; }
+ .budgie-session-dialog entry:focus, .budgie-polkit-dialog entry:focus, .budgie-run-dialog entry:focus {
+ background-color: #505359; }
+ .budgie-session-dialog entry:backdrop, .budgie-polkit-dialog entry:backdrop, .budgie-run-dialog entry:backdrop {
+ background-color: #505359; }
+
+.budgie-polkit-dialog .message {
+ color: rgba(195, 199, 209, 0.7); }
+
+.budgie-polkit-dialog .failure {
+ color: #ed254e; }
+
+.budgie-run-dialog entry.search, .budgie-run-dialog entry.search:focus {
+ font-size: 120%;
+ padding: 8px 5px;
+ border: none;
+ box-shadow: none; }
+ .budgie-run-dialog entry.search image, .budgie-run-dialog entry.search:focus image {
+ color: #C3C7D1; }
+ .budgie-run-dialog entry.search image:dir(ltr), .budgie-run-dialog entry.search:focus image:dir(ltr) {
+ padding-left: 8px;
+ padding-right: 12px; }
+ .budgie-run-dialog entry.search image:dir(rtl), .budgie-run-dialog entry.search:focus image:dir(rtl) {
+ padding-left: 12px;
+ padding-right: 8px; }
+
+.budgie-run-dialog list row:selected .dim-label, .budgie-run-dialog list row:selected label.separator, .budgie-run-dialog list row:selected .titlebar .subtitle, .titlebar .budgie-run-dialog list row:selected .subtitle,
+.budgie-run-dialog list row:selected headerbar .subtitle, headerbar .budgie-run-dialog list row:selected .subtitle {
+ opacity: 1; }
+
+.budgie-run-dialog scrolledwindow {
+ border-top: 1px solid rgba(0, 0, 0, 0); }
+
+.budgie-menubar menu {
+ margin: 4px;
+ padding: 5px;
+ border-radius: 0;
+ background-color: rgba(3, 3, 5, 0.95); }
+ .budgie-menubar menu menuitem:hover {
+ background-color: #c50ed2;
+ color: #fefefe; }
+
+.budgie-menubar arrow {
+ border: none;
+ min-width: 16px;
+ min-height: 16px; }
+ .budgie-menubar arrow.top {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
+ border-bottom: 1px solid rgba(42, 45, 57, 0.928); }
+ .budgie-menubar arrow.bottom {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
+ border-top: 1px solid rgba(42, 45, 57, 0.928); }
+
+.budgie-menubar menuitem accelerator {
+ color: rgba(195, 199, 209, 0.35); }
+
+.budgie-menubar menuitem check, .budgie-menubar menuitem radio {
+ min-height: 16px;
+ min-width: 16px; }
+
+window.background.budgie-settings-window.csd > box.horizontal > stack > scrolledwindow buttonbox.inline-toolbar {
+ border-style: none none solid; }
+
+/************
+ * Nautilus *
+ ************/
+.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop {
+ background: transparent;
+ color: #c50ed2; }
+ .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label {
+ color: #c50ed2; }
+
+.nautilus-window paned > separator {
+ background-image: none; }
+
+.nautilus-window .sidebar {
+ background-color: transparent; }
+ .nautilus-window .sidebar:backdrop {
+ background-color: transparent; }
+ .nautilus-window .sidebar .list-row button {
+ border: none;
+ background-color: rgba(18, 21, 31, 0.95); }
+ .nautilus-window .sidebar .list-row button:active {
+ background-color: rgba(197, 14, 210, 0.75); }
+ .nautilus-window .sidebar .list-row:selected {
+ background-color: rgba(197, 14, 210, 0.75); }
+ .nautilus-window .sidebar .list-row:selected:hover {
+ background-color: rgba(197, 14, 210, 0.9); }
+ .nautilus-window .sidebar .list-row:hover {
+ background-color: rgba(24, 27, 40, 0.5); }
+ .nautilus-window .sidebar .list-row:hover:active {
+ background-color: rgba(197, 14, 210, 0.9); }
+
+.nautilus-window.background {
+ background-color: rgba(18, 21, 31, 0.95); }
+ .nautilus-window.background:backdrop {
+ background-color: rgba(18, 21, 31, 0.95); }
+
+.nautilus-window notebook > stack:only-child {
+ background-color: #181b28; }
+ .nautilus-window notebook > stack:only-child:backdrop {
+ background-color: #1a1d2b; }
+
+.nautilus-window searchbar {
+ border-top: 1px solid rgba(0, 0, 0, 0.12); }
+
+.nautilus-window .searchbar-container {
+ margin-top: -1px; }
+
+.nautilus-window .titlebar .path-bar-box .dim-label, .nautilus-window .titlebar .path-bar-box label.separator, .nautilus-window .titlebar .path-bar-box .subtitle {
+ color: transparent; }
+
+.nautilus-window .titlebar .path-bar-box button:active, .nautilus-window .titlebar .path-bar-box button:checked {
+ border-radius: 23px;
+ background: linear-gradient(to right, #c50ed2, #8500f7);
+ box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
+ color: #fafafa; }
+ .nautilus-window .titlebar .path-bar-box button:active:backdrop, .nautilus-window .titlebar .path-bar-box button:checked:backdrop {
+ color: #f0f0f0; }
+ .nautilus-window .titlebar .path-bar-box button:active:backdrop label, .nautilus-window .titlebar .path-bar-box button:checked:backdrop label {
+ color: #f0f0f0; }
+
+.nautilus-window .titlebar .linked button:active, .nautilus-window .titlebar .linked button:checked, .nautilus-window .titlebar .linked button:active:backdrop, .nautilus-window .titlebar .linked button:checked:backdrop {
+ background: transparent;
+ color: #c50ed2;
+ box-shadow: none;
+ border: none; }
+
+.nautilus-circular-button {
+ border-radius: 20px;
+ -gtk-outline-radius: 20px; }
+
+.disk-space-display {
+ border: 2px solid; }
+ .disk-space-display .unknown {
+ background-color: #888a85;
+ border-color: #555653; }
+ .disk-space-display .used {
+ background-color: #9FB0B9;
+ border-color: #667f8c; }
+ .disk-space-display .free {
+ background-color: #D8D8D8;
+ border-color: #a5a5a5; }
+
+.nautilus-desktop {
+ color: #C3C7D1; }
+ .nautilus-desktop .nautilus-canvas-item {
+ border-radius: 5px;
+ color: #fefefe;
+ text-shadow: 1px 1px rgba(0, 0, 0, 0.6); }
+ .nautilus-desktop .nautilus-canvas-item:active {
+ color: #C3C7D1;
+ text-shadow: none; }
+ .nautilus-desktop .nautilus-canvas-item:hover {
+ color: #C3C7D1;
+ text-shadow: none; }
+ .nautilus-desktop .nautilus-canvas-item:selected {
+ color: #fefefe;
+ text-shadow: none; }
+ .nautilus-desktop .nautilus-canvas-item .dim-label:selected, .nautilus-desktop .nautilus-canvas-item label.separator:selected, .nautilus-desktop .nautilus-canvas-item .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-canvas-item .subtitle:selected,
+ .nautilus-desktop .nautilus-canvas-item headerbar .subtitle:selected, headerbar .nautilus-desktop .nautilus-canvas-item .subtitle:selected {
+ color: #fefefe; }
+ .nautilus-desktop .nautilus-list .dim-label:selected, .nautilus-desktop .nautilus-list label.separator:selected, .nautilus-desktop .nautilus-list .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-list .subtitle:selected,
+ .nautilus-desktop .nautilus-list headerbar .subtitle:selected, headerbar .nautilus-desktop .nautilus-list .subtitle:selected {
+ color: #fefefe; }
+
+/*********
+ * Gedit *
+ *********/
+.gedit-search-slider {
+ padding: 4px;
+ border-radius: 0 0 3px 3px;
+ border: 0;
+ background-color: #161925; }
+
+.xfce4-panel.panel {
+ background-color: #181b28;
+ color: #C3C7D1; }
+
+/********
+ * Gala *
+ *******/
+.gala-notification {
+ border-width: 0;
+ border-radius: 2px;
+ color: white;
+ border: 1px solid #181b28;
+ background-color: #181b28; }
+ .gala-notification .title,
+ .gala-notification .label {
+ color: #C3C7D1; }
+
+.gala-button {
+ padding: 3px;
+ color: #181b28;
+ border: none;
+ border-radius: 50%;
+ background-image: linear-gradient(to bottom, #7e7e7e, #3e3e3e);
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.98), inset 0 1px 0 0 rgba(255, 255, 255, 0.93), inset 0 -1px 0 0 rgba(255, 255, 255, 0.99), 0 0 0 1px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.84), 0 3px 6px rgba(0, 0, 0, 0.77);
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
+
+/**********
+ * Notify *
+ *********/
+.notify {
+ /*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/
+ border-radius: 5px;
+ border: 1px solid rgba(0, 0, 0, 0.7);
+ background-color: rgba(24, 27, 40, 0.05); }
+
+/***************
+ * SwitchBoard *
+ ***************/
+.category-label {
+ font-weight: bold;
+ color: #C3C7D1; }
+
+/*************
+ * Slingshot *
+ ************/
+.button.app {
+ border: none;
+ border-radius: 0;
+ box-shadow: none;
+ background-image: none; }
+ .button.app .app:hover {
+ border-radius: 8px;
+ border: none;
+ background-color: rgba(197, 14, 210, 0.3);
+ color: white; }
+ .button.app .app:focus {
+ /*background-color: transparentize(black, 0.20);*/ }
+
+.search-item {
+ border-radius: 0;
+ border: none;
+ color: #C3C7D1;
+ background: none; }
+ .search-item:hover, .search-item:focus {
+ border-radius: 0;
+ background-color: rgba(197, 14, 210, 0.3);
+ color: #fefefe; }
+
+.search-entry-large,
+.search-entry-large:focus {
+ border: none;
+ font-size: 18px;
+ font-weight: 300;
+ background-image: none;
+ background: none;
+ box-shadow: none;
+ border-radius: 0; }
+
+.search-category-header {
+ font-weight: bold;
+ color: #C3C7D1; }
+
+/*********
+ * Panel *
+ ********/
+.panel {
+ background-color: transparent;
+ transition: all 100ms ease-in-out; }
+ .panel.maximized {
+ background-color: #000; }
+ .panel.translucent {
+ background-color: rgba(0, 0, 0, 0.5); }
+
+menubar.panel,
+.panel menubar {
+ box-shadow: none;
+ border: none; }
+
+.composited-indicator > revealer,
+.composited-indicator > revealer image,
+.composited-indicator > revealer label,
+.composited-indicator > revealer spinner {
+ color: #fff;
+ font-weight: bold;
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5);
+ transition: all 200ms ease-in-out;
+ -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); }
+
+.composited-indicator > revealer image:first-child + label {
+ margin-left: 5px; }
+
+.panel.color-light .composited-indicator > revealer,
+.panel.color-light .composited-indicator > revealer image,
+.panel.color-light .composited-indicator > revealer label,
+.panel.color-light .composited-indicator > revealer spinner {
+ color: rgba(0, 0, 0, 0.6);
+ text-shadow: 0 1px rgba(255, 255, 255, 0.1);
+ -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.1); }
+
+/**************
+ * Calculator *
+ **************/
+PantheonCalculatorMainWindow {
+ border-radius: 0 0 4px 4px; }
+ PantheonCalculatorMainWindow .window-frame {
+ border-radius: 3px; }
+
+/*********
+ * Cards *
+ *********/
+.deck {
+ background-color: #07080b; }
+
+.card {
+ background-color: #181b28;
+ border: none;
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.2);
+ transition: all 150ms ease-in-out; }
+
+.card.collapsed {
+ background-color: #0e1018;
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.2); }
+
+/*********
+ * Noise *
+ *********/
+NoiseLibraryWindow {
+ border-radius: 0 0 4px 4px; }
+ NoiseLibraryWindow .action-bar {
+ border-radius: 0 0 4px 4px; }
+ NoiseLibraryWindow .window-frame {
+ border-radius: 3px; }
+
+/********
+ * Snap *
+ ********/
+SnapMainWindow .take-button,
+SnapSnapWindow .take-button {
+ border-radius: 0; }
+
+/*******************
+ * Photos/Shotwell *
+ *******************/
+DirectWindow .the-button-in-the-combobox,
+LibraryWindow .the-button-in-the-combobox {
+ background: none; }
+
+.checkerboard-layout {
+ background-color: #161925;
+ background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1));
+ background-size: 24px 24px;
+ background-position: 0 0, 12px 12px; }
+
+.checkboard-layout .item {
+ background-color: #C3C7D1; }
+
+/*********
+* Avatar *
+*********/
+.avatar {
+ border: 1px solid rgba(0, 0, 0, 0.23);
+ border-radius: 50%;
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.23); }
+
+/********
+* Unity *
+*********/
+/* Unity window border color */
+/* Unity window text color */
+/* Backdrop Unity window text color */
+/* Unity panel color #454D50 */
+UnityDecoration {
+ /* Border properties (top, right, bottom, left) */
+ -UnityDecoration-extents: 28px 1px 1px 1px;
+ /* the size of the decorations */
+ -UnityDecoration-input-extents: 10px;
+ /* the extra size of the input areas */
+ /* Shadows settings */
+ -UnityDecoration-shadow-offset-x: 1px;
+ /* Size property, the shadow x offset */
+ -UnityDecoration-shadow-offset-y: 1px;
+ /* Size property, the shadow y offset */
+ -UnityDecoration-active-shadow-color: rgba 0, 0, 0, 0.647;
+ /* Color property, active window shadow color */
+ -UnityDecoration-active-shadow-radius: 8px;
+ /* Size property, active window shadow radius */
+ -UnityDecoration-inactive-shadow-color: rgba 0, 0, 0, 0.647;
+ /* Color property, inactive windows shadow color */
+ -UnityDecoration-inactive-shadow-radius: 5px;
+ /* Size property, inactive windows shadow radius */
+ /* Glow applied to the selected scaled window */
+ -UnityDecoration-glow-size: 8px;
+ /* Size property, size of glow */
+ -UnityDecoration-glow-color: #c50ed2;
+ /* Color property of the glow */
+ /* Title settings */
+ -UnityDecoration-title-indent: 10px;
+ /* Size property, left indent of the title */
+ -UnityDecoration-title-fade: 35px;
+ /* Size property, space of the title that can be faded */
+ -UnityDecoration-title-alignment: 0.0;
+ /* Float from 0.0 to 1.0, to align the title */
+ background-color: #eeeeee;
+ color: #31363D; }
+ UnityDecoration .top {
+ padding: 0 5px 0 5px;
+ border-radius: 4px 4px 0px 0px;
+ box-shadow: none;
+ border: 1px solid #eeeeee;
+ border-bottom-width: 0;
+ background-color: #eeeeee;
+ color: #31363D;
+ border-top: 1px solid rgba(255, 255, 255, 0.1); }
+ UnityDecoration .top:backdrop {
+ border-bottom-width: 0;
+ color: #1a1d21;
+ border-top: 1px solid rgba(255, 255, 255, 0.1); }
+ UnityDecoration .top .menuitem {
+ color: #31363D; }
+ UnityDecoration .top .menuitem:backdrop {
+ color: #1a1d21; }
+
+UnityDecoration.left,
+UnityDecoration.right {
+ background-repeat: repeat-x;
+ background-color: #ececec;
+ background-size: 1px 120px;
+ background-clip: border-box;
+ background-image: linear-gradient(to bottom, #eeeeee, #ececec); }
+
+UnityDecoration.bottom {
+ background-size: 1px;
+ background-repeat: repeat-x;
+ background-color: #ececec; }
+
+UnityDecoration.left:backdrop,
+UnityDecoration.right:backdrop,
+UnityDecoration.bottom:backdrop {
+ background-size: 1px;
+ background-repeat: repeat-x; }
+
+/**************
+* Unity Panel *
+***************/
+UnityPanelWidget,
+.unity-panel {
+ background-color: #d5d5d5;
+ color: #31363D; }
+
+UnityPanelWidget:backdrop,
+.unity-panel:backdrop {
+ color: #1a1d21; }
+
+.unity-panel.menuitem,
+.unity-panel .menuitem {
+ border-width: 0 1px;
+ color: #31363D; }
+
+.unity-panel.menubar,
+.unity-panel .menubar {
+ color: #31363D; }
+
+.unity-panel.menu.menubar,
+.unity-panel .menu .menubar {
+ background-color: #d5d5d5;
+ color: #31363D; }
+
+.unity-panel.menubar:backdrop,
+.unity-panel .menubar *:backdrop {
+ color: #6d707b; }
+
+.unity-panel.menubar.menuitem,
+.unity-panel.menubar .menuitem {
+ padding: 3px 5px;
+ border-width: 1px;
+ border-style: solid;
+ border: none;
+ background: none;
+ color: #31363D;
+ box-shadow: none; }
+
+.unity-panel.menubar.menuitem:hover,
+.unity-panel.menubar .menuitem:hover {
+ border-radius: 0;
+ background-color: #ebebeb;
+ color: #31363D;
+ box-shadow: none; }
+
+.unity-panel.menubar .menuitem *:hover {
+ color: white;
+ box-shadow: none; }
+
+.unity-panel.menubar .menuitem.separator,
+.unity-panel.menubar.menuitem.separator {
+ border: none;
+ color: rgba(12, 14, 21, 0.8); }
+
+/* Force Quit */
+SheetStyleDialog.unity-force-quit {
+ background-color: #181b28; }
+
+@keyframes playbackmenuitem_spinner {
+ to {
+ -gtk-icon-transform: rotate(1turn); } }
+
+.menu IdoPlaybackMenuItem.menuitem:active {
+ -gtk-icon-source: -gtk-icontheme("process-working-symbolic");
+ animation: playbackmenuitem_spinner 1s infinite linear;
+ color: #c50ed2; }
+
+/***********************
+ * App-Specific Styles *
+ ***********************/
+/*********
+ * Geary *
+ *********/
+.geary-titlebar-left .separator,
+.geary-titlebar-right .separator {
+ opacity: 0; }
+
+ConversationListView {
+ -GtkTreeView-grid-line-width: 0; }
+ ConversationListView .view:active, ConversationListView iconview:active, ConversationListView .view:selected, ConversationListView iconview:selected {
+ background-color: #c50ed2;
+ color: #fefefe; }
+ ConversationListView .view:active:backdrop, ConversationListView iconview:active:backdrop, ConversationListView .view:selected:backdrop, ConversationListView iconview:selected:backdrop {
+ background-color: rgba(197, 14, 210, 0.6);
+ color: rgba(254, 254, 254, 0.5); }
+ ConversationListView .view .cell, ConversationListView iconview .cell {
+ border: solid rgba(0, 0, 0, 0.2);
+ border-width: 0 0 1px 0; }
+ ConversationListView .view .cell:selected, ConversationListView iconview .cell:selected {
+ color: #fefefe;
+ border: 0px solid #980ba2; }
+
+/***********
+ * LightDm *
+ ***********/
+#panel_window {
+ background-color: rgba(0, 0, 0, 0.7);
+ color: white;
+ font-weight: bold;
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.7); }
+ #panel_window .menubar,
+ #panel_window .menubar > .menuitem menubar,
+ #panel_window menubar > menuitem {
+ background-color: transparent;
+ color: white;
+ font-weight: bold; }
+ #panel_window .menubar .menuitem:disabled,
+ #panel_window menubar menuitem:disabled {
+ color: rgba(255, 255, 255, 0.5); }
+ #panel_window .menubar .menuitem:disabled GtkLabel,
+ #panel_window menubar menuitem:disabled GtkLabel {
+ color: inherit; }
+ #panel_window .menubar .menuitem:disabled label,
+ #panel_window menubar menuitem:disabled label {
+ color: inherit; }
+ #panel_window .menubar .menu > .menuitem,
+ #panel_window menubar menu > menuitem {
+ font-weight: normal; }
+
+#login_window,
+#shutdown_dialog,
+#restart_dialog {
+ font-weight: normal;
+ border-style: none;
+ background-color: transparent;
+ color: #C3C7D1; }
+
+#content_frame {
+ padding-bottom: 14px;
+ background-color: #161925;
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ border: solid rgba(0, 0, 0, 0.1);
+ border-width: 1px 1px 0 1px; }
+
+#content_frame button {
+ font-weight: bold;
+ color: #C3C7D1;
+ background-color: #181b28;
+ text-shadow: none; }
+ #content_frame button:hover {
+ color: #C3C7D1;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #181b28;
+ text-shadow: none; }
+ #content_frame button:active, #content_frame button:checked {
+ color: #C3C7D1;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #c50ed2;
+ text-shadow: none; }
+ #content_frame button:disabled {
+ color: #a1a5b0;
+ outline-color: rgba(195, 199, 209, 0.3);
+ background-color: #171a26;
+ text-shadow: none; }
+
+#buttonbox_frame {
+ padding-top: 20px;
+ padding-bottom: 0px;
+ border-style: none;
+ background-color: #161925;
+ border-bottom-left-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border: solid rgba(0, 0, 0, 0.1);
+ border-width: 0 1px 1px 1px; }
+
+#buttonbox_frame button {
+ color: #fefefe;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-color: rgba(20, 23, 26, 0.8);
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ #buttonbox_frame button:hover {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(47, 54, 61, 0.8), rgba(47, 54, 61, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: 0 1px black;
+ -gtk-icon-shadow: 0 1px black;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ #buttonbox_frame button:active, #buttonbox_frame button:checked {
+ color: white;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(33, 38, 43, 0.8), rgba(33, 38, 43, 0.8));
+ background-clip: padding-box;
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
+ text-shadow: none;
+ -gtk-icon-shadow: none;
+ outline-color: rgba(254, 254, 254, 0.3); }
+ #buttonbox_frame button:disabled {
+ color: #898b8c;
+ border-color: rgba(0, 0, 0, 0.7);
+ background-image: linear-gradient(to bottom, rgba(43, 46, 49, 0.5), rgba(43, 46, 49, 0.5));
+ background-clip: padding-box;
+ box-shadow: none;
+ text-shadow: none;
+ -gtk-icon-shadow: none; }
+
+#login_window #user_combobox {
+ color: #C3C7D1;
+ font-size: 13px; }
+ #login_window #user_combobox .menu,
+ #login_window #user_combobox menu {
+ font-weight: normal; }
+
+#user_image {
+ padding: 3px;
+ border-radius: 2px; }
+
+#greeter_infobar {
+ border-bottom-width: 0;
+ font-weight: bold; }
diff --git a/gtk/themes/Sweet-Dark/index.theme b/gtk/themes/Sweet-Dark/index.theme
new file mode 100755
index 0000000..2e4cdce
--- /dev/null
+++ b/gtk/themes/Sweet-Dark/index.theme
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=X-GNOME-Metatheme
+Name=Sweet
+Comment=Light and dark colorful Gtk3.20+ theme
+Encoding=UTF-8
+
+[X-GNOME-Metatheme]
+GtkTheme=Sweet
+MetacityTheme=Sweet
+IconTheme=Boston
+ButtonLayout=:minimize,maximize,close
diff --git a/scripts/texclear b/scripts/tex-clean
similarity index 98%
rename from scripts/texclear
rename to scripts/tex-clean
index 9afb630..65dfb1b 100755
--- a/scripts/texclear
+++ b/scripts/tex-clean
@@ -6,7 +6,7 @@
ext_list="/home/kevin/linux-config/txt/tex-build-files.txt"
raw_exts="$(tr '\n' '|' < $ext_list)"
exts="(${raw_exts::-1})"
-echo "$exts"
+# echo "$exts"
find_flags=(-maxdepth 1 -type f -regextype gnu-awk -regex)
remove_build_files () {
diff --git a/setup.sh b/setup.sh
index 3684114..c4a477c 100755
--- a/setup.sh
+++ b/setup.sh
@@ -1,70 +1,69 @@
#!/bin/bash
-# setup_marble=true
-
# vars {{{ #
-linux_config_dir=/home/kevin/linux-config
-dot_dir=$linux_config_dir/dotfiles
-config_dir=$linux_config_dir/configs
-sys_config_dir=~/.config
+shopt -s dotglob
-# }}} vars #
+lc_dir="/home/kevin/linux-config"
-# dotfiles {{{ #
+link_to_lc () {
+ echo "Linking $1 from $3 to $2."
+ sys_dir="$2"
+ config_dir="$3"
+ case "$1" in
-# link files {{{ #
+# }}} vars #
-# Get directory variables from script.
-# List of dotfiles I want to link to system.
-dotfiles=(bashrc gitconfig inputrc imwheelrc vimrc xinitrc Xmodmap Xresources zshrc)
-cd $dot_dir || exit
-for dotfile in "${dotfiles[@]}"; do
- # Remove system dotfile.
- rm ~/."$dotfile"
- # Link dotfile in repository to system dotfile.
- ln -s "$dot_dir"/"$dotfile" ~/."$dotfile" && echo "Linked .$dotfile."
-done
+ # files {{{ #
+
+ files)
+ for file in "$config_dir"/*; do
+ file_name=$(basename -- "$file")
+ # echo "$file_name"
+ # Remove system file and link config in repository to system.
+ rm -f "${sys_dir:?}"/"$file_name"
+ ln -s "$config_dir"/"$file_name" "$sys_dir"/"$file_name" && echo "Linked $file_name."
+ done ;;
+
+ # }}} files #
-# }}} link files #
+ # dirs {{{ #
+
+ dirs)
+ for dir in "$config_dir"/*/; do
+ dir_name=$(basename -- "$dir")
+ # echo "$dir_name"
+ rm -f "${sys_dir:?}"/"$dir_name"
+ ln -s "$config_dir"/"$dir_name" "$sys_dir"/"$dir_name" && echo "Linked $dir_name."
+ done ;;
+
+ # }}} dirs #
-# setup nvim config {{{ #
+# run commands {{{ #
-orig_file="$sys_config_dir"/nvim/init.vim
-# Remove system dotfile.
-rm "$orig_file"
-# Link dotfile in repository to system dotfile.
-ln -s "$dot_dir"/nvim "$orig_file" && echo "Setup Neovim config."
+ esac
+}
-# }}} setup nvim config #
+link_to_lc "files" "$HOME" "$lc_dir/dotfiles"
+link_to_lc "dirs" "$HOME/.config" "$lc_dir/configs"
+link_to_lc "dirs" "$HOME/.themes" "$lc_dir/gtk/themes"
-# }}} dotfiles #
+# }}} run #
-# configs {{{ #
+# setup nvim config {{{ #
-cd $linux_config_dir || exit
-# List of config dirs in system config dir that I want to link to.
-config_dirs=(neofetch i3 i3blocks sam-i3blocks ranger)
-for cur_dir in "${config_dirs[@]}"; do
- # Remove system file.
- rm -rf ${sys_config_dir:?}/"$cur_dir"
- # Link config file in repository to system config location.
- ln -s "$config_dir"/"$cur_dir" "$sys_config_dir"/"$cur_dir" && echo "Linked $cur_dir config."
-done
+# nvim_file="/home/kevin/lc-test/init.vim"
+nvim_file="$HOME/.config/nvim/init.vim"
+rm "$nvim_file"
+ln -s "$HOME/.nvim" "$nvim_file" && echo "Setup Neovim config."
-# }}} configs #
+# }}} setup nvim config #
-# # marble mouse {{{ #
+# testing {{{ #
-# if [[ "$setup_marble" = true ]]; then
- # config_file_name="10-evdev.conf"
- # sys_layout_file="/etc/X11/xorg.conf.d/$config_file_name"
- # config_dir="$linux_config_dir/x/marble-mouse"
+# link_to_lc "files" "/home/kevin/lc-test" "$lc_dir/dotfiles"
+# link_to_lc "dirs" "/home/kevin/lc-test" "$lc_dir/configs"
+# link_to_lc "dirs" "/home/kevin/lc-test" "$lc_dir/gtk/themes"
- # # Remove system file.
- # sudo rm -rf "$sys_layout_file"
- # # Link config file in repository to system config location.
- # sudo ln -s "$config_dir"/"$config_file_name" "$sys_layout_file" && echo "Setup Marble mouse config."
-# fi
+# }}} testing #
-# # }}} marble mouse #
diff --git a/txt/key_dirs.txt b/txt/key_dirs.txt
index 8f8cb70..c9f2a41 100644
--- a/txt/key_dirs.txt
+++ b/txt/key_dirs.txt
@@ -1,11 +1,11 @@
# sys {{{ *
bg /home/kevin/Pictures/Backgrounds
-co /home/kevin/.config
+cn /home/kevin/.config
lc /home/kevin/linux-config/
d /home/kevin/Downloads
D /home/kevin/Documents
-ho /home/kevin/
+k /home/kevin/
lc /home/kevin/linux-config/
m /run/media
o /
@@ -14,7 +14,7 @@ o /
# cdn {{{ *
-cd /home/kevin/coding
+co /home/kevin/coding
j /home/kevin/Documents/journal
ib /home/kevin/linux-config/configs/i3blocks-scripts
ra /home/kevin/linux-config/configs/ranger
diff --git a/txt/pacman-pkgs/pacman-pkgs.txt b/txt/pacman-pkgs/pacman-pkgs.txt
index e593b8b..545a9b0 100644
--- a/txt/pacman-pkgs/pacman-pkgs.txt
+++ b/txt/pacman-pkgs/pacman-pkgs.txt
@@ -32,6 +32,7 @@ linux-firmware
linux-headers
lolcat
lsof
+lxappearance
make
neofetch
neovim