Drop the builtin icon cache
We don't need it anymore, now that the non-standard stock icons are using resources.
@ -1243,7 +1243,6 @@ gtk_built_public_sources = \
|
||||
gtk_built_private_headers = \
|
||||
gtkresources.h \
|
||||
gtkmarshalers.h \
|
||||
gtkbuiltincache.h \
|
||||
gtkprivatetypebuiltins.h
|
||||
|
||||
gtk_built_sources = \
|
||||
@ -1287,7 +1286,6 @@ DISTCLEANFILES =
|
||||
EXTRA_HEADERS =
|
||||
EXTRA_DIST += $(gtk_all_private_h_sources) $(gtk_extra_sources)
|
||||
EXTRA_DIST += $(gtk_built_sources)
|
||||
EXTRA_DIST += $(STOCK_ICONS)
|
||||
|
||||
|
||||
pkgdatadir=$(datadir)/gtk-$(GTK_API_VERSION)
|
||||
@ -1678,51 +1676,6 @@ files:
|
||||
echo $$p; \
|
||||
done
|
||||
|
||||
STOCK_ICONS = \
|
||||
stock-icons/16/gtk-connect.png \
|
||||
stock-icons/16/gtk-convert.png \
|
||||
stock-icons/16/gtk-disconnect.png \
|
||||
stock-icons/16/gtk-edit.png \
|
||||
stock-icons/16/gtk-caps-lock-warning.png \
|
||||
stock-icons/16/gtk-color-picker.png \
|
||||
stock-icons/16/gtk-index.png \
|
||||
stock-icons/16/gtk-orientation-landscape.png \
|
||||
stock-icons/16/gtk-orientation-portrait.png \
|
||||
stock-icons/16/gtk-orientation-reverse-landscape.png \
|
||||
stock-icons/16/gtk-orientation-reverse-portrait.png \
|
||||
stock-icons/16/gtk-page-setup.png \
|
||||
stock-icons/16/gtk-preferences.png \
|
||||
stock-icons/16/gtk-select-color.png \
|
||||
stock-icons/16/gtk-select-font.png \
|
||||
stock-icons/16/gtk-font.png \
|
||||
stock-icons/16/gtk-undelete-ltr.png \
|
||||
stock-icons/16/gtk-undelete-rtl.png \
|
||||
stock-icons/20/gtk-apply.png \
|
||||
stock-icons/20/gtk-cancel.png \
|
||||
stock-icons/20/gtk-no.png \
|
||||
stock-icons/20/gtk-ok.png \
|
||||
stock-icons/20/gtk-yes.png \
|
||||
stock-icons/24/gtk-caps-lock-warning.png \
|
||||
stock-icons/24/gtk-color-picker.png \
|
||||
stock-icons/24/gtk-connect.png \
|
||||
stock-icons/24/gtk-convert.png \
|
||||
stock-icons/24/gtk-disconnect.png \
|
||||
stock-icons/24/gtk-edit.png \
|
||||
stock-icons/24/gtk-font.png \
|
||||
stock-icons/24/gtk-index.png \
|
||||
stock-icons/24/gtk-orientation-reverse-landscape.png \
|
||||
stock-icons/24/gtk-orientation-landscape.png \
|
||||
stock-icons/24/gtk-orientation-reverse-portrait.png \
|
||||
stock-icons/24/gtk-orientation-portrait.png \
|
||||
stock-icons/24/gtk-page-setup.png \
|
||||
stock-icons/24/gtk-preferences.png \
|
||||
stock-icons/24/gtk-select-font.png \
|
||||
stock-icons/24/gtk-select-color.png \
|
||||
stock-icons/24/gtk-undelete-ltr.png \
|
||||
stock-icons/24/gtk-undelete-rtl.png \
|
||||
stock-icons/32/gtk-dnd-multiple.png \
|
||||
stock-icons/32/gtk-dnd.png
|
||||
|
||||
if USE_EXTERNAL_ICON_CACHE
|
||||
gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE)
|
||||
else
|
||||
@ -1733,18 +1686,6 @@ gtk_update_icon_cache_program = ./gtk-update-icon-cache$(EXEEXT)
|
||||
endif
|
||||
endif
|
||||
|
||||
gtkbuiltincache.h:
|
||||
if !USE_EXTERNAL_ICON_CACHE
|
||||
if CROSS_COMPILING
|
||||
$(AM_V_at) $(MAKE) $(AM_MAKEFLAGS) -C native/
|
||||
else
|
||||
$(AM_V_at) $(MAKE) $(AM_MAKEFLAGS) gtk-update-icon-cache$(EXEEXT)
|
||||
endif
|
||||
endif
|
||||
$(AM_V_GEN) $(gtk_update_icon_cache_program) --quiet --force --ignore-theme-index --include-image-data \
|
||||
--source builtin_icons stock-icons > gtkbuiltincache.h.tmp && \
|
||||
mv gtkbuiltincache.h.tmp gtkbuiltincache.h
|
||||
|
||||
gsettings_SCHEMAS = \
|
||||
org.gtk.Settings.FileChooser.gschema.xml \
|
||||
org.gtk.Settings.ColorChooser.gschema.xml \
|
||||
@ -1755,7 +1696,6 @@ gsettings_SCHEMAS = \
|
||||
EXTRA_DIST += \
|
||||
$(resource_files) \
|
||||
$(adwaita_sources) \
|
||||
$(STOCK_ICONS) \
|
||||
$(gsettings_SCHEMAS) \
|
||||
gtk-win32.rc \
|
||||
gtk-win32.rc.in \
|
||||
|
@ -1454,8 +1454,6 @@ find_and_render_icon_source (GtkIconSet *icon_set,
|
||||
return pixbuf;
|
||||
}
|
||||
|
||||
extern GtkIconCache *_builtin_cache;
|
||||
|
||||
static GdkPixbuf*
|
||||
render_fallback_image (GtkStyleContext *context,
|
||||
GtkTextDirection direction,
|
||||
@ -1467,21 +1465,12 @@ render_fallback_image (GtkStyleContext *context,
|
||||
|
||||
if (fallback_source.type == GTK_ICON_SOURCE_EMPTY)
|
||||
{
|
||||
gint index;
|
||||
GdkPixbuf *pixbuf;
|
||||
|
||||
_gtk_icon_theme_ensure_builtin_cache ();
|
||||
|
||||
index = _gtk_icon_cache_get_directory_index (_builtin_cache, "24");
|
||||
pixbuf = _gtk_icon_cache_get_icon (_builtin_cache, "image-missing", index);
|
||||
|
||||
g_return_val_if_fail(pixbuf != NULL, NULL);
|
||||
|
||||
gtk_icon_source_set_pixbuf (&fallback_source, pixbuf);
|
||||
g_object_unref (pixbuf);
|
||||
fallback_source.type = GTK_ICON_SOURCE_STATIC_ICON_NAME;
|
||||
fallback_source.source.icon_name = (gchar *)"image-missing";
|
||||
fallback_source.direction = GTK_TEXT_DIR_NONE;
|
||||
}
|
||||
|
||||
return gtk_render_icon_pixbuf (context, &fallback_source, size);
|
||||
return render_icon_name_pixbuf (&fallback_source, context, size, 1);
|
||||
}
|
||||
|
||||
static GdkPixbuf*
|
||||
|
@ -41,7 +41,6 @@
|
||||
#include "gtkdebug.h"
|
||||
#include "deprecated/gtkiconfactory.h"
|
||||
#include "gtkiconcache.h"
|
||||
#include "gtkbuiltincache.h"
|
||||
#include "gtkintl.h"
|
||||
#include "gtkmain.h"
|
||||
#include "deprecated/gtknumerableiconprivate.h"
|
||||
@ -380,10 +379,6 @@ static guint signal_changed = 0;
|
||||
|
||||
static GHashTable *icon_theme_builtin_icons;
|
||||
|
||||
/* also used in gtkiconfactory.c */
|
||||
GtkIconCache *_builtin_cache = NULL;
|
||||
static GList *builtin_dirs = NULL;
|
||||
|
||||
static guint
|
||||
icon_info_key_hash (gconstpointer _key)
|
||||
{
|
||||
@ -1368,38 +1363,6 @@ load_themes (GtkIconTheme *icon_theme)
|
||||
});
|
||||
}
|
||||
|
||||
void
|
||||
_gtk_icon_theme_ensure_builtin_cache (void)
|
||||
{
|
||||
static gboolean initialized = FALSE;
|
||||
IconThemeDir *dir;
|
||||
static IconThemeDir dirs[5] =
|
||||
{
|
||||
{ ICON_THEME_DIR_THRESHOLD, 0, 16, 16, 16, 2, 1, NULL, "16", -1, NULL, NULL, NULL },
|
||||
{ ICON_THEME_DIR_THRESHOLD, 0, 20, 20, 20, 2, 1, NULL, "20", -1, NULL, NULL, NULL },
|
||||
{ ICON_THEME_DIR_THRESHOLD, 0, 24, 24, 24, 2, 1, NULL, "24", -1, NULL, NULL, NULL },
|
||||
{ ICON_THEME_DIR_THRESHOLD, 0, 32, 32, 32, 2, 1, NULL, "32", -1, NULL, NULL, NULL },
|
||||
{ ICON_THEME_DIR_THRESHOLD, 0, 48, 48, 48, 2, 1, NULL, "48", -1, NULL, NULL, NULL }
|
||||
};
|
||||
gint i;
|
||||
|
||||
if (!initialized)
|
||||
{
|
||||
initialized = TRUE;
|
||||
|
||||
_builtin_cache = _gtk_icon_cache_new ((gchar *)builtin_icons);
|
||||
|
||||
for (i = 0; i < G_N_ELEMENTS (dirs); i++)
|
||||
{
|
||||
dir = &(dirs[i]);
|
||||
dir->cache = _gtk_icon_cache_ref (_builtin_cache);
|
||||
dir->subdir_index = _gtk_icon_cache_get_directory_index (dir->cache, dir->subdir);
|
||||
|
||||
builtin_dirs = g_list_append (builtin_dirs, dir);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
ensure_valid_themes (GtkIconTheme *icon_theme)
|
||||
{
|
||||
@ -1411,8 +1374,6 @@ ensure_valid_themes (GtkIconTheme *icon_theme)
|
||||
return;
|
||||
priv->loading_themes = TRUE;
|
||||
|
||||
_gtk_icon_theme_ensure_builtin_cache ();
|
||||
|
||||
if (priv->themes_valid)
|
||||
{
|
||||
g_get_current_time (&tv);
|
||||
@ -2388,10 +2349,6 @@ gtk_icon_theme_has_icon (GtkIconTheme *icon_theme,
|
||||
icon_name, NULL, NULL))
|
||||
return TRUE;
|
||||
|
||||
if (_builtin_cache &&
|
||||
_gtk_icon_cache_has_icon (_builtin_cache, icon_name))
|
||||
return TRUE;
|
||||
|
||||
if (icon_theme_builtin_icons &&
|
||||
g_hash_table_lookup_extended (icon_theme_builtin_icons,
|
||||
icon_name, NULL, NULL))
|
||||
@ -2468,23 +2425,6 @@ gtk_icon_theme_get_icon_sizes (GtkIconTheme *icon_theme,
|
||||
}
|
||||
}
|
||||
|
||||
for (d = builtin_dirs; d; d = d->next)
|
||||
{
|
||||
IconThemeDir *dir = d->data;
|
||||
|
||||
if (dir->type != ICON_THEME_DIR_SCALABLE && g_hash_table_lookup_extended (sizes, GINT_TO_POINTER (dir->size), NULL, NULL))
|
||||
continue;
|
||||
|
||||
suffix = theme_dir_get_icon_suffix (dir, icon_name, NULL);
|
||||
if (suffix != ICON_SUFFIX_NONE)
|
||||
{
|
||||
if (suffix == ICON_SUFFIX_SVG)
|
||||
g_hash_table_insert (sizes, GINT_TO_POINTER (-1), NULL);
|
||||
else
|
||||
g_hash_table_insert (sizes, GINT_TO_POINTER (dir->size), NULL);
|
||||
}
|
||||
}
|
||||
|
||||
if (icon_theme_builtin_icons)
|
||||
{
|
||||
icons = g_hash_table_lookup (icon_theme_builtin_icons, icon_name);
|
||||
@ -2979,11 +2919,9 @@ theme_lookup_icon (IconTheme *theme,
|
||||
|
||||
if (min_difference == 0)
|
||||
return icon_info_new_builtin (closest_builtin);
|
||||
|
||||
dirs = builtin_dirs;
|
||||
}
|
||||
else
|
||||
dirs = theme->dirs;
|
||||
|
||||
dirs = theme->dirs;
|
||||
|
||||
l = dirs;
|
||||
while (l != NULL)
|
||||
@ -3007,12 +2945,6 @@ theme_lookup_icon (IconTheme *theme,
|
||||
}
|
||||
|
||||
l = l->next;
|
||||
|
||||
if (l == NULL && dirs == builtin_dirs)
|
||||
{
|
||||
dirs = theme->dirs;
|
||||
l = dirs;
|
||||
}
|
||||
}
|
||||
|
||||
if (min_dir)
|
||||
|
@ -366,9 +366,6 @@ gboolean gtk_icon_info_get_attach_points (GtkIconInfo *icon_info
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
const gchar * gtk_icon_info_get_display_name (GtkIconInfo *icon_info);
|
||||
|
||||
/* Non-public methods */
|
||||
void _gtk_icon_theme_ensure_builtin_cache (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_ICON_THEME_H__ */
|
||||
|
Before Width: | Height: | Size: 275 B |
Before Width: | Height: | Size: 606 B |
@ -1,233 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16"
|
||||
sodipodi:docname="gtk-color-picker.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16/gtk-color-picker.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5951">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5953" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5955" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5908">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5910" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5912" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5897">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5899" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5901" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5897"
|
||||
id="linearGradient5927"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1999999,0,0,1.1428571,-0.9703995,-1.627543)"
|
||||
x1="13.080468"
|
||||
y1="5.9400353"
|
||||
x2="9.2901049"
|
||||
y2="6" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5929"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9"
|
||||
y1="4.5"
|
||||
x2="13.027166"
|
||||
y2="4.5"
|
||||
gradientTransform="translate(0.7296001,0.7296001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5931"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.9691274,0.7296001,1.0099953)"
|
||||
x1="10"
|
||||
y1="4.5"
|
||||
x2="13.027166"
|
||||
y2="4.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5951"
|
||||
id="linearGradient5957"
|
||||
x1="14.292573"
|
||||
y1="16.177185"
|
||||
x2="11.069383"
|
||||
y2="16.146906"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.7296001,0.7296001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5960"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5418501,0.5418501,-0.5251218,0.5251217,7.7835297,-4.2457963)"
|
||||
x1="10"
|
||||
y1="4.5"
|
||||
x2="13.027166"
|
||||
y2="4.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5951"
|
||||
id="linearGradient5963"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5257622,0.5455128,-0.5257622,0.5455128,7.5923026,-4.3230724)"
|
||||
x1="14.292573"
|
||||
y1="16.177185"
|
||||
x2="11.069383"
|
||||
y2="16.146906" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5966"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4647454,0.4627611,-0.4647454,0.4627611,8.4175269,-3.2098265)"
|
||||
x1="9"
|
||||
y1="4.5"
|
||||
x2="13.027166"
|
||||
y2="4.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5897"
|
||||
id="linearGradient5969"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6647641,0.6647909,-0.6331087,0.6331343,8.1444442,-6.768289)"
|
||||
x1="13.080468"
|
||||
y1="5.9400353"
|
||||
x2="9.2901049"
|
||||
y2="6" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="11.667619"
|
||||
inkscape:cy="6.5149028"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="982"
|
||||
inkscape:window-height="817"
|
||||
inkscape:window-x="361"
|
||||
inkscape:window-y="138" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
<dc:title>gtk color picker</dc:title>
|
||||
<dc:date>30.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>color picker</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="enable-background:accumulate;overflow:visible;display:inline;visibility:visible;stroke-opacity:1;stroke-dashoffset:0;stroke-miterlimit:4;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:0.99999976000000002;stroke:#555753;fill-rule:evenodd;fill-opacity:1;fill:#eeeeec;color:#000000"
|
||||
d="M 10.84767,4.9346684 L 11.067157,5.1541554 C 11.610004,5.6970027 11.649733,6.5313157 11.156236,7.024813 L 6.4624286,11.607139 C 5.9689314,12.100636 2.3362677,14.970739 1.7934204,14.427892 L 1.5739333,14.208405 C 1.0310861,13.665557 3.7897078,10.255857 4.2832051,9.762359 L 8.9770121,5.142873 C 9.4705094,4.6493756 10.304822,4.3918211 10.84767,4.9346684 z"
|
||||
id="rect5890"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient5969);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 13.874078,2.1272481 C 12.956703,1.209836 11.361269,1.3162023 10.312841,2.364673 C 9.7449425,2.9325945 9.4513505,3.6559253 9.4492411,4.3501426 C 8.9905743,4.1234653 8.6017509,4.0758322 8.4135149,4.264076 C 8.0640388,4.6135662 8.5249419,5.6417762 9.442317,6.5591883 C 10.359691,7.4765993 11.387859,7.9375211 11.737335,7.588031 C 11.925571,7.3997872 11.87794,7.0109477 11.651272,6.5522628 C 12.345461,6.550153 13.068763,6.2565494 13.636662,5.688628 C 14.68509,4.6401576 14.791452,3.0446591 13.874078,2.1272481 z "
|
||||
id="path5878" />
|
||||
<path
|
||||
id="path5906"
|
||||
d="M 13.026489,2.7904413 C 12.625534,2.39417 11.965688,2.3475958 11.006822,3.0043942 C 10.530392,3.4787905 10.284086,4.0830031 10.282317,4.662897 C 10.343451,5.3158517 9.8686112,5.1274213 9.5125043,4.83874 C 9.8450264,5.3409472 10.373024,5.9553439 10.692377,6.2100296"
|
||||
style="opacity:0.49781662;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5966);stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:nodetypes="ccccs" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5963);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.1438886,8.3583403 L 4.6460014,9.868477 C 4.3418885,10.017032 1.7828879,12.997698 1.9764202,13.771457 C 2.0094978,13.903704 2.1152033,14.022249 2.2454254,14.050568 C 2.965873,14.207239 5.8943382,11.649052 6.0752567,11.319795 C 6.9955935,10.320846 8.2039266,9.465353 9,8.3881899 L 6.1438886,8.3583403 z"
|
||||
id="path5882"
|
||||
sodipodi:nodetypes="ccssccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
id="path5916"
|
||||
d="M 2.5830232,13.450294 C 2.3130719,13.180342 5.4830951,9.7307727 5.7573174,9.4565505 L 8.4068322,6.807036 C 8.6810544,6.5328138 8.9209544,6.4302798 9.1909058,6.700231 L 9.3000539,6.8093792 C 9.5700047,7.07933 9.4344398,7.3852934 9.1602177,7.6595157 L 6.3992215,10.30903 C 6.1249993,10.583252 2.8529741,13.720245 2.5830232,13.450294 z"
|
||||
style="opacity:0.49781662;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5960);stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 692 B |
@ -1,378 +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://web.resource.org/cc/"
|
||||
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="16px"
|
||||
height="16px"
|
||||
id="svg5345"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docbase="/home/andreas/project/gtk"
|
||||
sodipodi:docname="gtk-connect.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk/gtk-connect.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs5347">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5324">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5326" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5328" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5334"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966"
|
||||
gradientTransform="matrix(-1,0,0,1.1369793,24.954951,-5.3013027)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.18061832"
|
||||
width="1.3612366"
|
||||
y="-0.26189653"
|
||||
height="1.5237931"
|
||||
id="filter5312">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.38581007"
|
||||
id="feGaussianBlur5314" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
id="linearGradient5156">
|
||||
<stop
|
||||
style="stop-color:#cbcbc4;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5158" />
|
||||
<stop
|
||||
id="stop5160"
|
||||
offset="0.72343725"
|
||||
style="stop-color:#878983;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c9cac7;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient5284"
|
||||
x1="17.435883"
|
||||
y1="6"
|
||||
x2="17.293747"
|
||||
y2="16.640388"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.0884708,-4.5049e-2,-4.57506)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14054401"
|
||||
width="1.281088"
|
||||
y="-0.70711207"
|
||||
height="2.4142241"
|
||||
id="filter5260">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1785201"
|
||||
id="feGaussianBlur5262" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5168">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5170" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5172" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5168"
|
||||
id="radialGradient5174"
|
||||
cx="12.1875"
|
||||
cy="19.625"
|
||||
fx="12.1875"
|
||||
fy="19.625"
|
||||
r="10.0625"
|
||||
gradientTransform="matrix(1,0,0,0.1987578,0,15.724379)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7098">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7100" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop7102" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7045">
|
||||
<stop
|
||||
style="stop-color:#747671;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7047" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7049" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7045"
|
||||
id="linearGradient7051"
|
||||
x1="14.738757"
|
||||
y1="1.4822139"
|
||||
x2="15.501282"
|
||||
y2="1.4822139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-29)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7061">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7063" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7065" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7061"
|
||||
id="linearGradient7067"
|
||||
x1="15.201255"
|
||||
y1="2.4986799"
|
||||
x2="15.75"
|
||||
y2="2.4986799"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-29)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7075">
|
||||
<stop
|
||||
style="stop-color:#72746f;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7077" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7079" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6818" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6820" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6776"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6778"
|
||||
offset="0"
|
||||
style="stop-color:#eeeeec;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6780"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6632">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6634" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6636" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6776"
|
||||
id="linearGradient6774"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6.9826794"
|
||||
y1="6.9401946"
|
||||
x2="11.269514"
|
||||
y2="12.199301"
|
||||
gradientTransform="translate(0,-30)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6632"
|
||||
id="linearGradient6810"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.3195438"
|
||||
y1="8.0008545"
|
||||
x2="1.0312494"
|
||||
y2="8.0008545"
|
||||
gradientTransform="translate(0,-30)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6816"
|
||||
id="radialGradient6822"
|
||||
cx="7"
|
||||
cy="14"
|
||||
fx="7"
|
||||
fy="14"
|
||||
r="7.5"
|
||||
gradientTransform="matrix(1,0,0,0.25,0,10.5)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6776"
|
||||
id="linearGradient6825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-1)"
|
||||
x1="14.5625"
|
||||
y1="3.125"
|
||||
x2="14.5625"
|
||||
y2="13.672975" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7075"
|
||||
id="linearGradient7081"
|
||||
x1="2.7251432"
|
||||
y1="5.5259809"
|
||||
x2="0.48591045"
|
||||
y2="5.5259809"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-29)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7098"
|
||||
id="linearGradient7096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2,-30)"
|
||||
x1="12.78125"
|
||||
y1="7.5625"
|
||||
x2="15.033292"
|
||||
y2="7.5625" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#c4c4c4"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="8.4894424"
|
||||
inkscape:cy="5.2390064"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="779"
|
||||
inkscape:window-x="467"
|
||||
inkscape:window-y="238"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempcolor="#fff23f"
|
||||
gridempopacity="0.37647059"
|
||||
gridempspacing="2"
|
||||
inkscape:grid-points="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata5350">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.1781609;color:#000000;fill:url(#radialGradient5174);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5260);enable-background:accumulate"
|
||||
id="path5166"
|
||||
sodipodi:cx="12.1875"
|
||||
sodipodi:cy="19.625"
|
||||
sodipodi:rx="10.0625"
|
||||
sodipodi:ry="2"
|
||||
d="M 22.25,19.625 A 10.0625,2 0 1 1 2.125,19.625 A 10.0625,2 0 1 1 22.25,19.625 z"
|
||||
transform="matrix(1.2919255,0,0,1,-11.745342,-2.0625)" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5284);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M -11.593592,11.752001 C -5.4064078,11.944418 -1.262563,6.9500907 5.454951,6.853883 C 5.454951,6.853883 6.454951,2.5 11.454951,2.5 L 12.454951,3.5884707 L 12.454951,13.384708 L 11.454951,14.473178 C 6.454951,14.473178 5.454951,10.119295 5.454951,10.119295 C -0.820622,10.119295 -3.019922,14.440165 -11.593592,15.017413"
|
||||
id="path5544"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5316"
|
||||
d="M 13.479223,8.2668741 L 14.142136,7.6481556 C 16.950937,7.8603852 17.897062,9.4547099 18.605747,11.18369 C 17.332956,10.494445 17.320424,9.3668499 13.572986,9.5383523 L 13.479223,8.2668741 z"
|
||||
style="opacity:0.72988503;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5312);enable-background:accumulate"
|
||||
transform="matrix(-1,0,0,1,25.156041,-3.4375)" />
|
||||
<path
|
||||
style="opacity:0.45402299;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5334);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 11.454951,5.5000001 L 11.454951,12.890365 L 10.954951,13.458855 C 7,13.458855 5.954951,8.9109379 5.954951,8.9109379 C -1,8.3424483 -1.163468,12.689617 -12,14.027344"
|
||||
id="path5332"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
ry="1"
|
||||
rx="1"
|
||||
y="0.5"
|
||||
x="12.5"
|
||||
height="15.031409"
|
||||
width="10.214464"
|
||||
id="rect5342"
|
||||
style="opacity:1;color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5340"
|
||||
width="11.75"
|
||||
height="19.9375"
|
||||
x="14.5"
|
||||
y="-1.9375"
|
||||
rx="1"
|
||||
ry="1" />
|
||||
<path
|
||||
style="opacity:0.77011497;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 5.8125,7.4375 C 6.449203,6.366709 6.276574,5.363362 8.757981,4.138846 C 7.462326,5.212882 5.81381,8.501193 6.68719,9.968606 L 5.4375,8.5 C 1.045728,8.289108 -2.78102,10.620825 -6.875,11.75 C -2.7351,10.223234 0.636006,7.927672 5.8125,7.4375 z"
|
||||
id="path5380"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 677 B |
@ -1,133 +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://web.resource.org/cc/"
|
||||
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="16px"
|
||||
height="16px"
|
||||
id="svg4908"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44+devel"
|
||||
sodipodi:docbase="/home/andreas/project/gtk/16"
|
||||
sodipodi:docname="gtk-convert.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk-convert.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:modified="true">
|
||||
<defs
|
||||
id="defs4910">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5899">
|
||||
<stop
|
||||
style="stop-color:#f66d6d;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5901" />
|
||||
<stop
|
||||
style="stop-color:#d00e0e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5903" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5899"
|
||||
id="radialGradient5905"
|
||||
cx="10.628995"
|
||||
cy="11.018212"
|
||||
fx="10.628995"
|
||||
fy="11.018212"
|
||||
r="2.8514368"
|
||||
gradientTransform="matrix(0.9387545,-1.1022182e-2,1.2105798e-2,0.917556,0.6110392,1.1229117)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.197802"
|
||||
inkscape:cx="12.98387"
|
||||
inkscape:cy="9.5174568"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1674"
|
||||
inkscape:window-height="969"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26" />
|
||||
<metadata
|
||||
id="metadata4913">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient5905);fill-opacity:1.0;stroke:#790000;stroke-width:0.92762601;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4926"
|
||||
sodipodi:cx="11.352475"
|
||||
sodipodi:cy="11.630198"
|
||||
sodipodi:rx="2.3876238"
|
||||
sodipodi:ry="2.2524753"
|
||||
d="M 13.740099 11.630198 A 2.3876238 2.2524753 0 1 1 8.9648514,11.630198 A 2.3876238 2.2524753 0 1 1 13.740099 11.630198 z"
|
||||
transform="matrix(1.0470662,0,0,1.1098901,0.1132071,-0.9082411)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.58695652;fill:#eeeeec;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"
|
||||
id="path4928"
|
||||
sodipodi:cx="11.712872"
|
||||
sodipodi:cy="12.125743"
|
||||
sodipodi:rx="1.1262376"
|
||||
sodipodi:ry="1.1262376"
|
||||
d="M 12.839109 12.125743 A 1.1262376 1.1262376 0 1 1 10.586634,12.125743 A 1.1262376 1.1262376 0 1 1 12.839109 12.125743 z"
|
||||
transform="matrix(0.8879121,0,0,0.8879121,0.5999996,0.2334061)" />
|
||||
<path
|
||||
style="fill:#3465a4;fill-rule:evenodd;stroke:#132c52;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1"
|
||||
d="M 0.5,5.8999999 L 3.5387914,0.47747524 L 8.5000002,5.5391088 L 4.2213588,9.4999998 L 0.5,5.8999999 z "
|
||||
id="path5907"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.54891304;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3,2.4641089 L 3.680198,1.3266089 L 4,1.6757426 L 4,8.6170792 L 3,7.6034653 L 3,2.4641089 z "
|
||||
id="rect5909"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.43478261"
|
||||
d="M 1.1351485,5.8486987 L 3,2.5076731 L 3,7.5495049 L 1.1351485,5.8486987 z "
|
||||
id="path5911"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.32608696"
|
||||
d="M 1.729703,5.7522277 L 3.7747525,2.090099 L 7.0675743,5.5034652 L 4.2121287,8.1351485 L 1.729703,5.7522277 z "
|
||||
id="path5914"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 9.044769,2.4999999 L 11.480646,2.4999999 C 12.01156,2.4192207 12.478763,3.0711021 12.5,3.4999999 L 12.5,5.4999998"
|
||||
id="path5916"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 10,5 L 15,5 L 12.487086,8 L 10,5 z "
|
||||
id="path5918" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 715 B |
@ -1,512 +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://web.resource.org/cc/"
|
||||
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="16px"
|
||||
height="16px"
|
||||
id="svg5345"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docbase="/home/andreas/project/gtk"
|
||||
sodipodi:docname="gtk-disconnect.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk/gtk-connect.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs5347">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5324">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5326" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5328" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5334"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966"
|
||||
gradientTransform="matrix(-1,0,0,1.1369793,19.954951,-5.3013027)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.18061832"
|
||||
width="1.3612366"
|
||||
y="-0.26189653"
|
||||
height="1.5237931"
|
||||
id="filter5312">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.38581007"
|
||||
id="feGaussianBlur5314" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
id="linearGradient5156">
|
||||
<stop
|
||||
style="stop-color:#cbcbc4;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5158" />
|
||||
<stop
|
||||
id="stop5160"
|
||||
offset="0.72343725"
|
||||
style="stop-color:#878983;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c9cac7;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient5284"
|
||||
x1="17.435883"
|
||||
y1="6"
|
||||
x2="17.293747"
|
||||
y2="16.640388"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.0884708,-5.045049,-4.57506)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14054401"
|
||||
width="1.281088"
|
||||
y="-0.70711207"
|
||||
height="2.4142241"
|
||||
id="filter5260">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1785201"
|
||||
id="feGaussianBlur5262" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5168">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5170" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5172" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5168"
|
||||
id="radialGradient5174"
|
||||
cx="12.1875"
|
||||
cy="19.625"
|
||||
fx="12.1875"
|
||||
fy="19.625"
|
||||
r="10.0625"
|
||||
gradientTransform="matrix(1,0,0,0.1987578,0,15.724379)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7098">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7100" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop7102" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7045">
|
||||
<stop
|
||||
style="stop-color:#747671;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7047" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7049" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7061">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7063" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7065" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6818" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6820" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6776"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6778"
|
||||
offset="0"
|
||||
style="stop-color:#eeeeec;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6780"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6816"
|
||||
id="radialGradient6822"
|
||||
cx="7"
|
||||
cy="14"
|
||||
fx="7"
|
||||
fy="14"
|
||||
r="7.5"
|
||||
gradientTransform="matrix(1,0,0,0.25,0,10.5)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6776"
|
||||
id="linearGradient6825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-1)"
|
||||
x1="14.5625"
|
||||
y1="3.125"
|
||||
x2="14.5625"
|
||||
y2="13.672975" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(-1,0,0,1,25,0)"
|
||||
y2="11.693966"
|
||||
x2="16.90625"
|
||||
y1="16.75"
|
||||
x1="16.90625"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5691"
|
||||
xlink:href="#linearGradient5324"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="11.693966"
|
||||
x2="16.90625"
|
||||
y1="16.75"
|
||||
x1="16.90625"
|
||||
id="linearGradient5330"
|
||||
xlink:href="#linearGradient5324"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="16.640388"
|
||||
x2="17.293747"
|
||||
y1="6"
|
||||
x1="17.435883"
|
||||
id="linearGradient5684"
|
||||
xlink:href="#linearGradient5156"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="14.75"
|
||||
x2="17"
|
||||
y1="7.03125"
|
||||
x1="17.198223"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5274"
|
||||
xlink:href="#linearGradient5266"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="14.75"
|
||||
x2="17"
|
||||
y1="10.375"
|
||||
x1="17.375"
|
||||
id="linearGradient5272"
|
||||
xlink:href="#linearGradient5266"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.1987578,0,15.724379)"
|
||||
r="10.0625"
|
||||
fy="19.625"
|
||||
fx="12.1875"
|
||||
cy="19.625"
|
||||
cx="12.1875"
|
||||
id="radialGradient5676"
|
||||
xlink:href="#linearGradient5168"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="12.96875"
|
||||
x2="9.4133587"
|
||||
y1="0.34235775"
|
||||
x1="9.4133587"
|
||||
gradientTransform="matrix(-1,0,0,1,26,4)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4959"
|
||||
xlink:href="#linearGradient5156"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="7.5625"
|
||||
x2="14.314325"
|
||||
y1="7.5625"
|
||||
x1="12.59375"
|
||||
gradientTransform="translate(1,4)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5673"
|
||||
xlink:href="#linearGradient7098"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="13.672975"
|
||||
x2="14.5625"
|
||||
y1="3.125"
|
||||
x1="14.5625"
|
||||
gradientTransform="translate(1,-1)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5671"
|
||||
xlink:href="#linearGradient6776"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.25,0,10.5)"
|
||||
r="7.5"
|
||||
fy="14"
|
||||
fx="7"
|
||||
cy="14"
|
||||
cx="7"
|
||||
id="radialGradient5669"
|
||||
xlink:href="#linearGradient6816"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="translate(16,6.5)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="2.4986799"
|
||||
x2="15.75"
|
||||
y1="2.4986799"
|
||||
x1="14.827146"
|
||||
id="linearGradient5654"
|
||||
xlink:href="#linearGradient7061"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,5)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="1.4822139"
|
||||
x2="15.501282"
|
||||
y1="1.4822139"
|
||||
x1="14.738757"
|
||||
id="linearGradient5646"
|
||||
xlink:href="#linearGradient7045"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient5626">
|
||||
<stop
|
||||
id="stop5628"
|
||||
offset="0"
|
||||
style="stop-color:#cbcbc4;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#878983;stop-opacity:1"
|
||||
offset="0.72343725"
|
||||
id="stop5630" />
|
||||
<stop
|
||||
id="stop5632"
|
||||
offset="1"
|
||||
style="stop-color:#c9cac7;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5266"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5268"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.68627451;"
|
||||
offset="0.47403327"
|
||||
id="stop5276" />
|
||||
<stop
|
||||
id="stop5270"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5168"
|
||||
id="radialGradient5708"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.1987578,0,15.724379)"
|
||||
cx="12.1875"
|
||||
cy="19.625"
|
||||
fx="12.1875"
|
||||
fy="19.625"
|
||||
r="10.0625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient5710"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.0884708,-8.045049,-4.57506)"
|
||||
x1="17.435883"
|
||||
y1="6"
|
||||
x2="17.293747"
|
||||
y2="16.640388" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5712"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,0,0,1.1369793,16.954951,-5.3013027)"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5717"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,0,0,1.1369793,22.704951,12.328139)"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient5721"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.0884708,-2.295049,13.054382)"
|
||||
x1="17.435883"
|
||||
y1="6"
|
||||
x2="17.293747"
|
||||
y2="16.640388" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#c4c4c4"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="16.879337"
|
||||
inkscape:cy="15.676145"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="779"
|
||||
inkscape:window-x="467"
|
||||
inkscape:window-y="238"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempcolor="#fff23f"
|
||||
gridempopacity="0.37647059"
|
||||
gridempspacing="2"
|
||||
inkscape:grid-points="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata5350">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.1781609;color:#000000;fill:url(#radialGradient5174);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5260);enable-background:accumulate"
|
||||
id="path5166"
|
||||
sodipodi:cx="12.1875"
|
||||
sodipodi:cy="19.625"
|
||||
sodipodi:rx="10.0625"
|
||||
sodipodi:ry="2"
|
||||
d="M 22.25,19.625 A 10.0625,2 0 1 1 2.125,19.625 A 10.0625,2 0 1 1 22.25,19.625 z"
|
||||
transform="matrix(1.2919255,0,0,1,-11.745342,-2.0625)" />
|
||||
<rect
|
||||
style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#766100;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5336"
|
||||
width="5.5"
|
||||
height="2"
|
||||
x="6.067482"
|
||||
y="4.5"
|
||||
rx="1"
|
||||
ry="1" />
|
||||
<rect
|
||||
ry="1"
|
||||
rx="1"
|
||||
y="10.5"
|
||||
x="6.004982"
|
||||
height="2"
|
||||
width="5.5"
|
||||
id="rect5338"
|
||||
style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#766100;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5284);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M -16.593592,11.752001 C -10.406408,11.944418 -6.262563,6.9500907 0.454951,6.853883 C 0.454951,6.853883 1.454951,2.5 6.454951,2.5 L 7.454951,3.5884707 L 7.454951,13.384708 L 6.454951,14.473178 C 1.454951,14.473178 0.454951,10.119295 0.454951,10.119295 C -5.820622,10.119295 -8.019922,14.440165 -16.593592,15.017413"
|
||||
id="path5544"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5316"
|
||||
d="M 13.479223,8.2668741 L 14.142136,7.6481556 C 16.950937,7.8603852 17.897062,9.4547099 18.605747,11.18369 C 17.332956,10.494445 17.320424,9.3668499 13.572986,9.5383523 L 13.479223,8.2668741 z"
|
||||
style="opacity:0.72988503;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5312);enable-background:accumulate"
|
||||
transform="matrix(-1,0,0,1,20.156041,-3.4375)" />
|
||||
<path
|
||||
style="opacity:0.45402299;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5334);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 6.454951,5.5000001 L 6.454951,12.890365 L 5.954951,13.458855 C 2,13.458855 0.954951,8.9109379 0.954951,8.9109379 C -6,8.3424483 -6.163468,12.689617 -17,14.027344"
|
||||
id="path5332"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
ry="1"
|
||||
rx="1"
|
||||
y="0.5"
|
||||
x="13.625"
|
||||
height="15.031409"
|
||||
width="10.214464"
|
||||
id="rect5342"
|
||||
style="opacity:1;color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5340"
|
||||
width="11.75"
|
||||
height="19.9375"
|
||||
x="15.625"
|
||||
y="-1.9375"
|
||||
rx="1"
|
||||
ry="1" />
|
||||
<path
|
||||
style="opacity:0.77011497;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 0.8125,7.4375 C 1.449203,6.366709 1.276574,5.363362 3.757981,4.138846 C 2.462326,5.212882 0.81381,8.501193 1.68719,9.968606 L 0.4375,8.5 C -3.954272,8.289108 -7.78102,10.620825 -11.875,11.75 C -7.7351,10.223234 -4.363994,7.927672 0.8125,7.4375 z"
|
||||
id="path5380"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 755 B |
@ -1,295 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16"
|
||||
sodipodi:docname="gtk-edit.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6045"
|
||||
id="linearGradient6013"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-2.8352152,-8.16808)"
|
||||
x1="19.28145"
|
||||
y1="16.874674"
|
||||
x2="21.347517"
|
||||
y2="19.035276" />
|
||||
<linearGradient
|
||||
id="linearGradient6045"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6047"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6049"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6045"
|
||||
id="linearGradient6011"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-4.8474302,-6.103637)"
|
||||
x1="19.28145"
|
||||
y1="16.874674"
|
||||
x2="20.852045"
|
||||
y2="18.544029" />
|
||||
<linearGradient
|
||||
id="linearGradient4924"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4926"
|
||||
offset="0"
|
||||
style="stop-color:#ef2929;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4928"
|
||||
offset="1"
|
||||
style="stop-color:#cc0000;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4924"
|
||||
id="linearGradient6009"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4140801,0,0,0.4496565,-2.5623905,-0.7746861)"
|
||||
x1="52.658638"
|
||||
y1="14.434367"
|
||||
x2="56.861996"
|
||||
y2="18.59844" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4913">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4915" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4917" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="8.646987"
|
||||
y1="17.297026"
|
||||
x2="27.577396"
|
||||
y2="-2.5854259"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7647058,0,0,0.75,-1.1764704,-0.6250001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7647058,0,0,0.7463802,-2.117645,2.50982e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.677447,0,0,0.8182202,0.383314,-0.5457611)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4913"
|
||||
id="linearGradient4919"
|
||||
x1="10.751748"
|
||||
y1="5"
|
||||
x2="10.553559"
|
||||
y2="2.2768037"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.182764"
|
||||
inkscape:cx="13.6131"
|
||||
inkscape:cy="8.7285701"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="256"
|
||||
inkscape:window-y="29" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk edit</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6062);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 2.7503383,0.49999959 L 10.190838,0.49999959 C 10.883525,0.49999959 14.5,4.0469266 14.5,4.7262932 L 14.5,14.273705 C 14.5,14.953073 13.942349,15.5 13.249662,15.5 L 2.7503383,15.5 C 2.0576508,15.5 1.4999999,14.953073 1.4999999,14.273705 L 1.4999999,1.7262933 C 1.4999999,1.0469266 2.0576508,0.49999959 2.7503383,0.49999959 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 3.6964079,1.4999999 L 10.084255,1.4999999 C 10.747066,1.4999999 13.5,4.5815742 13.5,5.2357791 L 13.47583,6.9366593 L 13.47583,13.319124 C 13.47583,13.973329 12.942231,14.5 12.279422,14.5 L 3.6964079,14.5 C 3.0335979,14.5 2.5000001,13.973329 2.5000001,13.319124 L 2.5000001,2.6808752 C 2.5000001,2.0266703 3.0335979,1.4999999 3.6964079,1.4999999 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999988px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path5115"
|
||||
d="M 4.3513583,6.5 L 11.536222,6.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 10.54502,1 L 13.987531,5.1962178 L 14,6 L 10.570054,5.9999999 L 10.54502,1 z "
|
||||
style="fill:url(#linearGradient6114);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.3513583,4.5 L 11.536222,4.5"
|
||||
id="path5015"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6082);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4919);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 14.103719,4.5 L 13.44905,4.5 L 10.520774,4.5 L 10.5,0.83875574"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.3513583,8.5 L 11.536222,8.5"
|
||||
id="path5117"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path5119"
|
||||
d="M 4.3513583,10.5 L 11.536222,10.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
id="g6002"
|
||||
transform="matrix(0.6862203,0,0,0.6823665,6.0043125e-2,-0.5706492)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path2788"
|
||||
d="M 19.575478,4.566006 L 9.589185,14.735443 L 7.9625318,19.071551 L 9.265874,18.551716 L 12.11763,17.414301 L 22.482768,7.419573 C 22.733019,6.903184 20.184608,4.03152 19.575478,4.566006 z "
|
||||
style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1.46136725px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path2803"
|
||||
d="M 7.1311928,19.955609 L 8.2870268,16.853295 C 8.2835468,17.365676 9.4722848,18.784668 10.109776,18.655613"
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6009);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.46136725px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 19.461302,4.685776 L 18.031604,6.210856 L 20.693475,9.149115 L 22.372758,7.443045 C 22.724348,6.655211 20.3171,3.8703324 19.461302,4.685776 z "
|
||||
id="path4922"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6011);stroke-width:1.46136725px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.53289472"
|
||||
d="M 17.493055,7.6113931 L 10.221325,15.059803 L 9.6859738,17.316707 L 11.615472,16.279841 L 19.068761,9.1107783 C 19.223729,8.7902283 17.870259,7.2796091 17.493055,7.6113931 z "
|
||||
id="path5935"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5011"
|
||||
d="M 19.802552,5.745139 L 18.922414,6.7524104 L 20.118372,7.9229014 L 21.180069,7.194977 C 21.335037,6.874427 20.179756,5.413355 19.802552,5.745139 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6013);stroke-width:1.46136725px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.53289472" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 706 B |
@ -1,125 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/gnome/gnome-icon-theme-extras/temp/stock-icons/16"
|
||||
sodipodi:docname="gtk-font.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient5139">
|
||||
<stop
|
||||
id="stop5143"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5141"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5139"
|
||||
id="radialGradient5145"
|
||||
cx="36.062447"
|
||||
cy="16.822001"
|
||||
fx="36.062447"
|
||||
fy="16.822001"
|
||||
r="10.929825"
|
||||
gradientTransform="matrix(1.3130683,0,0,1.3146353,-39.352456,-9.419145)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#dedede"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="16.853327"
|
||||
inkscape:cy="0.58841651"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="958"
|
||||
inkscape:window-height="927"
|
||||
inkscape:window-x="552"
|
||||
inkscape:window-y="101" />
|
||||
<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" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5145);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect4552"
|
||||
width="15"
|
||||
height="15"
|
||||
x="0.49999994"
|
||||
y="0.49999994"
|
||||
rx="1.767767"
|
||||
ry="1.767767" />
|
||||
<rect
|
||||
ry="0.79549515"
|
||||
rx="0.79549515"
|
||||
y="1.5"
|
||||
x="1.4999982"
|
||||
height="13"
|
||||
width="13.000003"
|
||||
id="rect5149"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:10.25850296px;font-style:normal;font-weight:normal;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:'Bitstream Vera Sans'"
|
||||
x="1.84092"
|
||||
y="13.745363"
|
||||
id="text4549"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4551"
|
||||
x="1.84092"
|
||||
y="13.745363">a</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:10.2961731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:'Bitstream Vera Sans'"
|
||||
x="7.1352825"
|
||||
y="9.8226795"
|
||||
id="text4553"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4555"
|
||||
x="7.1352825"
|
||||
y="9.8226795">b</tspan></text>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 753 B |
@ -1,365 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44+devel"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/lapo/Desktop"
|
||||
sodipodi:docname="gtk-index-16.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="true">
|
||||
<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" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs5">
|
||||
<linearGradient
|
||||
id="linearGradient4392"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4394"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4396"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3283">
|
||||
<stop
|
||||
style="stop-color:#f4dbb3;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3285" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3287" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3269">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3271" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3273" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3261">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3263" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3265" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3255" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3208">
|
||||
<stop
|
||||
style="stop-color:#c17d11;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3210" />
|
||||
<stop
|
||||
style="stop-color:#c17d11;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3212" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3283"
|
||||
id="radialGradient4462"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.8750102,0,1.6248744)"
|
||||
cx="42.9375"
|
||||
cy="13.000056"
|
||||
fx="42.9375"
|
||||
fy="13.000056"
|
||||
r="5.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4464"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.818422"
|
||||
x2="42.65625"
|
||||
y2="15.54274" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4466"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4468"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4470"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="13.499057"
|
||||
x2="42.65625"
|
||||
y2="15.5698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3269"
|
||||
id="linearGradient4472"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="41.40625"
|
||||
y1="10.0625"
|
||||
x2="41.40625"
|
||||
y2="13.719952" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3253"
|
||||
id="linearGradient4474"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="43.40625"
|
||||
y1="12.154325"
|
||||
x2="43.40625"
|
||||
y2="13.879166" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3261"
|
||||
id="linearGradient4476"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="45.46875"
|
||||
y1="12.093524"
|
||||
x2="45.46875"
|
||||
y2="13.781725" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient2262"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754"
|
||||
gradientTransform="translate(57,-1)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient2267"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(57,2)"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient2271"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(57,5)"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient2275"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(57,8)"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-height="721"
|
||||
inkscape:window-width="992"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showborder="false"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempspacing="2"
|
||||
showguides="true"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="14.296268"
|
||||
inkscape:cy="17.931579"
|
||||
inkscape:window-x="304"
|
||||
inkscape:window-y="63"
|
||||
inkscape:current-layer="svg2"
|
||||
width="16px"
|
||||
height="16px" />
|
||||
<rect
|
||||
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4398"
|
||||
width="13"
|
||||
height="14"
|
||||
x="0.5"
|
||||
y="0.5"
|
||||
rx="2.1223905"
|
||||
ry="2.1223905" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccsc"
|
||||
id="rect4400"
|
||||
d="M 2.5,1 L 11.5,1 C 12.331,1 13,1.669 13,2.5 C 13,3.331 12.331,4 11.5,4 L 2.5,4 C 1.669,4 1,3.331 1,2.5 C 1,1.669 1.669,1 2.5,1 z "
|
||||
style="opacity:0.98999999;fill:url(#linearGradient2262);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccsc"
|
||||
id="path2265"
|
||||
d="M 2.5,4 L 11.5,4 C 12.331,4 13,4.669 13,5.5 C 13,6.331 12.331,7 11.5,7 L 2.5,7 C 1.669,7 1,6.331 1,5.5 C 1,4.669 1.669,4 2.5,4 z "
|
||||
style="opacity:0.98999999;fill:url(#linearGradient2267);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccsc"
|
||||
id="path2269"
|
||||
d="M 2.5,7 L 11.5,7 C 12.331,7 13,7.669 13,8.5 C 13,9.331 12.331,10 11.5,10 L 2.5,10 C 1.669,10 1,9.331 1,8.5 C 1,7.669 1.669,7 2.5,7 z "
|
||||
style="opacity:0.98999999;fill:url(#linearGradient2271);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccsc"
|
||||
id="path2273"
|
||||
d="M 2.5,10 L 11.5,10 C 12.331,10 13,10.669 13,11.5 C 13,12.331 12.331,13 11.5,13 L 2.5,13 C 1.669,13 1,12.331 1,11.5 C 1,10.669 1.669,10 2.5,10 z "
|
||||
style="opacity:0.98999999;fill:url(#linearGradient2275);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path4410"
|
||||
d="M 2.625,1.53125 C 1.99624,1.53125 1.53125,1.99624 1.53125,2.625 L 1.53125,12.375 C 1.53125,13.00376 1.996239,13.46875 2.625,13.46875 L 11.375,13.46875 C 12.00376,13.46875 12.46875,13.003761 12.46875,12.375 L 12.46875,2.625 C 12.46875,1.9962394 12.003761,1.53125 11.375,1.53125 L 2.625,1.53125 z "
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 8.5 3.5 C 7.411793 3.5 6.5 4.4117926 6.5 5.5 L 6.5 7.5 C 5.411793 7.5 4.5 8.411793 4.5 9.5 L 4.5 11.5 C 4.5 12.186163 4.653123 12.80668 4.90625 13.375 C 5.1282249 13.453366 5.3755388 13.5 5.625 13.5 L 10.40625 13.5 C 11.582054 13.5 12.53125 12.550805 12.53125 11.375 L 12.53125 6.5 C 12.520445 6.499792 12.510889 6.5 12.5 6.5 C 12.110964 6.5 11.809578 6.7387958 11.5 6.9375 C 11.190422 6.7387958 10.889036 6.5 10.5 6.5 L 10.5 5.5 C 10.5 4.4117926 9.588207 3.5 8.5 3.5 z "
|
||||
id="path2307" />
|
||||
<g
|
||||
id="g3291"
|
||||
transform="translate(-33,-3)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccccccsccsssccc"
|
||||
id="path3185"
|
||||
d="M 41.5,7.5 C 40.946,7.5 40.5,7.946 40.5,8.5 L 40.5,12.5 C 40.5,11.946 40.054,11.5 39.5,11.5 C 38.946,11.5 38.5,11.946 38.5,12.5 L 38.5,14.5 C 38.5,16.968706 40.855226,18.515283 42.564721,18.5 L 45.65625,18.5 C 47.176529,18.5 48.5,16.555583 48.5,15.5 L 48.5,12.5 C 48.5,11.946 48.054,11.5 47.5,11.5 C 46.946,11.5 46.5,11.946 46.5,12.5 L 46.5,11.5 C 46.5,10.946 46.054,10.5 45.5,10.5 C 44.946,10.5 44.5,10.946 44.5,11.5 C 44.5,10.946 44.054,10.5 43.5,10.5 C 42.946,10.5 42.5,10.946 42.5,11.5 L 42.5,8.5 C 42.5,7.946 42.054,7.5 41.5,7.5 z "
|
||||
style="opacity:1;fill:url(#radialGradient4462);fill-opacity:1;stroke:#c17d11;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccscc"
|
||||
id="path3238"
|
||||
d="M 39.53125,12.5 L 39.46875,14.5 C 39.46875,15.423456 39.903717,16.144961 40.53125,16.6875 C 41.158783,17.230039 42.006829,17.536218 42.5625,17.53125 L 45.65625,17.53125 C 45.999204,17.53125 46.505158,17.225897 46.90625,16.75 C 47.307342,16.274103 47.53125,15.618827 47.53125,15.5 L 47.53125,12.5"
|
||||
style="opacity:0.54406128;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3194"
|
||||
d="M 46.5,11.991767 L 46.5,15.494369"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4464);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3196"
|
||||
d="M 44.5,10.903379 L 44.5,14.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4466);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3198"
|
||||
d="M 42.5,10.5 L 42.5,14.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4468);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3200"
|
||||
d="M 40.5,11.5 L 40.5,15.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4470);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3247"
|
||||
d="M 41.5,8.5 L 41.5,14.5"
|
||||
style="opacity:0.51724135;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4472);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path3249"
|
||||
d="M 43.5,11.5 L 43.5,14.5"
|
||||
style="opacity:0.57088126;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4474);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3251"
|
||||
d="M 45.5,11.5 L 45.5,14.5"
|
||||
style="opacity:0.57088126;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4476);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-7.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3277"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-5.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3279"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-3.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3281"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 756 B |
@ -1,282 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16"
|
||||
sodipodi:docname="gtk-orientation-landscape.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4924">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4926" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop4928" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6129"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6131"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6133"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6136"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.7058824,-0.7142857,0,15.782481,17.14706)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.623928"
|
||||
y2="3.2252316" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientTransform="matrix(0,-0.7826932,-0.81822,0,16.545761,17.732131)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6146"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientTransform="matrix(0,-0.7647058,-0.7142857,0,15.857143,17.176471)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6150"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="4.2097468"
|
||||
x2="16.552481"
|
||||
y2="8.0098352"
|
||||
gradientTransform="matrix(0.6936392,0,0,0.6545762,1.057852,1.7633912)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4924"
|
||||
id="linearGradient4930"
|
||||
x1="11.693146"
|
||||
y1="6.1997552"
|
||||
x2="11.693146"
|
||||
y2="3.1080811"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="45.411219"
|
||||
inkscape:cx="14.209044"
|
||||
inkscape:cy="10.408589"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="256"
|
||||
inkscape:window-y="29" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>orientation landscape</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6146);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 15.5,13.249662 L 15.5,5.8091617 C 15.5,5.1164743 12.121974,1.4999999 11.474959,1.4999999 L 1.6678993,1.4999999 C 1.0208828,1.4999999 0.49999999,2.0576509 0.49999999,2.7503384 L 0.49999999,13.249662 C 0.49999999,13.942349 1.0208828,14.500001 1.6678993,14.500001 L 14.332101,14.500001 C 14.979117,14.500001 15.5,13.942349 15.5,13.249662 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(-0.7058824,0,0,0.7090575,16.579995,0.09353075)">
|
||||
<path
|
||||
transform="matrix(0.9037057,0,0,0.849678,0.9402993,-8.7732462e-4)"
|
||||
d="m 15.55783,10.027681 c 0,1.8334 -1.486264,3.319665 -3.319664,3.319665 -1.8334,0 -3.3196644,-1.486265 -3.3196644,-3.319665 0,-1.8333996 1.4862644,-3.3196639 3.3196644,-3.3196639 1.8334,0 3.319664,1.4862643 3.319664,3.3196639 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="m 17,16 c 0,2.760001 -2.239999,2.000002 -5,2.000002 -2.7600007,0 -5.0000007,0.759999 -5.0000007,-2.000002 0,-2.76 2.24,-5 5.0000007,-5 2.760001,0 5,2.24 5,5 z"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 14.500001,12.303592 L 14.500001,5.9157435 C 14.500001,5.2529336 11.580615,2.4999999 10.960842,2.4999999 L 9.3494813,2.5241701 L 2.6187246,2.5241701 C 1.9989509,2.5241701 1.4999999,3.057768 1.4999999,3.7205778 L 1.4999999,12.303592 C 1.4999999,12.966402 1.9989509,13.5 2.6187246,13.5 L 13.381278,13.5 C 14.00105,13.5 14.500001,12.966402 14.500001,12.303592 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 15,5.9917348 L 10.803782,2.0144063 L 10,2 L 10,5.9628111 L 15,5.9917348 z "
|
||||
style="fill:url(#linearGradient6139);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11.462441,3 L 14.987235,6.3569746 L 15,7 L 11.488074,7 L 11.462441,3 z "
|
||||
id="path6148"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6136);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4930);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11.455958,1.8939931 L 11.5,5.480824 L 15.08313,5.5"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 543 B |
@ -1,211 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16"
|
||||
sodipodi:docname="gtk-orientation-portrait.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7647058,0,0,0.75,-1.1764704,-0.6250001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7647058,0,0,0.7463802,-2.117645,2.50982e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5882352,0,0,0.8182202,2.1764721,-0.5457611)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4922"
|
||||
x1="10.603106"
|
||||
y1="5.0064912"
|
||||
x2="10.603106"
|
||||
y2="1.977658"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.182764"
|
||||
inkscape:cx="18.377893"
|
||||
inkscape:cy="8.6872807"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="307"
|
||||
inkscape:window-y="76" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>orientation portrait</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6062);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 2.7503383,0.49999959 L 10.190838,0.49999959 C 10.883525,0.49999959 14.5,4.0469266 14.5,4.7262932 L 14.5,14.273705 C 14.5,14.953073 13.942349,15.5 13.249662,15.5 L 2.7503383,15.5 C 2.0576508,15.5 1.4999999,14.953073 1.4999999,14.273705 L 1.4999999,1.7262933 C 1.4999999,1.0469266 2.0576508,0.49999959 2.7503383,0.49999959 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(0.7199999,0,0,0.6872404,-0.6399994,0.5637974)">
|
||||
<path
|
||||
transform="matrix(0.8367648,0,0,0.9828279,1.7595342,-1.5928257)"
|
||||
d="M 15.55783 10.027681 A 3.3196642 3.3196642 0 1 1 8.9185016,10.027681 A 3.3196642 3.3196642 0 1 1 15.55783 10.027681 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="M 16.780149,15.946947 C 16.780149,18.776812 14.638643,17.997576 12,17.997576 C 9.3613572,17.997576 7.2198507,18.776812 7.2198507,15.946947 C 7.2198507,13.117083 9.3613572,10.82038 12,10.82038 C 14.638643,10.82038 16.780149,13.117083 16.780149,15.946947 z "
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 3.6964079,1.4999999 L 10.084255,1.4999999 C 10.747066,1.4999999 13.5,4.5815742 13.5,5.2357791 L 13.47583,6.9366593 L 13.47583,13.319124 C 13.47583,13.973329 12.942231,14.5 12.279422,14.5 L 3.6964079,14.5 C 3.0335979,14.5 2.5000001,13.973329 2.5000001,13.319124 L 2.5000001,2.6808752 C 2.5000001,2.0266703 3.0335979,1.4999999 3.6964079,1.4999999 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999988px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 11,1.3963778 L 13.989173,5.1962178 L 14,6 L 11.021738,5.9999999 L 11,1.3963778 z "
|
||||
style="fill:url(#linearGradient6114);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6082);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4922);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 14.103719,4.5 L 13.44905,4.5 L 10.520774,4.5 L 10.5,0.83875574"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 751 B |
@ -1,282 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16"
|
||||
sodipodi:docname="gtk-orientation-reverse-landscape.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4924">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4926" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop4928" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6129"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6131"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6133"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6136"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.7058824,-0.7142857,0,15.782481,17.14706)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.623928"
|
||||
y2="3.2252316" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientTransform="matrix(0,-0.7826932,-0.81822,0,16.545761,17.732131)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6146"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientTransform="matrix(0,-0.7647058,-0.7142857,0,15.857143,17.176471)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6150"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="4.2097468"
|
||||
x2="16.552481"
|
||||
y2="8.0098352"
|
||||
gradientTransform="matrix(0.6936392,0,0,0.6545762,1.057852,1.7633912)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4924"
|
||||
id="linearGradient4930"
|
||||
x1="11.693146"
|
||||
y1="6.1997552"
|
||||
x2="11.693146"
|
||||
y2="3.1080811"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="45.411219"
|
||||
inkscape:cx="9.2322999"
|
||||
inkscape:cy="8.3606361"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="256"
|
||||
inkscape:window-y="29" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>orientation reverse landscape</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6146);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 15.5,13.249662 L 15.5,5.8091617 C 15.5,5.1164743 12.121974,1.4999999 11.474959,1.4999999 L 1.6678993,1.4999999 C 1.0208828,1.4999999 0.49999999,2.0576509 0.49999999,2.7503384 L 0.49999999,13.249662 C 0.49999999,13.942349 1.0208828,14.500001 1.6678993,14.500001 L 14.332101,14.500001 C 14.979117,14.500001 15.5,13.942349 15.5,13.249662 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(-0.7058824,0,0,-0.7090575,16.491911,16.921252)">
|
||||
<path
|
||||
transform="matrix(0.9037057,0,0,0.849678,0.9402993,-8.7732462e-4)"
|
||||
d="m 15.55783,10.027681 c 0,1.8334 -1.486264,3.319665 -3.319664,3.319665 -1.8334,0 -3.3196644,-1.486265 -3.3196644,-3.319665 0,-1.8333996 1.4862644,-3.3196639 3.3196644,-3.3196639 1.8334,0 3.319664,1.4862643 3.319664,3.3196639 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="m 17,16 c 0,2.760001 -2.239999,2.000002 -5,2.000002 -2.7600007,0 -5.0000007,0.759999 -5.0000007,-2.000002 0,-2.76 2.24,-5 5.0000007,-5 2.760001,0 5,2.24 5,5 z"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 14.500001,12.303592 L 14.500001,5.9157435 C 14.500001,5.2529336 11.580615,2.4999999 10.960842,2.4999999 L 9.3494813,2.5241701 L 2.6187246,2.5241701 C 1.9989509,2.5241701 1.4999999,3.057768 1.4999999,3.7205778 L 1.4999999,12.303592 C 1.4999999,12.966402 1.9989509,13.5 2.6187246,13.5 L 13.381278,13.5 C 14.00105,13.5 14.500001,12.966402 14.500001,12.303592 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 15,5.9917348 L 10.803782,2.0144063 L 10,2 L 10,5.9628111 L 15,5.9917348 z "
|
||||
style="fill:url(#linearGradient6139);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11.462441,3 L 14.987235,6.3569746 L 15,7 L 11.488074,7 L 11.462441,3 z "
|
||||
id="path6148"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6136);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4930);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11.455958,1.8939931 L 11.5,5.480824 L 15.08313,5.5"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 557 B |
@ -1,211 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/16x16"
|
||||
sodipodi:docname="gtk-orientation-reverse-portrait.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7647058,0,0,0.75,-1.1764704,-0.6250001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7647058,0,0,0.7463802,-2.117645,2.50982e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5882352,0,0,0.8182202,2.1764721,-0.5457611)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4922"
|
||||
x1="10.603106"
|
||||
y1="5.0064912"
|
||||
x2="10.603106"
|
||||
y2="1.977658"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.182764"
|
||||
inkscape:cx="18.377893"
|
||||
inkscape:cy="8.6872807"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="307"
|
||||
inkscape:window-y="76" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>orientation reverse portrait</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6062);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 2.7503383,0.49999959 L 10.190838,0.49999959 C 10.883525,0.49999959 14.5,4.0469266 14.5,4.7262932 L 14.5,14.273705 C 14.5,14.953073 13.942349,15.5 13.249662,15.5 L 2.7503383,15.5 C 2.0576508,15.5 1.4999999,14.953073 1.4999999,14.273705 L 1.4999999,1.7262933 C 1.4999999,1.0469266 2.0576508,0.49999959 2.7503383,0.49999959 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(0.7199999,0,0,-0.6872404,-0.6399994,16.436203)">
|
||||
<path
|
||||
transform="matrix(0.8367648,0,0,0.9828279,1.7595342,-1.5928257)"
|
||||
d="M 15.55783 10.027681 A 3.3196642 3.3196642 0 1 1 8.9185016,10.027681 A 3.3196642 3.3196642 0 1 1 15.55783 10.027681 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="M 16.780149,15.946947 C 16.780149,18.776812 14.638643,17.997576 12,17.997576 C 9.3613572,17.997576 7.2198507,18.776812 7.2198507,15.946947 C 7.2198507,13.117083 9.3613572,10.82038 12,10.82038 C 14.638643,10.82038 16.780149,13.117083 16.780149,15.946947 z "
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 3.6964079,1.4999999 L 10.084255,1.4999999 C 10.747066,1.4999999 13.5,4.5815742 13.5,5.2357791 L 13.47583,6.9366593 L 13.47583,13.319124 C 13.47583,13.973329 12.942231,14.5 12.279422,14.5 L 3.6964079,14.5 C 3.0335979,14.5 2.5000001,13.973329 2.5000001,13.319124 L 2.5000001,2.6808752 C 2.5000001,2.0266703 3.0335979,1.4999999 3.6964079,1.4999999 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999988px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 11,1.3963778 L 13.989173,5.1962178 L 14,6 L 11.021738,5.9999999 L 11,1.3963778 z "
|
||||
style="fill:url(#linearGradient6114);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6082);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4922);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 14.103719,4.5 L 13.44905,4.5 L 10.520774,4.5 L 10.5,0.83875574"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 1014 B |
@ -1,288 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg6064"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/kalle/Projekt/Tango/gtk/gtk-preferences"
|
||||
sodipodi:docname="gtk-preferences.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/srv/www/htdocs/tango/gtk-preferences-24.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs6066">
|
||||
<linearGradient
|
||||
id="linearGradient5239">
|
||||
<stop
|
||||
style="stop-color:#2c67bd;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5241" />
|
||||
<stop
|
||||
style="stop-color:#173662;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5243" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5153">
|
||||
<stop
|
||||
style="stop-color:#888b85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5155" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5157" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5143">
|
||||
<stop
|
||||
style="stop-color:#84abd5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5145" />
|
||||
<stop
|
||||
id="stop5151"
|
||||
offset="0.5"
|
||||
style="stop-color:#d0dfef;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#84abd5;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5147" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5916">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5918" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6057"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9803921,0,0,1.1,-0.2357019,-3.9732306)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#5d5f5b;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient6053"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154"
|
||||
gradientTransform="translate(-1.5298199,-3.1732306)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6051"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3472897,0,0,1.3356241,-8.2600989,-4.6809276)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5916"
|
||||
id="radialGradient5922"
|
||||
cx="17.563257"
|
||||
cy="3.4949493"
|
||||
fx="17.563257"
|
||||
fy="3.4949493"
|
||||
r="2.21875"
|
||||
gradientTransform="matrix(-0.5445595,0.5104709,-0.632512,-0.6747512,24.393273,-4.6486506)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5916"
|
||||
id="radialGradient5926"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.2182403,0.3435879,-0.5690181,-0.3614292,10.310106,-3.6678607)"
|
||||
cx="17.653761"
|
||||
cy="3.6020696"
|
||||
fx="17.653761"
|
||||
fy="3.6020696"
|
||||
r="2.21875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5143"
|
||||
id="linearGradient5149"
|
||||
x1="4.3600888"
|
||||
y1="17.388145"
|
||||
x2="5.8710656"
|
||||
y2="18.979136"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7083333,0,0,0.7083333,-0.4375,-0.4375)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5153"
|
||||
id="linearGradient5159"
|
||||
x1="1"
|
||||
y1="12"
|
||||
x2="22.999998"
|
||||
y2="12"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7083333,0,0,0.7083333,-0.4375,-0.4375)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5239"
|
||||
id="linearGradient5245"
|
||||
x1="4.8767667"
|
||||
y1="16.335575"
|
||||
x2="8.2157669"
|
||||
y2="20.754992"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7083333,0,0,0.7083333,-0.4375,-0.4375)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#ededed"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="16.246596"
|
||||
inkscape:cy="7.6167805"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="765"
|
||||
inkscape:window-x="508"
|
||||
inkscape:window-y="105"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
borderlayer="true" />
|
||||
<metadata
|
||||
id="metadata6069">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5159);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0.62500002,4.3595744 L 1.5744682,6.1952125 C 2.2631608,7.6352058 3.685413,6.8351398 4.8976062,6.4800531 L 9.6607717,11.243218 C 9.182453,12.543302 8.4743144,13.689838 9.9456118,14.566357 L 11.765426,15.5 L 12.620518,14.512324 L 11.50354,13.559578 L 11.487715,12.29747 L 12.335107,11.405886 L 13.713971,11.430976 L 14.641627,12.491215 L 15.5,11.765426 L 14.503058,10.00891 C 13.657845,8.6002207 12.435495,9.335815 11.164096,9.7082444 L 6.4325795,4.9767287 C 7.0366074,3.7014436 7.2588661,2.4203712 6.1319146,1.637766 L 4.3595743,0.62500004 L 3.5453963,1.5717606 L 4.5772659,2.9129894 L 4.513968,3.8941064 L 3.8433537,4.5205267 L 2.3602763,4.5047022 L 1.524287,3.5486756 L 0.62500002,4.3595744 z"
|
||||
id="path5215"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.1096271,1.459381 L 5.4754728,2.3122108 L 5.9177274,2.8087019 L 5.9221249,3.3293071 L 5.2536689,5.4004299 L 7.3667034,7.2630303 L 7.7423531,6.824771 L 6.0059195,5.1509459 C 6.6926094,3.39136 6.7741478,2.5536464 5.928934,1.9588664 L 4.4268007,1.0471824 L 4.1096271,1.459381 z"
|
||||
id="path5221"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 2.0556898,4.2832872 L 1.3472214,5.0028232 L 1.1009115,4.4241561 L 1.7269955,3.798072 L 2.0243855,4.1580703 L 2.0556898,4.2832872 z"
|
||||
id="path6286"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:0.27976194;fill:#2e3436;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.7044269,9.8111977 L 9.7669266,8.815104 L 9.1249999,8.1953124 L 8.1067706,9.3020832 L 8.7044269,9.8111977 z"
|
||||
id="path5928"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path6295"
|
||||
d="M 12.674852,1.4585502 L 10.831437,3.0155607 L 10.978082,3.9973404 L 3.6564953,11.336061 L 4.7458607,12.390215 L 12.091225,5.1088779 L 13.079346,5.2542747 L 14.680991,3.5007209 L 12.674852,1.4585502 z"
|
||||
style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#d4e2f1;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5245);stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 5.5549289,9.093696 L 1.2945152,12.09127 C 1.2945152,12.09127 0.7963071,12.833876 1.4698275,13.509256 L 2.6264628,14.669085 C 3.1191991,15.163183 4.0814133,14.793712 4.0814133,14.793712 L 7.093913,10.652883 L 5.5549289,9.093696 z"
|
||||
id="path5217"
|
||||
sodipodi:nodetypes="cczzccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5910"
|
||||
d="M 5.4778877,9.8564522 L 2.042872,12.576129 C 1.723105,13.317343 3.0395262,14.337148 3.6155056,13.883397 L 6.3820292,10.698475 L 5.4778877,9.8564522 z"
|
||||
style="fill:url(#linearGradient5149);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12.986633,2.2877818 L 11.749005,3.3337872 L 11.881818,4.2744865 L 6.6113176,9.4472759 L 6.3242086,9.143403 L 11.364742,4.1139373 L 11.238182,3.1532318 L 12.590746,1.8697594 L 12.986633,2.2877818 z"
|
||||
id="path5912"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient5922);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12.644531,1.8258462 L 14.195122,3.504503 L 12.910156,4.9192708 L 11.220825,3.1516791 L 12.644531,1.8258462 z"
|
||||
id="path5914"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5924"
|
||||
d="M 4.4282633,1.0455728 L 5.9002685,1.9309895 L 4.6938883,2.7499999 L 3.7682291,1.7682156 L 4.4282633,1.0455728 z"
|
||||
style="fill:url(#radialGradient5926);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 9.3020832,8.3723956 L 11.117187,10.143229 C 11.117187,10.143229 12.888021,9.2578123 13.552083,9.6119792 C 14.216146,9.966146 15.035118,11.626417 15.035118,11.626417 C 15.035118,11.626417 14.686891,11.925701 14.686891,11.925701 C 14.686891,11.925701 13.58529,10.487176 13.309015,10.40824 C 12.689223,10.231157 11.028646,10.71875 11.028646,10.71875 L 8.9921873,8.7265623 L 9.3020832,8.3723956 z"
|
||||
id="path5227"
|
||||
sodipodi:nodetypes="ccscssccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 735 B |
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 962 B |
@ -1,665 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/gnome/gnome-icon-theme-extras/temp/stock-icons/16"
|
||||
sodipodi:docname="gtk-undelete-ltr.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5141">
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5144" />
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5146" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5141"
|
||||
id="linearGradient5148"
|
||||
x1="14.25"
|
||||
y1="9.5451832"
|
||||
x2="13.841639"
|
||||
y2="14.428842"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-3.990801,-1.8903499)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5574">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5576" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5578" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5556">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5558" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5560" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5546">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5548" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5550" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5538">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5540" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5542" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5400">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5402" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5404" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5336">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5338" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5340" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5326">
|
||||
<stop
|
||||
style="stop-color:#cdcdcb;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5328" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5330" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5172">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5174" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5176" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5154">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5156" />
|
||||
<stop
|
||||
id="stop5162"
|
||||
offset="0.21723643"
|
||||
style="stop-color:#afb1ad;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#b4b6b2;stop-opacity:1;"
|
||||
offset="0.40441176"
|
||||
id="stop5166" />
|
||||
<stop
|
||||
style="stop-color:#5b5d59;stop-opacity:1;"
|
||||
offset="0.82321244"
|
||||
id="stop5164" />
|
||||
<stop
|
||||
style="stop-color:#90938e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5158" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5160"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6875,0,0,0.6936012,-0.8455898,-0.7996271)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5170"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5178"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.23828454"
|
||||
width="1.4765691"
|
||||
y="-0.35331845"
|
||||
height="1.7066369"
|
||||
id="filter5310">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0673162"
|
||||
id="feGaussianBlur5312" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5322"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5324"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient5332"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient5342"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-7.4164215,6.4777168)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.063667528"
|
||||
width="1.1273351"
|
||||
y="-0.19969276"
|
||||
height="1.3993855"
|
||||
id="filter5372">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.4227922"
|
||||
id="feGaussianBlur5374" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5436"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,14.705882,-2.5)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5438"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(5.875,-0.3125)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.875"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5440"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.125,-0.625)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5500"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientTransform="matrix(0.7222222,0,0,0.6647633,-1.2448938,-0.4103167)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5502"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(3,0)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5504"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,12.705882,-1)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5506"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,1.705882,-2)"
|
||||
x1="4.875"
|
||||
y1="16.8125"
|
||||
x2="9.1250019"
|
||||
y2="16.8125" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient5544"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458"
|
||||
gradientTransform="matrix(0.7222222,0,0,0.2938048,-1.2448938,1.2462212)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient5552"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.5500011"
|
||||
gradientTransform="matrix(1.1254961,0,0,0.2937301,-4.4956238,1.3685571)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient5562"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.5"
|
||||
gradientTransform="matrix(1.489436,0,0,1.1954956,-10.067853,-13.325709)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient5580"
|
||||
x1="12.124999"
|
||||
y1="12.498924"
|
||||
x2="12.124999"
|
||||
y2="5.5611424"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6111112,0,0,0.4893353,3.2883213e-2,1.1391676)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5783"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6875,0,0,0.6936012,-0.8455898,-0.7996271)"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient5785"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-7.4164215,6.4777168)"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient5787"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.489436,0,0,1.1954956,-10.067853,-13.325709)"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5789"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7222222,0,0,0.6647633,-1.2448938,-0.4103167)"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient5791"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient5793"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1254961,0,0,0.2937301,-4.4956238,1.3685571)"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.5500011" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5795"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5797"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient5799"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7222222,0,0,0.2938048,-1.2448938,1.2462212)"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient5801"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6111112,0,0,0.4893353,3.2883213e-2,1.1391676)"
|
||||
x1="12.124999"
|
||||
y1="12.498924"
|
||||
x2="12.124999"
|
||||
y2="5.5611424" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#e0e0e0"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="15.798753"
|
||||
inkscape:cy="5.9416956"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="740"
|
||||
inkscape:window-x="549"
|
||||
inkscape:window-y="366" />
|
||||
<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" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Delete</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g5764"
|
||||
transform="translate(2,0)">
|
||||
<path
|
||||
id="path5141"
|
||||
d="M 1.5606602,6.1556171 L 1.5606602,12.800512 C 1.5606602,14.283915 4.0246602,15.5 7.0606604,15.5 C 10.096662,15.5 12.560663,14.283915 12.560662,12.800512 L 12.560662,6.1556171 L 1.5606602,6.1556171 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5783);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
transform="matrix(0.7222222,0,0,0.6936012,0.1995502,-0.1060266)"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5334"
|
||||
d="M 1.8125001,8.500001 C 7.6370848,10.762149 12.714911,10.250624 17.375,8.187501 L 17.4375,12.500001 C 12.512251,17.004915 5.597732,15.102639 1.5000001,12.437501 L 1.8125001,8.500001 z"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#radialGradient5785);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5372);enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.33908045;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient5787);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 2.5606602,7.3550091 L 2.5606602,12.435893 C 2.5606602,13.570146 4.5766612,14.500001 7.0606615,14.500001 C 9.5446633,14.500001 11.560663,13.570146 11.560662,12.435893 L 11.560662,7.3550091 L 2.5606602,7.3550091 z"
|
||||
id="path5554" />
|
||||
<g
|
||||
transform="translate(-0.9393398,0)"
|
||||
id="g5592">
|
||||
<rect
|
||||
style="opacity:0.20689655;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5584"
|
||||
width="1"
|
||||
height="6"
|
||||
x="5"
|
||||
y="6"
|
||||
rx="0.5"
|
||||
ry="0.5" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="7"
|
||||
x="7"
|
||||
height="6"
|
||||
width="1"
|
||||
id="rect5586"
|
||||
style="opacity:0.20689655;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:0.20689655;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5588"
|
||||
width="1"
|
||||
height="6"
|
||||
x="9"
|
||||
y="7"
|
||||
rx="0.5"
|
||||
ry="0.5" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="6"
|
||||
x="11"
|
||||
height="6"
|
||||
width="1"
|
||||
id="rect5590"
|
||||
style="opacity:0.20689655;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccc"
|
||||
id="path4552"
|
||||
d="M 7.0606615,0.58682824 C 3.4726612,0.58682824 0.56066021,1.922289 0.56066021,3.5677673 C 0.56066021,3.5677673 0.56066021,5.58305 0.56066021,5.58305 C 0.56066021,7.228528 3.4726602,8.5639877 7.0606615,8.5639884 C 10.648663,8.5639891 13.560663,7.228528 13.560663,5.58305 C 13.560663,5.58305 13.560663,3.5677673 13.560663,3.5677673 C 13.560663,1.922289 10.648663,0.58682824 7.0606615,0.58682824 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5789);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5791);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="path4556"
|
||||
sodipodi:cx="32.125"
|
||||
sodipodi:cy="3.8125"
|
||||
sodipodi:rx="9.125"
|
||||
sodipodi:ry="4.4375"
|
||||
d="M 41.25,3.8125 A 9.125,4.4375 0 1 1 23,3.8125 A 9.125,4.4375 0 1 1 41.25,3.8125 z"
|
||||
transform="matrix(0.6575341,0,0,0.5633803,-14.062623,1.3521127)" />
|
||||
<path
|
||||
id="path5136"
|
||||
d="M 1.1215982,2.7769159 C 1.0888412,2.8960257 1.0606602,3.0290011 1.0606602,3.1522065 C 1.0606602,4.7292361 3.8270602,6 7.2356605,6 C 10.644262,6 13.410663,4.7292361 13.410663,3.1522065 C 13.410663,3.0290011 13.382482,2.8960257 13.349726,2.7769159 C 12.948864,4.1751175 10.366738,5.2494188 7.2356605,5.2494188 C 4.1045852,5.2494188 1.5224602,4.1751175 1.1215982,2.7769159 z"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5793);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<g
|
||||
transform="matrix(0.7171358,8.2173359e-2,-8.5564191e-2,0.6887163,-0.9949808,-0.4273548)"
|
||||
id="g5317">
|
||||
<path
|
||||
transform="translate(-24.25,0)"
|
||||
style="color:#000000;fill:url(#linearGradient5795);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5797);stroke-width:1.41289425;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 41.375,3.25 C 41.375,5.251 38.092,5.25 36,3.75 C 33.033,3.75 30.625,4.382917 30.625,3.25 C 30.625,1.249 33.033,-0.375 36,-0.375 C 38.967,-0.375 41.375,1.249 41.375,3.25 z"
|
||||
id="path5168"
|
||||
sodipodi:nodetypes="ccssc" />
|
||||
<path
|
||||
transform="matrix(0.6712474,0,0,0.3793103,-13.102405,2.1422414)"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
sodipodi:ry="3.625"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:cx="36"
|
||||
id="path5180"
|
||||
style="opacity:1;color:#000000;fill:#1c1d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.31609198;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
id="path5315"
|
||||
sodipodi:cx="36"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:ry="3.625"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
transform="matrix(0.5549683,0,0,0.2578679,-8.5413583,0.2869291)" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path5536"
|
||||
d="M 3.9258242,2.8077989 C 5.2025442,1.64298 7.3729695,1.3364486 9.4157243,3.3595553 C 7.3091325,-0.62535177 3.6537942,1.700576 3.9258242,2.8077989 z"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5799);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.20689655;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5801);stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 7.0606615,1.6279764 C 4.0246612,1.6279764 1.5606602,2.6110151 1.5606602,3.8222592 C 1.5606602,3.8222592 1.5606602,5.3057179 1.5606602,5.3057179 C 1.5606602,6.5169615 4.0246602,7.5 7.0606615,7.5 C 10.096664,7.5 12.560662,6.5169615 12.560662,5.3057179 C 12.560662,5.3057179 12.560662,3.8222592 12.560662,3.8222592 C 12.560662,2.6110151 10.096664,1.6279764 7.0606615,1.6279764 z"
|
||||
id="path5564"
|
||||
sodipodi:nodetypes="cccsccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4952"
|
||||
transform="matrix(0.6448021,0,0,0.6555156,0.573981,5.5083633)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
id="path4560"
|
||||
d="M 7.6967611,0.20120726 L 0.23728414,6.8253144 L 7.7343311,13.866786 L 7.6276371,10.530776 C 11.699972,10.335315 12.679276,11.232281 12.684318,15.201534 L 15.513595,15.299479 C 15.39259,10.046206 16.763105,2.9444481 7.7419131,3.3174982 L 7.6967611,0.20120726 z"
|
||||
style="opacity:1;color:#000000;fill:#ffee58;fill-opacity:1;fill-rule:evenodd;stroke:#705b00;stroke-width:1.53813767;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5139"
|
||||
d="M 1.5046469,6.9768107 L 7.0091987,12.070298 C 7.1941578,12.575886 6.9258654,10.901317 6.8841987,10.04715 C 12.459616,9.5610101 13.122626,11.304763 13.454136,14.442236 C 13.544116,5.0530319 8.650703,7.0288133 1.5046469,6.9768107 z"
|
||||
style="opacity:0.1896552;color:#000000;fill:url(#linearGradient5148);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 952 B |
@ -1,558 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/gnome/gnome-icon-theme-extras/temp/stock-icons/16"
|
||||
sodipodi:docname="gtk-undelete-rtl.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5141">
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5144" />
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5146" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5141"
|
||||
id="linearGradient5148"
|
||||
x1="14.25"
|
||||
y1="9.5451832"
|
||||
x2="13.841639"
|
||||
y2="14.428842"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-3.990801,-1.8903499)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5574">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5576" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5578" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5556">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5558" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5560" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5546">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5548" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5550" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5538">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5540" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5542" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5400">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5402" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5404" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5336">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5338" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5340" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5326">
|
||||
<stop
|
||||
style="stop-color:#cdcdcb;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5328" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5330" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5172">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5174" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5176" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5154">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5156" />
|
||||
<stop
|
||||
id="stop5162"
|
||||
offset="0.21723643"
|
||||
style="stop-color:#afb1ad;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#b4b6b2;stop-opacity:1;"
|
||||
offset="0.40441176"
|
||||
id="stop5166" />
|
||||
<stop
|
||||
style="stop-color:#5b5d59;stop-opacity:1;"
|
||||
offset="0.82321244"
|
||||
id="stop5164" />
|
||||
<stop
|
||||
style="stop-color:#90938e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5158" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5160"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6875,0,0,0.6936012,-0.8455899,-0.7996271)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5170"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5178"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.23828454"
|
||||
width="1.4765691"
|
||||
y="-0.35331845"
|
||||
height="1.7066369"
|
||||
id="filter5310">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0673162"
|
||||
id="feGaussianBlur5312" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5322"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5324"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient5332"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient5342"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-7.4164215,6.4777168)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.063667528"
|
||||
width="1.1273351"
|
||||
y="-0.19969276"
|
||||
height="1.3993855"
|
||||
id="filter5372">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.4227922"
|
||||
id="feGaussianBlur5374" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5436"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,14.705882,-2.5)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5438"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(5.875,-0.3125)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.875"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5440"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.125,-0.625)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5500"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientTransform="matrix(0.7222222,0,0,0.6647633,-1.2448945,-0.4103167)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5502"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(3,0)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5504"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,12.705882,-1)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5506"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,1.705882,-2)"
|
||||
x1="4.875"
|
||||
y1="16.8125"
|
||||
x2="9.1250019"
|
||||
y2="16.8125" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient5544"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458"
|
||||
gradientTransform="matrix(0.7222222,0,0,0.2938048,-1.2448946,1.2462212)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient5552"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.5500011"
|
||||
gradientTransform="matrix(1.1254961,0,0,0.2937301,-4.495624,1.3685571)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient5562"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.5"
|
||||
gradientTransform="matrix(1.489436,0,0,1.1954956,-10.067853,-13.325709)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient5580"
|
||||
x1="12.124999"
|
||||
y1="12.498924"
|
||||
x2="12.124999"
|
||||
y2="5.5611424"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6111112,0,0,0.4893353,3.28831e-2,1.1391676)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#e0e0e0"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="3.5332624"
|
||||
inkscape:cy="10.365573"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="740"
|
||||
inkscape:window-x="549"
|
||||
inkscape:window-y="366" />
|
||||
<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" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Delete</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5160);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 1.5606601,6.1556171 L 1.5606601,12.800512 C 1.5606601,14.283915 4.0246599,15.5 7.0606601,15.5 C 10.096662,15.5 12.560663,14.283915 12.560662,12.800512 L 12.560662,6.1556171 L 1.5606601,6.1556171 z"
|
||||
id="path5141" />
|
||||
<path
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#radialGradient5342);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5372);enable-background:accumulate"
|
||||
d="M 1.8125001,8.500001 C 7.6370848,10.762149 12.714911,10.250624 17.375,8.187501 L 17.4375,12.500001 C 12.512251,17.004915 5.597732,15.102639 1.5000001,12.437501 L 1.8125001,8.500001 z"
|
||||
id="path5334"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
transform="matrix(0.7222222,0,0,0.6936012,0.1995497,-0.1060266)" />
|
||||
<path
|
||||
id="path5554"
|
||||
d="M 2.5606602,7.3550091 L 2.5606602,12.435893 C 2.5606602,13.570146 4.5766604,14.500001 7.0606612,14.500001 C 9.544663,14.500001 11.560663,13.570146 11.560662,12.435893 L 11.560662,7.3550091 L 2.5606602,7.3550091 z"
|
||||
style="opacity:0.33908045;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient5562);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<g
|
||||
id="g5592"
|
||||
transform="translate(-0.9393398,0)">
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="6"
|
||||
x="5"
|
||||
height="6"
|
||||
width="1"
|
||||
id="rect5584"
|
||||
style="opacity:0.20689655;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:0.20689655;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5586"
|
||||
width="1"
|
||||
height="6"
|
||||
x="7"
|
||||
y="7"
|
||||
rx="0.5"
|
||||
ry="0.5" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="7"
|
||||
x="9"
|
||||
height="6"
|
||||
width="1"
|
||||
id="rect5588"
|
||||
style="opacity:0.20689655;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:0.20689655;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5590"
|
||||
width="1"
|
||||
height="6"
|
||||
x="11"
|
||||
y="6"
|
||||
rx="0.5"
|
||||
ry="0.5" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5500);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 7.0606612,0.58682824 C 3.4726604,0.58682824 0.5606602,1.922289 0.5606602,3.5677673 C 0.5606602,3.5677673 0.5606602,5.58305 0.5606602,5.58305 C 0.5606602,7.228528 3.4726602,8.5639877 7.0606612,8.5639884 C 10.648663,8.5639891 13.560663,7.228528 13.560663,5.58305 C 13.560663,5.58305 13.560663,3.5677673 13.560663,3.5677673 C 13.560663,1.922289 10.648663,0.58682824 7.0606612,0.58682824 z"
|
||||
id="path4552"
|
||||
sodipodi:nodetypes="cccsccc" />
|
||||
<path
|
||||
transform="matrix(0.6575341,0,0,0.5633803,-14.062623,1.3521127)"
|
||||
d="M 41.25,3.8125 A 9.125,4.4375 0 1 1 23,3.8125 A 9.125,4.4375 0 1 1 41.25,3.8125 z"
|
||||
sodipodi:ry="4.4375"
|
||||
sodipodi:rx="9.125"
|
||||
sodipodi:cy="3.8125"
|
||||
sodipodi:cx="32.125"
|
||||
id="path4556"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5332);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5552);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 1.1215977,2.7769159 C 1.0888411,2.8960257 1.0606602,3.0290011 1.0606602,3.1522065 C 1.0606602,4.7292361 3.8270602,6 7.2356602,6 C 10.644262,6 13.410663,4.7292361 13.410663,3.1522065 C 13.410663,3.0290011 13.382482,2.8960257 13.349726,2.7769159 C 12.948864,4.1751175 10.366738,5.2494188 7.2356602,5.2494188 C 4.1045848,5.2494188 1.5224603,4.1751175 1.1215977,2.7769159 z"
|
||||
id="path5136" />
|
||||
<g
|
||||
id="g5317"
|
||||
transform="matrix(0.7171358,8.2173359e-2,-8.5564191e-2,0.6887163,-0.9949809,-0.4273548)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccssc"
|
||||
id="path5168"
|
||||
d="M 41.375,3.25 C 41.375,5.251 38.092,5.25 36,3.75 C 33.033,3.75 30.625,4.382917 30.625,3.25 C 30.625,1.249 33.033,-0.375 36,-0.375 C 38.967,-0.375 41.375,1.249 41.375,3.25 z"
|
||||
style="color:#000000;fill:url(#linearGradient5322);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5324);stroke-width:1.41289425;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
transform="translate(-24.25,0)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:#1c1d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
id="path5180"
|
||||
sodipodi:cx="36"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:ry="3.625"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
transform="matrix(0.6712474,0,0,0.3793103,-13.102405,2.1422414)" />
|
||||
<path
|
||||
transform="matrix(0.5549683,0,0,0.2578679,-8.5413583,0.2869291)"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
sodipodi:ry="3.625"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:cx="36"
|
||||
id="path5315"
|
||||
style="opacity:0.31609198;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5544);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 3.9258235,2.8077989 C 5.2025441,1.64298 7.3729692,1.3364486 9.415724,3.3595553 C 7.3091322,-0.62535177 3.6537938,1.700576 3.9258235,2.8077989 z"
|
||||
id="path5536"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccc"
|
||||
id="path5564"
|
||||
d="M 7.0606612,1.6279764 C 4.0246605,1.6279764 1.5606602,2.6110151 1.5606602,3.8222592 C 1.5606602,3.8222592 1.5606602,5.3057179 1.5606602,5.3057179 C 1.5606602,6.5169615 4.0246603,7.5 7.0606612,7.5 C 10.096664,7.5 12.560662,6.5169615 12.560662,5.3057179 C 12.560662,5.3057179 12.560662,3.8222592 12.560662,3.8222592 C 12.560662,2.6110151 10.096664,1.6279764 7.0606612,1.6279764 z"
|
||||
style="opacity:0.20689655;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5580);stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<g
|
||||
id="g4952"
|
||||
transform="matrix(-0.6448021,0,0,0.6555156,15.487476,5.5083633)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
id="path4560"
|
||||
d="M 7.6967611,0.20120726 L 0.23728414,6.8253144 L 7.7343311,13.866786 L 7.6276371,10.530776 C 11.699972,10.335315 12.679276,11.232281 12.684318,15.201534 L 15.513595,15.299479 C 15.39259,10.046206 16.763105,2.9444481 7.7419131,3.3174982 L 7.6967611,0.20120726 z"
|
||||
style="opacity:1;color:#000000;fill:#ffee58;fill-opacity:1;fill-rule:evenodd;stroke:#705b00;stroke-width:1.53813767;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5139"
|
||||
d="M 1.5046469,6.9768107 L 7.0091987,12.070298 C 7.1941578,12.575886 6.9258654,10.901317 6.8841987,10.04715 C 12.459616,9.5610101 13.122626,11.304763 13.454136,14.442236 C 13.544116,5.0530319 8.650703,7.0288133 1.5046469,6.9768107 z"
|
||||
style="opacity:0.1896552;color:#000000;fill:url(#linearGradient5148);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 1002 B |
Before Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 952 B |
Before Width: | Height: | Size: 963 B |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 360 B |
Before Width: | Height: | Size: 891 B |
@ -1,243 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/24x24"
|
||||
sodipodi:docname="gtk-color-picker.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/cornelius/GFX/ikony/GTK/my-stuff/24x24/gtk-color-picker.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5137">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5139" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5141" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5951">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5953" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5955" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5908">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5910" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5912" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5897">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5899" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5901" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5897"
|
||||
id="linearGradient5927"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1999999,0,0,1.1428571,-0.9703995,-1.627543)"
|
||||
x1="13.080468"
|
||||
y1="5.9400353"
|
||||
x2="9.2901049"
|
||||
y2="6" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5929"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9"
|
||||
y1="4.5"
|
||||
x2="13.027166"
|
||||
y2="4.5"
|
||||
gradientTransform="translate(0.7296001,0.7296001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5931"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.9691274,0.7296001,1.0099953)"
|
||||
x1="10"
|
||||
y1="4.5"
|
||||
x2="13.027166"
|
||||
y2="4.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5951"
|
||||
id="linearGradient5957"
|
||||
x1="14.292573"
|
||||
y1="16.177185"
|
||||
x2="11.069383"
|
||||
y2="16.146906"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.7296001,0.7296001)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5137"
|
||||
id="radialGradient5143"
|
||||
cx="13"
|
||||
cy="19.9375"
|
||||
fx="13"
|
||||
fy="19.9375"
|
||||
r="7.5"
|
||||
gradientTransform="matrix(1,0,0,0.2083333,0,15.783854)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.15833333"
|
||||
width="1.3166667"
|
||||
y="-0.76"
|
||||
height="2.52"
|
||||
id="filter5217">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.98958333"
|
||||
id="feGaussianBlur5219" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="34.626602"
|
||||
inkscape:cy="4.3502438"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="982"
|
||||
inkscape:window-height="817"
|
||||
inkscape:window-x="330"
|
||||
inkscape:window-y="132" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
<dc:title>gtk color picker</dc:title>
|
||||
<dc:date>30.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>color picker</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g5920"
|
||||
transform="matrix(0.682787,0.6853069,-0.682787,0.6853069,12.236726,-3.9663883)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="rect5890"
|
||||
d="M 12.028164,6.2075059 L 12.431036,6.2075059 C 13.427441,6.2075059 14.366568,6.9821737 14.366568,7.8879961 L 14.434884,16.754056 C 14.434884,17.659878 13.427441,23.229599 12.431036,23.229599 L 12.028164,23.229599 C 11.031759,23.229599 10.092548,17.500614 10.092548,16.594792 L 10.115348,7.8656168 C 10.115348,6.9597944 11.031759,6.2075059 12.028164,6.2075059 z"
|
||||
style="enable-background:accumulate;overflow:visible;display:inline;visibility:visible;stroke-opacity:1;stroke-dashoffset:0;stroke-miterlimit:4;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:1.03371250999999997;stroke:#555753;fill-rule:evenodd;fill-opacity:1;fill:#eeeeec;color:#000000" />
|
||||
<path
|
||||
id="path5878"
|
||||
d="M 12.229601,1.2296 C 10.5736,1.2296 9.2295998,2.7655998 9.2296001,4.6581715 C 9.2296001,5.6833145 9.6174455,6.601138 10.2421,7.2296002 C 9.6235333,7.4389966 8.7449274,7.8124482 8.7449275,8.1522429 C 8.7449275,8.7831001 10.5736,9.2296004 12.229601,9.2296003 C 13.8856,9.2296003 15.649665,8.6522196 15.649665,8.0213625 C 15.649665,7.6815678 14.835666,7.4389966 14.2171,7.2296002 C 14.841754,6.601138 15.2296,5.6833144 15.2296,4.6581715 C 15.2296,2.7656001 13.8856,1.2296 12.229601,1.2296 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5927);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.03371239px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:nodetypes="cscssscsc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccs"
|
||||
style="opacity:0.49781662;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5929);stroke-width:1.03371239px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 12.171304,2.2541275 C 11.311774,2.2573382 10.551552,2.9169163 10.2296,4.6581714 C 10.2296,5.6833144 10.617445,6.6011379 11.2421,7.2296001 C 10.623533,7.4389965 10.2296,7.7469484 10.2296,8.0867431 C 11.129967,8.271617 11.880961,8.3129549 12.499721,8.2445561"
|
||||
id="path5906" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssccc"
|
||||
id="path5882"
|
||||
d="M 10.588631,14.192846 L 10.615991,16.570467 C 10.46294,16.995839 11.514706,22.535252 11.791039,22.655524 C 11.953837,22.726381 12.473931,22.678262 12.645361,22.63205 C 12.945293,22.551198 14.041341,16.975233 13.911608,16.501393 C 13.871243,14.710547 13.833404,10.972889 13.833404,10.972889 L 10.588631,14.192846 z"
|
||||
style="fill:url(#linearGradient5957);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.49781662;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5931);stroke-width:1.03371239px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 12.2296,22.229601 C 11.731397,22.229601 11.2296,16.121277 11.2296,15.615192 L 11.2296,10.725436 C 11.2296,10.219351 11.630679,9.8119243 12.128882,9.8119243 L 12.330318,9.8119243 C 12.82852,9.8119243 13.2296,10.219351 13.2296,10.725436 L 13.2296,15.615192 C 13.2296,16.121277 12.727802,22.229601 12.2296,22.229601 z "
|
||||
id="path5916"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.40229881;color:#000000;fill:url(#radialGradient5143);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5217);enable-background:accumulate"
|
||||
id="path5135"
|
||||
sodipodi:cx="13"
|
||||
sodipodi:cy="19.9375"
|
||||
sodipodi:rx="7.5"
|
||||
sodipodi:ry="1.5625"
|
||||
d="M 20.5,19.9375 A 7.5,1.5625 0 1 1 5.5,19.9375 A 7.5,1.5625 0 1 1 20.5,19.9375 z"
|
||||
transform="translate(-4.7034271,0.3017767)" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 946 B |
@ -1,331 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg5345"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docbase="/home/andreas/project/gtk/24"
|
||||
sodipodi:docname="gtk-connect.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk/24/gtk-disconnect.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs5347">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5324">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5326" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5328" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5168">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5170" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5172" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5156">
|
||||
<stop
|
||||
style="stop-color:#cbcbc4;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5158" />
|
||||
<stop
|
||||
id="stop5160"
|
||||
offset="0.72343725"
|
||||
style="stop-color:#878983;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c9cac7;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7098">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7100" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop7102" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7045">
|
||||
<stop
|
||||
style="stop-color:#747671;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7047" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7049" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7045"
|
||||
id="linearGradient7051"
|
||||
x1="14.738757"
|
||||
y1="1.4822139"
|
||||
x2="15.501282"
|
||||
y2="1.4822139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,5)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7061">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7063" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7065" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7061"
|
||||
id="linearGradient7067"
|
||||
x1="14.827146"
|
||||
y1="2.4986799"
|
||||
x2="15.75"
|
||||
y2="2.4986799"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(16,6.5)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6818" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6820" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6776"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6778"
|
||||
offset="0"
|
||||
style="stop-color:#eeeeec;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#b0b1ad;stop-opacity:1;"
|
||||
offset="0.60463846"
|
||||
id="stop5154" />
|
||||
<stop
|
||||
id="stop6780"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6816"
|
||||
id="radialGradient6822"
|
||||
cx="7"
|
||||
cy="14"
|
||||
fx="7"
|
||||
fy="14"
|
||||
r="7.5"
|
||||
gradientTransform="matrix(1,0,0,0.25,0,10.5)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6776"
|
||||
id="linearGradient6825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-1)"
|
||||
x1="14.5625"
|
||||
y1="3.125"
|
||||
x2="14.5625"
|
||||
y2="13.672975" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7098"
|
||||
id="linearGradient7096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,4)"
|
||||
x1="12.59375"
|
||||
y1="7.5625"
|
||||
x2="14.314325"
|
||||
y2="7.5625" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5168"
|
||||
id="radialGradient5174"
|
||||
cx="12.1875"
|
||||
cy="19.625"
|
||||
fx="12.1875"
|
||||
fy="19.625"
|
||||
r="10.0625"
|
||||
gradientTransform="matrix(1,0,0,0.1987578,0,15.724379)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14054401"
|
||||
width="1.281088"
|
||||
y="-0.70711207"
|
||||
height="2.4142241"
|
||||
id="filter5260">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1785201"
|
||||
id="feGaussianBlur5262" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient5284"
|
||||
x1="17.435883"
|
||||
y1="6"
|
||||
x2="17.293747"
|
||||
y2="16.640388"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(7.9549513,0)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.18061832"
|
||||
width="1.3612366"
|
||||
y="-0.26189653"
|
||||
height="1.5237931"
|
||||
id="filter5312">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.38581007"
|
||||
id="feGaussianBlur5314" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5334"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966"
|
||||
gradientTransform="matrix(-1,0,0,1,32.954951,0)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#f0f0f0"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="13.153568"
|
||||
inkscape:cy="14.816572"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="883"
|
||||
inkscape:window-height="848"
|
||||
inkscape:window-x="668"
|
||||
inkscape:window-y="126"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempcolor="#fff23f"
|
||||
gridempopacity="0.37647059"
|
||||
gridempspacing="2"
|
||||
inkscape:grid-points="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="24px"
|
||||
height="24px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata5350">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.17816092;color:#000000;fill:url(#radialGradient5174);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25000000000000000;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5260);enable-background:accumulate"
|
||||
id="path5166"
|
||||
sodipodi:cx="12.1875"
|
||||
sodipodi:cy="19.625"
|
||||
sodipodi:rx="10.0625"
|
||||
sodipodi:ry="2"
|
||||
d="M 22.25,19.625 A 10.0625,2 0 1 1 2.125,19.625 A 10.0625,2 0 1 1 22.25,19.625 z"
|
||||
transform="matrix(1.2919255,0,0,1,-3.7453416,1.375)" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient5284);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M -3.5935922,15 C 2.5935922,15.176777 6.7374366,10.588388 13.454951,10.5 C 13.454951,10.5 14.454951,6.5 19.454951,6.5 L 20.454951,7.5 L 20.454951,16.5 L 19.454951,17.5 C 14.454951,17.5 13.454951,13.5 13.454951,13.5 C 7.1793783,13.5 4.9800776,17.46967 -3.5935922,18"
|
||||
id="path6622"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5316"
|
||||
d="M 13.479223,8.2668741 L 14.142136,7.6481556 C 16.950937,7.8603852 17.897062,9.4547099 18.605747,11.18369 C 17.332956,10.494445 17.320424,9.3668499 13.572986,9.5383523 L 13.479223,8.2668741 z"
|
||||
style="opacity:0.72988503;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5312);enable-background:accumulate"
|
||||
transform="matrix(-1,0,0,1,33.156041,0)" />
|
||||
<path
|
||||
style="opacity:0.45402299;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5334);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 19.454951,9.5 L 19.454951,16 L 18.954951,16.5 C 14.669237,16.5 13.954951,12.5 13.954951,12.5 C 7,12 6.836532,15.823437 -4,17"
|
||||
id="path5332"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
ry="1"
|
||||
rx="1"
|
||||
y="4.5"
|
||||
x="20.5"
|
||||
height="13.843909"
|
||||
width="10.214464"
|
||||
id="rect5342"
|
||||
style="opacity:1;color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5340"
|
||||
width="11.75"
|
||||
height="19.9375"
|
||||
x="22.5"
|
||||
y="1.5"
|
||||
rx="1"
|
||||
ry="1" />
|
||||
<path
|
||||
style="opacity:0.77011494;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25000000000000000;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 13.8125,10.875 C 14.449203,9.8042091 14.276574,8.8008624 16.757981,7.5763461 C 15.462326,8.6503822 13.81381,11.938693 14.68719,13.406106 L 13.4375,11.9375 C 9.0457278,11.726608 5.2189796,14.058325 1.125,15.1875 C 5.2649003,13.660734 8.6360056,11.365172 13.8125,10.875 z"
|
||||
id="path5380"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.4 KiB |
@ -1,172 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg4908"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/andreas/project/gtk/24"
|
||||
sodipodi:docname="gtk-convert.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk/24/gtk-convert.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:modified="true">
|
||||
<defs
|
||||
id="defs4910">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5948">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5950" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5952" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
style="stop-color:#f20000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5906" />
|
||||
<stop
|
||||
style="stop-color:#b00000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5908" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5910"
|
||||
cx="16.60972"
|
||||
cy="17.044081"
|
||||
fx="16.60972"
|
||||
fy="17.044081"
|
||||
r="4.9853533"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8665774,0.3622763,-0.3153673,0.754369,7.4985738,-1.772133)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5948"
|
||||
id="linearGradient5954"
|
||||
x1="16.231808"
|
||||
y1="16.568331"
|
||||
x2="17.704367"
|
||||
y2="18.141708"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="18.711881"
|
||||
inkscape:cy="10.748197"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:window-width="1674"
|
||||
inkscape:window-height="969"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26" />
|
||||
<metadata
|
||||
id="metadata4913">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#15315b;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 1.4999999,11.58685 L 6.0833329,15.516192 L 12.499999,11.542198 L 5.6178032,4.4425904 L 1.4999999,11.58685 z "
|
||||
id="path4923" />
|
||||
<path
|
||||
style="fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,15 L 6,5.531158 L 12,11.330226 L 6,15 z "
|
||||
id="path5894"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 5.0306677,14 L 5.0306677,6.473504 L 2,11.424191 L 5.0306677,14 z "
|
||||
id="path5896"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#b6cee7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,5.6160448 L 5.6791892,5.2784591 L 5.0225843,6.4560847 L 5,13.995216 L 5.9812162,14.884752 L 6,5.6160448 z "
|
||||
id="path5898"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.23369565"
|
||||
d="M 2.6344456,11.290236 L 6.1116291,14.334887 L 11.223258,11.245584 L 5.8437193,6.0669774 L 2.6344456,11.290236 z "
|
||||
id="path5900"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient5910);fill-opacity:1;stroke:#8d0000;stroke-width:0.90642792;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5902"
|
||||
sodipodi:cx="17.525761"
|
||||
sodipodi:cy="17.905054"
|
||||
sodipodi:rx="4.5321393"
|
||||
sodipodi:ry="4.5321393"
|
||||
d="M 22.0579 17.905054 A 4.5321393 4.5321393 0 1 1 12.993621,17.905054 A 4.5321393 4.5321393 0 1 1 22.0579 17.905054 z"
|
||||
transform="matrix(1.1032317,0,0,1.1032318,-1.8349745,-1.2534248)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.20652173;fill:url(#linearGradient5954);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"
|
||||
id="path5912"
|
||||
sodipodi:cx="16.699705"
|
||||
sodipodi:cy="16.855742"
|
||||
sodipodi:rx="1.6074584"
|
||||
sodipodi:ry="1.6074584"
|
||||
d="M 18.307163 16.855742 A 1.6074584 1.6074584 0 1 1 15.092247,16.855742 A 1.6074584 1.6074584 0 1 1 18.307163 16.855742 z"
|
||||
transform="matrix(1.5552502,0,0,1.5552506,-9.4722197,-9.7149015)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.30434783;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.96299076;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5922"
|
||||
sodipodi:cx="17.870581"
|
||||
sodipodi:cy="18.285204"
|
||||
sodipodi:rx="3.8519626"
|
||||
sodipodi:ry="3.8519626"
|
||||
d="M 21.722543 18.285204 A 3.8519626 3.8519626 0 1 1 14.018618,18.285204 A 3.8519626 3.8519626 0 1 1 21.722543 18.285204 z"
|
||||
transform="matrix(1.0384317,0,0,1.0384316,-1.0573766,-0.4879334)" />
|
||||
<path
|
||||
style="fill:#edd400;fill-rule:evenodd;stroke:#a48600;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 15.508502,6.4991071 L 13,6.4991071 L 17.5625,11.499107 L 22,6.4991071 L 19.489631,6.4991071 C 19.489631,6.4991071 19.993728,0.52600781 15,0.4757553 C 9.9620777,0.42550279 8.5303301,3.3812816 8.5303301,3.3812816 C 8.5303301,3.3812816 8.3091456,4.5552427 8.7950679,5.0883883 C 9.7644658,4.2049764 10.167099,3.4891404 12.96875,3.4572916 C 15.739151,3.4254428 15.508502,6.4991071 15.508502,6.4991071 z "
|
||||
id="path5966"
|
||||
sodipodi:nodetypes="ccccczcczc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.65217391"
|
||||
d="M 15.25,7.5 L 17.5,10 L 19.75,7.5 L 18.5,7.5 C 18.510417,3.8020833 17.895833,1.5729167 15.03125,1.53125 C 13.03125,1.5416666 11.5625,1.8645833 10.3125,2.8749999 C 14.177083,1.5520833 16.885417,3.0729166 16.5,7.5 L 15.25,7.5 z "
|
||||
id="path5968"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 852 B |
@ -1,396 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg5345"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docbase="/home/andreas/project/gtk/24"
|
||||
sodipodi:docname="gtk-disconnect.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk/24/gtk-disconnect.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs5347">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5324">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5326" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5328" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5266">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5268" />
|
||||
<stop
|
||||
id="stop5276"
|
||||
offset="0.47403327"
|
||||
style="stop-color:#ffffff;stop-opacity:0.68627451;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5270" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5168">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5170" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5172" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5156">
|
||||
<stop
|
||||
style="stop-color:#cbcbc4;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5158" />
|
||||
<stop
|
||||
id="stop5160"
|
||||
offset="0.72343725"
|
||||
style="stop-color:#878983;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c9cac7;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7098">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7100" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop7102" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7045">
|
||||
<stop
|
||||
style="stop-color:#747671;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop7047" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7049" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7045"
|
||||
id="linearGradient7051"
|
||||
x1="14.738757"
|
||||
y1="1.4822139"
|
||||
x2="15.501282"
|
||||
y2="1.4822139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,5)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7061">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7063" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7065" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7061"
|
||||
id="linearGradient7067"
|
||||
x1="14.827146"
|
||||
y1="2.4986799"
|
||||
x2="15.75"
|
||||
y2="2.4986799"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(16,6.5)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6818" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6820" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6776"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6778"
|
||||
offset="0"
|
||||
style="stop-color:#eeeeec;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#b0b1ad;stop-opacity:1;"
|
||||
offset="0.60463846"
|
||||
id="stop5154" />
|
||||
<stop
|
||||
id="stop6780"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6816"
|
||||
id="radialGradient6822"
|
||||
cx="7"
|
||||
cy="14"
|
||||
fx="7"
|
||||
fy="14"
|
||||
r="7.5"
|
||||
gradientTransform="matrix(1,0,0,0.25,0,10.5)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6776"
|
||||
id="linearGradient6825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,-1)"
|
||||
x1="14.5625"
|
||||
y1="3.125"
|
||||
x2="14.5625"
|
||||
y2="13.672975" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7098"
|
||||
id="linearGradient7096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,4)"
|
||||
x1="12.59375"
|
||||
y1="7.5625"
|
||||
x2="14.314325"
|
||||
y2="7.5625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient4959"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,0,0,1,26,4)"
|
||||
x1="9.4133587"
|
||||
y1="0.34235775"
|
||||
x2="9.4133587"
|
||||
y2="12.96875" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5168"
|
||||
id="radialGradient5174"
|
||||
cx="12.1875"
|
||||
cy="19.625"
|
||||
fx="12.1875"
|
||||
fy="19.625"
|
||||
r="10.0625"
|
||||
gradientTransform="matrix(1,0,0,0.1987578,0,15.724379)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14054401"
|
||||
width="1.281088"
|
||||
y="-0.70711207"
|
||||
height="2.4142241"
|
||||
id="filter5260">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1785201"
|
||||
id="feGaussianBlur5262" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5266"
|
||||
id="linearGradient5272"
|
||||
x1="17.375"
|
||||
y1="10.375"
|
||||
x2="17"
|
||||
y2="14.75"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5266"
|
||||
id="linearGradient5274"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.198223"
|
||||
y1="7.03125"
|
||||
x2="17"
|
||||
y2="14.75" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5156"
|
||||
id="linearGradient5284"
|
||||
x1="17.435883"
|
||||
y1="6"
|
||||
x2="17.293747"
|
||||
y2="16.640388"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.18061832"
|
||||
width="1.3612366"
|
||||
y="-0.26189653"
|
||||
height="1.5237931"
|
||||
id="filter5312">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.38581007"
|
||||
id="feGaussianBlur5314" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5330"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5324"
|
||||
id="linearGradient5334"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.90625"
|
||||
y1="16.75"
|
||||
x2="16.90625"
|
||||
y2="11.693966"
|
||||
gradientTransform="matrix(-1,0,0,1,25,0)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#f0f0f0"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="30.174961"
|
||||
inkscape:cy="-10.43622"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="883"
|
||||
inkscape:window-height="848"
|
||||
inkscape:window-x="668"
|
||||
inkscape:window-y="126"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempcolor="#fff23f"
|
||||
gridempopacity="0.37647059"
|
||||
gridempspacing="2"
|
||||
inkscape:grid-points="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="24px"
|
||||
height="24px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata5350">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.40229881;color:#000000;fill:url(#radialGradient5174);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5260);enable-background:accumulate"
|
||||
id="path5166"
|
||||
sodipodi:cx="12.1875"
|
||||
sodipodi:cy="19.625"
|
||||
sodipodi:rx="10.0625"
|
||||
sodipodi:ry="2"
|
||||
d="M 22.25,19.625 A 10.0625,2 0 1 1 2.125,19.625 A 10.0625,2 0 1 1 22.25,19.625 z"
|
||||
transform="matrix(1.0993788,0,0,1,-4.7111801,1.8661165)" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#766100;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5336"
|
||||
width="5.5"
|
||||
height="2"
|
||||
x="10.629981"
|
||||
y="8.5"
|
||||
rx="1"
|
||||
ry="1" />
|
||||
<rect
|
||||
ry="1"
|
||||
rx="1"
|
||||
y="13.5"
|
||||
x="10.629981"
|
||||
height="2"
|
||||
width="5.5"
|
||||
id="rect5338"
|
||||
style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#766100;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;stroke-opacity:1;stroke-dashoffset:0;stroke-dasharray:none;stroke-miterlimit:2.25000000000000000;stroke-linejoin:miter;stroke-linecap:square;stroke-width:1;stroke:#555753;fill-rule:evenodd;fill-opacity:1;fill:url(#linearGradient5284);opacity:1"
|
||||
d="M -0.5,10.5 L 5.5,10.5 C 5.5,10.5 6.5,6.5 11.5,6.5 L 12.5,7.5 L 12.5,16.5 L 11.5,17.5 C 6.5,17.5 5.5,13.5 5.5,13.5 L -0.5,13.5"
|
||||
id="path6622"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5316"
|
||||
d="M 13.479223,8.2668741 L 14.142136,7.6481556 C 16.950937,7.8603852 17.897062,9.4547099 18.605747,11.18369 C 17.332956,10.494445 17.320424,9.3668499 13.572986,9.5383523 L 13.479223,8.2668741 z"
|
||||
style="enable-background:accumulate;filter:url(#filter5312);overflow:visible;display:inline;visibility:visible;stroke-opacity:1;stroke-dashoffset:0;stroke-dasharray:none;stroke-miterlimit:2.25000000000000000;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:miter;stroke-linecap:square;stroke-width:1;stroke:none;fill-rule:evenodd;fill-opacity:1;fill:#ffffff;color:#000000;opacity:0.72988506"
|
||||
transform="matrix(-1,0,0,1,25.20109,0)" />
|
||||
<path
|
||||
style="opacity:0.45402299;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5334);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 11.5,9.5 L 11.5,16 L 11,16.5 C 6.714286,16.5 6,12.5 6,12.5 L 0.5,12.5"
|
||||
id="path5332"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
ry="1"
|
||||
rx="1"
|
||||
y="4.5"
|
||||
x="20.5"
|
||||
height="13.843909"
|
||||
width="10.214464"
|
||||
id="rect5342"
|
||||
style="opacity:1;color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2.25;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5340"
|
||||
width="11.75"
|
||||
height="19.9375"
|
||||
x="22.5"
|
||||
y="1.5"
|
||||
rx="1"
|
||||
ry="1" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 1.1 KiB |
@ -1,466 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/Desktop/GFX/ikony/GTK/my-stuff/24x24"
|
||||
sodipodi:docname="gtk-edit.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#5d5f5b;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14148472"
|
||||
width="1.2829694"
|
||||
y="-0.70742352"
|
||||
height="2.414847"
|
||||
id="filter6052">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1790392"
|
||||
id="feGaussianBlur6054" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="9.7099533"
|
||||
y1="14.716651"
|
||||
x2="24.285765"
|
||||
y2="-5.9535513"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.117647,0,0,1.1,-1.4117645,-1.15)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3472897,0,0,1.3356241,-6.7302791,-1.5076969)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9803921,0,0,1.1,1.2941182,-0.8000001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4922"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.2947292,0,0,0.2947292,9.2434959,8.1106157)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="22.40896"
|
||||
x2="52.986004"
|
||||
y1="17.590158"
|
||||
x1="48.690983"
|
||||
id="linearGradient5914"
|
||||
xlink:href="#linearGradient5908"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.7214926,0,0,0.7210249,4.4502003,-1.0759528)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="23.074486"
|
||||
x2="19.445436"
|
||||
y1="28.73134"
|
||||
x1="25.279068"
|
||||
id="linearGradient5933"
|
||||
xlink:href="#linearGradient5927"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="12.5"
|
||||
fy="16.093563"
|
||||
fx="48.178337"
|
||||
cy="16.093563"
|
||||
cx="48.178337"
|
||||
gradientTransform="matrix(0.117808,0.165688,-0.160285,0.113967,37.8996,24.60705)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3740"
|
||||
xlink:href="#linearGradient2812"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.710234,0.703965,-0.828897,0.836278,-17.34172,-12.95082)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.5"
|
||||
fy="17.172701"
|
||||
fx="18.389807"
|
||||
cy="17.172701"
|
||||
cx="18.389807"
|
||||
id="radialGradient2818"
|
||||
xlink:href="#linearGradient2812"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="translate(-21.33061,6.070707)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="23.00688"
|
||||
x2="42.993927"
|
||||
y1="18.054306"
|
||||
x1="42.993927"
|
||||
id="linearGradient2802"
|
||||
xlink:href="#linearGradient2796"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1.515341,1.822282e-2,-1.854671e-2,1.542275,-9.89215,-9.850491)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="9.5"
|
||||
fy="17.498907"
|
||||
fx="19.825111"
|
||||
cy="17.498907"
|
||||
cx="19.825111"
|
||||
id="radialGradient2794"
|
||||
xlink:href="#linearGradient2788"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.176471,0,13.58824)"
|
||||
r="8.5"
|
||||
fy="16.5"
|
||||
fx="9.5"
|
||||
cy="16.5"
|
||||
cx="9.5"
|
||||
id="radialGradient3221"
|
||||
xlink:href="#linearGradient3215"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3215"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3217"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3219"
|
||||
offset="1"
|
||||
style="stop-color:#2e3436;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
id="stop2790"
|
||||
offset="0"
|
||||
style="stop-color:#729fcf;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2792"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2796"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2798"
|
||||
offset="0"
|
||||
style="stop-color:#204a87;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2800"
|
||||
offset="1"
|
||||
style="stop-color:#1a3c6e;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2812">
|
||||
<stop
|
||||
id="stop2814"
|
||||
offset="0"
|
||||
style="stop-color:#3070ce;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2816"
|
||||
offset="1"
|
||||
style="stop-color:#1a3c6e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5927"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5929"
|
||||
offset="0"
|
||||
style="stop-color:#c17d11;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5931"
|
||||
offset="1"
|
||||
style="stop-color:#c17d11;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4924"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4926"
|
||||
offset="0"
|
||||
style="stop-color:#ef2929;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4928"
|
||||
offset="1"
|
||||
style="stop-color:#cc0000;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5908"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5910"
|
||||
offset="0"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5912"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6045"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6047"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6049"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4924"
|
||||
id="linearGradient6009"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4140801,0,0,0.4496565,-2.5623905,-0.7746861)"
|
||||
x1="52.658638"
|
||||
y1="14.434367"
|
||||
x2="56.861996"
|
||||
y2="18.59844" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6045"
|
||||
id="linearGradient6011"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-4.8474302,-6.103637)"
|
||||
x1="19.28145"
|
||||
y1="16.874674"
|
||||
x2="20.852045"
|
||||
y2="18.544029" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6045"
|
||||
id="linearGradient6013"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-2.8352152,-8.16808)"
|
||||
x1="19.28145"
|
||||
y1="16.874674"
|
||||
x2="21.347517"
|
||||
y2="19.035276" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.182764"
|
||||
inkscape:cx="18.955944"
|
||||
inkscape:cy="13.220852"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="256"
|
||||
inkscape:window-y="29" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk-edit</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>edit</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
ry="1.6350584"
|
||||
rx="1.6350582"
|
||||
y="19"
|
||||
x="2.0000019"
|
||||
height="4"
|
||||
width="19.999998"
|
||||
id="rect5870"
|
||||
style="opacity:0.12663755;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter6052)" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6062);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 4.3274179,0.49999959 L 15.796562,0.49999959 L 21.078809,5.8278139 C 21.360792,6.1872781 21.511555,6.5467422 21.5,6.9062064 L 21.5,20.701435 C 21.5,21.69784 20.684972,22.5 19.672582,22.5 L 4.3274179,22.5 C 3.3150284,22.5 2.4999999,21.69784 2.4999999,20.701435 L 2.4999999,2.2985637 C 2.4999999,1.3021592 3.3150284,0.49999959 4.3274179,0.49999959 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,5.495472 L 17,5.495472"
|
||||
id="path5015" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,14.495472 L 17,14.495472"
|
||||
id="path6015" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path6084"
|
||||
d="M 5.3489939,1.4999999 L 15.221123,1.4999999 L 20.5,7.2473524 L 20.462646,19.683268 C 20.462646,20.689737 19.637994,21.499999 18.613652,21.499999 L 5.3489939,21.499999 C 4.3246511,21.499999 3.4999997,20.689737 3.4999997,19.683268 L 3.4999997,3.3167312 C 3.4999997,2.310262 4.3246511,1.4999999 5.3489939,1.4999999 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 16,2.0708482 L 20.981955,6.91941 L 21,8 L 16.036229,7.9999999 L 16,2.0708482 z "
|
||||
style="fill:url(#linearGradient6114);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path5986"
|
||||
d="M 6,8.495472 L 17,8.495472"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6082);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4922);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.004529,6.5000002 L 15.536602,6.5 L 15.500001,0.84683065"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
id="path5990"
|
||||
d="M 6,11.495472 L 17,11.495472"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6021"
|
||||
d="M 6,17.495472 L 12.045277,17.495472"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#bababa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g6002"
|
||||
transform="translate(1,-2)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path2788"
|
||||
d="M 19.575478,4.566006 L 9.589185,14.735443 L 7.9625318,19.071551 L 9.265874,18.551716 L 12.11763,17.414301 L 22.482768,7.419573 C 22.733019,6.903184 20.184608,4.03152 19.575478,4.566006 z "
|
||||
style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path2803"
|
||||
d="M 7.1311928,19.955609 L 8.2870268,16.853295 C 8.2835468,17.365676 9.4722848,18.784668 10.109776,18.655613"
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6009);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 19.461302,4.685776 L 18.031604,6.210856 L 20.693475,9.149115 L 22.372758,7.443045 C 22.724348,6.655211 20.3171,3.8703324 19.461302,4.685776 z "
|
||||
id="path4922"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6011);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.53289472"
|
||||
d="M 17.493055,7.6113931 L 10.221325,15.059803 L 9.6859738,17.316707 L 11.615472,16.279841 L 19.068761,9.1107783 C 19.223729,8.7902283 17.870259,7.2796091 17.493055,7.6113931 z "
|
||||
id="path5935"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5011"
|
||||
d="M 19.802552,5.745139 L 18.922414,6.7524104 L 20.118372,7.9229014 L 21.180069,7.194977 C 21.335037,6.874427 20.179756,5.413355 19.802552,5.745139 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6013);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.53289472" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 1.1 KiB |
@ -1,158 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/gnome/gnome-icon-theme-extras/temp/stock-icons/24"
|
||||
sodipodi:docname="gtk-font.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient5139">
|
||||
<stop
|
||||
id="stop5143"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5141"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5139"
|
||||
id="radialGradient5145"
|
||||
cx="36.062447"
|
||||
cy="16.822001"
|
||||
fx="36.062447"
|
||||
fy="16.822001"
|
||||
r="10.929825"
|
||||
gradientTransform="matrix(1.8382956,0,0,1.7528472,-54.29344,-11.725527)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.098421975"
|
||||
width="1.196844"
|
||||
y="-0.52002059"
|
||||
height="2.0400412"
|
||||
id="filter5205">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.90732759"
|
||||
id="feGaussianBlur5207" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#dedede"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="21.656986"
|
||||
inkscape:cy="-1.5444408"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="926"
|
||||
inkscape:window-x="634"
|
||||
inkscape:window-y="155" />
|
||||
<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" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="filter:url(#filter5205);enable-background:accumulate;overflow:visible;display:inline;visibility:visible;stroke-opacity:1;stroke-dashoffset:0;stroke-dasharray:none;stroke-miterlimit:10;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:miter;stroke-linecap:round;stroke-width:1;stroke:none;fill-rule:evenodd;fill-opacity:1;fill:#000000;color:#000000;opacity:0.3"
|
||||
id="rect5151"
|
||||
width="22.125"
|
||||
height="4.1875"
|
||||
x="1.125"
|
||||
y="18.9375"
|
||||
rx="2.09375"
|
||||
ry="2.09375" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5145);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect4552"
|
||||
width="21"
|
||||
height="20"
|
||||
x="1.5"
|
||||
y="1.5"
|
||||
rx="1.767767"
|
||||
ry="1.767767" />
|
||||
<rect
|
||||
ry="0.79549515"
|
||||
rx="0.79549515"
|
||||
y="2.5"
|
||||
x="2.4999981"
|
||||
height="18"
|
||||
width="19.000002"
|
||||
id="rect5149"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-family:'Bitstream Vera Sans';stroke-opacity:1;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:1px;stroke:none;fill-opacity:1;fill:#2e3436;font-weight:normal;font-style:normal;font-size:12px"
|
||||
x="3.7363281"
|
||||
y="10.830078"
|
||||
id="text4549"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4551"
|
||||
x="3.7363281"
|
||||
y="10.830078">a</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-family:'Bitstream Vera Sans';stroke-opacity:1;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:1px;stroke:none;fill-opacity:1;fill:#2e3436;text-anchor:start;writing-mode:lr-tb;line-height:125%;text-align:start;font-stretch:normal;font-weight:bold;font-variant:normal;font-style:normal;font-size:12px"
|
||||
x="9.9921875"
|
||||
y="19.117188"
|
||||
id="text4553"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4555"
|
||||
x="9.9921875"
|
||||
y="19.117188">b</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-family:'Bitstream Vera Sans';stroke-opacity:1;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:1px;stroke:none;fill-opacity:1;fill:#2e3436;text-anchor:start;writing-mode:lr-tb;line-height:125%;text-align:start;font-stretch:normal;font-weight:normal;font-variant:normal;font-style:oblique;font-size:10.10823058999999979px"
|
||||
x="14.759044"
|
||||
y="9.6026068"
|
||||
id="text4557"
|
||||
sodipodi:linespacing="125%"
|
||||
transform="scale(0.9853514,1.0148664)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4559"
|
||||
x="14.759044"
|
||||
y="9.6026068">c</tspan></text>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 960 B |
@ -1,724 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44+devel"
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/lapo/Desktop"
|
||||
sodipodi:docname="gtk-index-test.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="true">
|
||||
<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" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs5">
|
||||
<linearGradient
|
||||
id="linearGradient4482">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop4484" />
|
||||
<stop
|
||||
id="stop4490"
|
||||
offset="0.5"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4486" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4433">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4435" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4437" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4392"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4394"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4396"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3331">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3333" />
|
||||
<stop
|
||||
id="stop3339"
|
||||
offset="0.42222223"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3335" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3283">
|
||||
<stop
|
||||
style="stop-color:#f4dbb3;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3285" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3287" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3269">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3271" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3273" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3261">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3263" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3265" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3255" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3208">
|
||||
<stop
|
||||
style="stop-color:#c17d11;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3210" />
|
||||
<stop
|
||||
style="stop-color:#c17d11;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3212" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient3214"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3283"
|
||||
id="radialGradient3305"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.8750102,0,1.6248744)"
|
||||
cx="42.9375"
|
||||
cy="13.000056"
|
||||
fx="42.9375"
|
||||
fy="13.000056"
|
||||
r="5.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient3307"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.818422"
|
||||
x2="42.65625"
|
||||
y2="15.54274" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient3309"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient3311"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3269"
|
||||
id="linearGradient3315"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="41.40625"
|
||||
y1="10.0625"
|
||||
x2="41.40625"
|
||||
y2="13.719952" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3253"
|
||||
id="linearGradient3317"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="43.40625"
|
||||
y1="12.154325"
|
||||
x2="43.40625"
|
||||
y2="13.879166" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3261"
|
||||
id="linearGradient3319"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="45.46875"
|
||||
y1="12.093524"
|
||||
x2="45.46875"
|
||||
y2="13.781725" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3331"
|
||||
id="linearGradient3337"
|
||||
x1="32.93314"
|
||||
y1="21.1875"
|
||||
x2="40.788864"
|
||||
y2="21.1875"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-20,-1)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4338"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="13.499057"
|
||||
x2="42.65625"
|
||||
y2="15.5698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient4366"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient4421"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4439"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2"
|
||||
gradientTransform="matrix(2,0,0,1.375,-10,-42.15625)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3331"
|
||||
id="linearGradient4460"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-20,-1)"
|
||||
x1="32.93314"
|
||||
y1="21.1875"
|
||||
x2="40.788864"
|
||||
y2="21.1875" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3283"
|
||||
id="radialGradient4462"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.8750102,0,1.6248744)"
|
||||
cx="42.9375"
|
||||
cy="13.000056"
|
||||
fx="42.9375"
|
||||
fy="13.000056"
|
||||
r="5.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4464"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.818422"
|
||||
x2="42.65625"
|
||||
y2="15.54274" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4466"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4468"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4470"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="13.499057"
|
||||
x2="42.65625"
|
||||
y2="15.5698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3269"
|
||||
id="linearGradient4472"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="41.40625"
|
||||
y1="10.0625"
|
||||
x2="41.40625"
|
||||
y2="13.719952" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3253"
|
||||
id="linearGradient4474"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="43.40625"
|
||||
y1="12.154325"
|
||||
x2="43.40625"
|
||||
y2="13.879166" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3261"
|
||||
id="linearGradient4476"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="45.46875"
|
||||
y1="12.093524"
|
||||
x2="45.46875"
|
||||
y2="13.781725" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4478"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,14,-6.65625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4482"
|
||||
id="linearGradient4488"
|
||||
x1="9.96875"
|
||||
y1="15"
|
||||
x2="9.96875"
|
||||
y2="20.500828"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4497"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,-10,-42.15625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4499"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,14,-6.65625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4482"
|
||||
id="linearGradient4501"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9.96875"
|
||||
y1="15"
|
||||
x2="9.96875"
|
||||
y2="20.500828" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4482"
|
||||
id="linearGradient4504"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9.96875"
|
||||
y1="15"
|
||||
x2="9.96875"
|
||||
y2="20.500828" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4507"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,14,-6.65625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4510"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,-10,-42.15625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,-10,-42.15625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4433"
|
||||
id="radialGradient4519"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2,0,0,1.375,14,-6.65625)"
|
||||
cx="2"
|
||||
cy="17.75"
|
||||
fx="2"
|
||||
fy="17.75"
|
||||
r="2" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4482"
|
||||
id="linearGradient4521"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9.96875"
|
||||
y1="15"
|
||||
x2="9.96875"
|
||||
y2="20.500828" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient4525"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754"
|
||||
gradientTransform="translate(0,3)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient4529"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754"
|
||||
gradientTransform="translate(0,6)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient4533"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754"
|
||||
gradientTransform="translate(0,9)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4392"
|
||||
id="linearGradient4537"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-48.4375"
|
||||
y1="2.6536744"
|
||||
x2="-48.4375"
|
||||
y2="4.1124754"
|
||||
gradientTransform="translate(0,12)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3331"
|
||||
id="linearGradient4553"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-20,-1)"
|
||||
x1="32.93314"
|
||||
y1="21.1875"
|
||||
x2="40.788864"
|
||||
y2="21.1875" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-height="721"
|
||||
inkscape:window-width="992"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showborder="false"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempspacing="2"
|
||||
showguides="true"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="7.7724719"
|
||||
inkscape:cy="8.9681081"
|
||||
inkscape:window-x="304"
|
||||
inkscape:window-y="63"
|
||||
inkscape:current-layer="svg2" />
|
||||
<g
|
||||
id="g4512"
|
||||
style="opacity:0.23754789"
|
||||
transform="matrix(1.075,0,0,1.0909091,-1.15,-1.3636364)">
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-20.5"
|
||||
x="-6"
|
||||
height="5.5"
|
||||
width="4"
|
||||
id="rect4423"
|
||||
style="opacity:1;fill:url(#radialGradient4517);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="15"
|
||||
x="18"
|
||||
height="5.5"
|
||||
width="4"
|
||||
id="rect4441"
|
||||
style="opacity:1;fill:url(#radialGradient4519);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="15"
|
||||
x="6"
|
||||
height="5.5"
|
||||
width="12"
|
||||
id="rect4480"
|
||||
style="opacity:1;fill:url(#linearGradient4521);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g4412"
|
||||
transform="translate(60,0)">
|
||||
<rect
|
||||
ry="2.1223905"
|
||||
rx="2.1223905"
|
||||
y="1.5"
|
||||
x="-56.5"
|
||||
height="17"
|
||||
width="17"
|
||||
id="rect4398"
|
||||
style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5"
|
||||
y="2"
|
||||
x="-56"
|
||||
height="3"
|
||||
width="16"
|
||||
id="rect4400"
|
||||
style="opacity:0.98999999;fill:url(#linearGradient4421);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5"
|
||||
y="5"
|
||||
x="-56"
|
||||
height="3"
|
||||
width="16"
|
||||
id="use4402"
|
||||
style="opacity:0.98999999;fill:url(#linearGradient4525);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5"
|
||||
y="8"
|
||||
x="-56"
|
||||
height="3"
|
||||
width="16"
|
||||
id="use4404"
|
||||
style="opacity:0.98999999;fill:url(#linearGradient4529);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5"
|
||||
y="11"
|
||||
x="-56"
|
||||
height="3"
|
||||
width="16"
|
||||
id="use4406"
|
||||
style="opacity:0.98999999;fill:url(#linearGradient4533);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5"
|
||||
y="14"
|
||||
x="-56"
|
||||
height="3"
|
||||
width="16"
|
||||
id="use4408"
|
||||
style="opacity:0.98999999;fill:url(#linearGradient4537);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
d="M -54.375,2.53125 C -55.00376,2.53125 -55.46875,2.99624 -55.46875,3.625 L -55.46875,16.375 C -55.46875,17.00376 -55.003761,17.46875 -54.375,17.46875 L -41.625,17.46875 C -40.99624,17.46875 -40.53125,17.003761 -40.53125,16.375 L -40.53125,3.625 C -40.53125,2.9962394 -40.996239,2.53125 -41.625,2.53125 L -54.375,2.53125 z "
|
||||
id="path4410"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:original="M -54.375 1.5 C -55.550804 1.5 -56.5 2.4491957 -56.5 3.625 L -56.5 16.375 C -56.5 17.550804 -55.550805 18.5 -54.375 18.5 L -41.625 18.5 C -40.449196 18.5 -39.5 17.550805 -39.5 16.375 L -39.5 3.625 C -39.5 2.4491957 -40.449195 1.5 -41.625 1.5 L -54.375 1.5 z "
|
||||
inkscape:radius="-1.016466"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14.5 5.5 C 13.409297 5.5 12.5 6.4092972 12.5 7.5 L 12.5 10.5 C 11.409297 10.5 10.5 11.409297 10.5 12.5 L 10.5 15.5 C 10.5 16.230579 10.685204 16.90693 10.96875 17.5 L 19.5 17.5 L 19.5 9.84375 C 19.223499 9.635162 18.882615 9.5 18.5 9.5 C 18.110071 9.5 17.8103 9.738328 17.5 9.9375 C 17.1897 9.738328 16.889929 9.5 16.5 9.5 L 16.5 7.5 C 16.5 6.4092972 15.590703 5.5 14.5 5.5 z "
|
||||
id="path4330" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient4553);fill-opacity:1;stroke:#729fcf;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3329"
|
||||
width="7"
|
||||
height="3"
|
||||
x="13.5"
|
||||
y="18.5" />
|
||||
<g
|
||||
id="g3291"
|
||||
transform="translate(-27,0)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccccccsccsssccc"
|
||||
id="path3185"
|
||||
d="M 41.5,6.5 C 40.946,6.5 40.5,6.946 40.5,7.5 L 40.5,12.5 C 40.5,11.946 40.054,11.5 39.5,11.5 C 38.946,11.5 38.5,11.946 38.5,12.5 L 38.5,15.5 C 38.5,17.968706 40.855226,19.515283 42.564721,19.5 L 45.65625,19.5 C 47.176529,19.5 48.5,17.555583 48.5,16.5 L 48.5,12.5 C 48.5,11.946 48.054,11.5 47.5,11.5 C 46.946,11.5 46.5,11.946 46.5,12.5 L 46.5,11.5 C 46.5,10.946 46.054,10.5 45.5,10.5 C 44.946,10.5 44.5,10.946 44.5,11.5 C 44.5,10.946 44.054,10.5 43.5,10.5 C 42.946,10.5 42.5,10.946 42.5,11.5 L 42.5,7.5 C 42.5,6.946 42.054,6.5 41.5,6.5 z "
|
||||
style="opacity:1;fill:url(#radialGradient4462);fill-opacity:1;stroke:#c17d11;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccscc"
|
||||
id="path3238"
|
||||
d="M 39.53125,12.5 L 39.46875,15.5 C 39.46875,16.423456 39.903717,17.144961 40.53125,17.6875 C 41.158783,18.230039 42.006829,18.536218 42.5625,18.53125 L 45.65625,18.53125 C 45.999204,18.53125 46.505158,18.225897 46.90625,17.75 C 47.307342,17.274103 47.53125,16.618827 47.53125,16.5 L 47.53125,12.5"
|
||||
style="opacity:0.54406128;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3194"
|
||||
d="M 46.5,11.991767 L 46.5,15.494369"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4464);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3196"
|
||||
d="M 44.5,10.903379 L 44.5,14.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4466);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3198"
|
||||
d="M 42.5,10.5 L 42.5,14.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4468);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3200"
|
||||
d="M 40.5,11.5 L 40.5,15.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4470);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3247"
|
||||
d="M 41.5,7.5 L 41.5,14.5"
|
||||
style="opacity:0.51724135;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4472);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3249"
|
||||
d="M 43.5,11.5 L 43.5,14.5"
|
||||
style="opacity:0.57088126;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4474);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3251"
|
||||
d="M 45.5,11.5 L 45.5,14.5"
|
||||
style="opacity:0.57088126;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4476);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-7.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3277"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-5.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3279"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-3.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3281"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 1.1 KiB |
@ -1,304 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/24x24"
|
||||
sodipodi:docname="gtk-orientation-landscape.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4927">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4929" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4931" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14148472"
|
||||
width="1.2829694"
|
||||
y="-0.70742352"
|
||||
height="2.414847"
|
||||
id="filter6052">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1790392"
|
||||
id="feGaussianBlur6054" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6129"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6131"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6133"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6136"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-1.1227415,-1.1130202,0,24.173082,27.025234)"
|
||||
x1="17.835463"
|
||||
y1="4.4685841"
|
||||
x2="19.256258"
|
||||
y2="2.9777203" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientTransform="matrix(0,-1.0962567,-1.0952381,0,25.142857,25.15508)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6146"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientTransform="matrix(0,-1.1176469,-1.0952381,0,24.047619,25.411764)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6150"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9925304,0,0,1.0962567,3.1120437,1.0374326)"
|
||||
x1="16.552481"
|
||||
y1="4.2097468"
|
||||
x2="16.552481"
|
||||
y2="8.0098352" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4927"
|
||||
id="linearGradient4933"
|
||||
x1="21.040491"
|
||||
y1="8.5825548"
|
||||
x2="15.838597"
|
||||
y2="5.5375595"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="30.274146"
|
||||
inkscape:cx="14.448522"
|
||||
inkscape:cy="13.311688"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="113"
|
||||
inkscape:window-y="111" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk orientation landscape</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
ry="1.6350584"
|
||||
rx="1.3625482"
|
||||
y="19"
|
||||
x="2.0000019"
|
||||
height="4"
|
||||
width="19.999998"
|
||||
id="rect5870"
|
||||
style="opacity:0.12663754;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6052);enable-background:accumulate"
|
||||
transform="matrix(1.2000002,0,0,1,-2.4000027,0)" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6146);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 23.5,19.672582 L 23.5,8.2034383 L 17.823742,2.4999998 L 2.2907788,2.4999998 C 1.2986869,2.4999998 0.49999985,3.3150281 0.49999985,4.3274173 L 0.49999985,19.672582 C 0.49999985,20.684971 1.2986869,21.499999 2.2907788,21.499999 L 21.709222,21.499999 C 22.701313,21.499999 23.5,20.684971 23.5,19.672582 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(-1.0962567,0,0,1.0872215,25.012576,-0.6507115)">
|
||||
<path
|
||||
transform="matrix(0.9037057,0,0,0.9156483,0.9402993,-0.6929702)"
|
||||
d="m 15.55783,10.027681 c 0,1.8334 -1.486264,3.319665 -3.319664,3.319665 -1.8334,0 -3.3196644,-1.486265 -3.3196644,-3.319665 0,-1.8333996 1.4862644,-3.3196639 3.3196644,-3.3196639 1.8334,0 3.319664,1.4862643 3.319664,3.3196639 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="m 17,16 c 0,2.760001 -2.239999,2.000002 -5,2.000002 -2.7600007,0 -5.0000007,0.759999 -5.0000007,-2.000002 0,-2.76 2.24,-5 5.0000007,-5 2.760001,0 5,2.24 5,5 z"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 22.500001,18.651007 L 22.500001,8.7788769 L 16.782898,3.5000001 L 14.179931,3.5373541 L 3.3071705,3.5373541 C 2.3059977,3.5373541 1.5,4.3620055 1.5,5.3863479 L 1.5,18.651007 C 1.5,19.67535 2.3059977,20.500001 3.3071705,20.500001 L 20.692831,20.500001 C 21.694004,20.500001 22.500001,19.67535 22.500001,18.651007 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 23.073761,8.71123 L 17.456864,3.1404986 L 16.380952,3.1203209 L 16.380952,8.6707189 L 23.073761,8.71123 z "
|
||||
style="fill:url(#linearGradient6139);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 18,3.4057373 L 23.043636,8.7305746 L 23.061905,9.8074867 L 18.036678,9.8074867 L 18,3.4057373 z "
|
||||
id="path6148"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6136);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4933);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.5,2.9054334 L 17.5,8.4915208 L 23.061535,8.5000003"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 931 B |
@ -1,232 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/24x24"
|
||||
sodipodi:docname="gtk-orientation-portrait.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4919">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4921" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4923" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14148472"
|
||||
width="1.2829694"
|
||||
y="-0.70742352"
|
||||
height="2.414847"
|
||||
id="filter6052">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1790392"
|
||||
id="feGaussianBlur6054" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.117647,0,0,1.1,-1.4117645,-1.15)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3472897,0,0,1.3356241,-6.7302791,-1.5076969)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9803921,0,0,1.1,1.2941182,-0.8000001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4919"
|
||||
id="linearGradient4925"
|
||||
x1="18.976589"
|
||||
y1="6.5593758"
|
||||
x2="14.12096"
|
||||
y2="2.9424284"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.182764"
|
||||
inkscape:cx="20.880028"
|
||||
inkscape:cy="12.279454"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="172"
|
||||
inkscape:window-y="29" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk orientation portrait</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
ry="1.6350584"
|
||||
rx="1.6350582"
|
||||
y="19"
|
||||
x="2.0000019"
|
||||
height="4"
|
||||
width="19.999998"
|
||||
id="rect5870"
|
||||
style="opacity:0.12663755;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter6052)" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6062);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 4.3274179,0.49999959 L 15.796562,0.49999959 L 21.5,6.2526387 L 21.5,20.701435 C 21.5,21.69784 20.684972,22.5 19.672582,22.5 L 4.3274179,22.5 C 3.3150284,22.5 2.4999999,21.69784 2.4999999,20.701435 L 2.4999999,2.2985637 C 2.4999999,1.3021592 3.3150284,0.49999959 4.3274179,0.49999959 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="translate(0,0.1486417)">
|
||||
<path
|
||||
transform="matrix(0.9948357,0,0,1.0050216,-0.1749648,-1.8830157)"
|
||||
d="M 15.55783 10.027681 A 3.3196642 3.3196642 0 1 1 8.9185016,10.027681 A 3.3196642 3.3196642 0 1 1 15.55783 10.027681 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="M 17.504202,16.45 C 17.504202,19.486001 15.03832,18.650002 12,18.650002 C 8.9616798,18.650002 6.4957974,19.486001 6.4957974,16.45 C 6.4957974,13.414 8.9616798,10.95 12,10.95 C 15.03832,10.95 17.504202,13.414 17.504202,16.45 z "
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path6084"
|
||||
d="M 5.3489939,1.4999999 L 15.221123,1.4999999 L 20.5,7.2473524 L 20.462646,19.683268 C 20.462646,20.689737 19.637994,21.499999 18.613652,21.499999 L 5.3489939,21.499999 C 4.3246511,21.499999 3.4999997,20.689737 3.4999997,19.683268 L 3.4999997,3.3167312 C 3.4999997,2.310262 4.3246511,1.4999999 5.3489939,1.4999999 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 16,2.0708482 L 20.981955,6.91941 L 21,8 L 16.036229,7.9999999 L 16,2.0708482 z "
|
||||
style="fill:url(#linearGradient6114);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6082);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4925);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.004529,6.5000002 L 15.536602,6.5 L 15.500001,0.84683065"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 1.0 KiB |
@ -1,304 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/24x24"
|
||||
sodipodi:docname="gtk-orientation-reverse-landscape.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4927">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4929" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4931" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14148472"
|
||||
width="1.2829694"
|
||||
y="-0.70742352"
|
||||
height="2.414847"
|
||||
id="filter6052">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1790392"
|
||||
id="feGaussianBlur6054" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6129"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6131"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6133"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0.4954723)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6136"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-1.1227415,-1.1130202,0,24.173082,27.025234)"
|
||||
x1="17.835463"
|
||||
y1="4.4685841"
|
||||
x2="19.256258"
|
||||
y2="2.9777203" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6139"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientTransform="matrix(0,-1.0962567,-1.0952381,0,25.142857,25.15508)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6146"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientTransform="matrix(0,-1.1176469,-1.0952381,0,24.047619,25.411764)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6150"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9925304,0,0,1.0962567,3.1120437,1.0374326)"
|
||||
x1="16.552481"
|
||||
y1="4.2097468"
|
||||
x2="16.552481"
|
||||
y2="8.0098352" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4927"
|
||||
id="linearGradient4933"
|
||||
x1="21.040491"
|
||||
y1="8.5825548"
|
||||
x2="15.838597"
|
||||
y2="5.5375595"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="30.274146"
|
||||
inkscape:cx="14.448522"
|
||||
inkscape:cy="13.311688"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="113"
|
||||
inkscape:window-y="111" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
<dc:title>gtk orientation landscape reverse</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
ry="1.6350584"
|
||||
rx="1.3625482"
|
||||
y="19"
|
||||
x="2.0000019"
|
||||
height="4"
|
||||
width="19.999998"
|
||||
id="rect5870"
|
||||
style="opacity:0.12663754;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6052);enable-background:accumulate"
|
||||
transform="matrix(1.2000002,0,0,1,-2.4000027,0)" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6146);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 23.5,19.672582 L 23.5,8.2034383 L 17.823742,2.4999998 L 2.2907788,2.4999998 C 1.2986869,2.4999998 0.49999985,3.3150281 0.49999985,4.3274173 L 0.49999985,19.672582 C 0.49999985,20.684971 1.2986869,21.499999 2.2907788,21.499999 L 21.709222,21.499999 C 22.701313,21.499999 23.5,20.684971 23.5,19.672582 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(-1.0962567,0,0,-1.0872215,25.012575,24.947995)">
|
||||
<path
|
||||
transform="matrix(0.9037057,0,0,0.9156483,0.9402993,-0.6929702)"
|
||||
d="m 15.55783,10.027681 c 0,1.8334 -1.486264,3.319665 -3.319664,3.319665 -1.8334,0 -3.3196644,-1.486265 -3.3196644,-3.319665 0,-1.8333996 1.4862644,-3.3196639 3.3196644,-3.3196639 1.8334,0 3.319664,1.4862643 3.319664,3.3196639 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="m 17,16 c 0,2.760001 -2.239999,2.000002 -5,2.000002 -2.7600007,0 -5.0000007,0.759999 -5.0000007,-2.000002 0,-2.76 2.24,-5 5.0000007,-5 2.760001,0 5,2.24 5,5 z"
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path6084"
|
||||
d="M 22.500001,18.651007 L 22.500001,8.7788769 L 16.782898,3.5000001 L 14.179931,3.5373541 L 3.3071705,3.5373541 C 2.3059977,3.5373541 1.5,4.3620055 1.5,5.3863479 L 1.5,18.651007 C 1.5,19.67535 2.3059977,20.500001 3.3071705,20.500001 L 20.692831,20.500001 C 21.694004,20.500001 22.500001,19.67535 22.500001,18.651007 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 23.073761,8.71123 L 17.456864,3.1404986 L 16.380952,3.1203209 L 16.380952,8.6707189 L 23.073761,8.71123 z "
|
||||
style="fill:url(#linearGradient6139);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 18,3.4057373 L 23.043636,8.7305746 L 23.061905,9.8074867 L 18.036678,9.8074867 L 18,3.4057373 z "
|
||||
id="path6148"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6136);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4933);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.5,2.9054334 L 17.5,8.4915208 L 23.061535,8.5000003"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 940 B |
@ -1,232 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45.1"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/cornelius/GFX/ikony/GTK/my-stuff/24x24"
|
||||
sodipodi:docname="gtk-orientation-reverse-portrait.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4919">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4921" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4923" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14148472"
|
||||
width="1.2829694"
|
||||
y="-0.70742352"
|
||||
height="2.414847"
|
||||
id="filter6052">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1790392"
|
||||
id="feGaussianBlur6054" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient6062"
|
||||
x1="4.8556285"
|
||||
y1="3.6360893"
|
||||
x2="21.891851"
|
||||
y2="21.274902"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.117647,0,0,1.1,-1.4117645,-1.15)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6082"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3472897,0,0,1.3356241,-6.7302791,-1.5076969)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6114"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9803921,0,0,1.1,1.2941182,-0.8000001)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4919"
|
||||
id="linearGradient4925"
|
||||
x1="18.976589"
|
||||
y1="6.5593758"
|
||||
x2="14.12096"
|
||||
y2="2.9424284"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.182764"
|
||||
inkscape:cx="20.434103"
|
||||
inkscape:cy="12.081265"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="true"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="792"
|
||||
inkscape:window-x="256"
|
||||
inkscape:window-y="29" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk orientation portrait reverse</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
ry="1.6350584"
|
||||
rx="1.6350582"
|
||||
y="19"
|
||||
x="2.0000019"
|
||||
height="4"
|
||||
width="19.999998"
|
||||
id="rect5870"
|
||||
style="opacity:0.12663755;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter6052)" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient6062);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 4.3274179,0.49999959 L 15.796562,0.49999959 L 21.5,6.2526387 L 21.5,20.701435 C 21.5,21.69784 20.684972,22.5 19.672582,22.5 L 4.3274179,22.5 C 3.3150284,22.5 2.4999999,21.69784 2.4999999,20.701435 L 2.4999999,2.2985637 C 2.4999999,1.3021592 3.3150284,0.49999959 4.3274179,0.49999959 z "
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<g
|
||||
id="g6116"
|
||||
transform="matrix(1,0,0,-1,0,23.76277)">
|
||||
<path
|
||||
transform="matrix(0.9948357,0,0,1.0050216,-0.1749648,-1.8830157)"
|
||||
d="M 15.55783 10.027681 A 3.3196642 3.3196642 0 1 1 8.9185016,10.027681 A 3.3196642 3.3196642 0 1 1 15.55783 10.027681 z"
|
||||
sodipodi:ry="3.3196642"
|
||||
sodipodi:rx="3.3196642"
|
||||
sodipodi:cy="10.027681"
|
||||
sodipodi:cx="12.238166"
|
||||
id="path6068"
|
||||
style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path6070"
|
||||
d="M 17.504202,16.45 C 17.504202,19.486001 15.03832,18.650002 12,18.650002 C 8.9616798,18.650002 6.4957974,19.486001 6.4957974,16.45 C 6.4957974,13.414 8.9616798,10.95 12,10.95 C 15.03832,10.95 17.504202,13.414 17.504202,16.45 z "
|
||||
style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path6084"
|
||||
d="M 5.3489939,1.4999999 L 15.221123,1.4999999 L 20.5,7.2473524 L 20.462646,19.683268 C 20.462646,20.689737 19.637994,21.499999 18.613652,21.499999 L 5.3489939,21.499999 C 4.3246511,21.499999 3.4999997,20.689737 3.4999997,19.683268 L 3.4999997,3.3167312 C 3.4999997,2.310262 4.3246511,1.4999999 5.3489939,1.4999999 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999964px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 16,2.0708482 L 20.981955,6.91941 L 21,8 L 16.036229,7.9999999 L 16,2.0708482 z "
|
||||
style="fill:url(#linearGradient6114);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6082);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4925);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.004529,6.5000002 L 15.536602,6.5 L 15.500001,0.84683065"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.7 KiB |
@ -1,323 +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://web.resource.org/cc/"
|
||||
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="16"
|
||||
height="16"
|
||||
id="svg6064"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/kalle/Projekt/Tango/gtk/gtk-preferences"
|
||||
sodipodi:docname="gtk-preferences.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/srv/www/htdocs/tango/gtk-preferences-24.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs6066">
|
||||
<linearGradient
|
||||
id="linearGradient5239">
|
||||
<stop
|
||||
style="stop-color:#2c67bd;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5241" />
|
||||
<stop
|
||||
style="stop-color:#173662;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5243" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5163">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5165" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5167" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5153">
|
||||
<stop
|
||||
style="stop-color:#888b85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5155" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5157" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5143">
|
||||
<stop
|
||||
style="stop-color:#84abd5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5145" />
|
||||
<stop
|
||||
id="stop5151"
|
||||
offset="0.5"
|
||||
style="stop-color:#d0dfef;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#84abd5;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5147" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5916">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5918" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient6057"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9803921,0,0,1.1,-0.2357019,-3.9732306)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#5d5f5b;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient6053"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154"
|
||||
gradientTransform="translate(-1.5298199,-3.1732306)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient6051"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3472897,0,0,1.3356241,-8.2600989,-4.6809276)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5916"
|
||||
id="radialGradient5922"
|
||||
cx="17.563257"
|
||||
cy="3.4949493"
|
||||
fx="17.563257"
|
||||
fy="3.4949493"
|
||||
r="2.21875"
|
||||
gradientTransform="matrix(-0.7687899,0.7206648,-0.8929582,-0.95259,35.055209,-5.9451539)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5916"
|
||||
id="radialGradient5926"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3081039,0.4850653,-0.8033197,-0.510253,15.173091,-4.5605093)"
|
||||
cx="17.653761"
|
||||
cy="3.6020696"
|
||||
fx="17.653761"
|
||||
fy="3.6020696"
|
||||
r="2.21875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5143"
|
||||
id="linearGradient5149"
|
||||
x1="4.3600888"
|
||||
y1="17.388145"
|
||||
x2="5.8710656"
|
||||
y2="18.979136"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5153"
|
||||
id="linearGradient5159"
|
||||
x1="1"
|
||||
y1="12"
|
||||
x2="22.999998"
|
||||
y2="12"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5163"
|
||||
id="radialGradient5169"
|
||||
cx="11.90625"
|
||||
cy="20.15625"
|
||||
fx="11.90625"
|
||||
fy="20.15625"
|
||||
r="9.21875"
|
||||
gradientTransform="matrix(1,0,0,0.2881356,0,14.348517)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.14658095"
|
||||
width="1.2931619"
|
||||
y="-0.50872213"
|
||||
height="2.0174441"
|
||||
id="filter5223">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1260776"
|
||||
id="feGaussianBlur5225" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5239"
|
||||
id="linearGradient5245"
|
||||
x1="4.8767667"
|
||||
y1="16.335575"
|
||||
x2="8.2157669"
|
||||
y2="20.754992"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="16.445486"
|
||||
inkscape:cy="9.9497527"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="16px"
|
||||
height="16px"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="765"
|
||||
inkscape:window-x="508"
|
||||
inkscape:window-y="105"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
borderlayer="true" />
|
||||
<metadata
|
||||
id="metadata6069">
|
||||
<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>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5159);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 1.5,6.7723402 L 2.8404256,9.3638294 C 3.8126975,11.396761 5.820583,10.267256 7.5319146,9.7659573 L 14.256383,16.490425 C 13.58111,18.325838 12.581385,19.944478 14.658511,21.181915 L 17.22766,22.5 L 18.746809,20.980851 L 17.294681,19.573404 L 17.27234,18.165958 L 18.031915,17.406383 L 19.417021,17.317022 L 20.913829,18.81383 L 22.499999,17.227659 L 21.092553,14.747873 C 19.89931,12.759135 18.17364,13.797621 16.378723,14.323404 L 9.6989358,7.6436169 C 10.551681,5.8432144 10.865458,4.0346416 9.2744677,2.9297872 L 6.7723401,1.5 L 5.1861699,3.0861703 L 6.7053189,4.6053191 L 6.6159571,5.9904254 L 5.8563828,6.7499999 L 4.4489359,6.7276595 L 3.0191487,5.2531914 L 1.5,6.7723402 z"
|
||||
id="path5215"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.4194737,2.6779497 L 8.3477265,3.8819448 L 8.972086,4.5828733 L 8.9782941,5.3178453 L 8.0345915,8.2417835 L 11.017699,10.871337 L 11.548028,10.252618 L 9.0965924,7.8895708 C 10.066037,5.4054495 10.18115,4.2227949 8.9879069,3.3831056 L 6.8672482,2.0960222 L 6.4194737,2.6779497 z"
|
||||
id="path5221"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 3.5197974,6.6646408 L 2.5196068,7.6804563 L 2.171875,6.8635146 L 3.0557585,5.9796311 L 3.4756032,6.4878641 L 3.5197974,6.6646408 z"
|
||||
id="path6286"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:0.27976194;fill:#2e3436;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12.90625,14.46875 L 14.40625,13.0625 L 13.5,12.1875 L 12.0625,13.75 L 12.90625,14.46875 z"
|
||||
id="path5928"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path6295"
|
||||
d="M 18.511556,2.6767767 L 15.909088,4.8749091 L 16.116116,6.260951 L 5.7797581,16.621498 L 7.3176857,18.109715 L 17.687611,7.8301805 L 19.082607,8.0354465 L 21.343751,5.5598412 L 18.511556,2.6767767 z"
|
||||
style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#d4e2f1;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5245);stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.4598996,13.455806 L 2.4451979,17.687674 C 2.4451979,17.687674 1.7418453,18.736059 2.6926977,19.689537 L 4.3255945,21.326944 C 5.0212223,22.024493 6.3796423,21.502887 6.3796423,21.502887 L 10.632583,15.657011 L 8.4598996,13.455806 z"
|
||||
id="path5217"
|
||||
sodipodi:nodetypes="cczzccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5910"
|
||||
d="M 8.3511356,14.532639 L 3.5017016,18.372183 C 3.0502659,19.418602 4.9087429,20.858327 5.7218903,20.217737 L 9.6275708,15.721377 L 8.3511356,14.532639 z"
|
||||
style="fill:url(#linearGradient5149);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 18.951718,3.8474567 L 17.204478,5.3241703 L 17.391978,6.6522163 L 9.951272,13.954978 L 9.5459416,13.525981 L 16.661988,6.4255586 L 16.483316,5.0692686 L 18.392819,3.2573074 L 18.951718,3.8474567 z"
|
||||
id="path5912"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient5922);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 18.46875,3.1953124 L 20.65782,5.5651808 L 18.84375,7.5625 L 16.458812,5.0670765 L 18.46875,3.1953124 z"
|
||||
id="path5914"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5924"
|
||||
d="M 6.869313,2.0937499 L 8.947438,3.34375 L 7.244313,4.5 L 5.9375,3.1139515 L 6.869313,2.0937499 z"
|
||||
style="fill:url(#radialGradient5926);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 13.75,12.4375 L 16.3125,14.9375 C 16.3125,14.9375 18.8125,13.6875 19.75,14.1875 C 20.6875,14.6875 21.8125,17.125 21.8125,17.125 C 21.8125,17.125 20.625,15.0625 19.75,14.8125 C 18.875,14.5625 16.1875,15.75 16.1875,15.75 L 13.3125,12.9375 L 13.75,12.4375 z"
|
||||
id="path5227" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 17.854446,16.840544 L 15.998291,17.989592 L 15.909903,19.934136 L 17.500893,21.525126 L 18.031223,20.994796 L 16.705398,19.757359 L 16.793786,18.077981 L 17.854446,16.840544 z"
|
||||
id="path5229" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 993 B |
@ -1,420 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg4908"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44+devel"
|
||||
version="1.0"
|
||||
sodipodi:docname="gtk-select-color.svg"
|
||||
sodipodi:docbase="/home/andreas/project/gtk/24"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/gtk/24/gtk-select-color.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:modified="true">
|
||||
<defs
|
||||
id="defs4910">
|
||||
<linearGradient
|
||||
id="linearGradient5942"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5944"
|
||||
offset="0"
|
||||
style="stop-color:#a46a0e;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5946"
|
||||
offset="1"
|
||||
style="stop-color:#c17d11;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5936"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5938"
|
||||
offset="0"
|
||||
style="stop-color:#a46a0e;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5940"
|
||||
offset="1"
|
||||
style="stop-color:#c17d11;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5930"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5932"
|
||||
offset="0"
|
||||
style="stop-color:#a46a0e;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5934"
|
||||
offset="1"
|
||||
style="stop-color:#c17d11;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3331">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3333" />
|
||||
<stop
|
||||
id="stop3339"
|
||||
offset="0.42222223"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3335" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3331"
|
||||
id="linearGradient4553"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-22,-2.0000001)"
|
||||
x1="32.93314"
|
||||
y1="21.1875"
|
||||
x2="40.788864"
|
||||
y2="21.1875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3261">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3263" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3265" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3261"
|
||||
id="linearGradient4476"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="45.46875"
|
||||
y1="12.093524"
|
||||
x2="45.46875"
|
||||
y2="13.781725" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3255" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3253"
|
||||
id="linearGradient4474"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="43.40625"
|
||||
y1="12.154325"
|
||||
x2="43.40625"
|
||||
y2="13.879166" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3269">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3271" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3273" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3269"
|
||||
id="linearGradient4472"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="41.40625"
|
||||
y1="10.0625"
|
||||
x2="41.40625"
|
||||
y2="13.719952" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5930"
|
||||
id="linearGradient4470"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="13.499057"
|
||||
x2="42.65625"
|
||||
y2="15.5698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5936"
|
||||
id="linearGradient4468"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5942"
|
||||
id="linearGradient4466"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.53125"
|
||||
x2="42.65625"
|
||||
y2="14.543178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3208">
|
||||
<stop
|
||||
style="stop-color:#a46a0e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3210" />
|
||||
<stop
|
||||
style="stop-color:#c17d11;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3212" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3208"
|
||||
id="linearGradient4464"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.65625"
|
||||
y1="12.818422"
|
||||
x2="42.65625"
|
||||
y2="15.54274" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3283">
|
||||
<stop
|
||||
style="stop-color:#f4dbb3;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3285" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3287" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3283"
|
||||
id="radialGradient4462"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.8750102,0,1.6248744)"
|
||||
cx="42.9375"
|
||||
cy="13.000056"
|
||||
fx="42.9375"
|
||||
fy="13.000056"
|
||||
r="5.5" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395603"
|
||||
inkscape:cx="17.493231"
|
||||
inkscape:cy="12.054322"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
width="24px"
|
||||
height="24px"
|
||||
inkscape:window-width="1674"
|
||||
inkscape:window-height="969"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26" />
|
||||
<metadata
|
||||
id="metadata4913">
|
||||
<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>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g5907">
|
||||
<path
|
||||
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.5,21.026496 C 1.5,21.842816 2.157183,22.499999 2.973504,22.499999 L 8.5,22.5 L 8.455349,15.499999 L 1.5,15.499999 L 1.5,21.026496 z "
|
||||
id="path6877"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<rect
|
||||
y="1.5"
|
||||
x="8.5"
|
||||
height="7"
|
||||
width="7"
|
||||
id="rect5894"
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 21.026497,1.5 C 21.842817,1.5 22.5,2.1571825 22.5,2.9735035 L 22.410697,8.5 L 15.5,8.5893032 L 15.5,1.5 L 21.026497,1.5 z "
|
||||
id="rect5896"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<rect
|
||||
y="8.5"
|
||||
x="1.5"
|
||||
height="7"
|
||||
width="7"
|
||||
id="rect5902"
|
||||
style="opacity:1;fill:#ad7fa8;fill-opacity:1;stroke:#5c3566;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="8.5"
|
||||
x="8.5"
|
||||
height="7"
|
||||
width="7"
|
||||
id="rect5926"
|
||||
style="opacity:1;fill:#888a85;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="15.5"
|
||||
x="8.5"
|
||||
height="7"
|
||||
width="7"
|
||||
id="rect5898"
|
||||
style="opacity:1;fill:#8ae234;fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="8.5"
|
||||
x="15.5"
|
||||
height="7"
|
||||
width="7"
|
||||
id="rect5900"
|
||||
style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 22.5,21.026497 C 22.5,21.842817 21.842817,22.5 21.026496,22.5 L 15.5,22.500001 L 15.544651,15.5 L 22.5,15.5 L 22.5,21.026497 z "
|
||||
id="path6875"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#a40000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.5000001,2.973504 C 1.5000001,2.157184 2.1571831,1.500001 2.9735041,1.500001 L 8.5,1.5 L 8.455349,8.500001 L 1.5000001,8.500001 L 1.5000001,2.973504 z "
|
||||
id="path6882"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<rect
|
||||
y="2.5"
|
||||
x="2.5"
|
||||
height="19"
|
||||
width="19"
|
||||
id="rect5908"
|
||||
style="opacity:0.38586958;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.22826089;fill:#ffffff;fill-opacity:1;stroke:#3c3c3c;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5931"
|
||||
width="21.047621"
|
||||
height="21"
|
||||
x="1.4523792"
|
||||
y="1.5"
|
||||
rx="1.4288518"
|
||||
ry="1.4288518" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient4553);fill-opacity:1;stroke:#386da6;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3329"
|
||||
width="7"
|
||||
height="3"
|
||||
x="11.5"
|
||||
y="17.5" />
|
||||
<g
|
||||
id="g3291"
|
||||
transform="translate(-29,-1.0000001)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccccccsccsssccc"
|
||||
id="path3185"
|
||||
d="M 41.5,6.5 C 40.946,6.5 40.5,6.946 40.5,7.5 L 40.5,12.5 C 40.5,11.946 40.054,11.5 39.5,11.5 C 38.946,11.5 38.5,11.946 38.5,12.5 L 38.5,15.5 C 38.5,17.968706 40.855226,19.515283 42.564721,19.5 L 45.65625,19.5 C 47.176529,19.5 48.5,17.555583 48.5,16.5 L 48.5,12.5 C 48.5,11.946 48.054,11.5 47.5,11.5 C 46.946,11.5 46.5,11.946 46.5,12.5 L 46.5,11.5 C 46.5,10.946 46.054,10.5 45.5,10.5 C 44.946,10.5 44.5,10.946 44.5,11.5 C 44.5,10.946 44.054,10.5 43.5,10.5 C 42.946,10.5 42.5,10.946 42.5,11.5 L 42.5,7.5 C 42.5,6.946 42.054,6.5 41.5,6.5 z "
|
||||
style="opacity:1;fill:url(#radialGradient4462);fill-opacity:1;stroke:#a46a0e;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccscc"
|
||||
id="path3238"
|
||||
d="M 39.53125,12.5 L 39.46875,15.5 C 39.46875,16.423456 39.903717,17.144961 40.53125,17.6875 C 41.158783,18.230039 42.006829,18.536218 42.5625,18.53125 L 45.65625,18.53125 C 45.999204,18.53125 46.505158,18.225897 46.90625,17.75 C 47.307342,17.274103 47.53125,16.618827 47.53125,16.5 L 47.53125,12.5"
|
||||
style="opacity:0.54406128;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3194"
|
||||
d="M 46.5,11.991767 L 46.5,15.494369"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4464);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3196"
|
||||
d="M 44.5,10.903379 L 44.5,14.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4466);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3198"
|
||||
d="M 42.5,10.5 L 42.5,14.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4468);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3200"
|
||||
d="M 40.5,11.5 L 40.5,15.5"
|
||||
style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4470);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3247"
|
||||
d="M 41.5,7.5 L 41.5,14.5"
|
||||
style="opacity:0.51724135;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4472);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3249"
|
||||
d="M 43.5,11.5 L 43.5,14.5"
|
||||
style="opacity:0.57088126;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4474);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3251"
|
||||
d="M 45.5,11.5 L 45.5,14.5"
|
||||
style="opacity:0.57088126;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4476);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-7.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3277"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-5.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3279"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.1851846,0,0,1.0666671,-3.666644,-0.9666736)"
|
||||
d="M 41.90625 14.5 A 0.421875 0.46875 0 1 1 41.0625,14.5 A 0.421875 0.46875 0 1 1 41.90625 14.5 z"
|
||||
sodipodi:ry="0.46875"
|
||||
sodipodi:rx="0.421875"
|
||||
sodipodi:cy="14.5"
|
||||
sodipodi:cx="41.484375"
|
||||
id="path3281"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.64130435;fill:#346599;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 9 2 L 9 8 L 10 8 L 10 3 L 15 3 L 15 2 L 10 2 L 9 2 z "
|
||||
id="rect5880" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.7 KiB |
@ -1,791 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/gnome/gnome-icon-theme-extras/temp/stock-icons/24"
|
||||
sodipodi:docname="gtk-undelete-ltr.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5141">
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5144" />
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5146" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5152">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5154" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5574">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5576" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5578" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5556">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5558" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5560" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5546">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5548" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5550" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5538">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5540" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5542" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5400">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5402" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5404" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5336">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5338" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5340" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5326">
|
||||
<stop
|
||||
style="stop-color:#cdcdcb;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5328" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5330" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5172">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5174" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5176" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5154">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5156" />
|
||||
<stop
|
||||
id="stop5162"
|
||||
offset="0.21723643"
|
||||
style="stop-color:#afb1ad;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#b4b6b2;stop-opacity:1;"
|
||||
offset="0.40441176"
|
||||
id="stop5166" />
|
||||
<stop
|
||||
style="stop-color:#5b5d59;stop-opacity:1;"
|
||||
offset="0.82321244"
|
||||
id="stop5164" />
|
||||
<stop
|
||||
style="stop-color:#90938e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5158" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5160"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2,-0.999999)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5170"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5178"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.23828454"
|
||||
width="1.4765691"
|
||||
y="-0.35331845"
|
||||
height="1.7066369"
|
||||
id="filter5310">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0673162"
|
||||
id="feGaussianBlur5312" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5322"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5324"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient5332"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient5342"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-3.4164216,6.4777168)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.063667532"
|
||||
width="1.1273351"
|
||||
y="-0.19969276"
|
||||
height="1.3993855"
|
||||
id="filter5372">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.4227922"
|
||||
id="feGaussianBlur5374" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5436"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,14.705882,-2.5)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5438"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(5.875,-0.3125)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.875"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5440"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.125,-0.625)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5500"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientTransform="matrix(1,0,0,0.958423,2,-0.4387105)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5502"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(3,0)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5504"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,12.705882,-1)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5506"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,1.705882,-2)"
|
||||
x1="4.875"
|
||||
y1="16.8125"
|
||||
x2="9.1250019"
|
||||
y2="16.8125" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.090962794"
|
||||
width="1.1819256"
|
||||
y="-0.22480805"
|
||||
height="1.4496161"
|
||||
id="filter5532">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.81961268"
|
||||
id="feGaussianBlur5534" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient5544"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458"
|
||||
gradientTransform="matrix(1,0,0,0.4235933,2,1.9496042)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient5552"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.550001"
|
||||
gradientTransform="matrix(1.5583793,0,0,0.4157955,-2.793319,2.5688701)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient5562"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.4999999"
|
||||
gradientTransform="matrix(2.3363698,0,0,1.9889752,-13.368253,-24.711801)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient5580"
|
||||
x1="11.999999"
|
||||
y1="12.561424"
|
||||
x2="12.124999"
|
||||
y2="5.5611424"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8947368,0,0,0.7500001,3.2105262,1.750807)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5141"
|
||||
id="linearGradient4912"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-23.990801,-1.8903499)"
|
||||
x1="14.25"
|
||||
y1="9.5451832"
|
||||
x2="13.841639"
|
||||
y2="14.428842" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5152"
|
||||
id="linearGradient4914"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-23.990801,-1.8903499)"
|
||||
x1="13.222274"
|
||||
y1="5.2118101"
|
||||
x2="13.7651"
|
||||
y2="25.479185" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient4647"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2,-0.999999)"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient4649"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-3.4164216,6.4777168)"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient4651"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.3363698,0,0,1.9889752,-13.368253,-24.711801)"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.4999999" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4653"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.125,-0.625)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4655"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(3,0)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4657"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(5.875,-0.3125)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.875"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4659"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,12.705882,-1)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4661"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,14.705882,-2.5)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4663"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,1.705882,-2)"
|
||||
x1="4.875"
|
||||
y1="16.8125"
|
||||
x2="9.1250019"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient4665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.958423,2,-0.4387105)"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient4667"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient4669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5583793,0,0,0.4157955,-2.793319,2.5688701)"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.550001" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient4671"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient4673"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient4675"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.4235933,2,1.9496042)"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient4677"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8947368,0,0,0.7500001,3.2105262,1.750807)"
|
||||
x1="11.999999"
|
||||
y1="12.561424"
|
||||
x2="12.124999"
|
||||
y2="5.5611424" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#e0e0e0"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="29.975554"
|
||||
inkscape:cy="5.3828085"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="895"
|
||||
inkscape:window-height="891"
|
||||
inkscape:window-x="667"
|
||||
inkscape:window-y="210" />
|
||||
<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>Undelete</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g4625"
|
||||
transform="translate(1,0)">
|
||||
<path
|
||||
transform="matrix(0.8959537,0,0,0.9479769,3.2030345,-0.6994219)"
|
||||
d="M 22.375,20.625 A 10.8125,4.375 0 1 1 0.75,20.625 A 10.8125,4.375 0 1 1 22.375,20.625 z"
|
||||
sodipodi:ry="4.375"
|
||||
sodipodi:rx="10.8125"
|
||||
sodipodi:cy="20.625"
|
||||
sodipodi:cx="11.5625"
|
||||
id="path5442"
|
||||
style="opacity:0.49425288;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5532);enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path5141"
|
||||
d="M 5.5000001,9.027729 L 5.5000001,18.608011 C 5.5000001,20.746708 9.0839999,22.499999 13.5,22.5 C 17.916,22.5 21.500001,20.746708 21.5,18.608011 L 21.5,9.027729 L 5.5000001,9.027729 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4647);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5334"
|
||||
d="M 5.8125,8.500001 C 11.637085,10.762149 16.714911,10.250624 21.375,8.187501 L 21.4375,12.500001 C 16.512251,17.004915 9.5977319,15.102639 5.5,12.437501 L 5.8125,8.500001 z"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#radialGradient4649);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5372);enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.33908045;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient4651);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 6.4411764,9.6952152 L 6.4411764,18.148405 C 6.4411764,20.03549 9.6035291,21.582512 13.5,21.582513 C 17.39647,21.582513 20.558824,20.03549 20.558823,18.148405 L 20.558823,9.6952152 L 6.4411764,9.6952152 z"
|
||||
id="path5554" />
|
||||
<g
|
||||
transform="translate(2,-0.999999)"
|
||||
id="g5428">
|
||||
<rect
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4653);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5398"
|
||||
width="2.125"
|
||||
height="10.375"
|
||||
x="6.875"
|
||||
y="11"
|
||||
rx="1.0625"
|
||||
ry="1.0625" />
|
||||
<rect
|
||||
ry="1.0625"
|
||||
rx="1.0625"
|
||||
y="11.625"
|
||||
x="10"
|
||||
height="10.375"
|
||||
width="2.125"
|
||||
id="rect5408"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4655);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
ry="1.0625"
|
||||
rx="1.0625"
|
||||
y="11.3125"
|
||||
x="12.875"
|
||||
height="10.375"
|
||||
width="2.125"
|
||||
id="rect5412"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4657);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4659);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5416"
|
||||
width="1"
|
||||
height="10.375"
|
||||
x="16"
|
||||
y="10.625"
|
||||
rx="0.5"
|
||||
ry="0.5" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="9.125"
|
||||
x="18"
|
||||
height="10.375"
|
||||
width="1"
|
||||
id="rect5420"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4661);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="9.625"
|
||||
x="5"
|
||||
height="10.375"
|
||||
width="1"
|
||||
id="rect5424"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4663);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccc"
|
||||
id="path4552"
|
||||
d="M 13.5,0.99892397 C 8.5319993,0.99892397 4.4999989,2.9243254 4.4999989,5.2966949 C 4.4999989,5.2966949 4.4999989,8.20223 4.4999989,8.20223 C 4.4999989,10.574599 8.531999,12.499999 13.5,12.5 C 18.468001,12.500001 22.5,10.574599 22.5,8.20223 C 22.5,8.20223 22.5,5.2966949 22.5,5.2966949 C 22.5,2.9243254 18.468001,0.99892397 13.5,0.99892397 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4665);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4667);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="path4556"
|
||||
sodipodi:cx="32.125"
|
||||
sodipodi:cy="3.8125"
|
||||
sodipodi:rx="9.125"
|
||||
sodipodi:ry="4.4375"
|
||||
d="M 41.25,3.8125 A 9.125,4.4375 0 1 1 23,3.8125 A 9.125,4.4375 0 1 1 41.25,3.8125 z"
|
||||
transform="matrix(0.9369864,0,0,0.8551509,-16.600688,1.945005)" />
|
||||
<path
|
||||
id="path5136"
|
||||
d="M 4.984373,4.5625 C 4.9390177,4.7311083 4.899998,4.9193441 4.899998,5.09375 C 4.899998,7.3261452 8.7303982,9.125 13.449999,9.125 C 18.169599,9.125 22.000001,7.3261452 22,5.09375 C 22,4.9193441 21.96098,4.7311083 21.915625,4.5625 C 21.360585,6.5417518 17.785335,8.0625 13.449999,8.0625 C 9.114663,8.0625 5.5394135,6.5417518 4.984373,4.5625 z"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4669);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<g
|
||||
transform="matrix(0.9929572,0.1184735,-0.1184735,0.9929572,2.3460344,-0.4632752)"
|
||||
id="g5317">
|
||||
<path
|
||||
transform="translate(-24.25,0)"
|
||||
style="color:#000000;fill:url(#linearGradient4671);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4673);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 41.375,3.25 C 41.375,5.251 38.092,5.25 36,3.75 C 33.033,3.75 30.625,4.382917 30.625,3.25 C 30.625,1.249 33.033,-0.375 36,-0.375 C 38.967,-0.375 41.375,1.249 41.375,3.25 z"
|
||||
id="path5168"
|
||||
sodipodi:nodetypes="ccssc" />
|
||||
<path
|
||||
transform="matrix(0.6712474,0,0,0.3793103,-13.102405,2.1422414)"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
sodipodi:ry="3.625"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:cx="36"
|
||||
id="path5180"
|
||||
style="opacity:1;color:#000000;fill:#1c1d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.31609198;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
id="path5315"
|
||||
sodipodi:cx="36"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:ry="3.625"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
transform="matrix(0.5549683,0,0,0.2578679,-8.5413583,0.2869291)" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path5536"
|
||||
d="M 9.159456,4.2010101 C 10.927223,2.5216315 13.932427,2.0796897 16.760854,4.9965052 C 13.844038,-0.74873742 8.7828,2.6046706 9.159456,4.2010101 z"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4675);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.20689655;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4677);stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 13.499999,2.5 C 9.0549464,2.5 5.4473672,4.0066951 5.4473672,5.8631587 C 5.4473672,5.8631587 5.4473672,8.1368433 5.4473672,8.1368433 C 5.4473672,9.9933062 9.0549461,11.500001 13.499999,11.500001 C 17.945053,11.500001 21.552631,9.9933062 21.552631,8.1368433 C 21.552631,8.1368433 21.552631,5.8631587 21.552631,5.8631587 C 21.552631,4.0066951 17.945053,2.5 13.499999,2.5 z"
|
||||
id="path5564"
|
||||
sodipodi:nodetypes="cccsccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4907"
|
||||
transform="translate(20.15811,8.009831)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
id="path4560"
|
||||
d="M -12.411927,1.25 L -19.375,7.5880727 L -12.471286,13.866786 L -12.57798,10.530776 C -8.505645,10.335315 -6.642221,11.327626 -9.545048,15.487568 L -8.072777,15.490169 C -2.571902,9.950861 -2.957867,4.5653096 -12.463704,4.5569805 L -12.411927,1.25 z"
|
||||
style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#927600;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5139"
|
||||
d="M -18.615801,7.6721501 L -12.990801,12.60965 C -12.805842,13.115238 -13.074135,10.901317 -13.115801,10.04715 C -7.540384,9.5610101 -6.974303,11.781487 -8.678301,15.10965 C -1.22172,6.3878591 -14.086827,7.7241527 -18.615801,7.6721501 z"
|
||||
style="opacity:0.1896552;color:#000000;fill:url(#linearGradient4912);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.58045977;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4914);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M -13.602441,3.8214603 L -18.018527,7.6125465 L -13.499193,11.274745 L -13.500713,9.4834541 C -9.645692,9.2151721 -5.167146,10.20626 -8.259139,14.733257 L -8.234728,14.73121 C -4.56835,10.17678 -3.285718,4.9692675 -13.523673,5.5868303 L -13.602441,3.8214603 z"
|
||||
id="path5150"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 1.7 KiB |
@ -1,791 +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://web.resource.org/cc/"
|
||||
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"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/gnome/gnome-icon-theme-extras/temp/stock-icons/24"
|
||||
sodipodi:docname="gtk-undelete-rtl.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5141">
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5144" />
|
||||
<stop
|
||||
style="stop-color:#181500;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5146" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5152">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5154" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5574">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5576" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5578" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5556">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5558" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5560" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5546">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5548" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5550" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5538">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5540" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5542" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5400">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5402" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5404" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5336">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5338" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5340" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5326">
|
||||
<stop
|
||||
style="stop-color:#cdcdcb;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5328" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5330" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5172">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5174" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5176" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5154">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5156" />
|
||||
<stop
|
||||
id="stop5162"
|
||||
offset="0.21723643"
|
||||
style="stop-color:#afb1ad;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#b4b6b2;stop-opacity:1;"
|
||||
offset="0.40441176"
|
||||
id="stop5166" />
|
||||
<stop
|
||||
style="stop-color:#5b5d59;stop-opacity:1;"
|
||||
offset="0.82321244"
|
||||
id="stop5164" />
|
||||
<stop
|
||||
style="stop-color:#90938e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5158" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5160"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2,-0.999999)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5170"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5178"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.23828454"
|
||||
width="1.4765691"
|
||||
y="-0.35331845"
|
||||
height="1.7066369"
|
||||
id="filter5310">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0673162"
|
||||
id="feGaussianBlur5312" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5322"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient5324"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient5332"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient5342"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-3.4164216,6.4777168)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.063667532"
|
||||
width="1.1273351"
|
||||
y="-0.19969276"
|
||||
height="1.3993855"
|
||||
id="filter5372">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.4227922"
|
||||
id="feGaussianBlur5374" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5436"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,14.705882,-2.5)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5438"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(5.875,-0.3125)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.875"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5440"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.125,-0.625)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient5500"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863"
|
||||
gradientTransform="matrix(1,0,0,0.958423,2,-0.4387105)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5502"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(3,0)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5504"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,12.705882,-1)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient5506"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,1.705882,-2)"
|
||||
x1="4.875"
|
||||
y1="16.8125"
|
||||
x2="9.1250019"
|
||||
y2="16.8125" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
x="-0.090962794"
|
||||
width="1.1819256"
|
||||
y="-0.22480805"
|
||||
height="1.4496161"
|
||||
id="filter5532">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.81961268"
|
||||
id="feGaussianBlur5534" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient5544"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458"
|
||||
gradientTransform="matrix(1,0,0,0.4235933,2,1.9496042)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient5552"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.550001"
|
||||
gradientTransform="matrix(1.5583793,0,0,0.4157955,-2.793319,2.5688701)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient5562"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.4999999"
|
||||
gradientTransform="matrix(2.3363698,0,0,1.9889752,-13.368253,-24.711801)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient5580"
|
||||
x1="11.999999"
|
||||
y1="12.561424"
|
||||
x2="12.124999"
|
||||
y2="5.5611424"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8947368,0,0,0.7500001,3.2105262,1.750807)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5141"
|
||||
id="linearGradient4912"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-23.990801,-1.8903499)"
|
||||
x1="14.25"
|
||||
y1="9.5451832"
|
||||
x2="13.841639"
|
||||
y2="14.428842" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5152"
|
||||
id="linearGradient4914"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-23.990801,-1.8903499)"
|
||||
x1="13.222274"
|
||||
y1="5.2118101"
|
||||
x2="13.7651"
|
||||
y2="25.479185" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient4647"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2,-0.999999)"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5336"
|
||||
id="radialGradient4649"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3843137,0,0,0.4413571,-3.4164216,6.4777168)"
|
||||
cx="14.09375"
|
||||
cy="16.569212"
|
||||
fx="14.09375"
|
||||
fy="16.569212"
|
||||
r="7.96875" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5556"
|
||||
id="radialGradient4651"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.3363698,0,0,1.9889752,-13.368253,-24.711801)"
|
||||
cx="11.5"
|
||||
cy="23.032074"
|
||||
fx="11.5"
|
||||
fy="23.032074"
|
||||
r="8.4999999" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4653"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.125,-0.625)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4655"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(3,0)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.125"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4657"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(5.875,-0.3125)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="9.875"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4659"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,12.705882,-1)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4661"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,14.705882,-2.5)"
|
||||
x1="7"
|
||||
y1="16.8125"
|
||||
x2="11.335938"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5400"
|
||||
id="linearGradient4663"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4705882,0,0,1,1.705882,-2)"
|
||||
x1="4.875"
|
||||
y1="16.8125"
|
||||
x2="9.1250019"
|
||||
y2="16.8125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient4665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.958423,2,-0.4387105)"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5326"
|
||||
id="radialGradient4667"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.4863014,0,1.958476)"
|
||||
cx="30.144016"
|
||||
cy="6.4051223"
|
||||
fx="30.144016"
|
||||
fy="6.4051223"
|
||||
r="9.125" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5546"
|
||||
id="radialGradient4669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5583793,0,0,0.4157955,-2.793319,2.5688701)"
|
||||
cx="9.2888498"
|
||||
cy="15.767679"
|
||||
fx="9.2888498"
|
||||
fy="15.767679"
|
||||
r="8.550001" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5154"
|
||||
id="linearGradient4671"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.0000001"
|
||||
y1="16.763863"
|
||||
x2="20"
|
||||
y2="16.763863" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5172"
|
||||
id="linearGradient4673"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="36"
|
||||
y1="2.25"
|
||||
x2="36"
|
||||
y2="3.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5538"
|
||||
id="radialGradient4675"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.4235933,2,1.9496042)"
|
||||
cx="10.243101"
|
||||
cy="0.87838233"
|
||||
fx="10.243101"
|
||||
fy="0.87838233"
|
||||
r="3.8106458" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5574"
|
||||
id="linearGradient4677"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8947368,0,0,0.7500001,3.2105262,1.750807)"
|
||||
x1="11.999999"
|
||||
y1="12.561424"
|
||||
x2="12.124999"
|
||||
y2="5.5611424" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#e0e0e0"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="32.621996"
|
||||
inkscape:cy="4.9075944"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="24px"
|
||||
height="24px"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="895"
|
||||
inkscape:window-height="891"
|
||||
inkscape:window-x="667"
|
||||
inkscape:window-y="210" />
|
||||
<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>Undelete</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g4625"
|
||||
transform="translate(-3.875,0)">
|
||||
<path
|
||||
transform="matrix(0.8959537,0,0,0.9479769,3.2030345,-0.6994219)"
|
||||
d="M 22.375,20.625 A 10.8125,4.375 0 1 1 0.75,20.625 A 10.8125,4.375 0 1 1 22.375,20.625 z"
|
||||
sodipodi:ry="4.375"
|
||||
sodipodi:rx="10.8125"
|
||||
sodipodi:cy="20.625"
|
||||
sodipodi:cx="11.5625"
|
||||
id="path5442"
|
||||
style="opacity:0.49425288;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5532);enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path5141"
|
||||
d="M 5.5000001,9.027729 L 5.5000001,18.608011 C 5.5000001,20.746708 9.0839999,22.499999 13.5,22.5 C 17.916,22.5 21.500001,20.746708 21.5,18.608011 L 21.5,9.027729 L 5.5000001,9.027729 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4647);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5334"
|
||||
d="M 5.8125,8.500001 C 11.637085,10.762149 16.714911,10.250624 21.375,8.187501 L 21.4375,12.500001 C 16.512251,17.004915 9.5977319,15.102639 5.5,12.437501 L 5.8125,8.500001 z"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#radialGradient4649);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5372);enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.33908045;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient4651);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 6.4411764,9.6952152 L 6.4411764,18.148405 C 6.4411764,20.03549 9.6035291,21.582512 13.5,21.582513 C 17.39647,21.582513 20.558824,20.03549 20.558823,18.148405 L 20.558823,9.6952152 L 6.4411764,9.6952152 z"
|
||||
id="path5554" />
|
||||
<g
|
||||
transform="translate(2,-0.999999)"
|
||||
id="g5428">
|
||||
<rect
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4653);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5398"
|
||||
width="2.125"
|
||||
height="10.375"
|
||||
x="6.875"
|
||||
y="11"
|
||||
rx="1.0625"
|
||||
ry="1.0625" />
|
||||
<rect
|
||||
ry="1.0625"
|
||||
rx="1.0625"
|
||||
y="11.625"
|
||||
x="10"
|
||||
height="10.375"
|
||||
width="2.125"
|
||||
id="rect5408"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4655);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
ry="1.0625"
|
||||
rx="1.0625"
|
||||
y="11.3125"
|
||||
x="12.875"
|
||||
height="10.375"
|
||||
width="2.125"
|
||||
id="rect5412"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4657);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4659);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect5416"
|
||||
width="1"
|
||||
height="10.375"
|
||||
x="16"
|
||||
y="10.625"
|
||||
rx="0.5"
|
||||
ry="0.5" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="9.125"
|
||||
x="18"
|
||||
height="10.375"
|
||||
width="1"
|
||||
id="rect5420"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4661);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="9.625"
|
||||
x="5"
|
||||
height="10.375"
|
||||
width="1"
|
||||
id="rect5424"
|
||||
style="opacity:0.3218391;color:#000000;fill:url(#linearGradient4663);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccsccc"
|
||||
id="path4552"
|
||||
d="M 13.5,0.99892397 C 8.5319993,0.99892397 4.4999989,2.9243254 4.4999989,5.2966949 C 4.4999989,5.2966949 4.4999989,8.20223 4.4999989,8.20223 C 4.4999989,10.574599 8.531999,12.499999 13.5,12.5 C 18.468001,12.500001 22.5,10.574599 22.5,8.20223 C 22.5,8.20223 22.5,5.2966949 22.5,5.2966949 C 22.5,2.9243254 18.468001,0.99892397 13.5,0.99892397 z"
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4665);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4667);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="path4556"
|
||||
sodipodi:cx="32.125"
|
||||
sodipodi:cy="3.8125"
|
||||
sodipodi:rx="9.125"
|
||||
sodipodi:ry="4.4375"
|
||||
d="M 41.25,3.8125 A 9.125,4.4375 0 1 1 23,3.8125 A 9.125,4.4375 0 1 1 41.25,3.8125 z"
|
||||
transform="matrix(0.9369864,0,0,0.8551509,-16.600688,1.945005)" />
|
||||
<path
|
||||
id="path5136"
|
||||
d="M 4.984373,4.5625 C 4.9390177,4.7311083 4.899998,4.9193441 4.899998,5.09375 C 4.899998,7.3261452 8.7303982,9.125 13.449999,9.125 C 18.169599,9.125 22.000001,7.3261452 22,5.09375 C 22,4.9193441 21.96098,4.7311083 21.915625,4.5625 C 21.360585,6.5417518 17.785335,8.0625 13.449999,8.0625 C 9.114663,8.0625 5.5394135,6.5417518 4.984373,4.5625 z"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4669);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<g
|
||||
transform="matrix(0.9929572,0.1184735,-0.1184735,0.9929572,2.3460344,-0.4632752)"
|
||||
id="g5317">
|
||||
<path
|
||||
transform="translate(-24.25,0)"
|
||||
style="color:#000000;fill:url(#linearGradient4671);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4673);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 41.375,3.25 C 41.375,5.251 38.092,5.25 36,3.75 C 33.033,3.75 30.625,4.382917 30.625,3.25 C 30.625,1.249 33.033,-0.375 36,-0.375 C 38.967,-0.375 41.375,1.249 41.375,3.25 z"
|
||||
id="path5168"
|
||||
sodipodi:nodetypes="ccssc" />
|
||||
<path
|
||||
transform="matrix(0.6712474,0,0,0.3793103,-13.102405,2.1422414)"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
sodipodi:ry="3.625"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:cx="36"
|
||||
id="path5180"
|
||||
style="opacity:1;color:#000000;fill:#1c1d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.31609198;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.55515075;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5310);enable-background:accumulate"
|
||||
id="path5315"
|
||||
sodipodi:cx="36"
|
||||
sodipodi:cy="3.25"
|
||||
sodipodi:rx="5.375"
|
||||
sodipodi:ry="3.625"
|
||||
d="M 41.375,3.25 A 5.375,3.625 0 1 1 30.625,3.25 A 5.375,3.625 0 1 1 41.375,3.25 z"
|
||||
transform="matrix(0.5549683,0,0,0.2578679,-8.5413583,0.2869291)" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path5536"
|
||||
d="M 9.159456,4.2010101 C 10.927223,2.5216315 13.932427,2.0796897 16.760854,4.9965052 C 13.844038,-0.74873742 8.7828,2.6046706 9.159456,4.2010101 z"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4675);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.20689655;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4677);stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 13.499999,2.5 C 9.0549464,2.5 5.4473672,4.0066951 5.4473672,5.8631587 C 5.4473672,5.8631587 5.4473672,8.1368433 5.4473672,8.1368433 C 5.4473672,9.9933062 9.0549461,11.500001 13.499999,11.500001 C 17.945053,11.500001 21.552631,9.9933062 21.552631,8.1368433 C 21.552631,8.1368433 21.552631,5.8631587 21.552631,5.8631587 C 21.552631,4.0066951 17.945053,2.5 13.499999,2.5 z"
|
||||
id="path5564"
|
||||
sodipodi:nodetypes="cccsccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4907"
|
||||
transform="matrix(-1,0,0,1,4.036612,8.009831)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
id="path4560"
|
||||
d="M -12.411927,1.25 L -19.375,7.5880727 L -12.471286,13.866786 L -12.57798,10.530776 C -8.505645,10.335315 -6.642221,11.327626 -9.545048,15.487568 L -8.072777,15.490169 C -2.571902,9.950861 -2.957867,4.5653096 -12.463704,4.5569805 L -12.411927,1.25 z"
|
||||
style="enable-background:accumulate;overflow:visible;display:inline;visibility:visible;stroke-opacity:1;stroke-dashoffset:0;stroke-dasharray:none;stroke-miterlimit:10;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:miter;stroke-linecap:round;stroke-width:0.99999994000000003;stroke:#927600;fill-rule:evenodd;fill-opacity:1;fill:#edd400;color:#000000;opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5139"
|
||||
d="M -18.615801,7.6721501 L -12.990801,12.60965 C -12.805842,13.115238 -13.074135,10.901317 -13.115801,10.04715 C -7.540384,9.5610101 -6.974303,11.781487 -8.678301,15.10965 C -1.22172,6.3878591 -14.086827,7.7241527 -18.615801,7.6721501 z"
|
||||
style="opacity:0.1896552;color:#000000;fill:url(#linearGradient4912);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="opacity:0.58045977;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4914);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M -13.602441,3.8214603 L -18.018527,7.6125465 L -13.499193,11.274745 L -13.500713,9.4834541 C -9.645692,9.2151721 -5.167146,10.20626 -8.259139,14.733257 L -8.234728,14.73121 C -4.56835,10.17678 -3.285718,4.9692675 -13.523673,5.5868303 L -13.602441,3.8214603 z"
|
||||
id="path5150"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 1.2 KiB |
@ -1,559 +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://web.resource.org/cc/"
|
||||
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="32"
|
||||
height="32"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/Users/sekkyumu"
|
||||
sodipodi:docname="gtk-dnd-multiple.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/Users/sekkyumu/gtk-dnd.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4952">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4954" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4956" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#5d5f5b;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4952"
|
||||
id="linearGradient4958"
|
||||
x1="22.418665"
|
||||
y1="10.068886"
|
||||
x2="22.418665"
|
||||
y2="4.0265594"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient4988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.9323507,0,0,1.8671706,-11.372788,-1.705568)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4342503,0,0,1.3979761,-1.7198831,0.4021562)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient4993"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3725468,0,0,1.4841922,0.4170448,-0.8787716)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient4997"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5875676,0,0,1.5494763,-3.0460149,-1.824216)"
|
||||
x1="9.7099533"
|
||||
y1="14.716651"
|
||||
x2="24.285765"
|
||||
y2="-5.9535513" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient5144"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5875676,0,0,1.5494763,-3.0460149,-1.824216)"
|
||||
x1="9.7099533"
|
||||
y1="14.716651"
|
||||
x2="24.285765"
|
||||
y2="-5.9535513" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient5146"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3725468,0,0,1.4841922,0.4170448,-0.8787716)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient5148"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.9323507,0,0,1.8671706,-11.372788,-1.705568)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient5150"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4342503,0,0,1.3979761,-1.7198831,0.4021562)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4952"
|
||||
id="linearGradient5152"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="22.418665"
|
||||
y1="10.068886"
|
||||
x2="22.418665"
|
||||
y2="4.0265594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient5186"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2163875,0,0,1.178548,-6.2288437,9.5474344)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient5188"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9028403,0,0,0.882395,-0.1524762,10.877819)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient5191"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8639989,0,0,0.9368141,1.19269,10.069304)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient5195"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9993514,0,0,0.9499999,-0.9872574,10.074999)"
|
||||
x1="7.0375376"
|
||||
y1="20.421053"
|
||||
x2="14.820959"
|
||||
y2="5.3411636" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient4618"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9999673,0,0,1,5.0001142,2.9999988)"
|
||||
x1="7.0375376"
|
||||
y1="20.421053"
|
||||
x2="14.820959"
|
||||
y2="5.3411636" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient4620"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8639989,0,0,0.9368141,6.94269,3.8797268)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient4622"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2163875,0,0,1.178548,-0.5401047,3.4223764)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4624"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9028403,0,0,0.882395,5.5362628,4.752761)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient4684"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8639989,0,0,0.9368141,1.19269,10.069304)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient4686"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2163875,0,0,1.178548,-6.2288437,9.5474344)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4688"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9028403,0,0,0.882395,-0.1524762,10.877819)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient4690"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9999673,0,0,1,5.0001142,2.9999988)"
|
||||
x1="7.0375376"
|
||||
y1="20.421053"
|
||||
x2="14.820959"
|
||||
y2="5.3411636" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient4692"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8639989,0,0,0.9368141,6.94269,3.8797268)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient4694"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2163875,0,0,1.178548,-0.5401047,3.4223764)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4696"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9028403,0,0,0.882395,5.5362628,4.752761)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient4702"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9993514,0,0,0.9499999,-0.9872574,10.074999)"
|
||||
x1="7.0375376"
|
||||
y1="20.421053"
|
||||
x2="14.820959"
|
||||
y2="5.3411636" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient4710"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9993514,0,0,0.9499999,-0.9872574,10.074999)"
|
||||
x1="7.0375376"
|
||||
y1="20.421053"
|
||||
x2="14.820959"
|
||||
y2="5.3411636" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#f3f3f3"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="34.469414"
|
||||
inkscape:cy="-6.6542614"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="32px"
|
||||
height="32px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="765"
|
||||
inkscape:window-x="483"
|
||||
inkscape:window-y="200"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk file</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g4704"
|
||||
transform="translate(2,0)">
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient4710);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 3.751042,11.5 L 14.39968,11.5 L 19.122837,16.101293 C 19.374973,16.41174 19.50978,16.722186 19.499447,17.032632 L 19.499447,29.253248 C 19.499447,30.113779 19.164113,30.499999 18.258879,30.499999 L 3.751042,30.499999 C 2.845807,30.499999 2.510472,30.113779 2.510472,29.253248 L 2.510472,12.746749 C 2.510472,11.886219 2.845807,11.5 3.751042,11.5 z"
|
||||
id="path4706"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path4708"
|
||||
d="M 4.01459,12.5 L 13.99553,12.518272 C 13.99553,12.518272 18.490772,16.691495 18.490772,17.240027 L 18.477601,28.827806 C 18.477601,29.24757 18.330684,29.473283 17.852244,29.473283 L 4.0752326,29.473283 C 3.7821625,29.473283 3.4764231,28.934252 3.4764231,28.621057 L 3.4764231,13.077575 C 3.4764231,12.711778 3.6421328,12.5 4.01459,12.5 z"
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="g4698"
|
||||
transform="translate(6,-4)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="rect4899"
|
||||
d="M 3.751042,11.5 L 14.39968,11.5 L 19.122837,16.101293 C 19.374973,16.41174 19.50978,16.722186 19.499447,17.032632 L 19.499447,29.253248 C 19.499447,30.113779 19.164113,30.499999 18.258879,30.499999 L 3.751042,30.499999 C 2.845807,30.499999 2.510472,30.113779 2.510472,29.253248 L 2.510472,12.746749 C 2.510472,11.886219 2.845807,11.5 3.751042,11.5 z"
|
||||
style="color:#000000;fill:url(#linearGradient4702);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 4.01459,12.5 L 13.99553,12.518272 C 13.99553,12.518272 18.490772,16.691495 18.490772,17.240027 L 18.477601,28.827806 C 18.477601,29.24757 18.330684,29.473283 17.852244,29.473283 L 4.0752326,29.473283 C 3.7821625,29.473283 3.4764231,28.934252 3.4764231,28.621057 L 3.4764231,13.077575 C 3.4764231,12.711778 3.6421328,12.5 4.01459,12.5 z"
|
||||
id="path6084"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4662"
|
||||
transform="translate(4,-2)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4684);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 14.152675,12.514259 L 18.543166,16.643532 L 18.559068,17.563815 L 14.184602,17.563815 L 14.152675,12.514259 z"
|
||||
id="path6104"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path6074"
|
||||
d="M 18.811261,16.613386 L 13.874595,16.613386 L 13.841551,11.625058"
|
||||
style="fill:url(#linearGradient4686);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4688);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient4690);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 9.7413341,4.4999998 L 20.396536,4.4999998 L 25.122604,9.3434666 C 25.374895,9.670253 25.509785,9.9970384 25.499446,10.323824 L 25.499446,23.18763 C 25.499446,24.093452 25.163906,24.5 24.258113,24.5 L 9.7413341,24.5 C 8.8355412,24.5 8.4999995,24.093452 8.4999995,23.18763 L 8.4999995,5.812368 C 8.4999995,4.9065462 8.8355412,4.4999998 9.7413341,4.4999998 z"
|
||||
id="path4610"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path4612"
|
||||
d="M 10.037652,5.4999999 L 20.009054,5.5193798 C 20.009054,5.5193798 24.500001,9.9450405 24.500001,10.526752 L 24.486843,22.81548 C 24.486843,23.260634 24.340064,23.500001 23.862083,23.500001 L 10.098237,23.500001 C 9.8054474,23.500001 9.5000002,22.928365 9.5000002,22.596223 L 9.5000002,6.1125124 C 9.5000002,5.7245895 9.6655515,5.4999999 10.037652,5.4999999 z"
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4614"
|
||||
d="M 19.902675,6.324682 L 24.293166,10.453955 L 24.309068,11.374238 L 19.934602,11.374238 L 19.902675,6.324682 z"
|
||||
style="fill:url(#linearGradient4692);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4694);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4696);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 25.052427,10.488328 L 19.563334,10.488328 L 19.552387,4.7928932"
|
||||
id="path4616"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<g
|
||||
transform="translate(-2.0052356,0.973986)"
|
||||
id="g5209">
|
||||
<g
|
||||
id="g4892"
|
||||
transform="translate(-0.9947644,8.994764)">
|
||||
<rect
|
||||
ry="0.72657824"
|
||||
rx="0.72657824"
|
||||
y="3.53125"
|
||||
x="18.5"
|
||||
height="7.96875"
|
||||
width="7"
|
||||
id="rect4880"
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.5;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4890"
|
||||
width="4.9847431"
|
||||
height="5.96875"
|
||||
x="19.499632"
|
||||
y="4.515625"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 21.005236,14.994764 C 20.453236,14.994764 20.005235,15.440245 20.005236,15.994764 C 20.005236,16.346195 20.201673,16.627722 20.473986,16.807264 L 19.005236,18.994764 L 23.005236,18.994764 L 21.536486,16.807264 C 21.808799,16.627722 22.005235,16.346195 22.005236,15.994764 C 22.005236,15.440245 21.557235,14.994764 21.005236,14.994764 z"
|
||||
id="path4960"
|
||||
inkscape:export-filename="/Users/sekkyumu/gtk-dnd.png"
|
||||
inkscape:export-xdpi="90.029465"
|
||||
inkscape:export-ydpi="90.029465" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:none;stroke:#babdb6;stroke-width:2.03123236;stroke-linecap:round;stroke-opacity:1"
|
||||
transform="matrix(-0.2423711,0,0,-1,15.189877,25.011224)"
|
||||
id="g5063">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:2.03123236px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.9722718,4.5112238 L 14.950602,4.5112238"
|
||||
id="path5065" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:2.03123236px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.0078062,6.5 L 14.96875,6.5"
|
||||
id="path5069" />
|
||||
</g>
|
||||
<g
|
||||
id="g4644"
|
||||
transform="matrix(-0.2423711,0,0,-1,15.189877,21.011224)"
|
||||
style="fill:none;stroke:#babdb6;stroke-width:2.03123236;stroke-linecap:round;stroke-opacity:1">
|
||||
<path
|
||||
id="path4646"
|
||||
d="M 6.9722718,4.5112238 L 14.950602,4.5112238"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:2.03123236px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path4648"
|
||||
d="M 7.0078062,6.5 L 14.96875,6.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:2.03123236px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<path
|
||||
id="path4652"
|
||||
d="M 13.5,12.5 L 11.566283,12.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.645333,10.5 L 11.354666,10.5"
|
||||
id="path5051" />
|
||||
<path
|
||||
id="path4658"
|
||||
d="M 17.645333,8.5 L 11.354666,8.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 1.3 KiB |
@ -1,407 +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://web.resource.org/cc/"
|
||||
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="32"
|
||||
height="32"
|
||||
id="svg2"
|
||||
inkscape:label="Pozadí"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/Users/sekkyumu"
|
||||
sodipodi:docname="gtk-dnd.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/Users/sekkyumu/gtk-dnd.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4952">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4954" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4956" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4918" />
|
||||
<stop
|
||||
style="stop-color:#5d5f5b;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6108">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6110" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6112" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6076">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6078" />
|
||||
<stop
|
||||
style="stop-color:#cbcbcb;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6080" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6056">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6058" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6060" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4952"
|
||||
id="linearGradient4958"
|
||||
x1="22.418665"
|
||||
y1="10.068886"
|
||||
x2="22.418665"
|
||||
y2="4.0265594"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient4988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.9323507,0,0,1.8671706,-11.372788,-1.705568)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient4990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4342503,0,0,1.3979761,-1.7198831,0.4021562)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient4993"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3725468,0,0,1.4841922,0.4170448,-0.8787716)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient4997"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5875676,0,0,1.5494763,-3.0460149,-1.824216)"
|
||||
x1="9.7099533"
|
||||
y1="14.716651"
|
||||
x2="24.285765"
|
||||
y2="-5.9535513" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient5144"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5875676,0,0,1.5494763,-3.0460149,-1.824216)"
|
||||
x1="9.7099533"
|
||||
y1="14.716651"
|
||||
x2="24.285765"
|
||||
y2="-5.9535513" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient5146"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3725468,0,0,1.4841922,0.4170448,-0.8787716)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient5148"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.9323507,0,0,1.8671706,-11.372788,-1.705568)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient5150"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4342503,0,0,1.3979761,-1.7198831,0.4021562)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4952"
|
||||
id="linearGradient5152"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="22.418665"
|
||||
y1="10.068886"
|
||||
x2="22.418665"
|
||||
y2="4.0265594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6076"
|
||||
id="linearGradient5186"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.9323507,0,0,1.8671706,-11.372788,-1.705568)"
|
||||
x1="17.68836"
|
||||
y1="4.5279388"
|
||||
x2="18.561535"
|
||||
y2="3.7493312" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4916"
|
||||
id="linearGradient5188"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4342503,0,0,1.3979761,-1.7198831,0.4021562)"
|
||||
x1="18.963779"
|
||||
y1="6.504528"
|
||||
x2="14.04664"
|
||||
y2="3.6734154" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6108"
|
||||
id="linearGradient5191"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3725468,0,0,1.4841922,0.4170448,-0.8787716)"
|
||||
x1="16.552481"
|
||||
y1="2.9626985"
|
||||
x2="16.552481"
|
||||
y2="7.8355665" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6056"
|
||||
id="linearGradient5195"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5875676,0,0,1.5494763,-3.0460149,-1.824216)"
|
||||
x1="7.0375376"
|
||||
y1="20.421053"
|
||||
x2="14.820959"
|
||||
y2="5.3411636" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#f3f3f3"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="23.500145"
|
||||
inkscape:cy="0.7733056"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="32px"
|
||||
height="32px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="765"
|
||||
inkscape:window-x="483"
|
||||
inkscape:window-y="200"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true" />
|
||||
<metadata
|
||||
id="metadata6">
|
||||
<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>gtk file</dc:title>
|
||||
<dc:date>29.3.2007</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Josef Vybíral</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/LGPL/2.1/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="enable-background:accumulate;overflow:visible;display:inline;visibility:visible;stroke-opacity:1;stroke-dashoffset:0;stroke-dasharray:none;stroke-miterlimit:4;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:1;stroke:#888a85;fill-rule:evenodd;fill-opacity:1;fill:url(#linearGradient5195);color:#000000"
|
||||
d="M 4.481237,0.5 L 21.397642,0.5 L 28.90084,8.0048383 C 29.301383,8.5111848 29.515536,9.0175313 29.499122,9.5238779 L 29.499122,29.456043 C 29.499122,30.859593 28.966411,31.489528 27.528357,31.489528 L 4.481237,31.489528 C 3.043183,31.489528 2.5104715,30.859593 2.5104715,29.456043 L 2.5104715,2.5334839 C 2.5104715,1.1299338 3.043183,0.5 4.481237,0.5 z"
|
||||
id="rect4899"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path6084"
|
||||
d="M 4.3696923,1.500848 L 20.984763,1.532098 C 20.984763,1.532098 28.467902,8.6685571 28.467902,9.6065778 L 28.445978,29.422376 C 28.445978,30.140198 28.201406,30.52618 27.404959,30.52618 L 4.4706438,30.52618 C 3.9827756,30.52618 3.473817,29.604405 3.473817,29.068822 L 3.473817,2.4885352 C 3.473817,1.8630021 3.7496703,1.500848 4.3696923,1.500848 z"
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6104"
|
||||
d="M 21.005249,2.994764 L 27.979974,9.5367611 L 28.005236,10.994764 L 21.055968,10.994764 L 21.005249,2.994764 z "
|
||||
style="fill:url(#linearGradient5191);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5186);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5188);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 28.40587,9.4890014 L 20.563493,9.4890011 L 20.510999,1.5860054"
|
||||
id="path6074"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<g
|
||||
id="g5209"
|
||||
transform="translate(-5.2356e-3,5.236e-3)">
|
||||
<g
|
||||
transform="translate(-0.9947644,8.994764)"
|
||||
id="g4892">
|
||||
<rect
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4880"
|
||||
width="7"
|
||||
height="7.96875"
|
||||
x="18.5"
|
||||
y="3.53125"
|
||||
rx="0.72657824"
|
||||
ry="0.72657824" />
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="4.515625"
|
||||
x="19.499632"
|
||||
height="5.96875"
|
||||
width="4.9847431"
|
||||
id="rect4890"
|
||||
style="opacity:0.5;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:export-ydpi="90.029465"
|
||||
inkscape:export-xdpi="90.029465"
|
||||
inkscape:export-filename="/Users/sekkyumu/gtk-dnd.png"
|
||||
id="path4960"
|
||||
d="M 21.005236,14.994764 C 20.453236,14.994764 20.005235,15.440245 20.005236,15.994764 C 20.005236,16.346195 20.201673,16.627722 20.473986,16.807264 L 19.005236,18.994764 L 23.005236,18.994764 L 21.536486,16.807264 C 21.808799,16.627722 22.005235,16.346195 22.005236,15.994764 C 22.005236,15.440245 21.557235,14.994764 21.005236,14.994764 z"
|
||||
style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ad7fa8;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.7320176,6.4999999 L 17.459902,6.4999999"
|
||||
id="path5036" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.4618429,8.5441942 L 17.538157,8.5441942"
|
||||
id="path5047" />
|
||||
<path
|
||||
id="path5051"
|
||||
d="M 15.42584,14.488776 L 6.5574085,14.488776"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path5055"
|
||||
d="M 15.5,12.500001 L 6.4813699,12.500001"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path5057"
|
||||
d="M 17.538673,10.5 L 6.5323951,10.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g5063"
|
||||
transform="matrix(-1.1177564,0,0,-1,23.26854,25.011224)"
|
||||
style="fill:none;stroke:#babdb6;stroke-width:0.94585901;stroke-linecap:round;stroke-opacity:1">
|
||||
<path
|
||||
id="path5065"
|
||||
d="M 6.9722718,4.5112238 L 14.950602,4.5112238"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.94585901px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path5069"
|
||||
d="M 7.0078062,6.5 L 14.96875,6.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.94585901px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:none;stroke:#babdb6;stroke-width:0.71183193;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="matrix(2.1964574,0,0,0.8985087,-8.814298,18.446626)"
|
||||
id="g5079">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.71183193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.9722718,5.6241791 L 15.19205,5.6241791"
|
||||
id="path5081" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.71183193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.9852229,7.8500898 L 15.169956,7.8500898"
|
||||
id="path5085" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.71183193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.9654739,10.076 L 15.179827,10.076"
|
||||
id="path5091" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 15.42584,16.544194 L 6.5574085,16.544194"
|
||||
id="path5223" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |