fixed broken theming

master
_N0x 7 months ago
parent 2dedc8ed32
commit 2a2a0fc409

@ -1,3 +1,5 @@
# See dunst(5) for all configuration options
[global]
### Display ###
@ -17,40 +19,66 @@
# will be ignored.
follow = mouse
# The geometry of the window:
# [{width}]x{height}[+/-{x}+/-{y}]
# The geometry of the message window.
# The height is measured in number of notifications everything else
# in pixels. If the width is omitted but the height is given
# ("-geometry x2"), the message window expands over the whole screen
# (dmenu-like). If width is 0, the window expands to the longest
# message displayed. A positive x is measured from the left, a
# negative from the right side of the screen. Y is measured from
# the top and down respectively.
# The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option.
geometry = "0x0-5+27"
### Geometry ###
# Show how many messages are currently hidden (because of geometry).
# dynamic width from 0 to 300
# width = (0, 300)
# constant width of 300
width = 0
# The maximum height of a single notification, excluding the frame.
height = 300
# Position the notification in the top right corner
origin = top-right
# Offset from the origin
offset = 15x48
# Scale factor. It is auto-detected if value is 0.
scale = 0
# Maximum number of notification (0 means no limit)
notification_limit = 20
### Progress bar ###
# Turn on the progess bar. It appears when a progress hint is passed with
# for example dunstify -h int:value:12
progress_bar = true
# Set the progress bar height. This includes the frame, so make sure
# it's at least twice as big as the frame width.
progress_bar_height = 10
# Set the frame width of the progress bar
progress_bar_frame_width = 1
# Set the minimum width for the progress bar
progress_bar_min_width = 150
# Set the maximum width for the progress bar
progress_bar_max_width = 300
# Corner radius for the progress bar. 0 disables rounded corners.
progress_bar_corner_radius = 0
# Corner radius for the icon image.
icon_corner_radius = 0
# Show how many messages are currently hidden (because of
# notification_limit).
indicate_hidden = yes
# Shrink window if it's smaller than the width. Will be ignored if
# width is 0.
shrink = no
# The transparency of the window. Range: [0; 100].
# This option will only work if a compositing window manager is
# present (e.g. xcompmgr, compiz, etc.).
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
transparency = 0
# The height of the entire notification. If the height is smaller
# than the font height and padding combined, it will be raised
# to the font height and padding.
notification_height = 0
# Draw a line of "separator_height" pixel height between two
# notifications.
# Set to 0 to disable.
# If gap_size is greater than 0, this setting will be ignored.
separator_height = 2
# Padding between text and separator.
@ -59,6 +87,9 @@
# Horizontal padding.
horizontal_padding = 8
# Padding between text and icon.
text_icon_padding = 0
# Defines width in pixels of frame around the notification window.
# Set to 0 to disable.
frame_width = 5
@ -66,6 +97,12 @@
# Defines color of the frame around the notification window.
frame_color = "#8FBCBB"
# Size of gap to display between notifications - requires a compositor.
# If value is greater than 0, separator_height will be ignored and a border
# of size frame_width will be drawn around each notification instead.
# Click events on gaps do not currently propagate to applications below.
gap_size = 0
# Define a color for the separator.
# possible values are:
# * auto: dunst tries to find a color fitting to the background;
@ -82,7 +119,7 @@
# Set to 0 to disable.
# A client can set the 'transient' hint to bypass this. See the rules
# section for how to disable this if necessary
idle_threshold = 120
# idle_threshold = 120
### Text ###
@ -100,7 +137,7 @@
# <u>underline</u>
#
# For a complete reference see
# <https://developer.gnome.org/pango/stable/pango-Markup.html>.
# <https://docs.gtk.org/Pango/pango_markup.html>.
#
# strip: This setting is provided for compatibility with some broken
# clients that send markup even though it's not enabled on the
@ -130,7 +167,7 @@
# Alignment of message text.
# Possible values are "left", "center" and "right".
alignment = center
alignment = center
# Vertical alignment of message text and icon.
# Possible values are "top", "center" and "bottom".
@ -141,11 +178,7 @@
# Set to -1 to disable.
show_age_threshold = 60
# Split notifications into multiple lines if they don't fit into
# geometry.
word_wrap = yes
# When word_wrap is set to no, specify where to make an ellipsis in long lines.
# Specify where to make an ellipsis in long lines.
# Possible values are "start", "middle" and "end".
ellipsize = middle
@ -163,18 +196,27 @@
### Icons ###
# Align icons left/right/off
# Recursive icon lookup. You can set a single theme, instead of having to
# define all lookup paths.
enable_recursive_icon_lookup = true
# Set icon theme (only used for recursive icon lookup)
icon_theme = Adwaita
# You can also set multiple icon themes, with the leftmost one being used first.
# icon_theme = "Adwaita, breeze"
# Align icons left/right/top/off
icon_position = left
# Scale small icons up to this size, set to 0 to disable. Helpful
# for e.g. small files or high-dpi screens. In case of conflict,
# max_icon_size takes precedence over this.
min_icon_size = 0
min_icon_size = 32
# Scale larger icons down to this size, set to 0 to disable
max_icon_size = 32
max_icon_size = 128
# Paths to default icons.
# Paths to default icons (only neccesary when not using recursive icon lookup)
icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
### History ###
@ -203,20 +245,6 @@
# Define the class of the windows spawned by dunst
class = Dunst
# Print a notification on startup.
# This is mainly for error detection, since dbus (re-)starts dunst
# automatically after a crash.
startup_notification = false
# Manage dunst's desire for talking
# Can be one of the following values:
# crit: Critical features. Dunst aborts
# warn: Only non-fatal warnings
# mesg: Important Messages
# info: all unimportant stuff
# debug: all less than unimportant stuff
verbosity = mesg
# Define the corner radius of the notification window
# in pixel size. If the radius is 0, you have no rounded
# corners.
@ -226,10 +254,20 @@
# Ignore the dbus closeNotification message.
# Useful to enforce the timeout set by dunst configuration. Without this
# parameter, an application may close the notification sent before the
# parameter, an application may close the notification sent before the
# user defined timeout.
ignore_dbusclose = false
### Wayland ###
# These settings are Wayland-specific. They have no effect when using X11
# Uncomment this if you want to let notications appear under fullscreen
# applications (default: overlay)
# layer = top
# Set this to true to use X11 output on Wayland.
force_xwayland = false
### Legacy
# Use the Xinerama extension instead of RandR for multi-monitor support.
@ -247,10 +285,14 @@
# Defines list of actions for each mouse event
# Possible values are:
# * none: Don't do anything.
# * do_action: If the notification has exactly one action, or one is marked as default,
# invoke it. If there are multiple and no default, open the context menu.
# * do_action: Invoke the action determined by the action_name rule. If there is no
# such action, open the context menu.
# * open_url: If the notification has exactly one url, open it. If there are multiple
# ones, open the context menu.
# * close_current: Close current notification.
# * close_all: Close all notifications.
# * context: Open context menu for the notification.
# * context_all: Open context menu for all notifications.
# These values can be strung together for each mouse event, and
# will be executed in sequence.
mouse_left_click = close_current
@ -267,27 +309,6 @@
# where there are multiple screens with very different dpi values.
per_monitor_dpi = false
[shortcuts]
# Shortcuts are specified as [modifier+][modifier+]...key
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
# "mod3" and "mod4" (windows-key).
# Xev might be helpful to find names for keys.
# Close notification.
close = ctrl+space
# Close all notifications.
close_all = ctrl+shift+space
# Redisplay last message(s).
# On the US keyboard layout "grave" is normally above TAB and left
# of "1". Make sure this key actually exists on your keyboard layout,
# e.g. check output of 'xmodmap -pke'
history = ctrl+dead_circumflex
# Context menu.
context = ctrl+shift+degree
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
@ -336,8 +357,17 @@
# new_icon
# set_stack_tag
# set_transient
# set_category
# timeout
# urgency
# icon_position
# skip_display
# history_ignore
# action_name
# word_wrap
# ellipsize
# alignment
# hide_text
#
# Shell-like globbing will get expanded.
#
@ -352,8 +382,6 @@
# script appname summary body icon urgency
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
#
# NOTE: if you don't want a notification to be displayed, set the format
# to "".
# NOTE: It might be helpful to run dunst -print in a terminal in order
# to find fitting options for rules.
@ -392,7 +420,7 @@
#[ignore]
# # This notification will not be displayed
# summary = "foobar"
# format = ""
# skip_display = true
#[history-ignore]
# # This notification will not be saved in history
@ -428,4 +456,4 @@
# appname = "some_volume_notifiers"
# set_stack_tag = "volume"
#
# vim: ft=cfg
# vim: ft=cfg

@ -2,6 +2,7 @@ if [ -z "$DISPLAY" ] && [ (fgconsole) -eq 1 ];
startx
end
# uncomment to automatically start tmux
if status is-interactive
and not set -q TMUX
exec tmux
@ -52,3 +53,8 @@ end
function hvd
command nmcli connection down "HP VPN"
end
function nv
command nvim $argv
end

@ -0,0 +1,6 @@
file:///home/n0x/Documents Documents
file:///home/n0x/Downloads Downloads
file:///home/n0x/Nextcloud Nextcloud
file:///home/n0x/Pictures Pictures
file:///home/n0x/Videos Videos
file:///home/n0x/Workspace Workspace

@ -0,0 +1,15 @@
[Settings]
gtk-application-prefer-dark-theme=true
gtk-button-images=true
gtk-cursor-theme-name=Adwaita
gtk-cursor-theme-size=24
gtk-decoration-layout=close,minimize,maximize:
gtk-enable-animations=true
gtk-font-name=Noto Sans, 10
gtk-icon-theme-name=Nordzy-green-dark
gtk-menu-images=true
gtk-modules=colorreload-gtk-module:appmenu-gtk-module
gtk-primary-button-warps-slider=false
gtk-shell-shows-menubar=1
gtk-theme-name=Nordic-darker
gtk-toolbar-style=3

@ -1,13 +1,12 @@
gtk-cursor-theme-size=24
gtk-theme-name="Mojave-dark"
gtk-theme-name="Nordic-darker"
gtk-enable-animations=1
gtk-primary-button-warps-slider=0
gtk-toolbar-style=3
gtk-menu-images=1
gtk-button-images=1
gtk-cursor-theme-name="Adwaita"
gtk-icon-theme-name="Mojave-dark"
gtk-font-name="Noto Sans, 10"
gtk-icon-theme-name="Nordzy-green-dark"
gtk-font-name="Noto Sans, 10"
gtk-application-prefer-dark-theme = true
gtk-modules=appmenu-gtk-module

@ -1,339 +0,0 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) 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
this service 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 make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. 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.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
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
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the 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 a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE 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.
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
convey 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 2 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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision 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, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This 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.

@ -1,130 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="add-workspace-active.svg">
<defs
id="defs4">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter4154"
x="-0.13200003"
width="1.2640001"
y="-0.020842104"
height="1.0416842">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.6500004"
id="feGaussianBlur4156" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-19.280981"
inkscape:cy="24.179781"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1280"
inkscape:window-height="734"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694-5"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.9;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#filter4154)"
d="m 7.2000008,858.36215 27.9999992,0 0,190.00005 -27.9999992,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-186.00005 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4285F4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eceff1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.9 KiB

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="add-workspace-hover.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-81.038405"
inkscape:cy="108.58132"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

@ -1,113 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="add-workspace.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-28.526103"
inkscape:cy="75.41215"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.35;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
sodipodi:docname="calendar-arrow-left.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="29.5"
inkscape:cx="13.680381"
inkscape:cy="6.1418434"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M10 3v10L5 8z"
fill="#000000"
opacity="0.54"
id="path2"
style="fill:#e6e6e6" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
sodipodi:docname="calendar-arrow-right.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="14.75"
inkscape:cx="8"
inkscape:cy="8"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M6 3v10l5-5z"
fill="#000000"
opacity="0.54"
id="path2"
style="fill:#e6e6e6" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

@ -1,156 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="checkbox-off.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#unchecked_highlight"
id="linearGradient1667"
x1="18"
y1="38.362179"
x2="32"
y2="38.362179"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="unchecked_highlight"
osb:paint="solid">
<stop
style="stop-color:#5f5f5f;stop-opacity:1;"
offset="0"
id="stop1645" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_unchecked_bg"
id="linearGradient1625"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.92857146,0,3.2401539)"
x1="24"
y1="45.362179"
x2="24"
y2="31.362181" />
<linearGradient
id="dark_unchecked_bg"
osb:paint="gradient">
<stop
id="stop1615"
offset="0"
style="stop-color:#6a6a6a;stop-opacity:1" />
<stop
id="stop1617"
offset="1"
style="stop-color:#545454;stop-opacity:1" />
</linearGradient>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<g
transform="translate(-13,3.6378183)"
style="display:inline;opacity:1"
id="checkbox-unchecked-dark"
inkscape:label="#g22047">
<g
inkscape:label="#g21853"
id="sdsd-0-1">
<g
id="scdsdcd-0-4"
inkscape:label="#g14325"
transform="translate(0,-30)">
<g
style="display:inline"
id="g15812-6-6-1-4-4"
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
<g
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
id="g5489-2-9-6-8-8-9-7"
style="display:inline">
<g
id="g5428-8-1-4-0-0-65-8" />
</g>
</g>
<rect
y="30.362183"
x="17"
height="16"
width="16"
id="rect13523-4-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
<g
id="g5400-2-47">
<rect
rx="2.4615386"
y="30.362181"
x="17"
height="16"
width="16"
id="rect1920"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.2307694;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="2.461539" />
<rect
ry="2.1538463"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1667);fill-opacity:1;stroke:none;stroke-width:1.07692313;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect5147-9-1-5-7-6-3-70"
width="14"
height="13.999997"
x="18"
y="31.362181"
rx="2.1538463" />
<rect
rx="2.1538463"
y="32.362179"
x="18"
height="12.999998"
width="14"
id="rect1621"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1625);fill-opacity:1;stroke:none;stroke-width:1.03774917;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="2.0000002" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

@ -1,231 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="checkbox.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#hightlight"
id="linearGradient1632"
x1="18.000006"
y1="38.36219"
x2="31.999994"
y2="38.36219"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="hightlight"
osb:paint="solid">
<stop
style="stop-color:#5887fc;stop-opacity:1;"
offset="0"
id="stop1628" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_checked_bg"
id="linearGradient1590"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.99167598,0,0.37759569)"
x1="24"
y1="45.362179"
x2="24"
y2="32.253059" />
<linearGradient
id="dark_checked_bg"
osb:paint="gradient">
<stop
style="stop-color:#3458c0;stop-opacity:1"
offset="0"
id="stop1580" />
<stop
style="stop-color:#3d67e3;stop-opacity:1"
offset="1"
id="stop1582" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Drop Shadow"
id="filter1536">
<feFlood
flood-opacity="0.352941"
flood-color="rgb(0,0,0)"
result="flood"
id="feFlood1526" />
<feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1528" />
<feGaussianBlur
in="composite1"
stdDeviation="0"
result="blur"
id="feGaussianBlur1530" />
<feOffset
dx="0"
dy="0.5"
result="offset"
id="feOffset1532" />
<feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1534" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<g
transform="translate(-32,3.6378183)"
style="display:inline;opacity:1"
id="checkbox-checked-dark"
inkscape:label="#g10758">
<g
inkscape:label="#g22047"
id="checkbox-unchecked-5-59"
style="display:inline"
transform="translate(19)">
<g
id="sdsd-7-54"
inkscape:label="#g21853">
<g
transform="translate(0,-30)"
inkscape:label="#g14325"
id="scdsdcd-5-8">
<g
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
id="g15812-6-6-1-5-4"
style="display:inline">
<g
style="display:inline"
id="g5489-2-9-6-8-8-53-5"
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
<g
id="g5428-8-1-4-0-0-4-2" />
</g>
</g>
<rect
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
id="rect13523-7-11"
width="16"
height="16"
x="17"
y="30.362183" />
<g
id="g5400-6-68">
<rect
ry="2.2857065"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.14285803;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
id="rect1924"
width="16"
height="16.000002"
x="17"
y="30.362181"
rx="2.2857096" />
<rect
rx="1.9999943"
y="31.362196"
x="18.000006"
height="13.99999"
width="13.999989"
id="rect5147-9-1-5-7-6-7-4"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1632);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
ry="1.9999917" />
<rect
ry="1.8571372"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1590);fill-opacity:1;stroke:none;stroke-width:0.96399999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
id="rect1578"
width="13.999989"
height="13.000006"
x="18.000006"
y="32.362179"
rx="1.9999943" />
</g>
</g>
</g>
</g>
<g
inkscape:label="Ebene 1"
id="checkbox-checked-dark-7-37"
transform="translate(36,-1036)"
style="display:inline">
<g
id="g3981-6-4-97"
transform="rotate(45,-3.2604448,1033.6624)"
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
<g
id="g4049-2-5"
transform="rotate(45,7.4999938,1026.3622)">
<g
id="g4056-7-6"
transform="translate(12.374375,11.531233)">
<g
id="g3981-0-8"
transform="translate(-3,-4.9999826)"
style="fill:#3b3c3e;fill-opacity:1">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter1536)"
d="m 154.15625,15.880859 c -0.25562,0 -0.51116,0.0971 -0.70703,0.292969 l -3.53516,3.535156 -1.47851,-1.476562 c -0.35638,-0.356375 -0.95788,-0.329234 -1.34961,0.0625 -0.39174,0.391734 -0.42083,0.995188 -0.0645,1.351562 l 2.18555,2.183594 0.0644,0.06445 c 0.35638,0.356375 0.95788,0.327281 1.34961,-0.06445 l 4.24219,-4.242187 c 0.39174,-0.391738 0.39174,-1.022326 0,-1.414063 -0.19587,-0.195868 -0.45141,-0.292969 -0.70703,-0.292969 z"
transform="rotate(-45,1304.0439,694.22022)"
id="rect3977-39-90"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#eeeeee;fill-opacity:0;stroke:none"
id="rect4047-81-5"
width="3"
height="1"
x="5"
y="-8"
transform="translate(0,1036.3622)" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.0 KiB

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close-active.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#d8354a;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close-hover.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#ff7a80;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#f75a61;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

@ -1,89 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="104"
height="104"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="corner-ripple.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.875"
inkscape:cx="-12.731584"
inkscape:cy="51.861491"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-948.3622)">
<circle
style="opacity:0.5;fill:#6887cd;fill-opacity:1;stroke:none"
id="corner-ripple"
inkscape:label="#path2987"
cx="52"
cy="1000.3622"
r="48" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

@ -1,105 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="34"
height="34"
viewBox="0 0 31.875001 31.874999"
id="svg6927"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="menu-hover.svg">
<defs
id="defs6929">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4138" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#selected_bg_color"
id="linearGradient4140"
x1="1185"
y1="108"
x2="1185"
y2="141"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="8.3199885"
inkscape:cy="17.087683"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1366"
inkscape:window-height="716"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-midpoints="false"
inkscape:snap-bbox-edge-midpoints="true"
units="px">
<inkscape:grid
type="xygrid"
id="grid4140"
originx="0"
originy="1.2503989e-05" />
</sodipodi:namedview>
<metadata
id="metadata6932">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-137,-383.48721)">
<g
transform="matrix(0.10026523,0,0,0.96590909,33.557827,279.16903)"
id="g6908"
style="fill:url(#linearGradient4140);fill-opacity:1;stroke-width:0.84386438">
<rect
y="108"
x="1059.736"
height="33"
width="261.80566"
id="rect5271"
style="opacity:1;fill:#315bef;fill-opacity:1;stroke:none;stroke-width:0.84386438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

@ -1,13 +0,0 @@
<svg width="36" height="36" version="1.1" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="a" x="-.18" y="-.18" width="1.36" height="1.36" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.949998"/>
</filter>
</defs>
<g transform="translate(0 -1016.4)">
<rect transform="matrix(1.0181 0 0 1.0181 -.32511 -18.718)" x="5" y="1023.4" width="26" height="26" rx="9.4545" ry="9.4546" filter="url(#a)" opacity=".15"/>
<rect x="6.5" y="1022.9" width="23" height="23" rx="8.5" ry="8.5" fill="none" opacity=".75" stroke="#000" stroke-linecap="round"/>
<rect x="7" y="1023.4" width="22" height="22" rx="8" ry="8" fill="#323232"/>
<path d="m15 1023.4c-4.432 0-8 3.568-8 8v6c0 4.432 3.568 8 8 8h6c4.432 0 8-3.568 8-8v-6c0-4.432-3.568-8-8-8zm0 1h6c3.878 0 7 3.122 7 7v6c0 3.878-3.122 7-7 7h-6c-3.878 0-7-3.122-7-7v-6c0-3.878 3.122-7 7-7z" fill="#fff" opacity=".1"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 927 B

@ -1,135 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="36"
height="36"
viewBox="0 0 36 36"
id="svg5386"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="menu.svg">
<defs
id="defs5388">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter922"
x="-0.18000007"
width="1.3600001"
y="-0.17999993"
height="1.3599999">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.949998"
id="feGaussianBlur924" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="20.362383"
inkscape:cy="19.968957"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:window-width="1366"
inkscape:window-height="716"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid5954" />
<sodipodi:guide
position="15,23"
orientation="1,0"
id="guide821"
inkscape:locked="false" />
<sodipodi:guide
position="10,21"
orientation="0,1"
id="guide823"
inkscape:locked="false" />
<sodipodi:guide
position="10,15"
orientation="0,1"
id="guide948"
inkscape:locked="false" />
<sodipodi:guide
position="21,23"
orientation="1,0"
id="guide950"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata5391">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1016.3622)">
<rect
ry="9.4545527"
rx="9.4545317"
y="1023.3622"
x="5.0000181"
height="25.999983"
width="25.999964"
id="rect828"
style="display:inline;opacity:0.15;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.98225904;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter922)"
transform="matrix(1.0180615,0,0,1.0180615,-0.325107,-18.71823)" />
<rect
style="display:inline;opacity:0.75;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4164-4-3"
width="23"
height="23.000017"
x="6.499999"
y="1022.8622"
rx="8.5"
ry="8.5000172" />
<rect
ry="8.0000172"
rx="7.9999981"
y="1023.3622"
x="6.9999995"
height="22.000017"
width="21.999998"
id="rect825"
style="display:inline;opacity:0.95;fill:#323232;fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="display:inline;opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 15,1023.3622 c -4.432,0 -8,3.568 -8,8 v 6 c 0,4.432 3.568,8 8,8 h 6 c 4.432,0 8,-3.568 8,-8 v -6 c 0,-4.432 -3.568,-8 -8,-8 z m 0,1 h 6 c 3.878,0 7,3.122 7,7 v 6 c 0,3.878 -3.122,7 -7,7 h -6 c -3.878,0 -7,-3.122 -7,-7 v -6 c 0,-3.878 3.122,-7 7,-7 z"
id="rect4164"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

@ -1,152 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="radiobutton-off.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#unchecked_highlight"
id="linearGradient1661"
x1="51.610744"
y1="141.02211"
x2="80.99575"
y2="141.02211"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="unchecked_highlight"
osb:paint="solid">
<stop
style="stop-color:#5f5f5f;stop-opacity:1;"
offset="0"
id="stop1645" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_unchecked_bg"
id="linearGradient1684"
gradientUnits="userSpaceOnUse"
x1="66.303246"
y1="155.48166"
x2="66.303246"
y2="126.56255"
gradientTransform="matrix(1,0,0,0.92857182,0,11.105773)" />
<linearGradient
id="dark_unchecked_bg"
osb:paint="gradient">
<stop
id="stop1615"
offset="0"
style="stop-color:#6a6a6a;stop-opacity:1" />
<stop
id="stop1617"
offset="1"
style="stop-color:#545454;stop-opacity:1" />
</linearGradient>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<g
transform="translate(-92.995736,3.6378118)"
style="display:inline;opacity:1"
id="radio-unchecked-dark"
inkscape:label="#g10975">
<g
id="g10964-4-5">
<g
style="display:inline"
id="radio-unchecked2-6-5"
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
inkscape:label="#g15805">
<rect
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
id="rect14348-4-3-9"
width="17.090866"
height="17.100227"
x="206.99057"
y="261.97873" />
<g
id="g7025-3-9">
<g
style="display:inline"
id="g5489-2-9-3-8-0"
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
<g
id="g5428-8-1-7-83-7">
<rect
rx="16.791431"
y="124.49689"
x="49.511818"
height="33.050419"
width="33.582863"
id="rect1938"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.56274343;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="16.313646" />
<rect
ry="14.27444"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1661);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.24240041;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect5147-9-1-7-7-61"
width="29.385006"
height="28.919117"
x="51.610744"
y="126.56255"
rx="14.692502" />
<rect
rx="14.692502"
y="128.62819"
x="51.610744"
height="26.853477"
width="29.385006"
id="rect1670"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1684);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.16083145;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="13.426739" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

@ -1,216 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="radiobutton.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#hightlight"
id="linearGradient1650"
x1="51.610752"
y1="141.02211"
x2="80.995743"
y2="141.02211"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="hightlight"
osb:paint="solid">
<stop
style="stop-color:#5887fc;stop-opacity:1;"
offset="0"
id="stop1628" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_checked_bg"
id="linearGradient1586"
gradientUnits="userSpaceOnUse"
x1="51.610752"
y1="141.02211"
x2="80.995743"
y2="141.02211"
gradientTransform="matrix(1,0,0,0.92857215,0,11.105721)" />
<linearGradient
id="dark_checked_bg"
osb:paint="gradient">
<stop
style="stop-color:#3458c0;stop-opacity:1"
offset="0"
id="stop1580" />
<stop
style="stop-color:#3d67e3;stop-opacity:1"
offset="1"
id="stop1582" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Drop Shadow"
id="filter1488">
<feFlood
flood-opacity="0.352941"
flood-color="rgb(0,0,0)"
result="flood"
id="feFlood1478" />
<feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1480" />
<feGaussianBlur
in="composite1"
stdDeviation="0"
result="blur"
id="feGaussianBlur1482" />
<feOffset
dx="0"
dy="0.5"
result="offset"
id="feOffset1484" />
<feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1486" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="true"
inkscape:zoom="9.8333333"
inkscape:cx="5.9491525"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid877" />
</sodipodi:namedview>
<g
transform="translate(-112,3.6378183)"
style="display:inline;opacity:1"
id="radio-checked-dark"
inkscape:label="#g11094">
<g
transform="translate(19.004264,-4.6992607e-6)"
inkscape:label="#g10975"
id="radio-unchecked-2-1"
style="display:inline">
<g
id="g10964-6-63">
<g
inkscape:label="#g15805"
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
id="radio-unchecked2-0-8"
style="display:inline">
<g
style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1"
id="g7025-09-0-5"
transform="translate(0,1.0687628)">
<g
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
id="g5489-2-9-3-2-6-2"
style="display:inline;fill:#000000;fill-opacity:1">
<g
id="g5428-8-1-7-5-4-7"
style="fill:#000000;fill-opacity:1" />
</g>
</g>
<rect
y="261.97873"
x="206.99057"
height="17.100227"
width="17.090866"
id="rect14348-4-8-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
<g
id="g7025-09-09">
<g
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
id="g5489-2-9-3-2-28"
style="display:inline">
<g
id="g5428-8-1-7-5-64">
<rect
ry="16.525213"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect1934"
width="33.582863"
height="33.050426"
x="49.511818"
y="124.49688"
rx="16.791431" />
<rect
rx="14.692495"
y="126.56255"
x="51.610752"
height="28.919107"
width="29.384991"
id="rect5147-9-1-7-2-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1650);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="14.459554" />
<rect
ry="13.426739"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1586);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect1574"
width="29.384991"
height="26.853477"
x="51.610752"
y="128.62819"
rx="14.692495" />
</g>
</g>
</g>
</g>
</g>
</g>
<rect
rx="1.9988754"
y="6.3621826"
x="122"
height="4"
width="4"
id="use15101-5-7-55"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;filter:url(#filter1488);enable-background:accumulate"
ry="2" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.3 KiB

@ -1,119 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="37"
height="18"
id="svg3783"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="submenu.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3785" />
<sodipodi:namedview
id="base"
pagecolor="#323232"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="64.000003"
inkscape:cx="6.9067521"
inkscape:cy="19.509989"
inkscape:document-units="px"
inkscape:current-layer="g3027"
showgrid="true"
inkscape:showpageshadow="false"
inkscape:window-width="1366"
inkscape:window-height="716"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-global="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid4301"
empspacing="8"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="0"
originy="0" />
<sodipodi:guide
orientation="0,1"
position="14.052204,22.065004"
id="guide3831"
inkscape:locked="false" />
<sodipodi:guide
orientation="0,1"
position="14.052204,-3.9349962"
id="guide3835"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata3788">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-5.9477962,-1025.4272)">
<g
id="g3027"
transform="matrix(0,-1,1,0,-1048.3622,1052.3622)">
<rect
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3092"
width="30.999943"
height="18"
x="1057.3101"
y="-26.934996"
transform="rotate(90)" />
<rect
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3883"
width="30.999943"
height="1"
x="1057.3101"
y="-9.9350014"
transform="rotate(90)" />
<rect
transform="rotate(90)"
y="-26.934999"
x="1057.3101"
height="1"
width="30.999943"
id="rect818"
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

@ -1,88 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="50"
height="20"
viewBox="0 0 50 20"
version="1.1"
id="svg6"
sodipodi:docname="toggle-off.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview8"
showgrid="false"
inkscape:zoom="4.775"
inkscape:cx="19.157491"
inkscape:cy="18.778767"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<circle
cx="10"
cy="10"
r="6"
id="circle4"
style="fill:#ffffff" />
<g
style="display:inline"
transform="translate(0.02128202,-1032.3623)"
id="toggle-off"
inkscape:label="Layer 1">
<g
transform="translate(-5.1851991,-0.59123127)"
id="g4562">
<g
id="g4556"
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)">
<path
id="rect4140"
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
style="fill:#535353;fill-opacity:1;stroke:#555555;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<circle
r="8.2498779"
cy="1042.4775"
cx="15.744821"
id="circle4587"
style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none;stroke-width:1.37497962" />
<circle
style="fill:#d8d8d8;fill-opacity:1;stroke:none;stroke-width:1.20311427"
id="circle4531"
cx="15.744821"
cy="1042.4775"
r="7.2186861" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

@ -1,153 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="50"
height="20"
viewBox="0 0 50 20"
version="1.1"
id="svg6"
sodipodi:docname="toggle-on.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10">
<linearGradient
gradientTransform="translate(14.787004,0.11552347)"
gradientUnits="userSpaceOnUse"
y2="1034.3622"
x2="15"
y1="1050.3622"
x1="15"
id="linearGradient4521"
xlink:href="#linearGradient4519"
inkscape:collect="always" />
<linearGradient
id="linearGradient4519"
inkscape:collect="always">
<stop
id="stop4515"
offset="0"
style="stop-color:#004bdb;stop-opacity:1" />
<stop
id="stop4517"
offset="1"
style="stop-color:#498dd5;stop-opacity:1" />
</linearGradient>
<linearGradient
gradientTransform="translate(14.787004,0.11552347)"
gradientUnits="userSpaceOnUse"
y2="1034.3622"
x2="19"
y1="1050.3622"
x1="19"
id="linearGradient4529"
xlink:href="#linearGradient4527"
inkscape:collect="always" />
<linearGradient
id="linearGradient4527"
inkscape:collect="always">
<stop
id="stop4523"
offset="0"
style="stop-color:#2100db;stop-opacity:1" />
<stop
id="stop4525"
offset="1"
style="stop-color:#277bd6;stop-opacity:1" />
</linearGradient>
<filter
height="1.0722142"
y="-0.036107175"
width="1.0717869"
x="-0.035893459"
id="filter4549"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur4551"
stdDeviation="0.21888099"
inkscape:collect="always" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview8"
showgrid="true"
inkscape:zoom="4.775"
inkscape:cx="-26.507258"
inkscape:cy="13.936062"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6">
<inkscape:grid
type="xygrid"
id="grid58" />
</sodipodi:namedview>
<circle
cx="30"
cy="10"
r="6"
id="circle4"
style="fill:#ffffff" />
<g
style="display:inline"
transform="translate(2.0514095e-5,-1032.3623)"
id="toggle-on"
inkscape:label="Layer 1">
<g
transform="translate(-5.1851991,-0.59123127)"
id="g4562-7">
<g
id="g4556-0"
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)">
<path
id="rect4140-9"
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
style="fill:url(#linearGradient4521);fill-opacity:1;stroke:url(#linearGradient4529);stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<ellipse
transform="matrix(1.0073647,0,0,1.0073647,14.206039,-7.5823938)"
ry="7.2743769"
rx="7.3176894"
cy="1042.701"
cx="30.144405"
id="path4142"
style="fill:#00429b;fill-opacity:1;stroke:none;stroke-width:1.21599948;filter:url(#filter4549)" />
<circle
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.16666663"
id="circle4531-3"
cx="44.787003"
cy="1042.4777"
r="7" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

@ -1,106 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="400"
height="120"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="trash-icon.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.8101934"
inkscape:cx="194.72263"
inkscape:cy="105.03137"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1366"
inkscape:window-height="704"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="1,0"
position="200,105"
id="guide3920"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-932.36218)">
<path
id="rect4142"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13725491;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;paint-order:stroke fill markers"
d="m 12,942.36218 376,0 c 1.108,0 2,0.892 2,2 l 0,108.00002 -380,0 0,-108.00002 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssccss" />
<path
inkscape:connector-curvature="0"
style="fill:#ececec;fill-opacity:1;stroke:none;stroke-width:1"
class="ColorScheme-Text"
d="m 200,964.36214 c -4.41828,0 -8,3.58172 -8,8 h -16 v 4 H 193.07812 200 206.91408 224 v -4 h -16 c 0,-4.41828 -3.58172,-8 -8,-8 z m 0,4 c 2.20914,1e-5 3.99999,1.79086 4,4 h -8 c 1e-5,-2.20914 1.79086,-3.99999 4,-4 z m -20,12 v 2 2 6 21.99996 c 0,4.4321 3.56792,8.0001 8,8.0001 h 24 c 4.43208,0 8,-3.568 8,-8.0001 v -23.99996 -4 -2 -2 h -2 -26 -4 -6 z m 4,4 h 4 4 24 v 27.99996 c 0,2.2161 -1.78392,4.0001 -4,4.0001 h -24 c -2.21608,0 -4,-1.784 -4,-4.0001 z"
id="path3222"
sodipodi:nodetypes="scccccccccsccccccccsssscccccccccccccssssc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

@ -1,153 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="activities-active.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="19.066587"
inkscape:cy="5.92008"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="1600"
inkscape:window-height="848"
inkscape:window-x="0"
inkscape:window-y="25"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title />
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
d="m 14.650304,281.88776 c 0.620878,-0.77302 1.041834,-1.82329 0.92569,-2.88776 -0.894246,0.0375 -2.008404,0.62113 -2.653878,1.37165 -0.570167,0.66588 -1.076685,1.75428 -0.945499,2.78022 1.003541,0.0749 2.031336,-0.5078 2.673646,-1.26403 z m 2.262563,6.68786 c -0.02145,-2.2764 1.862638,-3.38167 1.947958,-3.43437 -1.065909,-1.55571 -2.718649,-1.76653 -3.301395,-1.78574 -1.388986,-0.14152 -2.73355,0.83455 -3.442114,0.83455 -0.721121,-1e-4 -1.810143,-0.81766 -2.9830046,-0.79441 -1.5117804,0.0226 -2.9274451,0.89797 -3.7024427,2.25353 -1.5954995,2.7706 -0.4060754,6.83989 1.1263547,9.07398 0.7676472,1.09975 1.6618734,2.32383 2.8347546,2.27546 1.147124,-0.0436 1.57477,-0.72834 2.961253,-0.72834 1.371964,0 1.773853,0.72834 2.970827,0.70491 1.231826,-0.0202 2.006542,-1.10173 2.747592,-2.20603 0.882569,-1.25975 1.238934,-2.49475 1.253154,-2.56053 -0.02746,-0.0102 -2.387701,-0.9078 -2.412937,-3.63301 z"
style="display:inline;fill:#dedede;fill-opacity:1;fill-rule:evenodd;stroke-width:0.20028363;enable-background:new"
id="path121"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 KiB

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
<path d="m10 3v10l-5-5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 149 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
<path d="m6 3v10l5-5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 147 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF" opacity="0.7">
<path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/>
</svg>

Before

Width:  |  Height:  |  Size: 225 B

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
fill="#000000"
height="24"
viewBox="0 0 24 24"
width="24"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="checkbox.svg">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="714"
id="namedview8"
showgrid="true"
inkscape:zoom="12.050278"
inkscape:cx="-16.694894"
inkscape:cy="3.1020107"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid4140" />
</sodipodi:namedview>
<path
d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
id="path6"
style="fill:#315bef;fill-opacity:1" />
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF" opacity="0.7">
<path d="M 17,8.41 15.59,7 12,10.59 8.41,7 7,8.41 10.59,12 7,15.59 8.41,17 12,13.41 15.59,17 17,15.59 13.41,12 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 238 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF">
<circle cx="12" cy="12" r="12" opacity="0.3"/>
<circle cx="12" cy="12" r="4"/>
</svg>

Before

Width:  |  Height:  |  Size: 189 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="36" cy="66" r="2"/>
<circle cx="36" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 175 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="36" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 142 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="32" cy="66" r="2"/>
<circle cx="40" cy="66" r="2"/>
<circle cx="36" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 209 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="32" cy="66" r="2"/>
<circle cx="40" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 176 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="28" cy="66" r="2"/>
<circle cx="36" cy="66" r="2"/>
<circle cx="44" cy="66" r="2"/>
<circle cx="36" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 243 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="28" cy="66" r="2"/>
<circle cx="36" cy="66" r="2"/>
<circle cx="44" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 210 B

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="24" cy="66" r="2"/>
<circle cx="32" cy="66" r="2"/>
<circle cx="40" cy="66" r="2"/>
<circle cx="48" cy="66" r="2"/>
<circle cx="36" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 277 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="24" cy="66" r="2"/>
<circle cx="32" cy="66" r="2"/>
<circle cx="40" cy="66" r="2"/>
<circle cx="48" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 244 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="36" r="2"/>
<circle cx="66" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 175 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 141 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="32" r="2"/>
<circle cx="6" cy="40" r="2"/>
<circle cx="66" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 208 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="32" r="2"/>
<circle cx="6" cy="40" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 174 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="28" r="2"/>
<circle cx="6" cy="36" r="2"/>
<circle cx="6" cy="44" r="2"/>
<circle cx="66" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 241 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="28" r="2"/>
<circle cx="6" cy="36" r="2"/>
<circle cx="6" cy="44" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 207 B

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="24" r="2"/>
<circle cx="6" cy="32" r="2"/>
<circle cx="6" cy="40" r="2"/>
<circle cx="6" cy="48" r="2"/>
<circle cx="66" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 274 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="6" cy="24" r="2"/>
<circle cx="6" cy="32" r="2"/>
<circle cx="6" cy="40" r="2"/>
<circle cx="6" cy="48" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 240 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="36" r="2"/>
<circle cx="6" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 175 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 142 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="32" r="2"/>
<circle cx="66" cy="40" r="2"/>
<circle cx="6" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 209 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="32" r="2"/>
<circle cx="66" cy="40" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 176 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="28" r="2"/>
<circle cx="66" cy="36" r="2"/>
<circle cx="66" cy="44" r="2"/>
<circle cx="6" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 243 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="28" r="2"/>
<circle cx="66" cy="36" r="2"/>
<circle cx="66" cy="44" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 210 B

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="24" r="2"/>
<circle cx="66" cy="32" r="2"/>
<circle cx="66" cy="40" r="2"/>
<circle cx="66" cy="48" r="2"/>
<circle cx="6" cy="36" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 277 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="66" cy="24" r="2"/>
<circle cx="66" cy="32" r="2"/>
<circle cx="66" cy="40" r="2"/>
<circle cx="66" cy="48" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 244 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="36" cy="6" r="2"/>
<circle cx="36" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 175 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="36" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 141 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="32" cy="6" r="2"/>
<circle cx="40" cy="6" r="2"/>
<circle cx="36" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 208 B

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="32" cy="6" r="2"/>
<circle cx="40" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 174 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="28" cy="6" r="2"/>
<circle cx="36" cy="6" r="2"/>
<circle cx="44" cy="6" r="2"/>
<circle cx="36" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 241 B

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="28" cy="6" r="2"/>
<circle cx="36" cy="6" r="2"/>
<circle cx="44" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 207 B

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="24" cy="6" r="2"/>
<circle cx="32" cy="6" r="2"/>
<circle cx="40" cy="6" r="2"/>
<circle cx="48" cy="6" r="2"/>
<circle cx="36" cy="66" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 274 B

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72" fill="#FFFFFF">
<circle cx="24" cy="6" r="2"/>
<circle cx="32" cy="6" r="2"/>
<circle cx="40" cy="6" r="2"/>
<circle cx="48" cy="6" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 240 B

@ -1,111 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
viewBox="0 0 32 32"
version="1.1"
id="svg7384"
height="32"
sodipodi:docname="key-enter.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="736"
id="namedview19"
showgrid="false"
inkscape:zoom="10.429825"
inkscape:cx="3.0596571"
inkscape:cy="13.169744"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg7384" />
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
osb:paint="solid"
id="linearGradient19282"
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)">
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="0"
id="stop19284" />
</linearGradient>
</defs>
<g
transform="translate(-141.0002,-791)"
style="display:inline;opacity:0.7"
id="layer9" />
<g
transform="translate(-141.0002,-791)"
style="display:inline;opacity:0.7"
id="layer10" />
<g
transform="translate(-141.0002,-791)"
id="layer11"
style="opacity:0.7" />
<g
transform="translate(-141.0002,-791)"
style="display:inline;opacity:0.7"
id="layer13" />
<g
transform="translate(-141.0002,-791)"
id="layer14"
style="opacity:0.7" />
<g
transform="translate(-141.0002,-791)"
style="display:inline;opacity:0.7"
id="layer15" />
<g
transform="translate(-141.0002,-791)"
style="display:inline;opacity:0.7"
id="g71291" />
<g
transform="translate(-141.0002,-791)"
style="display:inline;opacity:0.7"
id="g4953" />
<g
transform="matrix(2,0,0,2,-281.56285,-1615.0002)"
style="display:inline;opacity:0.7"
id="layer12">
<path
id="path16589"
d="m 148.00015,821.0002 h -1 c -0.26528,0 -0.53057,-0.093 -0.71875,-0.2812 l -3.71875,-3.7188 c 0,0 2.47917,-2.4792 3.71875,-3.7187 0.18817,-0.1882 0.45344,-0.2813 0.71875,-0.2813 h 1 v 1 c 0,0.2653 -0.0931,0.5306 -0.28125,0.7188 l -2.28125,2.2812 2.28125,2.2813 c 0.18811,0.1881 0.28129,0.4534 0.28125,0.7187 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
d="m 154.0002,810 v 4.5 c 0,1.3807 -1.11929,2.5 -2.5,2.5 h -6.50005"
id="path16591"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

@ -1,114 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
viewBox="0 0 32 32"
version="1.1"
id="svg7384"
height="32"
sodipodi:docname="key-hide.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="701"
id="namedview19"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="13.529362"
inkscape:cy="7.9019603"
inkscape:window-x="54"
inkscape:window-y="88"
inkscape:window-maximized="0"
inkscape:current-layer="svg7384" />
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
osb:paint="solid"
id="linearGradient19282"
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)">
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="0"
id="stop19284" />
</linearGradient>
</defs>
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer9" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer10" />
<g
transform="translate(-141.0002,-791)"
id="layer11" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer13" />
<g
transform="translate(-141.0002,-791)"
id="layer14" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer15" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g71291" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g4953" />
<g
style="display:inline;opacity:0.7"
inkscape:label="go-down"
id="g11722"
transform="matrix(2,0,0,2,-362.0004,-1494)">
<rect
transform="rotate(90)"
style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:1;marker:none;enable-background:new"
id="rect11718"
y="-197.0002"
x="747"
height="16"
width="16" />
<path
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 189.0002,759.4375 -5.71875,-5.7187 C 183.08558,753.5229 183.0002,753.2556 183.0002,753 v -1 h 1 c 0.25562,0 0.52288,0.085 0.71875,0.2813 l 4.28125,4.2812 4.28125,-4.2812 C 193.47732,752.0854 193.74458,752 194.0002,752 h 1 v 1 c 0,0.2556 -0.0854,0.5229 -0.28125,0.7188 z"
id="path11720"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscsccsscscc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

@ -1,114 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
viewBox="0 0 32 32"
version="1.1"
id="svg7384"
height="32"
sodipodi:docname="key-layout.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="736"
id="namedview19"
showgrid="false"
inkscape:zoom="14.75"
inkscape:cx="10.712791"
inkscape:cy="18.055923"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg7384" />
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
osb:paint="solid"
id="linearGradient19282"
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)">
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="0"
id="stop19284" />
</linearGradient>
</defs>
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer9" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer10" />
<g
transform="translate(-141.0002,-791)"
id="layer11" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer13" />
<g
transform="translate(-141.0002,-791)"
id="layer14" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer15" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g71291" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g4953" />
<g
inkscape:label="preferences-desktop-locale"
id="g11728"
transform="matrix(2,0,0,2,-522.0004,-1086)"
style="display:inline;stroke-width:1;opacity:0.7">
<rect
style="fill:none;stroke:none;stroke-width:1"
id="rect11724"
width="16"
height="16"
x="20"
y="326"
transform="translate(241.0002,217)" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
d="m 265.69612,545.23396 c -3.58218,0 -4.66582,1.39975 -4.66582,1.39975 v 10.04946 c 0,0 1.08364,-1.07673 4.66582,-1.07673 2.9161,0 4.47225,1.07673 7.17818,1.07673 2.08923,0 3.19429,-1.39975 3.19429,-1.39975 v -10.04946 c 0,0 -1.14095,1.04084 -3.23018,1.04084 -3.3734,0 -3.97619,-1.04084 -7.14229,-1.04084 z m 2.93145,2.77148 c 1.32876,0 2.375,1.08037 2.375,2.4375 0,1.35713 -1.04624,2.46875 -2.375,2.46875 -1.32876,0 -2.40625,-1.11162 -2.40625,-2.46875 0,-1.35713 1.07749,-2.4375 2.40625,-2.4375 z m -4.5625,0.96875 0.96875,1.03125 -0.9375,-0.0312 0.9375,1 -0.96875,-0.0312 0.96875,1.03125 -1,-0.0312 0.0312,-1 h -0.0312 l 0.0312,-0.9688 h -0.0312 z m 4.5625,0 c -0.794,0 -1.46875,0.6578 -1.46875,1.46875 0,0.81095 0.67475,1.46875 1.46875,1.46875 0.79399,0 1.4375,-0.6578 1.4375,-1.46875 0,-0.81095 -0.64351,-1.46875 -1.4375,-1.46875 z m 4.375,0 v 1 l 0.0312,0.96875 h -0.0312 l 0.0312,1 -1,0.0312 0.96875,-1.03125 -0.96875,0.0312 0.9375,-1 -0.9375,0.0312 z m -7.9375,2.96875 0.96875,1.03125 -1,-0.0312 z m 6.9375,0 0.0312,1 -1,0.0312 z m -5.9375,1 0.96875,1.03125 -1,-0.0312 z m 4.9375,0 0.0312,1 -1,0.0312 z"
id="path11726"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssccsssssssccccccccccccsssssccccccccccccccccccccccccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

@ -1,110 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
viewBox="0 0 32 32"
version="1.1"
id="svg7384"
height="32"
sodipodi:docname="key-shift-latched-uppercase.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="701"
id="namedview19"
showgrid="false"
inkscape:zoom="14.75"
inkscape:cx="13.094937"
inkscape:cy="20.243489"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="0"
inkscape:current-layer="svg7384"
showguides="false" />
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
osb:paint="solid"
id="linearGradient19282"
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)">
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="0"
id="stop19284" />
</linearGradient>
</defs>
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer9" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer10" />
<g
transform="translate(-141.0002,-791)"
id="layer11" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer13" />
<g
transform="translate(-141.0002,-791)"
id="layer14" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer15" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g71291" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g4953" />
<g
transform="matrix(2,0,0,2,-282.0004,-1614.2187)"
style="display:inline;fill:#ffac00;fill-opacity:1"
id="layer12">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffac00;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:new"
d="m 147,818 v -4 h -3.1248 l 5.125,-5.7813 5.125,5.7813 h -3.1875 v 4 z"
id="path16532"
inkscape:connector-curvature="0" />
<path
id="path16534"
d="m 147,822 v -2 h 3.9377 v 2 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffac00;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:new"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
viewBox="0 0 32 32"
version="1.1"
id="svg7384"
height="32"
sodipodi:docname="key-shift-uppercase.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="736"
id="namedview18"
showgrid="false"
inkscape:zoom="10.429825"
inkscape:cx="-9.2175337"
inkscape:cy="5.1404848"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg7384" />
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
osb:paint="solid"
id="linearGradient19282"
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)">
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="0"
id="stop19284" />
</linearGradient>
</defs>
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer9" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer10" />
<g
transform="translate(-141.0002,-791)"
id="layer11" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer13" />
<g
transform="translate(-141.0002,-791)"
id="layer14" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="layer15" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g71291" />
<g
transform="translate(-141.0002,-791)"
style="display:inline"
id="g4953" />
<g
transform="matrix(2,0,0,2,-282.0008,-1614.2187)"
style="display:inline;fill:#ffac00;fill-opacity:1"
id="layer12">
<path
id="path16548"
d="m 147.0002,820 v -4 h -3.1248 l 5.125,-5.7813 5.125,5.7813 h -3.1875 v 4 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffac00;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:new"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

@ -1,108 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
viewBox="0 0 32 32"
version="1.1"
id="svg7384"
height="32"
sodipodi:docname="key-shift.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="736"
id="namedview4569"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="10.429825"
inkscape:cx="8.2203795"
inkscape:cy="16.933626"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg7384" />
<metadata
id="metadata90">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Gnome Symbolic Icon Theme</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<title
id="title9167">Gnome Symbolic Icon Theme</title>
<defs
id="defs7386">
<linearGradient
osb:paint="solid"
id="linearGradient19282"
gradientTransform="matrix(-2.7365795,0.28202934,-0.18908311,-0.99988321,239.54008,-879.45557)">
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="0"
id="stop19284" />
</linearGradient>
</defs>
<g
transform="translate(-143.8754,-788)"
style="display:inline"
id="layer9" />
<g
transform="translate(-143.8754,-788)"
style="display:inline"
id="layer10" />
<g
transform="translate(-143.8754,-788)"
id="layer11" />
<g
transform="translate(-143.8754,-788)"
style="display:inline"
id="layer13" />
<g
transform="translate(-143.8754,-788)"
id="layer14" />
<g
transform="translate(-143.8754,-788)"
style="display:inline"
id="layer15" />
<g
transform="translate(-143.8754,-788)"
style="display:inline"
id="g71291" />
<g
transform="translate(-143.8754,-788)"
style="display:inline"
id="g4953" />
<g
transform="matrix(2,0,0,2,-282.0008,-1614.2187)"
style="display:inline;opacity:0.7"
id="layer12">
<path
id="path16548"
d="m 147.0002,820 v -4 h -3.1248 l 5.125,-5.7813 5.125,5.7813 h -3.1875 v 4 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:new"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

@ -1,5 +0,0 @@
<svg width="64" height="34" version="1.1" viewBox="0 0 60 31.875" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb">
<g transform="translate(-137 -383.49)">
<rect x="143.56" y="383.49" width="46.875" height="31.875" fill="#1048ec"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 289 B

@ -1,5 +0,0 @@
<svg width="64" height="34" version="1.1" viewBox="0 0 60 31.875" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb">
<g transform="translate(-137 -383.49)">
<rect x="143.56" y="383.49" width="46.875" height="31.875" fill="#315bef"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 289 B

@ -1,13 +0,0 @@
<svg width="60" height="60" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="a" x="-.12" y="-.12" width="1.24" height="1.24" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="2.3999995"/>
</filter>
</defs>
<g transform="translate(0 -992.36)">
<rect x="6" y="998.36" width="48" height="48" rx="8" ry="8" filter="url(#a)" opacity=".15"/>
<rect x="7" y="997.36" width="46" height="46" rx="7" ry="7" fill="none" opacity=".75" stroke="#000" stroke-linecap="round" stroke-width="2"/>
<rect x="7" y="997.36" width="46" height="46" rx="7" ry="7" fill="#323232"/>
<path transform="translate(0,992.36)" d="m14 5c-3.878 0-7 3.122-7 7v32c0 3.878 3.122 7 7 7h32c3.878 0 7-3.122 7-7v-32c0-3.878-3.122-7-7-7h-32zm0 1h32c3.324 0 6 2.676 6 6v32c0 3.324-2.676 6-6 6h-32c-3.324 0-6-2.676-6-6v-32c0-3.324 2.676-6 6-6z" fill="#fff" opacity=".1"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 913 B

@ -1,13 +0,0 @@
<svg width="60" height="60" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="a" x="-.12" y="-.12" width="1.24" height="1.24" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="2.3999995"/>
</filter>
</defs>
<g transform="translate(0 -992.36)">
<rect x="6" y="998.36" width="48" height="48" rx="8" ry="8" filter="url(#a)" opacity=".15"/>
<rect x="7" y="997.36" width="46" height="46" rx="7" ry="7" fill="none" opacity=".75" stroke="#000" stroke-linecap="round" stroke-width="2"/>
<rect x="7" y="997.36" width="46" height="46" rx="7" ry="7" fill="#323232" opacity=".95"/>
<path transform="translate(0,992.36)" d="m14 5c-3.878 0-7 3.122-7 7v32c0 3.878 3.122 7 7 7h32c3.878 0 7-3.122 7-7v-32c0-3.878-3.122-7-7-7h-32zm0 1h32c3.324 0 6 2.676 6 6v32c0 3.324-2.676 6-6 6h-32c-3.324 0-6-2.676-6-6v-32c0-3.324 2.676-6 6-6z" fill="#fff" opacity=".1"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 927 B

@ -1,73 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="more-results.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="12.78125"
inkscape:cx="-2.7381005"
inkscape:cy="3.7903354"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:window-width="1366"
inkscape:window-height="714"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4136" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<circle
style="fill:#315bef;fill-opacity:1;stroke:none"
id="path4138"
cx="8"
cy="1044.3622"
r="8" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="M 7 4 L 7 7 L 4 7 L 4 9 L 7 9 L 7 12 L 9 12 L 9 9 L 12 9 L 12 7 L 9 7 L 9 4 L 7 4 z "
transform="translate(0,1036.3622)"
id="rect4136" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="#FFFFFF" opacity="0.5">
<path d="M34 24H24v10h10V24zM32 2v4H16V2h-4v4h-2c-2.21 0-3.98 1.79-3.98 4L6 38c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4h-2V2h-4zm6 36H10V16h28v22z"/>
</svg>

Before

Width:  |  Height:  |  Size: 291 B

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="#FFFFFF" opacity="0.5">
<path d="M24 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm12-12V22c0-6.15-3.27-11.28-9-12.64V8c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36c-5.73 1.36-9 6.49-9 12.64v10l-4 4v2h32v-2l-4-4zm-4 2H16V22c0-4.97 3.03-9 8-9s8 4.03 8 9v12z"/>
</svg>

Before

Width:  |  Height:  |  Size: 345 B

@ -1,78 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1600"
height="900"
viewBox="0 0 1600 900"
version="1.1"
id="svg13"
sodipodi:docname="noise-texture.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata17">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="714"
id="namedview15"
showgrid="false"
inkscape:zoom="0.26222222"
inkscape:cx="28.104465"
inkscape:cy="117.7106"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<defs
id="defs9">
<radialGradient
id="a"
gradientTransform="matrix(1 1 -1 1 0.5 -0.5)">
<stop
stop-color="#455A64"
stop-opacity="0"
offset="0.25"
id="stop2"
style="stop-color:#222222;stop-opacity:0" />
<stop
stop-color="#455A64"
stop-opacity="0.5"
offset="0.75"
id="stop4"
style="stop-color:#222222;stop-opacity:0.50196081" />
<stop
stop-color="#455A64"
stop-opacity="1"
offset="1"
id="stop6"
style="stop-color:#222222;stop-opacity:1" />
</radialGradient>
</defs>
<rect
width="1600"
height="900"
fill="url(#a)"
id="rect11" />
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

@ -1,72 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32">
<defs>
<g id="g" fill="#FFFFFF" opacity="0.7">
<circle cx="8" cy="8" r="8" fill="none"/>
<path d="m8 1a7 7 0 0 0 -7 7 7 7 0 0 0 7 7 7 7 0 0 0 7 -7h-3a4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4v-3z"/>
</g>
</defs>
<use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/>
<use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/>
<use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/>
<use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/>
<use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/>
<use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/>
<use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/>
<use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/>
<use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/>
<use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/>
<use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/>
<use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/>
<use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/>
<use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/>
<use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/>
<use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/>
<use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/>
<use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/>
<use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/>
<use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/>
<use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/>
<use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/>
<use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/>
<use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/>
<use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/>
<use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/>
<use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/>
<use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/>
<use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/>
<use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/>
<use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/>
<use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/>
<use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/>
<use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/>
<use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/>
<use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/>
<use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/>
<use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/>
<use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/>
<use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/>
<use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/>
<use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/>
<use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/>
<use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/>
<use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/>
<use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/>
<use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/>
<use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/>
<use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/>
<use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/>
<use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/>
<use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/>
<use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/>
<use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/>
<use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/>
<use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/>
<use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/>
<use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/>
<use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/>
<use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/>
<use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/>
<use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/>
<use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/>
<use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

@ -1,721 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
id="svg5453"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="yast-bootloader.svg"
inkscape:export-filename="/home/uri/Iconos de KDE/Breeze/apps/software/firefox.png"
inkscape:export-xdpi="1024"
inkscape:export-ydpi="1024">
<defs
id="defs5455">
<linearGradient
id="linearGradient910">
<stop
offset="0"
style="stop-color:#bbb9b9;stop-opacity:1"
id="stop906" />
<stop
offset="1"
style="stop-color:#f3f9f9;stop-opacity:1"
id="stop908" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4231">
<stop
style="stop-color:#016ed4;stop-opacity:1"
offset="0"
id="stop4233" />
<stop
style="stop-color:#00b1ff;stop-opacity:1"
offset="1"
id="stop4235" />
</linearGradient>
<linearGradient
id="linearGradient4232">
<stop
style="stop-color:#3889e9;stop-opacity:1"
offset="0"
id="stop4234-0" />
<stop
style="stop-color:#5ea5fb;stop-opacity:1"
offset="1"
id="stop4236" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4232"
id="linearGradient3426"
x1="399.57144"
y1="545.79797"
x2="399.57144"
y2="517.79797"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4231"
id="linearGradient4237"
x1="-324.94363"
y1="649.7406"
x2="-328.20999"
y2="307.75275"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient910"
id="linearGradient4262"
gradientUnits="userSpaceOnUse"
x1="-326.59558"
y1="651.76007"
x2="-326.59558"
y2="304.86606"
gradientTransform="translate(1.796875e-6,-2.8320312e-6)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4231"
id="linearGradient4266"
gradientUnits="userSpaceOnUse"
x1="-324.94363"
y1="649.7406"
x2="-328.20999"
y2="307.75275" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4231"
id="linearGradient4270"
gradientUnits="userSpaceOnUse"
x1="-324.94363"
y1="649.7406"
x2="-328.20999"
y2="307.75275" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4231"
id="linearGradient4274"
gradientUnits="userSpaceOnUse"
x1="-324.94363"
y1="649.7406"
x2="-328.20999"
y2="307.75275" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4231"
id="linearGradient4278"
gradientUnits="userSpaceOnUse"
x1="-324.94363"
y1="649.7406"
x2="-328.20999"
y2="307.75275" />
<linearGradient
osb:paint="gradient"
id="linearGradient4207">
<stop
id="stop3371"
offset="0"
style="stop-color:#3498db;stop-opacity:1;" />
<stop
id="stop3373"
offset="1"
style="stop-color:#3498db;stop-opacity:0;" />
</linearGradient>
<style
type="text/css"
id="current-color-scheme">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-8">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-7">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-0">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-8-6">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-7-6">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-4">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-8-0">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style
type="text/css"
id="current-color-scheme-7-7">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<linearGradient
id="linearGradient8467-7-3">
<stop
id="stop8469-4-0"
style="stop-color:#787777;stop-opacity:1"
offset="0" />
<stop
id="stop8471-7-5"
style="stop-color:#cde2e9;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8467-7-3"
id="linearGradient898"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.90041913,0,0,0.90041913,-32.452143,47.674009)"
x1="-326.59558"
y1="651.76007"
x2="-326.59558"
y2="304.86606" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#5a5a5a"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="3.6983484"
inkscape:cx="24.65967"
inkscape:cy="47.259031"
inkscape:document-units="px"
inkscape:current-layer="g4222"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:showpageshadow="false"
borderlayer="true"
showguides="false"
inkscape:guide-bbox="true"
showborder="false"
inkscape:snap-bbox="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid4063" />
<sodipodi:guide
position="1.1650391e-05,47.999996"
orientation="4,0"
id="guide4146"
inkscape:locked="false" />
<sodipodi:guide
position="20,43.999996"
orientation="0,48"
id="guide4148"
inkscape:locked="false" />
<sodipodi:guide
position="48.000012,31"
orientation="-4,0"
id="guide4150"
inkscape:locked="false" />
<sodipodi:guide
position="60,-10"
orientation="0,-48"
id="guide4152"
inkscape:locked="false" />
<sodipodi:guide
position="1.1650391e-05,4.0000264"
orientation="4,0"
id="guide4154"
inkscape:locked="false" />
<sodipodi:guide
position="2,44"
orientation="0,48"
id="guide4156"
inkscape:locked="false" />
<sodipodi:guide
position="48.000012,2.6367188e-05"
orientation="-4,0"
id="guide4158"
inkscape:locked="false" />
<sodipodi:guide
position="-10,2.6367188e-05"
orientation="0,-48"
id="guide4160"
inkscape:locked="false" />
<sodipodi:guide
position="48.000012,48.000026"
orientation="0,-4"
id="guide4162"
inkscape:locked="false" />
<sodipodi:guide
position="44.000012,48.000026"
orientation="48,0"
id="guide4164"
inkscape:locked="false" />
<sodipodi:guide
position="44.000012,2.6367188e-05"
orientation="0,4"
id="guide4166"
inkscape:locked="false" />
<sodipodi:guide
position="48.000012,2.6367188e-05"
orientation="-48,0"
id="guide4168"
inkscape:locked="false" />
<sodipodi:guide
position="4.0000422,48.000026"
orientation="0,-4"
id="guide4170"
inkscape:locked="false" />
<sodipodi:guide
position="4.2167969e-05,48.000026"
orientation="48,0"
id="guide4172"
inkscape:locked="false" />
<sodipodi:guide
position="4.2167969e-05,2.6367188e-05"
orientation="0,4"
id="guide4174"
inkscape:locked="false" />
<sodipodi:guide
position="4.0000117,22"
orientation="-48,0"
id="guide4176"
inkscape:locked="false" />
<sodipodi:guide
position="70,4.0000264"
orientation="0,8"
id="guide4155"
inkscape:locked="false" />
<sodipodi:guide
position="28.000012,43.999996"
orientation="0,-8"
id="guide4159"
inkscape:locked="false" />
<sodipodi:guide
position="4.0000117,24.000026"
orientation="20,0"
id="guide4205"
inkscape:locked="false" />
<sodipodi:guide
position="4.0000117,4.0000264"
orientation="0,20"
id="guide4207"
inkscape:locked="false" />
<sodipodi:guide
position="25,30"
orientation="-20,0"
id="guide4209"
inkscape:locked="false" />
<sodipodi:guide
position="65,20"
orientation="0,-20"
id="guide4211"
inkscape:locked="false" />
<sodipodi:guide
position="45,2.6367188e-05"
orientation="0,1"
id="guide4243"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata5458">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-384.57143,-499.798)">
<g
id="g4207"
transform="matrix(0.09021051,0,0,0.09021051,438.33618,482.07658)">
<g
id="g4571"
transform="matrix(1.2040873,0,0,1.2040873,-42.995416,-139.03817)">
<g
transform="matrix(9.206295,0,0,9.206295,-4262.7466,-3635.204)"
id="layer1-5"
inkscape:label="Capa 1">
<g
transform="matrix(0.09021051,0,0,0.09021051,438.33618,482.07658)"
id="g4207-8">
<g
transform="matrix(1.2040873,0,0,1.2040873,63.520816,-89.411289)"
id="g4571-5">
<g
transform="matrix(15.075,0,0,15.075,-6218.9215,-8263.6188)"
id="layer1-9"
inkscape:label="Capa 1">
<circle
style="opacity:1;fill:url(#linearGradient3426);fill-opacity:1;stroke:none;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ellipse4233"
cx="400.57138"
cy="531.79791"
r="0" />
</g>
</g>
</g>
</g>
<g
style="display:inline"
transform="matrix(9.206295,0,0,9.206295,-4388.4576,-4368.3795)"
id="layer1-4"
inkscape:label="Capa 1" />
<g
id="g5299"
transform="translate(-14.073535,-2.0105049)">
<g
id="g4724"
transform="matrix(0.95946374,0,0,0.95946374,-17.710787,32.814237)">
<g
transform="translate(107.06922,39.919379)"
id="g6482">
<g
id="g4224"
transform="translate(2.9510586e-6,-0.87876417)">
<g
transform="matrix(0.94824246,0,0,0.94824246,-4.6469261,6.8243876)"
id="g5856" />
<g
id="g4222"
transform="matrix(1.051075,0,0,1.051075,16.460236,-22.650073)">
<g
id="g4235"
transform="matrix(1.2631853,0,0,1.2631853,90.227386,-154.96066)"
style="fill:url(#linearGradient4237);fill-opacity:1;stroke:none;stroke-width:15.27018261;stroke-miterlimit:4;stroke-dasharray:none">
<circle
r="173.44701"
cy="478.74667"
cx="-325.88733"
id="path4217"
style="opacity:1;fill:url(#linearGradient4262);fill-opacity:1;stroke:none;stroke-width:15.44461155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
style="fill:url(#linearGradient4278);fill-opacity:1;stroke:none;stroke-width:1.73581481;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:label="Capa 1"
id="layer1-14"
transform="matrix(8.7971266,0,0,8.7971266,-3865.8704,-4050.7977)">
<g
style="fill:url(#linearGradient4270);fill-opacity:1;stroke:none;stroke-width:1.03436923;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.6781385,0,0,1.6781385,-263.91891,-368.65033)"
id="layer1-1"
inkscape:label="Capa 1">
<path
cx="396.61932"
cy="526.61151"
r="13.407713"
id="path4693"
style="opacity:1;fill:url(#linearGradient4266);fill-opacity:1;stroke:none;stroke-width:1.03436923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="" />
</g>
<g
transform="matrix(1.0907255,0,0,1.0907255,-87.783225,-57.81163)"
id="layer1-8"
inkscape:label="Capa 1"
style="fill:url(#linearGradient4274);fill-opacity:1;stroke:none;stroke-width:1.59143138;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
<circle
style="opacity:1;fill:url(#linearGradient898);fill-opacity:1;stroke:none;stroke-width:15.4446106;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle896"
cx="-325.88733"
cy="478.74667"
r="156.175" />
</g>
<path
style="fill:#484d4f;fill-opacity:1"
inkscape:connector-curvature="0"
sketch:type="MSShapeGroup"
id="Rocket-3"
d="m -284.08921,495.57931 -10.99656,39.61305 c -0.12974,0.47483 -0.40651,0.89337 -0.77843,1.20958 l -33.81221,28.17546 c -0.44111,0.36327 -0.98082,0.55528 -1.5361,0.55528 -0.24217,0 -0.46705,-0.0346 -0.70058,-0.10725 -0.77842,-0.23958 -1.37781,-0.85022 -1.60442,-1.62847 l -11.61411,-39.99775 c -8.46321,0.34164 -15.93178,-1.59854 -22.07788,-5.82998 l -15.39034,12.6687 c -0.97649,0.7992 -2.39669,0.71789 -3.27112,-0.20066 l -11.4273,-12.0489 c -0.4411,-0.46619 -0.67464,-1.09421 -0.65734,-1.74385 0,-0.64522 0.30273,-1.25663 0.77843,-1.69255 l 15.23639,-14.00224 c -1.30084,-3.5561 -3.63437,-12.41649 -1.16071,-25.89726 l -39.15654,-14.32702 c -0.76113,-0.27764 -1.33111,-0.92321 -1.51448,-1.71391 -0.19027,-0.79054 0,-1.61991 0.60545,-2.20978 l 30.31881,-31.9196 c 0.35462,-0.37192 0.81302,-0.62015 1.31814,-0.71356 l 39.93669,-7.15503 c 7.51613,-8.70644 16.26045,-17.51553 25.99769,-26.20068 56.07346,-49.99932 99.90574,-57.46209 121.04085,-57.46209 6.95654,0 10.79158,0.84589 10.95332,0.88049 0.95141,0.21363 1.67621,0.98307 1.84314,1.94476 0.42381,2.48759 9.5461,61.76186 -67.43241,138.89795 -0.1038,0.0986 -10.42053,10.12126 -24.89319,20.90505 l 0,0 z m -3.63871,-43.11794 c 13.39411,0 24.24882,-10.87772 24.24882,-24.29864 0,-13.42093 -10.85471,-24.29873 -24.24882,-24.29873 -13.39325,0 -24.24883,10.8778 -24.24883,24.29873 0,13.42092 10.85558,24.29864 24.24883,24.29864 z m -91.27127,86.92402 c 0.51895,-0.5129 1.27489,-0.71788 1.98758,-0.54316 0.70923,0.17557 1.28354,0.70057 1.5136,1.39337 l 5.51558,16.41709 c 0.26813,0.78621 0.0865,1.65415 -0.5449,2.22681 l -26.15597,25.05104 c -0.39787,0.38056 -0.92547,0.59419 -1.47555,0.59419 l -22.04847,0 c -0.8701,0 -1.65026,-0.53019 -1.97893,-1.33361 -0.32001,-0.80784 -0.12973,-1.73104 0.49301,-2.33796 l 42.69319,-41.46803 z m -29.21,-13.38676 c 0.40651,-0.42294 0.96352,-1.31217 1.54388,-1.31217 l 0.0864,0 c 0.60545,0 1.16505,0.93178 1.55685,1.38915 l 9.48211,11.64282 c 0.72653,0.84243 0.68328,2.09864 -0.0864,2.89359 l -42.26246,43.27605 c -0.39786,0.40997 -0.95141,0.6409 -1.52225,0.6409 l -6.9868,0 -2.13289,0 c -1.17716,0 -2.13289,-0.95737 -2.13289,-2.13712 l 0,-10.23232 c 0,-0.54749 0.21623,-1.40195 0.58814,-1.79946 l 41.89919,-44.3617 z m -41.84383,5.26579 30.5359,-29.8252 c 0.70923,-0.69713 1.80421,-0.80351 2.62762,-0.27332 l 12.50238,7.93285 c 0.55354,0.35029 0.90817,0.92753 0.97649,1.57294 0.0865,0.64523 -0.15568,1.2908 -0.62274,1.74817 l -43.03827,42.77596 c -0.40652,0.40564 -0.95574,0.62015 -1.50583,0.62015 -0.27678,0 -0.55354,-0.0519 -0.82167,-0.16693 -0.78707,-0.32867 -1.30516,-1.10701 -1.30516,-1.97038 l 0,-20.88792 c 0,-0.57257 0.23352,-1.12837 0.64004,-1.52588 z" />
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

@ -1,326 +0,0 @@
<svg width="96" height="96" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="linearGradient4231">
<stop stop-color="#016ed4" offset="0"/>
<stop stop-color="#00b1ff" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient3426" x1="399.57" x2="399.57" y1="545.8" y2="517.8" gradientUnits="userSpaceOnUse">
<stop stop-color="#3889e9" offset="0"/>
<stop stop-color="#5ea5fb" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4237" x1="-324.94" x2="-328.21" y1="649.74" y2="307.75" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4231"/>
<linearGradient id="linearGradient4262" x1="-326.6" x2="-326.6" y1="651.76" y2="304.87" gradientTransform="translate(1.7969e-6 -2.832e-6)" gradientUnits="userSpaceOnUse">
<stop stop-color="#bbb9b9" offset="0"/>
<stop stop-color="#f3f9f9" offset="1"/>
</linearGradient>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<style type="text/css">.ColorScheme-Text {
color:#31363b;
}
.ColorScheme-Background{
color:#eff0f1;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground{
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#3daee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground{
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#3daee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}</style>
<linearGradient id="linearGradient898" x1="-326.6" x2="-326.6" y1="651.76" y2="304.87" gradientTransform="matrix(.90042 0 0 .90042 -32.452 47.674)" gradientUnits="userSpaceOnUse">
<stop stop-color="#787777" offset="0"/>
<stop stop-color="#cde2e9" offset="1"/>
</linearGradient>
</defs>
<g transform="translate(-384.57 -451.8)">
<g transform="matrix(.090211 0 0 .090211 438.34 482.08)">
<g transform="matrix(1.2041 0 0 1.2041 -42.995 -139.04)">
<g transform="matrix(9.2063 0 0 9.2063 -4262.7 -3635.2)">
<g transform="matrix(.090211 0 0 .090211 438.34 482.08)">
<g transform="matrix(1.2041 0 0 1.2041 63.521 -89.411)">
<g transform="matrix(15.075 0 0 15.075 -6218.9 -8263.6)">
<circle cx="400.57" cy="531.8" r="0" fill="url(#linearGradient3426)"/>
</g>
</g>
</g>
</g>
<g transform="translate(-14.074 -2.0105)">
<g transform="matrix(.95946 0 0 .95946 -17.711 32.814)">
<g transform="translate(107.07 39.919)">
<g transform="translate(2.9511e-6 -.87876)">
<g transform="matrix(1.0511 0 0 1.0511 16.46 -22.65)">
<g transform="matrix(2 0 0 2 539.63 -669.43)">
<g transform="matrix(1.2632 0 0 1.2632 90.227 -154.96)">
<circle cx="-325.89" cy="478.75" r="173.45" fill="url(#linearGradient4262)"/>
<g transform="matrix(8.7971 0 0 8.7971 -3865.9 -4050.8)" fill="url(#linearGradient4237)">
<g transform="matrix(1.6781 0 0 1.6781 -263.92 -368.65)" fill="url(#linearGradient4237)"></g>
</g>
<circle cx="-325.89" cy="478.75" r="156.18" fill="url(#linearGradient898)"/>
</g>
<path d="m-284.09 495.58-10.997 39.613c-0.12974 0.47483-0.40651 0.89337-0.77843 1.2096l-33.812 28.175c-0.44111 0.36327-0.98082 0.55528-1.5361 0.55528-0.24217 0-0.46705-0.0346-0.70058-0.10725-0.77842-0.23958-1.3778-0.85022-1.6044-1.6285l-11.614-39.998c-8.4632 0.34164-15.932-1.5985-22.078-5.83l-15.39 12.669c-0.97649 0.7992-2.3967 0.71789-3.2711-0.20066l-11.427-12.049c-0.4411-0.46619-0.67464-1.0942-0.65734-1.7438 0-0.64522 0.30273-1.2566 0.77843-1.6926l15.236-14.002c-1.3008-3.5561-3.6344-12.416-1.1607-25.897l-39.157-14.327c-0.76113-0.27764-1.3311-0.92321-1.5145-1.7139-0.19027-0.79054 0-1.6199 0.60545-2.2098l30.319-31.92c0.35462-0.37192 0.81302-0.62015 1.3181-0.71356l39.937-7.155c7.5161-8.7064 16.26-17.516 25.998-26.201 56.073-49.999 99.906-57.462 121.04-57.462 6.9565 0 10.792 0.84589 10.953 0.88049 0.95141 0.21363 1.6762 0.98307 1.8431 1.9448 0.42381 2.4876 9.5461 61.762-67.432 138.9-0.1038 0.0986-10.421 10.121-24.893 20.905zm-3.6387-43.118c13.394 0 24.249-10.878 24.249-24.299 0-13.421-10.855-24.299-24.249-24.299-13.393 0-24.249 10.878-24.249 24.299 0 13.421 10.856 24.299 24.249 24.299zm-91.271 86.924c0.51895-0.5129 1.2749-0.71788 1.9876-0.54316 0.70923 0.17557 1.2835 0.70057 1.5136 1.3934l5.5156 16.417c0.26813 0.78621 0.0865 1.6542-0.5449 2.2268l-26.156 25.051c-0.39787 0.38056-0.92547 0.59419-1.4756 0.59419h-22.048c-0.8701 0-1.6503-0.53019-1.9789-1.3336-0.32001-0.80784-0.12973-1.731 0.49301-2.338l42.693-41.468zm-29.21-13.387c0.40651-0.42294 0.96352-1.3122 1.5439-1.3122h0.0864c0.60545 0 1.165 0.93178 1.5568 1.3892l9.4821 11.643c0.72653 0.84243 0.68328 2.0986-0.0864 2.8936l-42.262 43.276c-0.39786 0.40997-0.95141 0.6409-1.5222 0.6409h-9.1197c-1.1772 0-2.1329-0.95737-2.1329-2.1371v-10.232c0-0.54749 0.21623-1.402 0.58814-1.7995l41.899-44.362zm-41.844 5.2658 30.536-29.825c0.70923-0.69713 1.8042-0.80351 2.6276-0.27332l12.502 7.9328c0.55354 0.35029 0.90817 0.92753 0.97649 1.5729 0.0865 0.64523-0.15568 1.2908-0.62274 1.7482l-43.038 42.776c-0.40652 0.40564-0.95574 0.62015-1.5058 0.62015-0.27678 0-0.55354-0.0519-0.82167-0.16693-0.78707-0.32867-1.3052-1.107-1.3052-1.9704v-20.888c0-0.57257 0.23352-1.1284 0.64004-1.5259z" fill="#484d4f"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="37"
height="18"
id="svg3783"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="submenu-open.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3785" />
<sodipodi:namedview
id="base"
pagecolor="#323232"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="16.000001"
inkscape:cx="6.500724"
inkscape:cy="8.2700188"
inkscape:document-units="px"
inkscape:current-layer="g3027"
showgrid="true"
inkscape:showpageshadow="false"
inkscape:window-width="1364"
inkscape:window-height="713"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="0"
inkscape:snap-global="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-nodes="false">
<inkscape:grid
type="xygrid"
id="grid4301"
empspacing="8"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="0"
originy="0" />
<sodipodi:guide
orientation="0,1"
position="14.052204,22.065004"
id="guide3831"
inkscape:locked="false" />
<sodipodi:guide
orientation="0,1"
position="14.052204,-3.9349962"
id="guide3835"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata3788">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-5.9477962,-1025.4272)">
<g
id="g3027"
transform="matrix(0,-1,1,0,-1048.3622,1052.3622)">
<rect
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3092"
width="22.999939"
height="18"
x="1061.3099"
y="-26.934996"
transform="rotate(90)" />
<rect
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3883"
width="22.999849"
height="1"
x="1061.3101"
y="-26.934996"
transform="rotate(90)" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

@ -1,111 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="37"
height="18"
id="svg3783"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="submenu.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3785" />
<sodipodi:namedview
id="base"
pagecolor="#323232"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="16.000001"
inkscape:cx="2.2389557"
inkscape:cy="9.5186346"
inkscape:document-units="px"
inkscape:current-layer="g3027"
showgrid="true"
inkscape:showpageshadow="false"
inkscape:window-width="1364"
inkscape:window-height="713"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="0"
inkscape:snap-global="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid4301"
empspacing="8"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="0"
originy="0" />
<sodipodi:guide
orientation="0,1"
position="14.052204,22.065004"
id="guide3831"
inkscape:locked="false" />
<sodipodi:guide
orientation="0,1"
position="14.052204,-3.9349962"
id="guide3835"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata3788">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-5.9477962,-1025.4272)">
<g
id="g3027"
transform="matrix(0,-1,1,0,-1048.3622,1052.3622)">
<rect
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3092"
width="23.000061"
height="18"
x="1061.3099"
y="-26.934996"
transform="rotate(90)" />
<rect
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3883"
width="23.000061"
height="1"
x="1061.3099"
y="-9.9350014"
transform="rotate(90)" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

@ -1,91 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="50"
height="20"
viewBox="0 0 50 20"
id="svg2"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="toggle-off-dark.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8.65625"
inkscape:cx="15.536778"
inkscape:cy="18.267821"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
width="40px"
inkscape:window-width="1366"
inkscape:window-height="740"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-global="true"
inkscape:snap-nodes="true">
<inkscape:grid
type="xygrid"
id="grid4136" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1032.3622)">
<g
id="g4562"
transform="translate(-5.1851991,-0.59123127)">
<g
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)"
id="g4556">
<path
style="fill:#535353;fill-opacity:1;stroke:#555555;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
id="rect4140" />
<circle
style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:1.37497962;opacity:0.35"
id="circle4587"
cx="15.744821"
cy="1042.4775"
r="8.2498779" />
<circle
r="7.2186861"
cy="1042.4775"
cx="15.744821"
id="circle4531"
style="fill:#d8d8d8;fill-opacity:1;stroke:none;stroke-width:1.20311427" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

@ -1,152 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="50"
height="20"
viewBox="0 0 50 20"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="toggle-on.svg">
<defs
id="defs4">
<linearGradient
inkscape:collect="always"
id="linearGradient4527">
<stop
style="stop-color:#00429b;stop-opacity:1"
offset="0"
id="stop4523" />
<stop
style="stop-color:#499aff;stop-opacity:1"
offset="1"
id="stop4525" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4519">
<stop
style="stop-color:#005cd4;stop-opacity:1"
offset="0"
id="stop4515" />
<stop
style="stop-color:#6fb3ff;stop-opacity:1"
offset="1"
id="stop4517" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4519"
id="linearGradient4521"
x1="15"
y1="1050.3622"
x2="15"
y2="1034.3622"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(14.787004,0.11552347)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4527"
id="linearGradient4529"
x1="19"
y1="1050.3622"
x2="19"
y2="1034.3622"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(14.787004,0.11552347)" />
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter4549"
x="-0.035893459"
width="1.0717869"
y="-0.036107175"
height="1.0722142">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.21888099"
id="feGaussianBlur4551" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="17.3125"
inkscape:cx="8.2531746"
inkscape:cy="16.231187"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
width="40px"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-global="false"
inkscape:snap-nodes="true">
<inkscape:grid
type="xygrid"
id="grid4136" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1032.3622)">
<g
id="g4562"
transform="translate(-5.1851991,-0.59123127)">
<g
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)"
id="g4556">
<path
style="fill:url(#linearGradient4521);fill-opacity:1;stroke:url(#linearGradient4529);stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
id="rect4140" />
<ellipse
style="fill:#00429b;fill-opacity:1;stroke:none;stroke-width:1.21599948;filter:url(#filter4549)"
id="path4142"
cx="30.144405"
cy="1042.701"
rx="7.3176894"
ry="7.2743769"
transform="matrix(1.0073647,0,0,1.0073647,14.206039,-7.5823938)" />
<circle
r="7"
cy="1042.4777"
cx="44.787003"
id="circle4531"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.16666663" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close-active.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#d8354a;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close-hover.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#ff7a80;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#f75a61;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

File diff suppressed because it is too large Load Diff

@ -1,157 +0,0 @@
#
# Thunar
#
style "thunar-handle" { GtkPaned::handle-size = 2 }
style "dark-sidebar" {
GtkTreeView::odd_row_color = @dark_sidebar_bg
GtkTreeView::even_row_color = @dark_sidebar_bg
base[NORMAL] = @dark_sidebar_bg
base[INSENSITIVE] = @dark_sidebar_bg
text[NORMAL] = @fg_color
text[ACTIVE] = @selected_fg_color
text[SELECTED] = @selected_fg_color
}
style "thunar-frame" {
xthickness = 0
ythickness = 0
}
widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame"
widget_class "*ThunarShortcutsView*" style "dark-sidebar"
widget_class "*ThunarTreeView*" style "dark-sidebar"
widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle"
#
# Workaround for colored entries
#
style "entry_border" {
xthickness = 7
ythickness = 5
engine "pixmap" {
image {
function = SHADOW
state = NORMAL
detail = "entry"
file = "assets/entry-border-bg.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = SHADOW
state = ACTIVE
detail = "entry"
file = "assets/entry-border-active-bg.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = FLAT_BOX
state = ACTIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
state = INSENSITIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
detail = "entry_bg"
file = "assets/null.png"
}
}
}
style "combobox_entry_border" = "combobox_entry" {
engine "pixmap" {
image {
function = SHADOW
detail = "entry"
state = NORMAL
shadow = IN
file = "assets/combo-entry-border.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = LTR
}
image {
function = SHADOW
detail = "entry"
state = ACTIVE
file = "assets/combo-entry-border-focus.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = LTR
}
image {
function = SHADOW
detail = "entry"
state = NORMAL
shadow = IN
file = "assets/combo-entry-border-rtl.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = RTL
}
image {
function = SHADOW
detail = "entry"
state = ACTIVE
file = "assets/combo-entry-border-focus-rtl.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = RTL
}
image {
function = FLAT_BOX
state = INSENSITIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
detail = "entry_bg"
file = "assets/null.png"
}
}
}
# Mousepad search entry
widget_class "*MousepadSearchBar*.<GtkEntry>" style "entry_border"
# Mousepad find and replace
widget_class "*MousepadReplaceDialog*.<GtkEntry>" style "entry_border"
# Thunar bulk rename
widget_class "*ThunarRenamerDialog*.<GtkEntry>" style "entry_border"
# Hexchat input box
class "SexySpellEntry" style:highest "entry_border"
# Geany search entries
widget "*GeanyToolbar.*geany-search-entry-no-match*" style "entry_border"
widget "*GeanyToolbar.*GtkEntry*" style "entry_border"
widget "GeanyDialogSearch.*GtkComboBoxEntry*.*geany-search-entry-no-match*" style "combobox_entry_border"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 B

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save