Keep desktoptheme SVG files uncompressed in repo, install svgz
Summary: The SVG format being based on plain text, storing the SVG in the repository not as .svgz, but .svg, helps both VCS tools (patching, showing diffs) as well as allows some developers to edit the SVG directly in any text editor, not only those which support automatic conversion from/to gzip format. While most artists will continue (and which shall be okay) to use GUI editors like inkscape, which might rewrite the complete structure on saving, using uncompressed format in the repo still allows the occasional direct edit of the text, .e.g. to change a colour, which then is also easily seen in the commit diff. To still keep the svgz format when deployed, a build step is introduced, which uses gzip to create svgz files in the build dir. This conversion can be controlled using the option GZIP_DESKTOPTHEME_SVG (default: ON). Test Plan: Themes are still working (with & without cache removed). Reviewers: #plasma, #vdg, ngraham Reviewed By: #vdg, ngraham Subscribers: bruns, GB_2, ndavis, ngraham, fvogt, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D20166
@ -10,7 +10,7 @@ find_package(ECM 5.57.0 NO_MODULE)
|
||||
set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules")
|
||||
feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||
|
||||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
||||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)
|
||||
|
||||
include(GenerateExportHeader)
|
||||
include(ECMGenerateHeaders)
|
||||
|
47
cmake/Findgzip.cmake
Normal file
@ -0,0 +1,47 @@
|
||||
# Finds gzip.
|
||||
#
|
||||
# gzip_FOUND - True if gzip is found.
|
||||
# gzip_EXECUTABLE - Path to executable
|
||||
|
||||
#=============================================================================
|
||||
# Copyright 2019 Friedrich W. H. Kossebau <kossebau@kde.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the distribution.
|
||||
# 3. The name of the author may not be used to endorse or promote products
|
||||
# derived from this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#=============================================================================
|
||||
|
||||
find_program(gzip_EXECUTABLE NAMES gzip)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(gzip
|
||||
FOUND_VAR
|
||||
gzip_FOUND
|
||||
REQUIRED_VARS
|
||||
gzip_EXECUTABLE
|
||||
)
|
||||
mark_as_advanced(gzip_EXECUTABLE)
|
||||
|
||||
set_package_properties(gzip PROPERTIES
|
||||
URL "https://www.gnu.org/software/gzip"
|
||||
DESCRIPTION "Data compression program for the gzip format"
|
||||
)
|
@ -1,3 +1,83 @@
|
||||
|
||||
option(GZIP_DESKTOPTHEME_SVG "Install Desktop Theme SVG files as .svgz." ON)
|
||||
|
||||
if (GZIP_DESKTOPTHEME_SVG)
|
||||
find_package(gzip)
|
||||
set_package_properties(gzip PROPERTIES
|
||||
TYPE REQUIRED
|
||||
)
|
||||
endif()
|
||||
|
||||
# Helper function, private for now
|
||||
# Once it has matured and proven, add to public macros
|
||||
function(PLASMA_INSTALL_DESKTOPTHEME_SVGS theme_name)
|
||||
set(options
|
||||
)
|
||||
set(oneValueArgs
|
||||
SUBPATH
|
||||
)
|
||||
set(multiValueArgs
|
||||
FILES
|
||||
)
|
||||
|
||||
cmake_parse_arguments(PIDS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||
|
||||
if(NOT DEFINED PIDS_SUBPATH)
|
||||
message(FATAL_ERROR "SUBPATH needs to be defined when calling plasma_install_desktoptheme_svgs.")
|
||||
endif()
|
||||
|
||||
if(NOT PIDS_FILES)
|
||||
message(FATAL_ERROR "No files passed when calling plasma_install_desktoptheme_svgs.")
|
||||
endif()
|
||||
|
||||
set(_target_name "${theme_name}_desktoptheme_graphics_${PIDS_SUBPATH}")
|
||||
string(REPLACE "/" "_" _target_name "${_target_name}")
|
||||
|
||||
set(desktoptheme_COMPONENTDIR "${theme_name}/${PIDS_SUBPATH}")
|
||||
set(desktoptheme_INSTALLDIR ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/${desktoptheme_COMPONENTDIR})
|
||||
|
||||
if (GZIP_DESKTOPTHEME_SVG)
|
||||
set(desktoptheme_GZIPDIR "${theme_name}.gzipped/${PIDS_SUBPATH}")
|
||||
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${desktoptheme_GZIPDIR}")
|
||||
endif()
|
||||
|
||||
set(_install_files)
|
||||
|
||||
foreach(_src_file ${PIDS_FILES})
|
||||
if (NOT IS_ABSOLUTE ${_src_file})
|
||||
set(_src_file "${CMAKE_CURRENT_SOURCE_DIR}/${_src_file}")
|
||||
endif()
|
||||
if (NOT EXISTS ${_src_file})
|
||||
message(FATAL_ERROR "No such file found: ${_src_file}")
|
||||
endif()
|
||||
get_filename_component(_fileName "${_src_file}" NAME)
|
||||
|
||||
if (GZIP_DESKTOPTHEME_SVG)
|
||||
set(_gzipped_file_displayname "${desktoptheme_COMPONENTDIR}/${_fileName}z")
|
||||
set(_gzipped_file "${CMAKE_CURRENT_BINARY_DIR}/${desktoptheme_GZIPDIR}/${_fileName}z")
|
||||
add_custom_command(
|
||||
OUTPUT ${_gzipped_file}
|
||||
COMMAND ${gzip_EXECUTABLE}
|
||||
ARGS
|
||||
-9
|
||||
-c
|
||||
${_src_file} > ${_gzipped_file}
|
||||
DEPENDS ${_src_file}
|
||||
COMMENT "Gzipping ${_gzipped_file_displayname}"
|
||||
)
|
||||
else()
|
||||
set(_gzipped_file "${_src_file}")
|
||||
endif()
|
||||
|
||||
list(APPEND _install_files "${_gzipped_file}")
|
||||
endforeach()
|
||||
|
||||
add_custom_target(${_target_name} ALL DEPENDS ${_install_files})
|
||||
|
||||
install(FILES ${_install_files} DESTINATION "${desktoptheme_INSTALLDIR}" )
|
||||
endfunction()
|
||||
|
||||
|
||||
add_subdirectory( oxygen )
|
||||
add_subdirectory( air )
|
||||
add_subdirectory( breeze )
|
||||
|
@ -1,24 +1,24 @@
|
||||
|
||||
install(FILES colors metadata.desktop DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/)
|
||||
|
||||
FILE(GLOB widgets widgets/*.svgz)
|
||||
install( FILES ${widgets} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/widgets/ )
|
||||
FILE(GLOB widgets widgets/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH widgets FILES ${widgets})
|
||||
|
||||
FILE(GLOB dialogs dialogs/*.svgz)
|
||||
install( FILES ${dialogs} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/dialogs/ )
|
||||
FILE(GLOB dialogs dialogs/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH dialogs FILES ${dialogs})
|
||||
|
||||
FILE(GLOB opaque_dialogs opaque/dialogs/*.svgz)
|
||||
install( FILES ${opaque_dialogs} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/opaque/dialogs/ )
|
||||
FILE(GLOB opaque_dialogs opaque/dialogs/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH opaque/dialogs FILES ${opaque_dialogs})
|
||||
|
||||
FILE(GLOB opaque_widgets opaque/widgets/*.svgz)
|
||||
install( FILES ${opaque_widgets} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/opaque/widgets/ )
|
||||
FILE(GLOB opaque_widgets opaque/widgets/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH opaque/widgets FILES ${opaque_widgets})
|
||||
|
||||
FILE(GLOB translucent_widgets translucent/widgets/*.svgz)
|
||||
install( FILES ${translucent_widgets} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/translucent/widgets/ )
|
||||
FILE(GLOB translucent_widgets translucent/widgets/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH translucent/widgets FILES ${translucent_widgets})
|
||||
|
||||
FILE(GLOB translucent_dialogs translucent/dialogs/*.svgz)
|
||||
install( FILES ${translucent_dialogs} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/translucent/dialogs/ )
|
||||
FILE(GLOB translucent_dialogs translucent/dialogs/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH translucent/dialogs FILES ${translucent_dialogs})
|
||||
|
||||
FILE(GLOB icons icons/*.svgz)
|
||||
install( FILES ${icons} DESTINATION ${PLASMA_DATA_INSTALL_DIR}/desktoptheme/air/icons/ )
|
||||
FILE(GLOB icons icons/*.svg)
|
||||
plasma_install_desktoptheme_svgs(air SUBPATH icons FILES ${icons})
|
||||
|
||||
|
563
src/desktoptheme/air/dialogs/background.svg
Normal file
@ -0,0 +1,563 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="148"
|
||||
height="148"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#919191"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="213.57071"
|
||||
inkscape:cy="110.90187"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1413"
|
||||
inkscape:window-height="735"
|
||||
inkscape:window-x="49"
|
||||
inkscape:window-y="29"
|
||||
width="148px"
|
||||
height="148px"
|
||||
objecttolerance="23"
|
||||
gridtolerance="10"
|
||||
guidetolerance="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
empspacing="5"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
id="grid3357"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter4258-8"
|
||||
x="-0.2592"
|
||||
width="1.5184"
|
||||
y="-0.5184"
|
||||
height="2.0368">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="4.104"
|
||||
id="feGaussianBlur4260-5" />
|
||||
</filter>
|
||||
<mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask4270-9">
|
||||
<g
|
||||
id="g4272-5">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4274-2"
|
||||
d="M 127,-30.9996 93.526316,2.5612549 74,22.0004 l 106,0 -19.52632,-19.4391451 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 127,-13.9996 -12,12.0312498 -7,6.96875 38,0 -7,-6.96875 z"
|
||||
id="path4276-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-left"
|
||||
x="-275"
|
||||
y="-72"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="top"
|
||||
transform="matrix(0.5517241,0,0,2,55.793104,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2667"
|
||||
d="m 4,127 0,2 58,0 0,-2 c -0.02169,-6.7e-4 -0.04064,0 -0.0625,0 l -57.875,0 C 4.040639,127 4.021694,126.99933 4,127 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127.00007 0,0.49993 58,0 0,-0.49993 c -0.02169,-1.6e-4 -0.04064,0 -0.0625,0 l -57.875,0 c -0.021861,0 -0.040806,-1.6e-4 -0.0625,0 z"
|
||||
id="path5283" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="right"
|
||||
transform="matrix(2,0,0,2.4615385,-34,-252.53847)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2679"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
id="path5344" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="bottom"
|
||||
transform="matrix(0.5517241,0,0,2,55.793106,-187)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2691"
|
||||
d="m 4,142 0,2 c 0.021694,6.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,6.7e-4 0.0625,0 l 0,-2 -58,0 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,143.50022 0,0.5 c 0.021694,1.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,1.7e-4 0.0625,0 l 0,-0.5 -58,0 z"
|
||||
id="path5362" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,6.9999975)"
|
||||
style="opacity:0.97899996"
|
||||
id="bottomleft">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2697"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 54 97 C 54.06722 99.1827 55.817292 100.93278 58 101 L 58 100 C 56.362968 99.949585 55.05042 98.637026 55 97 L 54 97 z "
|
||||
transform="translate(0,-6.9999975)"
|
||||
id="path3814" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.744186,0,0,2.4635078,13.348831,20.656857)"
|
||||
id="center">
|
||||
<g
|
||||
transform="matrix(0.344,0,0,0.8118505,3.584,-783.88382)"
|
||||
id="toolbutton-pressed-center">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11378"
|
||||
d="m 164,987.7235 0,16 125,0 0,-16 -125,0 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2,97.999996,-193)"
|
||||
id="topright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
id="path5336" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
id="path5338"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="27.24255"
|
||||
x="18.522581"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-left-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="57.855396"
|
||||
y="78.307343" />
|
||||
<rect
|
||||
y="63.723263"
|
||||
x="72.616249"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-bottom-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="72.616249"
|
||||
y="93.24498" />
|
||||
<rect
|
||||
y="78.307343"
|
||||
x="87.553879"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="topleft"
|
||||
transform="matrix(2,0,0,2,50,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4234"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4236"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2.4615385,182.00015,-252.53847)"
|
||||
id="left">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
id="path4246" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4248"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-1,0,0,1,148,6.9999975)"
|
||||
id="bottomright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
id="path4279" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 93 97 C 92.94958 98.637026 91.637032 99.949585 90 100 L 90 101 C 92.182708 100.93278 93.93278 99.1827 94 97 L 93 97 z "
|
||||
transform="matrix(-1,0,0,1,148,-6.9999975)"
|
||||
id="path3046" />
|
||||
</g>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270"
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
id="tspan4272"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
transform="matrix(0.41935484,0,0,0.41935477,-33.483871,252.3544)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="shadow-center"
|
||||
style="fill:#000000;fill-opacity:0">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0;stroke:none"
|
||||
d="m -6.0000004,-7.998957 0,62 62.0000004,0 0,-62 -62.0000004,0 z"
|
||||
id="path3642"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-left-margin"
|
||||
width="22"
|
||||
height="4"
|
||||
x="-72"
|
||||
y="264" />
|
||||
<rect
|
||||
y="259"
|
||||
x="4"
|
||||
height="4"
|
||||
width="22"
|
||||
id="shadow-hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,133.5,29.499998)"
|
||||
id="g3041" />
|
||||
<image
|
||||
y="213"
|
||||
x="-72"
|
||||
id="shadow-topleft"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<image
|
||||
y="213"
|
||||
x="-36"
|
||||
id="shadow-top"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-topright"
|
||||
x="-26"
|
||||
y="213"
|
||||
transform="scale(-1,1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-right"
|
||||
x="249"
|
||||
y="-26"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-bottomleft"
|
||||
x="-72"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-bottom"
|
||||
x="-36"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
transform="scale(-1,-1)"
|
||||
y="-311"
|
||||
x="-26"
|
||||
id="shadow-bottomright"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-bottom-margin"
|
||||
width="4"
|
||||
height="22"
|
||||
x="-34"
|
||||
y="289" />
|
||||
<rect
|
||||
y="213"
|
||||
x="-25"
|
||||
height="22"
|
||||
width="4"
|
||||
id="shadow-hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4258-8)"
|
||||
d="m 127,-13.9996 -12,12.0312498 -7,6.96875 38,0 -7,-6.96875 z"
|
||||
id="path4181"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
mask="url(#mask4270-9)"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(105,19.96835)" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,-1,553,134.96835)"
|
||||
id="balloon-tip-bottom">
|
||||
<image
|
||||
width="58"
|
||||
height="22"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
id="image4316"
|
||||
x="197"
|
||||
y="-15" />
|
||||
<g
|
||||
transform="translate(200.00001,-11.000062)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="g4318">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
id="path4320"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path4322"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
id="path4324"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="balloon-tip-right"
|
||||
transform="matrix(0,1,-1,0,364.00084,-128.01474)">
|
||||
<image
|
||||
y="-15"
|
||||
x="197"
|
||||
id="image5017"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
height="22"
|
||||
width="58" />
|
||||
<g
|
||||
id="g5019"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(200.00001,-11.000062)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5021"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
id="path5023" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5025"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(101,60.96835)"
|
||||
id="balloon-tip-top">
|
||||
<image
|
||||
width="58"
|
||||
height="22"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
id="image5029"
|
||||
x="197"
|
||||
y="-15" />
|
||||
<g
|
||||
transform="translate(200.00001,-11.000062)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="g5031">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
id="path5033"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path5035"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
id="path5037"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="balloon-tip-left"
|
||||
transform="matrix(0,-1,1,0,290,323.95144)">
|
||||
<image
|
||||
y="-15"
|
||||
x="197"
|
||||
id="image5041"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
height="22"
|
||||
width="58" />
|
||||
<g
|
||||
id="g5043"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(200.00001,-11.000062)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5045"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
id="path5047" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5049"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
339
src/desktoptheme/air/dialogs/kickoff.svg
Normal file
@ -0,0 +1,339 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
width="17"
|
||||
height="57"
|
||||
sodipodi:docbase="/opt/svn/playground-plasma/widgets/tabbar"
|
||||
sodipodi:docname="kickoff.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
inkscape:export-filename="/home/pinheiro/Documents/pics/estilo/plasma/wether.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
inkscape:window-height="708"
|
||||
inkscape:window-width="1116"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="1"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#bababa"
|
||||
id="base"
|
||||
inkscape:zoom="15.999999"
|
||||
inkscape:cx="-14.385354"
|
||||
inkscape:cy="46.581837"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:current-layer="svg2"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-guide="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:bbox-nodes="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:object-nodes="true">
|
||||
<inkscape:grid
|
||||
enabled="true"
|
||||
visible="true"
|
||||
id="grid5592"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs5">
|
||||
<linearGradient
|
||||
id="linearGradient3197">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.3137255;"
|
||||
offset="0"
|
||||
id="stop3199" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3201" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4450">
|
||||
<stop
|
||||
style="stop-color:#acacac;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4452" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4454" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4450"
|
||||
id="linearGradient4460"
|
||||
x1="8"
|
||||
y1="21"
|
||||
x2="8"
|
||||
y2="32"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-16.947115)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4450"
|
||||
id="linearGradient4492"
|
||||
x1="2"
|
||||
y1="21"
|
||||
x2="2"
|
||||
y2="32"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-16.947115)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4450"
|
||||
id="linearGradient4500"
|
||||
x1="15"
|
||||
y1="21"
|
||||
x2="15"
|
||||
y2="32"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-16.947115)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3197"
|
||||
id="linearGradient3203"
|
||||
x1="-21"
|
||||
y1="2"
|
||||
x2="-21"
|
||||
y2="13"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:none"
|
||||
inkscape:label="layer1"
|
||||
transform="translate(-1558,-8.362187)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
style="display:inline"
|
||||
inkscape:label="glow"
|
||||
transform="translate(-1558,-8.362187)" />
|
||||
<g
|
||||
transform="translate(871.061,-1488.2416)"
|
||||
id="g2424"
|
||||
style="display:none"
|
||||
inkscape:label="layer1" />
|
||||
<g
|
||||
transform="translate(871.061,-1488.2416)"
|
||||
id="g2426"
|
||||
style="display:inline"
|
||||
inkscape:label="glow" />
|
||||
<g
|
||||
transform="translate(917.0388,-519.37891)"
|
||||
id="g3429"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(2703.3293,-135.92083)"
|
||||
id="g19758"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(3808.1545,-1014.1902)"
|
||||
id="g3935"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(1410.2848,-1029.5374)"
|
||||
id="g8459"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(59.4673,299.07425)"
|
||||
id="g28391"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(1164.2925,-579.19511)"
|
||||
id="g28393"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(-1233.5772,-594.54231)"
|
||||
id="g28395"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(2205.9673,291.07425)"
|
||||
id="g6598"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(3310.7925,-587.19511)"
|
||||
id="g6640"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
transform="translate(912.9228,-602.54234)"
|
||||
id="g6716"
|
||||
inkscape:label="Layer 1" />
|
||||
<g
|
||||
style="opacity:0.45945943"
|
||||
transform="matrix(1,0,0,-1,-258,752.03125)"
|
||||
id="g6850" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text6990"
|
||||
y="249"
|
||||
x="-34"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Gill Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
|
||||
xml:space="preserve"><tspan
|
||||
y="249"
|
||||
x="-34"
|
||||
id="tspan6992"
|
||||
sodipodi:role="line" /></text>
|
||||
<rect
|
||||
style="opacity:1;fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="hint-stretch-borders"
|
||||
width="2.0329318"
|
||||
height="2.077126"
|
||||
x="-2.7400386"
|
||||
y="-1.3405813"
|
||||
rx="0"
|
||||
ry="2.077126" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text2705"
|
||||
y="233.58058"
|
||||
x="-10.722275"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="233.58058"
|
||||
x="-10.722275"
|
||||
id="tspan2707"
|
||||
sodipodi:role="line" /></text>
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient4460);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.9999995,4.052885 L 2.9999995,15.052885 L 13.999999,15.052885 L 13.999999,4.052885 L 2.9999995,4.052885 z"
|
||||
id="plain-center" />
|
||||
<path
|
||||
style="opacity:1;fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3,2.052838 L 3,4.052885 L 13.999999,4.052885 L 13.999999,2.052838 C 13.995886,2.052168 13.992293,2.052838 13.988146,2.052838 L 3.0118538,2.052838 C 3.0077076,2.052838 3.004114,2.052168 3,2.052838 z"
|
||||
id="plain-top" />
|
||||
<path
|
||||
style="opacity:1;fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 13.999999,2.052885 L 13.999999,4.052885 L 15.999999,4.052885 C 15.966391,2.961535 15.091355,2.086495 13.999999,2.052885 z"
|
||||
id="plain-topright" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient4500);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14,4.052885 L 14,15.052885 L 16,15.052885 C 16.000668,15.034532 16,15.018497 16,15 L 16,4.10577 C 16,4.087273 16.000668,4.071238 16,4.052885 L 14,4.052885 z"
|
||||
id="plain-right" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:0.00784314;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 13.965229,15.05254 L 13.965229,17.05254 C 15.056583,17.01893 15.931621,16.14389 15.965229,15.05254 L 13.965229,15.05254 z"
|
||||
id="plain-bottomright" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:0.00784314;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.9881462,15.052539 L 2.9881462,17.052587 C 2.9922602,17.053257 2.9958538,17.052587 3,17.052587 L 13.976293,17.052587 C 13.98044,17.052587 13.984033,17.053257 13.988146,17.052587 L 13.988146,15.052539 L 2.9881462,15.052539 z"
|
||||
id="plain-bottom" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:0.00784314;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1,15.052885 C 1.033608,16.144235 1.908646,17.019275 3,17.052885 L 3,15.052885 L 1,15.052885 z"
|
||||
id="plain-bottomleft" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient4492);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.0002969,4.052885 C 0.99962889,4.071238 1.0002969,4.087273 1.0002969,4.10577 L 1.0002969,15 C 1.0002969,15.018497 0.99962889,15.034532 1.0002969,15.052885 L 3.0002969,15.052885 L 3.0002969,4.052885 L 1.0002969,4.052885 z"
|
||||
id="plain-left" />
|
||||
<path
|
||||
style="opacity:1;fill:#ababab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3,2.052885 C 1.908646,2.086495 1.033608,2.961535 1,4.052885 L 3,4.052885 L 3,2.052885 z"
|
||||
id="plain-topleft" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.999999,22.000345 L 2.999999,33.000345 L 13.999999,33.000345 L 13.999999,22.000345 L 2.999999,22.000345 z"
|
||||
id="borderview-center"
|
||||
inkscape:label="#path2500" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3,20.000298 L 3,22.000345 L 13.999999,22.000345 L 13.999999,20.000298 C 13.995886,19.999628 13.992293,20.000298 13.988146,20.000298 L 3.011854,20.000298 C 3.007707,20.000298 3.004114,19.999628 3,20.000298 z"
|
||||
id="borderview-top"
|
||||
inkscape:label="#path2502" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 13.999999,20.000345 L 13.999999,22.000345 L 15.999999,22.000345 C 15.966391,20.908995 15.091355,20.033955 13.999999,20.000345 z"
|
||||
id="borderview-topright"
|
||||
inkscape:label="#path2504" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14,22.000345 L 14,33.000345 L 16,33.000345 C 16.000668,32.981992 16,32.965957 16,32.94746 L 16,22.05323 C 16,22.034733 16.000668,22.018698 16,22.000345 L 14,22.000345 z"
|
||||
id="borderview-right"
|
||||
inkscape:label="#path2506" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 13.965229,33 L 13.965229,35 C 15.056583,34.96639 15.931621,34.09135 15.965229,33 L 13.965229,33 z"
|
||||
id="borderview-bottomright"
|
||||
inkscape:label="#path2508" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.988146,32.999999 L 2.988146,35.000047 C 2.99226,35.000717 2.995854,35.000047 3,35.000047 L 13.976293,35.000047 C 13.98044,35.000047 13.984033,35.000717 13.988146,35.000047 L 13.988146,32.999999 L 2.988146,32.999999 z"
|
||||
id="borderview-bottom"
|
||||
inkscape:label="#path2510" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1,33.000345 C 1.033608,34.091695 1.908646,34.966735 3,35.000345 L 3,33.000345 L 1,33.000345 z"
|
||||
id="borderview-bottomleft"
|
||||
inkscape:label="#path2512" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.000297,22.000345 C 0.999629,22.018698 1.000297,22.034733 1.000297,22.05323 L 1.000297,32.94746 C 1.000297,32.965957 0.999629,32.981992 1.000297,33.000345 L 3.000297,33.000345 L 3.000297,22.000345 L 1.000297,22.000345 z"
|
||||
id="borderview-left"
|
||||
inkscape:label="#path2514" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3,20.000345 C 1.908646,20.033955 1.033608,20.908995 1,22.000345 L 3,22.000345 L 3,20.000345 z"
|
||||
id="borderview-topleft"
|
||||
inkscape:label="#path2516" />
|
||||
<g
|
||||
id="plain-overlay">
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M -25,2 L -25,13 L -14,13 L -14,2 L -25,2 z"
|
||||
id="path2423"
|
||||
inkscape:label="#path2500" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:label="#path2500"
|
||||
id="path2425"
|
||||
d="M -25,2 L -25,13 C -23,9 -19,4 -14,2 L -25,2 z"
|
||||
style="opacity:1;fill:url(#linearGradient3203);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<rect
|
||||
ry="2.077126"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="-13"
|
||||
height="2.077126"
|
||||
width="2.0329318"
|
||||
id="plain-hint-overlay-stretch"
|
||||
style="opacity:1;fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
438
src/desktoptheme/air/dialogs/krunner.svg
Normal file
@ -0,0 +1,438 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="148"
|
||||
height="148"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="krunner.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#919191"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="53.471278"
|
||||
inkscape:cy="72.849093"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1557"
|
||||
inkscape:window-height="735"
|
||||
inkscape:window-x="99"
|
||||
inkscape:window-y="163"
|
||||
width="148px"
|
||||
height="148px"
|
||||
objecttolerance="23"
|
||||
gridtolerance="10"
|
||||
guidetolerance="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3357"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
empspacing="5"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
transform="matrix(0,-1,1,0,-27,142)"
|
||||
id="left">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="image3733"
|
||||
x="45"
|
||||
y="35" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3735"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
id="path3737" />
|
||||
</g>
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(-10e-7,-1)">
|
||||
<image
|
||||
y="35"
|
||||
x="45"
|
||||
id="shadow-top"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<path
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
id="path2667"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5283"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="26"
|
||||
x="56"
|
||||
y="34" />
|
||||
<g
|
||||
id="center"
|
||||
transform="matrix(0.60465112,0,0,2.0016001,8.720933,34.971204)">
|
||||
<g
|
||||
id="toolbutton-pressed-center"
|
||||
transform="matrix(0.344,0,0,0.8118505,3.584,-783.88382)">
|
||||
<path
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431374;stroke:none"
|
||||
d="m 164,987.7235 0,16 125,0 0,-16 -125,0 z"
|
||||
id="path11378"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-stretch-borders"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="18.522581"
|
||||
y="27.24255" />
|
||||
<rect
|
||||
y="83"
|
||||
x="8"
|
||||
height="4"
|
||||
width="26"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
id="topleft">
|
||||
<image
|
||||
y="34"
|
||||
x="8"
|
||||
id="shadow-topleft"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<path
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path4234"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
id="path4236"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,142,26)"
|
||||
id="topright">
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="image3336"
|
||||
x="8"
|
||||
y="34" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3338"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path3340"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,-1,0.028022,168)"
|
||||
id="bottomleft">
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="image3360"
|
||||
x="8"
|
||||
y="34" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3362"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path3364"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,142.02802,142)">
|
||||
<image
|
||||
y="34"
|
||||
x="8"
|
||||
id="image3368"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<path
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path3370"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
id="path3372"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,143,25.999999)"
|
||||
id="right">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="image3717"
|
||||
x="45"
|
||||
y="35" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3719"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
id="path3721" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="matrix(-1,0,0,-1,116,169)">
|
||||
<image
|
||||
y="35"
|
||||
x="45"
|
||||
id="image3725"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<path
|
||||
style="opacity:1;fill:#f0f0f0;fill-opacity:0.78431374;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
id="path3727"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3729"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-right-margin"
|
||||
width="26"
|
||||
height="4"
|
||||
x="82"
|
||||
y="84" />
|
||||
<g
|
||||
transform="translate(25,95)"
|
||||
id="mask-topleft">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
id="path3757"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3632"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="mask-center"
|
||||
d="m -52,158 0,32 32,0 0,-32 -32,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="mask-top"
|
||||
transform="matrix(0,0.8887345,1,0,-114,243.20725)">
|
||||
<path
|
||||
id="path3493"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
id="path3495"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="mask-topright"
|
||||
transform="matrix(0,1,-1,0,43,235)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5484"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path5486" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.8887345,0,0,1,-105.20725,96)"
|
||||
id="mask-right">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
id="path5490" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="mask-bottomleft"
|
||||
transform="matrix(1,0,0,-1,25,252.99999)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path5498" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-0.8887345,1,0,-114,104.79275)"
|
||||
id="mask-bottom">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
id="path5502" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5504"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,43,113)"
|
||||
id="mask-bottomright">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
id="path5508"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5510"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="mask-left"
|
||||
transform="matrix(0.8887345,0,0,1,33.207246,96)">
|
||||
<path
|
||||
id="path5514"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
id="path5516"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
y="108"
|
||||
x="55"
|
||||
height="26"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
1240
src/desktoptheme/air/icons/akonadi.svg
Normal file
After Width: | Height: | Size: 73 KiB |
1433
src/desktoptheme/air/icons/akregator.svg
Normal file
After Width: | Height: | Size: 78 KiB |
215
src/desktoptheme/air/icons/amarok.svg
Normal file
@ -0,0 +1,215 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="amarok.svgz"
|
||||
style="display:inline">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient16282">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop16284" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop16286" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16121">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.74100721;"
|
||||
offset="0"
|
||||
id="stop16123" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.35251799;"
|
||||
offset="1"
|
||||
id="stop16125" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16018">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.60431653;"
|
||||
offset="0"
|
||||
id="stop16020" />
|
||||
<stop
|
||||
style="stop-color:#1c1c1c;stop-opacity:0.68345326;"
|
||||
offset="1"
|
||||
id="stop16022" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.92086333;"
|
||||
offset="0"
|
||||
id="stop16008" />
|
||||
<stop
|
||||
id="stop16016"
|
||||
offset="0.25"
|
||||
style="stop-color:#ffffff;stop-opacity:0.88489211;" />
|
||||
<stop
|
||||
id="stop16014"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.89928055;"
|
||||
offset="1"
|
||||
id="stop16010" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006"
|
||||
id="radialGradient16012"
|
||||
cx="8.0929317"
|
||||
cy="18.634663"
|
||||
fx="8.0929317"
|
||||
fy="18.634663"
|
||||
r="10"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4118279,-0.66865338,0.59646688,1.2594097,-10.697853,3.8693936)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16018"
|
||||
id="radialGradient16026"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1483777,0,0,1.0770556,-1.8851085,-0.93472956)"
|
||||
cx="10.375946"
|
||||
cy="11.722908"
|
||||
fx="10.375946"
|
||||
fy="11.722908"
|
||||
r="1.5801342" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16121"
|
||||
id="radialGradient16165"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.6893634,0,0,1.5844424,-7.5723401,-7.3267349)"
|
||||
cx="10.51272"
|
||||
cy="12.597894"
|
||||
fx="10.51272"
|
||||
fy="12.597894"
|
||||
r="1.5801342" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16282"
|
||||
id="radialGradient16288"
|
||||
cx="12.691099"
|
||||
cy="15.125654"
|
||||
fx="12.691099"
|
||||
fy="15.125654"
|
||||
r="5.2774868"
|
||||
gradientTransform="matrix(0.9325197,-0.3611191,0.26116649,0.67441157,-6.6750667,6.4920295)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="7.480585"
|
||||
inkscape:cy="10.223725"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="amarok">
|
||||
<rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect16227"
|
||||
style="fill:#ffffff;fill-opacity:0;stroke:none" />
|
||||
<path
|
||||
id="path15858"
|
||||
d="M 12,1.03125 C 5.9529254,1.03125 1.03125,5.9529254 1.03125,12 1.03125,18.047074 5.9529253,22.96875 12,22.96875 18.047074,22.96875 22.96875,18.047074 22.96875,12 22.96875,5.9529253 18.047074,1.03125 12,1.03125 z M 12,2 C 17.522847,2 22,6.4771525 22,12 22,17.522847 17.522847,22 12,22 6.4771525,22 2,17.522847 2,12 2,6.4771525 6.4771525,2 12,2 z m 0,1 C 7.0294373,3 3,7.0294373 3,12 3,13.944339 3.6079752,15.747273 4.65625,17.21875 5.130042,16.839284 5.8752306,16.102634 5.71875,15.375 5.5093259,14.401178 3.4390571,13.976085 3.5,13.28125 3.535065,12.881455 4.5568168,12.35222 5.03125,12.21875 5.8652239,11.984132 6.4657512,11.998223 7.0625,11.53125 8.2559976,10.597308 8.9941229,9.6384848 10.59375,9.25 11.906981,8.9310693 11.646597,9.6434882 12.5,9.09375 13.148433,8.676048 15.678828,6.11911 16.34375,6.25 17.0087,6.3808901 17,7.03125 17,8.03125 c 0,1 -2.010558,2.355252 -1.34375,2.96875 0.112084,0.103123 0.928215,-0.01007 1.40625,-0.125 0.478034,-0.11489 0.706295,-0.53611 1.125,-0.09375 0.335032,0.353957 0.151178,1.063973 -0.875,1.78125 -0.961178,0.671845 -2.25408,0.830089 -2.71875,2.40625 -0.531259,1.80203 0.03381,4.554388 0.28125,5.5625 C 18.439798,19.33403 21,15.968123 21,12 21,7.0294373 16.970563,3 12,3 z m 0,0.96875 c 1.598679,0 3.000842,0.5749114 4.25,1.375 C 16.01893,5.357116 15.777012,5.371516 15.625,5.4375 15.404942,5.533021 15.199742,5.6477413 15,5.78125 c -0.399485,0.2670174 -0.807692,0.5892187 -1.21875,0.9375 -0.411058,0.3482813 -0.791572,0.7082925 -1.125,1 -0.333428,0.2917075 -0.662697,0.5465227 -0.6875,0.5625 C 11.90793,8.320427 11.89216,8.334788 11.875,8.34375 11.629892,8.273357 11.09761,8.1370072 10.375,8.3125 8.4861846,8.7712169 7.5613573,9.9262572 6.46875,10.78125 c -0.3405579,0.266496 -0.7269236,0.229766 -1.6875,0.5 C 4.5375997,11.3498 4.2824915,11.497992 4.03125,11.625 4.2361778,7.3634405 7.6861994,3.96875 12,3.96875 z m 5.84375,2.59375 c 1.33111,1.4321948 2.1875,3.3204851 2.1875,5.4375 0,3.119568 -1.823003,5.731544 -4.40625,7.0625 -0.204805,-1.232285 -0.39064,-2.805451 -0.09375,-3.8125 0.165822,-0.562468 0.366337,-0.754739 0.75,-1 0.383663,-0.245261 0.975084,-0.473814 1.59375,-0.90625 0.613974,-0.429155 1.04511,-0.881911 1.28125,-1.4375 0.23614,-0.555589 0.201002,-1.304773 -0.25,-1.78125 C 18.718495,9.9266381 18.446733,9.7329619 18.125,9.65625 17.803267,9.579538 17.501372,9.64688 17.3125,9.71875 c -0.102019,0.038822 -0.06218,0.034007 -0.125,0.0625 0.110091,-0.1447615 0.20586,-0.2714556 0.3125,-0.4375 0.221936,-0.3455663 0.46875,-0.7374597 0.46875,-1.3125 0,-0.4971964 0.01323,-0.9496988 -0.125,-1.46875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path15048"
|
||||
d="M 12,2 C 6.4771525,2 2,6.4771525 2,12 2,17.522847 6.4771525,22 12,22 17.522847,22 22,17.522847 22,12 22,6.4771525 17.522847,2 12,2 z m 0,1 c 4.970563,0 9,4.0294373 9,9 0,3.968123 -2.560202,7.33403 -6.125,8.53125 -0.24744,-1.008112 -0.812509,-3.76047 -0.28125,-5.5625 0.46467,-1.576161 1.757572,-1.734405 2.71875,-2.40625 1.026178,-0.717277 1.210032,-1.427293 0.875,-1.78125 C 17.768795,10.33889 17.540534,10.76011 17.0625,10.875 16.584465,10.989934 15.768334,11.103123 15.65625,11 14.989442,10.386502 17,9.03125 17,8.03125 17,7.03125 17.0087,6.3808901 16.34375,6.25 15.678828,6.11911 13.148433,8.676048 12.5,9.09375 11.646597,9.6434882 11.906981,8.9310693 10.59375,9.25 8.9941229,9.6384848 8.2559976,10.597308 7.0625,11.53125 6.4657512,11.998223 5.8652239,11.984132 5.03125,12.21875 4.5568168,12.35222 3.535065,12.881455 3.5,13.28125 3.4390571,13.976085 5.5093259,14.401178 5.71875,15.375 5.8752306,16.102634 5.130042,16.839284 4.65625,17.21875 3.6079752,15.747273 3,13.944339 3,12 3,7.0294373 7.0294373,3 12,3 z"
|
||||
style="fill:url(#radialGradient16012);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#radialGradient16288);fill-opacity:1;stroke:none"
|
||||
d="M 12.84375,8.8125 C 12.730557,8.9049493 12.57196,9.0473953 12.5,9.09375 11.646597,9.6434882 11.906981,8.9310693 10.59375,9.25 8.9941229,9.6384848 8.2559976,10.597308 7.0625,11.53125 6.4657512,11.998223 5.8652239,11.984132 5.03125,12.21875 4.7680189,12.292804 4.3381963,12.490737 4,12.71875 3.9634206,13.149798 4.0346932,13.592749 4.1875,14 c 0.00347,0.0092 -0.00357,0.02204 0,0.03125 0.6052695,0.369312 1.4043179,0.753516 1.53125,1.34375 0.01956,0.09095 0.037576,0.190729 0.03125,0.28125 1.2552957,0.634028 3.0222762,0.669063 4.75,0 2.717992,-1.052545 4.292466,-3.471809 3.53125,-5.4375 C 13.806523,9.6384376 13.371803,9.1646074 12.84375,8.8125 z"
|
||||
id="path16280"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 11.53125,9.46875 c -0.210959,-0.00814 -0.446737,0.00387 -0.6875,0.0625 C 10.365077,9.647825 9.8100102,9.8864348 9.3125,10.25 c -0.5306991,0.387818 -0.8939523,0.923953 -1.125,1.4375 -0.1155238,0.256773 -0.2011327,0.525926 -0.21875,0.78125 -0.00881,0.127662 0.00915,0.257037 0.0625,0.40625 0.053346,0.149213 0.1653579,0.321129 0.34375,0.40625 0.1669375,0.07966 0.4570997,0.112281 0.65625,0.03125 0.1991503,-0.08103 0.2726944,-0.186227 0.375,-0.28125 0.2046113,-0.190047 0.4509478,-0.442021 1.03125,-0.78125 0.578739,-0.338315 1.118314,-0.553311 1.53125,-0.875 0.206468,-0.160844 0.407171,-0.371782 0.46875,-0.6875 0.06158,-0.315718 -0.04,-0.636534 -0.21875,-0.90625 -0.207982,-0.3138317 -0.476541,-0.3043578 -0.6875,-0.3125 z"
|
||||
id="path16163"
|
||||
style="fill:url(#radialGradient16165);fill-opacity:1;stroke:none;display:inline"
|
||||
inkscape:original="M 10.96875 10.03125 C 10.554634 10.132103 10.058944 10.339137 9.625 10.65625 C 8.7571126 11.290475 8.2148306 12.631695 8.59375 12.8125 C 8.9726694 12.993305 8.9446175 12.539055 10.1875 11.8125 C 11.403663 11.101565 12.329047 10.889087 11.78125 10.0625 C 11.701937 9.9428217 11.382866 9.9303973 10.96875 10.03125 z "
|
||||
inkscape:radius="0.50652927"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
sodipodi:nodetypes="zsssz"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15823"
|
||||
d="M 8.5927686,12.827942 C 8.2138492,12.647137 8.74989,11.290428 9.6177774,10.656203 10.485665,10.021976 11.628871,9.8160005 11.787498,10.055357 c 0.547797,0.826587 -0.388007,1.040573 -1.60417,1.751508 -1.2428825,0.726555 -1.21164,1.201882 -1.5905594,1.021077 z"
|
||||
style="fill:url(#radialGradient16026);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssscsssssssssccsssscssssssssssccssssssssssccssscc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15048-0"
|
||||
d="m 14.875,20.53125 c -0.24744,-1.008112 -0.812509,-3.76047 -0.28125,-5.5625 0.46467,-1.576161 1.757572,-1.734405 2.71875,-2.40625 1.026178,-0.717277 1.210032,-1.427293 0.875,-1.78125 C 17.768795,10.33889 17.540534,10.76011 17.0625,10.875 16.584465,10.989934 15.768334,11.103123 15.65625,11 14.989442,10.386502 17,9.03125 17,8.03125 17,7.03125 17.0087,6.3808901 16.34375,6.25 15.678828,6.11911 13.148433,8.676048 12.5,9.09375 11.646597,9.6434882 11.906981,8.9310693 10.59375,9.25 8.9941229,9.6384848 8.2559976,10.597308 7.0625,11.53125 6.4657512,11.998223 5.8652239,11.984132 5.03125,12.21875 4.5568168,12.35222 3.535065,12.881455 3.5,13.28125 c -0.060943,0.694835 2.0093259,1.119928 2.21875,2.09375 0.1564806,0.727634 -0.588708,1.464284 -1.0625,1.84375 l 0.40625,0.5 C 5.3290358,17.505278 5.6564569,17.182427 5.9375,16.78125 6.2185431,16.380073 6.4747018,15.858925 6.34375,15.25 6.2482677,14.806007 5.9668899,14.485542 5.6875,14.25 5.4081101,14.014458 5.1156093,13.847157 4.84375,13.6875 4.5964026,13.542239 4.3818209,13.411048 4.25,13.3125 c 0.056884,-0.04472 0.109393,-0.0763 0.1875,-0.125 0.2644989,-0.164909 0.6088093,-0.30403 0.75,-0.34375 0.7512683,-0.211351 1.4858894,-0.214562 2.25,-0.8125 C 8.6969062,11.045733 9.3392908,10.217604 10.75,9.875 11.3108,9.7388044 11.309056,9.7686666 11.53125,9.84375 11.642347,9.881292 11.869425,9.9716174 12.125,9.9375 12.380575,9.903383 12.59035,9.7882329 12.84375,9.625 13.095556,9.4627939 13.345191,9.2369772 13.6875,8.9375 c 0.342309,-0.2994772 0.734895,-0.669472 1.125,-1 0.390105,-0.330528 0.791186,-0.6415148 1.09375,-0.84375 0.141196,-0.094376 0.264497,-0.1510396 0.34375,-0.1875 -0.0063,-1.175e-4 0.06242,-0.013531 0.03125,0 -6.59e-4,0.00271 0.0095,-0.019214 0.03125,0.0625 0.04352,0.1634288 0.0625,0.5606624 0.0625,1.0625 0,0.037661 -0.06933,0.2361029 -0.21875,0.46875 C 16.006835,8.7326471 15.779004,9.0021569 15.5625,9.28125 15.345996,9.5603431 15.144106,9.8391727 15,10.1875 c -0.07205,0.174164 -0.115542,0.352832 -0.09375,0.59375 0.02179,0.240918 0.127992,0.517743 0.3125,0.6875 0.176254,0.162163 0.285827,0.17031 0.375,0.1875 0.08917,0.01719 0.177381,0.02972 0.25,0.03125 0.145239,0.003 0.281893,-0.01457 0.4375,-0.03125 0.311215,-0.03336 0.664759,-0.09067 0.9375,-0.15625 0.258546,-0.06214 0.327522,-0.12533 0.4375,-0.1875 -0.0741,0.15647 -0.290199,0.419202 -0.71875,0.71875 -0.390388,0.272873 -0.921593,0.505247 -1.5,0.875 -0.578407,0.369753 -1.161714,0.939534 -1.4375,1.875 -0.615212,2.086799 -0.0078,4.855725 0.25,5.90625 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
1421
src/desktoptheme/air/icons/applications.svg
Normal file
After Width: | Height: | Size: 282 KiB |
2896
src/desktoptheme/air/icons/apport.svg
Normal file
After Width: | Height: | Size: 124 KiB |
768
src/desktoptheme/air/icons/audio.svg
Normal file
@ -0,0 +1,768 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="26.528891mm"
|
||||
height="6.773334mm"
|
||||
id="svg7538"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="audio.svgz">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="68.048568"
|
||||
inkscape:cy="27.523504"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
gridtolerance="10"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="mm"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
id="grid7639"
|
||||
type="xygrid"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="1.5225854e-05" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs7540">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4461">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4463" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4465" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.017716,0,0,0.960169,5.524222,-18.774756)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3289"
|
||||
id="linearGradient2867"
|
||||
y2="65.760353"
|
||||
x2="72.498932"
|
||||
y1="65.760353"
|
||||
x1="18.01074" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.990365,0,0,1.664158,16.251985,75.514833)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3140"
|
||||
id="radialGradient9168"
|
||||
fy="-117.34602"
|
||||
fx="68.000046"
|
||||
r="27.999956"
|
||||
cy="-117.34602"
|
||||
cx="68.000046" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.511504,0,0,0.77135,67.773305,6.6291413)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient2916"
|
||||
id="linearGradient6243"
|
||||
y2="67.528122"
|
||||
x2="90.409752"
|
||||
y1="67.528122"
|
||||
x1="38.875084" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(5.467529,0,0,5.820575,24.290213,-2.0656323)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient2895"
|
||||
id="linearGradient6238"
|
||||
y2="5.9006019"
|
||||
x2="10.88339"
|
||||
y1="3.4375"
|
||||
x1="11.543377" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.511504,0,0,0.96108,67.773305,4.8320565)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient2916"
|
||||
id="linearGradient6233"
|
||||
y2="67.528122"
|
||||
x2="90.409752"
|
||||
y1="67.528122"
|
||||
x1="38.875084" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.511504,0,0,1.80649,68.030435,-6.0981568)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient2916"
|
||||
id="linearGradient6228"
|
||||
y2="67.528122"
|
||||
x2="90.409752"
|
||||
y1="67.528122"
|
||||
x1="38.875084" />
|
||||
<linearGradient
|
||||
id="linearGradient2895">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop2897" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
id="stop2899" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3140">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop3142" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
id="stop3144" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2916">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop2918" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
id="stop2920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3289">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop3291" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop3294" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4249">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4251" />
|
||||
<stop
|
||||
id="stop4253"
|
||||
offset="0.47000003"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.51724136;"
|
||||
offset="0.75125003"
|
||||
id="stop4255" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient4467"
|
||||
x1="6.84375"
|
||||
y1="313.75"
|
||||
x2="9"
|
||||
y2="317.48718"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-19)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-18.999997)"
|
||||
x1="2"
|
||||
y1="319.875"
|
||||
x2="9.0017433"
|
||||
y2="319.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4595"
|
||||
x1="11"
|
||||
y1="295.45349"
|
||||
x2="11"
|
||||
y2="305.26187"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,600.72139)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4597"
|
||||
x1="11"
|
||||
y1="294.65607"
|
||||
x2="11"
|
||||
y2="306.06265"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,600.72139)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4599"
|
||||
x1="18.001677"
|
||||
y1="292.28323"
|
||||
x2="18.001677"
|
||||
y2="309.51492"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,600.72139)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient2967"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-19)"
|
||||
x1="4.3583236"
|
||||
y1="322.93573"
|
||||
x2="4.8440728"
|
||||
y2="321.04025" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4126"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(140,-18.999997)"
|
||||
x1="2"
|
||||
y1="319.875"
|
||||
x2="9.0017433"
|
||||
y2="319.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient4128"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(140,-19)"
|
||||
x1="7.3354983"
|
||||
y1="314.60419"
|
||||
x2="9"
|
||||
y2="317.48718" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4468"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-18.999997)"
|
||||
x1="2"
|
||||
y1="319.875"
|
||||
x2="9.0017433"
|
||||
y2="319.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient4470"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-19)"
|
||||
x1="6.84375"
|
||||
y1="313.75"
|
||||
x2="9"
|
||||
y2="317.48718" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4474"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,600.72139)"
|
||||
x1="11"
|
||||
y1="294.65607"
|
||||
x2="11"
|
||||
y2="306.06265" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4476"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,600.72139)"
|
||||
x1="11"
|
||||
y1="295.45349"
|
||||
x2="11"
|
||||
y2="305.26187" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient4478"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-19)"
|
||||
x1="4.3583236"
|
||||
y1="322.93573"
|
||||
x2="4.8440728"
|
||||
y2="321.04025" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4662"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-18.999997)"
|
||||
x1="2"
|
||||
y1="319.875"
|
||||
x2="9.0017433"
|
||||
y2="319.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient4664"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-19)"
|
||||
x1="6.84375"
|
||||
y1="313.75"
|
||||
x2="9"
|
||||
y2="317.48718" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,600.72139)"
|
||||
x1="11"
|
||||
y1="295.45349"
|
||||
x2="11"
|
||||
y2="305.26187" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4461"
|
||||
id="linearGradient4670"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-19)"
|
||||
x1="4.3583236"
|
||||
y1="322.93573"
|
||||
x2="4.8440728"
|
||||
y2="321.04025" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata7543">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
transform="translate(0,-1028.3622)">
|
||||
<g
|
||||
transform="translate(243.69021,330.74699)"
|
||||
id="WhiteBackgroundLayer"
|
||||
style="display:none">
|
||||
<rect
|
||||
width="55.453815"
|
||||
height="104.63548"
|
||||
rx="2.1937749"
|
||||
ry="1.9589152"
|
||||
x="3.8541794"
|
||||
y="-7.9516411"
|
||||
id="Background"
|
||||
style="opacity:0.69897964;fill:url(#linearGradient2867);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
id="Overlay"
|
||||
style="display:none"
|
||||
transform="translate(211.87409,307.65814)">
|
||||
<rect
|
||||
width="128.05061"
|
||||
height="127.79347"
|
||||
x="1.0394411e-06"
|
||||
y="-0.054732177"
|
||||
id="spacerover"
|
||||
style="fill:none" />
|
||||
<rect
|
||||
width="13.170826"
|
||||
height="102.8517"
|
||||
rx="0"
|
||||
ry="0"
|
||||
x="70.721039"
|
||||
y="16.672493"
|
||||
id="over5"
|
||||
style="opacity:0.22540983;fill:url(#linearGradient6233);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<rect
|
||||
width="13.170826"
|
||||
height="31.863861"
|
||||
rx="0"
|
||||
ry="0"
|
||||
x="70.721039"
|
||||
y="16.132019"
|
||||
id="over4"
|
||||
style="opacity:0.22540983;fill:url(#linearGradient6243);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
d="M 60.854303,17.942584 C 60.333693,17.942584 60,18.479714 60,19.03394 l 0,3.092181 c 10.885517,18.631489 33.205893,8.369177 48.52429,5.093002 l 0,-8.185183 c 0,-0.554226 -0.33368,-1.091356 -0.85429,-1.091356 l -46.815697,0 z"
|
||||
id="over3"
|
||||
style="opacity:0.48360656;fill:url(#linearGradient6238);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
width="13.170826"
|
||||
height="71.838249"
|
||||
rx="0"
|
||||
ry="0"
|
||||
x="70.978165"
|
||||
y="16.157631"
|
||||
id="over2"
|
||||
style="opacity:0.22540983;fill:url(#linearGradient6228);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<rect
|
||||
width="55.460392"
|
||||
height="61.206009"
|
||||
rx="2.0960798"
|
||||
ry="1.9391078"
|
||||
x="40.866707"
|
||||
y="-119.74129"
|
||||
transform="scale(1,-1)"
|
||||
id="over1"
|
||||
style="opacity:0.41000001;fill:url(#radialGradient9168);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-44.40527,477.4043)"
|
||||
id="layer4"
|
||||
style="display:inline" />
|
||||
<g
|
||||
transform="translate(-44.40527,477.4043)"
|
||||
id="layer5"
|
||||
style="display:inline" />
|
||||
<rect
|
||||
width="1"
|
||||
height="0"
|
||||
x="-130.87469"
|
||||
y="415.87164"
|
||||
id="rect1327"
|
||||
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<rect
|
||||
width="1"
|
||||
height="0"
|
||||
x="-166.0015"
|
||||
y="388.34402"
|
||||
id="rect2482"
|
||||
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<g
|
||||
transform="matrix(-0.782995,0,0,0.650879,-2647.7976,1001.6455)"
|
||||
id="g4640"
|
||||
style="opacity:0.40163933" />
|
||||
<g
|
||||
transform="matrix(-0.782995,0,0,0.650879,-2647.7976,1001.6455)"
|
||||
id="g4646"
|
||||
style="opacity:0.40163933" />
|
||||
<g
|
||||
transform="matrix(1,0,0,0.650879,553.16553,1008.9733)"
|
||||
id="g4730"
|
||||
style="opacity:0.40163933" />
|
||||
<g
|
||||
transform="matrix(1,0,0,0.650879,553.16553,1008.9733)"
|
||||
id="g4748"
|
||||
style="opacity:0.40163933" />
|
||||
<g
|
||||
transform="translate(116.60933,591.60035)"
|
||||
id="g3021"
|
||||
style="display:inline" />
|
||||
<g
|
||||
transform="translate(116.60933,591.60035)"
|
||||
id="g3023"
|
||||
style="display:inline" />
|
||||
<rect
|
||||
width="1"
|
||||
height="0"
|
||||
x="30.139944"
|
||||
y="530.06769"
|
||||
id="rect3067"
|
||||
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<g
|
||||
id="audio-volume-high"
|
||||
transform="translate(0,740.00002)">
|
||||
<g
|
||||
id="g3970">
|
||||
<rect
|
||||
style="opacity:0.8;fill:#272727;fill-opacity:0;stroke:none"
|
||||
id="rect3170"
|
||||
width="24"
|
||||
height="24"
|
||||
x="0"
|
||||
y="288.36218" />
|
||||
<g
|
||||
id="g4770"
|
||||
transform="matrix(0.9572267,0,0,0.91718673,0.0427733,24.875336)">
|
||||
<path
|
||||
id="path4450"
|
||||
d="m 8,294.36218 c -0.3282132,0 -0.7656476,0.0547 -1.15625,0.375 l -3.1875,2.625 -0.65625,0 c -1.0909648,0 -2,0.90904 -2,2 l 0,2 c 0,1.09096 0.9090352,2 2,2 l 0.65625,0 3.21875,2.625 c 0.3629663,0.29358 0.7678965,0.375 1.125,0.375 1.0909648,0 2,-0.90904 2,-2 l 0,-8 c 0,-1.09096 -0.9090352,-2 -2,-2 z m 0,1 c 0.554,0 1,0.446 1,1 l 0,8 c 0,0.554 -0.446,1 -1,1 -0.1857529,0 -0.3658187,-0.0477 -0.5,-0.15625 l -3.5,-2.84375 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-2 c 0,-0.554 0.446,-1 1,-1 l 1,0 3.46875,-2.84375 C 7.6124536,295.40058 7.7995824,295.36218 8,295.36218 Z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
id="rect3635"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
style="fill:url(#linearGradient4555);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4467);fill-opacity:1;stroke:none"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
id="path4459"
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4605"
|
||||
d="m 19.5625,312.34639 a 0.97236903,0.97236903 0 0 1 -0.46875,-0.1875 l -1.6875,-1.25 a 0.97236903,0.97236903 0 0 1 -0.21875,-1.3125 c 3.708501,-5.50816 3.71013,-12.96249 0,-18.46875 a 0.97236903,0.97236903 0 0 1 0.21875,-1.3125 l 1.65625,-1.25 a 0.97236903,0.97236903 0 0 1 1.40625,0.25 c 4.665051,6.92347 4.695926,16.1654 0.03125,23.09375 a 0.97236903,0.97236903 0 0 1 -0.9375,0.4375 z m 0.125,-0.96875 c 4.438491,-6.5924 4.409556,-15.44059 -0.03125,-22.03125 L 18,290.59639 c 3.935722,5.84106 3.933671,13.68865 0,19.53125 l 1.6875,1.25 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4574"
|
||||
d="M 19.6875,311.37764 18,310.12764 c 3.933671,-5.8426 3.935722,-13.69019 0,-19.53125 l 1.65625,-1.25 c 4.440806,6.59066 4.469741,15.43885 0.03125,22.03125 z"
|
||||
style="fill:url(#linearGradient4599);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4616"
|
||||
d="m 16.28125,309.94014 a 1.0237486,1.0237486 0 0 1 -0.5,-0.21875 l -1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 -0.21875,-1.375 c 2.722101,-4.04308 2.7232,-9.52096 0,-13.5625 a 1.0237486,1.0237486 0 0 1 0.21875,-1.375 l 1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 1.46875,0.25 c 3.690939,5.47777 3.688695,12.77126 0,18.25 a 1.0237486,1.0237486 0 0 1 -0.96875,0.46875 z m 0.125,-1.03125 c 3.45216,-5.12742 3.45396,-11.99893 0,-17.125 l -1.625,1.21875 c 2.960537,4.39378 2.958994,10.29257 0,14.6875 l 1.625,1.21875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4629"
|
||||
d="m 13.03125,307.47139 a 1.0005882,1.0005882 0 0 1 -0.46875,-0.1875 l -1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 -0.25,-1.375 c 1.741743,-2.58698 1.742336,-6.07043 0,-8.65625 a 1.0005882,1.0005882 0 0 1 0.25,-1.375 l 1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 1.4375,0.25 c 2.6981,4.00429 2.696381,9.33887 0,13.34375 a 1.0005882,1.0005882 0 0 1 -0.96875,0.4375 z m 0.125,-1 c 2.465828,-3.66244 2.467114,-8.55727 0,-12.21875 l -1.625,1.21875 c 1.973691,2.92918 1.972663,6.85129 0,9.78125 l 1.625,1.21875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4578"
|
||||
d="m 16.40625,308.90889 -1.625,-1.21875 c 2.958994,-4.39493 2.960537,-10.29372 0,-14.6875 l 1.625,-1.21875 c 3.45396,5.12607 3.45216,11.99758 0,17.125 z"
|
||||
style="fill:url(#linearGradient4597);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4582"
|
||||
d="m 13.15625,306.47139 -1.625,-1.21875 c 1.972663,-2.92996 1.973691,-6.85207 0,-9.78125 l 1.625,-1.21875 c 2.467114,3.66148 2.465828,8.55631 0,12.21875 z"
|
||||
style="fill:url(#linearGradient4595);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
id="path2965"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
style="fill:url(#linearGradient2967);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="audio-volume-medium"
|
||||
transform="translate(24,740.00002)">
|
||||
<g
|
||||
id="g3137">
|
||||
<rect
|
||||
y="288.36218"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect3139"
|
||||
style="opacity:0.8;fill:#272727;fill-opacity:0;stroke:none" />
|
||||
<g
|
||||
id="g3970-4">
|
||||
<rect
|
||||
style="opacity:0.8;fill:#272727;fill-opacity:0;stroke:none"
|
||||
id="rect3170-8"
|
||||
width="24"
|
||||
height="24"
|
||||
x="0"
|
||||
y="288.36218" />
|
||||
<g
|
||||
id="g4770-0"
|
||||
transform="matrix(0.9572267,0,0,0.91718673,0.0427733,24.875336)">
|
||||
<path
|
||||
id="path4450-0"
|
||||
d="m 8,294.36218 c -0.3282132,0 -0.7656476,0.0547 -1.15625,0.375 l -3.1875,2.625 -0.65625,0 c -1.0909648,0 -2,0.90904 -2,2 l 0,2 c 0,1.09096 0.9090352,2 2,2 l 0.65625,0 3.21875,2.625 c 0.3629663,0.29358 0.7678965,0.375 1.125,0.375 1.0909648,0 2,-0.90904 2,-2 l 0,-8 c 0,-1.09096 -0.9090352,-2 -2,-2 z m 0,1 c 0.554,0 1,0.446 1,1 l 0,8 c 0,0.554 -0.446,1 -1,1 -0.1857529,0 -0.3658187,-0.0477 -0.5,-0.15625 l -3.5,-2.84375 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-2 c 0,-0.554 0.446,-1 1,-1 l 1,0 3.46875,-2.84375 C 7.6124536,295.40058 7.7995824,295.36218 8,295.36218 Z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
id="rect3635-8"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
style="fill:url(#linearGradient4468);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4470);fill-opacity:1;stroke:none"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
id="path4459-0"
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4605-4"
|
||||
d="m 19.5625,312.34639 a 0.97236903,0.97236903 0 0 1 -0.46875,-0.1875 l -1.6875,-1.25 a 0.97236903,0.97236903 0 0 1 -0.21875,-1.3125 c 3.708501,-5.50816 3.71013,-12.96249 0,-18.46875 a 0.97236903,0.97236903 0 0 1 0.21875,-1.3125 l 1.65625,-1.25 a 0.97236903,0.97236903 0 0 1 1.40625,0.25 c 4.665051,6.92347 4.695926,16.1654 0.03125,23.09375 a 0.97236903,0.97236903 0 0 1 -0.9375,0.4375 z m 0.125,-0.96875 c 4.438491,-6.5924 4.409556,-15.44059 -0.03125,-22.03125 L 18,290.59639 c 3.935722,5.84106 3.933671,13.68865 0,19.53125 l 1.6875,1.25 z"
|
||||
style="fill:#000000;fill-opacity:0.19607843;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4616-3"
|
||||
d="m 16.28125,309.94014 a 1.0237486,1.0237486 0 0 1 -0.5,-0.21875 l -1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 -0.21875,-1.375 c 2.722101,-4.04308 2.7232,-9.52096 0,-13.5625 a 1.0237486,1.0237486 0 0 1 0.21875,-1.375 l 1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 1.46875,0.25 c 3.690939,5.47777 3.688695,12.77126 0,18.25 a 1.0237486,1.0237486 0 0 1 -0.96875,0.46875 z m 0.125,-1.03125 c 3.45216,-5.12742 3.45396,-11.99893 0,-17.125 l -1.625,1.21875 c 2.960537,4.39378 2.958994,10.29257 0,14.6875 l 1.625,1.21875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4629-4"
|
||||
d="m 13.03125,307.47139 a 1.0005882,1.0005882 0 0 1 -0.46875,-0.1875 l -1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 -0.25,-1.375 c 1.741743,-2.58698 1.742336,-6.07043 0,-8.65625 a 1.0005882,1.0005882 0 0 1 0.25,-1.375 l 1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 1.4375,0.25 c 2.6981,4.00429 2.696381,9.33887 0,13.34375 a 1.0005882,1.0005882 0 0 1 -0.96875,0.4375 z m 0.125,-1 c 2.465828,-3.66244 2.467114,-8.55727 0,-12.21875 l -1.625,1.21875 c 1.973691,2.92918 1.972663,6.85129 0,9.78125 l 1.625,1.21875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4578-0"
|
||||
d="m 16.40625,308.90889 -1.625,-1.21875 c 2.958994,-4.39493 2.960537,-10.29372 0,-14.6875 l 1.625,-1.21875 c 3.45396,5.12607 3.45216,11.99758 0,17.125 z"
|
||||
style="fill:url(#linearGradient4474);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4582-3"
|
||||
d="m 13.15625,306.47139 -1.625,-1.21875 c 1.972663,-2.92996 1.973691,-6.85207 0,-9.78125 l 1.625,-1.21875 c 2.467114,3.66148 2.465828,8.55631 0,12.21875 z"
|
||||
style="fill:url(#linearGradient4476);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
id="path2965-7"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
style="fill:url(#linearGradient4478);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(47,740.00002)"
|
||||
id="audio-volume-low">
|
||||
<g
|
||||
id="g3945"
|
||||
transform="translate(1,0)">
|
||||
<rect
|
||||
style="opacity:0.8;fill:#272727;fill-opacity:0;stroke:none"
|
||||
id="rect3947"
|
||||
width="24"
|
||||
height="24"
|
||||
x="0"
|
||||
y="288.36218" />
|
||||
<g
|
||||
id="g4770-0-2"
|
||||
transform="matrix(0.9572267,0,0,0.91718673,-0.9572267,24.875336)">
|
||||
<path
|
||||
id="path4450-0-4"
|
||||
d="m 8,294.36218 c -0.3282132,0 -0.7656476,0.0547 -1.15625,0.375 l -3.1875,2.625 -0.65625,0 c -1.0909648,0 -2,0.90904 -2,2 l 0,2 c 0,1.09096 0.9090352,2 2,2 l 0.65625,0 3.21875,2.625 c 0.3629663,0.29358 0.7678965,0.375 1.125,0.375 1.0909648,0 2,-0.90904 2,-2 l 0,-8 c 0,-1.09096 -0.9090352,-2 -2,-2 z m 0,1 c 0.554,0 1,0.446 1,1 l 0,8 c 0,0.554 -0.446,1 -1,1 -0.1857529,0 -0.3658187,-0.0477 -0.5,-0.15625 l -3.5,-2.84375 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-2 c 0,-0.554 0.446,-1 1,-1 l 1,0 3.46875,-2.84375 C 7.6124536,295.40058 7.7995824,295.36218 8,295.36218 Z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
id="rect3635-8-3"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
style="fill:url(#linearGradient4662);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4664);fill-opacity:1;stroke:none"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
id="path4459-0-1"
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4605-4-4"
|
||||
d="m 19.5625,312.34639 a 0.97236903,0.97236903 0 0 1 -0.46875,-0.1875 l -1.6875,-1.25 a 0.97236903,0.97236903 0 0 1 -0.21875,-1.3125 c 3.708501,-5.50816 3.71013,-12.96249 0,-18.46875 a 0.97236903,0.97236903 0 0 1 0.21875,-1.3125 l 1.65625,-1.25 a 0.97236903,0.97236903 0 0 1 1.40625,0.25 c 4.665051,6.92347 4.695926,16.1654 0.03125,23.09375 a 0.97236903,0.97236903 0 0 1 -0.9375,0.4375 z m 0.125,-0.96875 c 4.438491,-6.5924 4.409556,-15.44059 -0.03125,-22.03125 L 18,290.59639 c 3.935722,5.84106 3.933671,13.68865 0,19.53125 l 1.6875,1.25 z"
|
||||
style="fill:#000000;fill-opacity:0.19607843;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4616-3-2"
|
||||
d="m 16.28125,309.94014 a 1.0237486,1.0237486 0 0 1 -0.5,-0.21875 l -1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 -0.21875,-1.375 c 2.722101,-4.04308 2.7232,-9.52096 0,-13.5625 a 1.0237486,1.0237486 0 0 1 0.21875,-1.375 l 1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 1.46875,0.25 c 3.690939,5.47777 3.688695,12.77126 0,18.25 a 1.0237486,1.0237486 0 0 1 -0.96875,0.46875 z m 0.125,-1.03125 c 3.45216,-5.12742 3.45396,-11.99893 0,-17.125 l -1.625,1.21875 c 2.960537,4.39378 2.958994,10.29257 0,14.6875 l 1.625,1.21875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4629-4-0"
|
||||
d="m 13.03125,307.47139 a 1.0005882,1.0005882 0 0 1 -0.46875,-0.1875 l -1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 -0.25,-1.375 c 1.741743,-2.58698 1.742336,-6.07043 0,-8.65625 a 1.0005882,1.0005882 0 0 1 0.25,-1.375 l 1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 1.4375,0.25 c 2.6981,4.00429 2.696381,9.33887 0,13.34375 a 1.0005882,1.0005882 0 0 1 -0.96875,0.4375 z m 0.125,-1 c 2.465828,-3.66244 2.467114,-8.55727 0,-12.21875 l -1.625,1.21875 c 1.973691,2.92918 1.972663,6.85129 0,9.78125 l 1.625,1.21875 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4582-3-4"
|
||||
d="m 13.15625,306.47139 -1.625,-1.21875 c 1.972663,-2.92996 1.973691,-6.85207 0,-9.78125 l 1.625,-1.21875 c 2.467114,3.66148 2.465828,8.55631 0,12.21875 z"
|
||||
style="fill:url(#linearGradient4668);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccccssccc"
|
||||
id="path2965-7-3"
|
||||
d="m 8,295.36218 c -0.2004176,0 -0.3875464,0.0384 -0.53125,0.15625 L 4,298.36218 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,2.01282 c 0,0.554 0.446,1 1,1 l 1,0 3.5,2.83093 c 0.1341813,0.10853 0.3142471,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-8 c 0,-0.554 -0.446,-1 -1,-1 z"
|
||||
style="fill:url(#linearGradient4670);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="217.82828"
|
||||
x="122"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4042"
|
||||
style="opacity:0.8;fill:#272727;fill-opacity:0;stroke:none" />
|
||||
<g
|
||||
id="audio-volume-muted"
|
||||
transform="translate(-61,774.10923)">
|
||||
<rect
|
||||
y="254.25298"
|
||||
x="131"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4016"
|
||||
style="opacity:0.8;fill:#272727;fill-opacity:0;stroke:none" />
|
||||
<g
|
||||
id="g4682"
|
||||
transform="matrix(0.9173138,0,0,0.91718673,11.831892,22.05064)">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.19607843;stroke:none"
|
||||
d="m 150.5625,278.23718 a 0.97236903,0.97236903 0 0 1 -0.46875,-0.1875 l -1.6875,-1.25 a 0.97236903,0.97236903 0 0 1 -0.21875,-1.3125 c 3.7085,-5.50816 3.71013,-12.96249 0,-18.46875 a 0.97236903,0.97236903 0 0 1 0.21875,-1.3125 l 1.65625,-1.25 a 0.97236903,0.97236903 0 0 1 1.40625,0.25 c 4.66505,6.92347 4.69593,16.1654 0.0313,23.09375 a 0.97236903,0.97236903 0 0 1 -0.9375,0.4375 z m 0.125,-0.96875 c 4.43849,-6.5924 4.40956,-15.44059 -0.0313,-22.03125 l -1.65625,1.25 c 3.93572,5.84106 3.93367,13.68865 0,19.53125 l 1.6875,1.25 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.19607843;stroke:none"
|
||||
d="m 147.28125,275.83093 a 1.0237486,1.0237486 0 0 1 -0.5,-0.21875 l -1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 -0.21875,-1.375 c 2.7221,-4.04308 2.7232,-9.52096 0,-13.5625 a 1.0237486,1.0237486 0 0 1 0.21875,-1.375 l 1.625,-1.21875 a 1.0237486,1.0237486 0 0 1 1.46875,0.25 c 3.69094,5.47777 3.68869,12.77126 0,18.25 a 1.0237486,1.0237486 0 0 1 -0.96875,0.46875 z m 0.125,-1.03125 c 3.45216,-5.12742 3.45396,-11.99893 0,-17.125 l -1.625,1.21875 c 2.96054,4.39378 2.95899,10.29257 0,14.6875 l 1.625,1.21875 z"
|
||||
id="path4028"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.19607843;stroke:none"
|
||||
d="m 144.03125,273.36218 a 1.0005882,1.0005882 0 0 1 -0.46875,-0.1875 l -1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 -0.25,-1.375 c 1.74174,-2.58698 1.74234,-6.07043 0,-8.65625 a 1.0005882,1.0005882 0 0 1 0.25,-1.375 l 1.625,-1.21875 a 1.0005882,1.0005882 0 0 1 1.4375,0.25 c 2.6981,4.00429 2.69638,9.33887 0,13.34375 a 1.0005882,1.0005882 0 0 1 -0.96875,0.4375 z m 0.125,-1 c 2.46583,-3.66244 2.46711,-8.55727 0,-12.21875 l -1.625,1.21875 c 1.97369,2.92918 1.97266,6.85129 0,9.78125 l 1.625,1.21875 z"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(-10,-33.312817)"
|
||||
id="g4044">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.31372549;stroke:none"
|
||||
d="m 149,293.075 c -0.32821,0 -0.76565,0.0547 -1.15625,0.375 l -4.1875,2.925 -0.65625,0 c -1.09096,0 -2,0.90904 -2,2 l 0,3 c 0,1.09096 0.90904,2 2,2 l 0.65625,0 4.21875,2.925 c 0.36297,0.29358 0.7679,0.375 1.125,0.375 1.09096,0 2,-0.90904 2,-2 l 0,-9.6 c 0,-1.09096 -0.90904,-2 -2,-2 z m 0,1 c 0.554,0 1,0.446 1,1 l 0,9.6 c 0,0.554 -0.446,1 -1,1 -0.18575,0 -0.36582,-0.0477 -0.5,-0.15625 l -4.5,-3.14375 -1,0 c -0.277,0 -0.538,-0.1005 -0.71875,-0.28125 C 142.1005,301.913 142,301.652 142,301.375 l 0,-3 c 0,-0.4155 0.23909,-0.76519 0.59825,-0.9166 0.10419,-0.035 0.20646,-0.0833 0.40175,-0.0833 l 1,0 4.46875,-3.14375 c 0.1437,-0.1179 0.33083,-0.1563 0.53125,-0.1563 z m 0,0.96875 -4.375,3.08125 c -0.17452,0.14238 -0.39978,0.22122 -0.625,0.21875 l -1,0 c -0.0325,0 -0.0313,-10e-4 -0.0313,0.0313 l 0,3 c 0,0.0325 -0.001,0.0313 0.0313,0.0313 l 1,0 c 0.22522,-0.002 0.45048,0.0764 0.625,0.21875 l 4.40625,3.05 0,-9.6 c 0,-0.0325 0.001,-0.0313 -0.0313,-0.0313 z m -0.84375,1.64375 0,6.34375 -2.96875,-2.09375 c -0.002,-0.002 -0.12273,-0.0922 -0.125,-0.0937 -0.002,-0.002 -0.15386,-0.0924 -0.15625,-0.0937 -0.002,-10e-4 -0.1225,-0.0614 -0.125,-0.0625 -0.002,-10e-4 -0.15366,-0.0616 -0.15625,-0.0625 -0.003,-9.1e-4 -0.15359,-0.0306 -0.15625,-0.0313 -0.003,-6.8e-4 -0.15355,-0.0308 -0.15625,-0.0313 -0.003,-4.4e-4 -0.15352,-0.031 -0.15625,-0.0313 -0.003,-2.1e-4 -0.15351,-3e-5 -0.15625,0 l -0.15625,0 0,-1.3125 0.15625,0 c 0.003,3e-5 0.15352,2.1e-4 0.15625,0 0.003,-2.1e-4 0.15355,-0.0308 0.15625,-0.0313 0.003,-4.4e-4 0.15359,-0.0306 0.15625,-0.0313 0.003,-6.8e-4 0.15366,-0.0303 0.15625,-0.0313 0.003,-9.1e-4 0.15375,-0.0614 0.15625,-0.0625 0.002,-10e-4 0.12261,-0.0612 0.125,-0.0625 0.002,-10e-4 0.15398,-0.0922 0.15625,-0.0937 0.002,-0.002 0.12288,-0.092 0.125,-0.0937 l 2.96875,-2.225 z"
|
||||
id="path4046"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssssccssssssssccsssscsccscccsssscccscccccccccccccccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.49756099;fill:url(#linearGradient4126);fill-opacity:1;stroke:none"
|
||||
d="m 149,294.075 c -0.20042,0 -0.38755,0.0384 -0.53125,0.15625 L 144,297.375 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,3 c 0,0.554 0.446,1 1,1 l 1,0 4.5,3.14375 c 0.13418,0.10853 0.31425,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-9.6 c 0,-0.554 -0.446,-1 -1,-1 z m 0,0.96875 c 0.0325,0 0.0313,-10e-4 0.0313,0.0313 l 0,9.6 -4.40625,-3.05 c -0.17453,-0.14241 -0.39981,-0.22127 -0.62505,-0.2188 l -1,0 c -0.0325,0 -0.0313,10e-4 -0.0313,-0.0313 l 0,-3 c 0,-0.0325 -0.001,-0.0313 0.0313,-0.0313 l 1,0 c 0.22522,0.002 0.45048,-0.0764 0.625,-0.21875 z"
|
||||
id="path4048"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssssccsssscscccssssccc" />
|
||||
<path
|
||||
style="opacity:0.66341463;fill:url(#linearGradient4128);fill-opacity:1;stroke:none"
|
||||
d="m 149,294.075 c -0.20042,0 -0.38755,0.0384 -0.53125,0.15625 L 144,297.375 l -1,0 c -0.554,0 -1,0.446 -1,1 l 0,3 c 0,0.554 0.446,1 1,1 l 1,0 4.5,3.14375 c 0.13418,0.10853 0.31425,0.15625 0.5,0.15625 0.554,0 1,-0.446 1,-1 l 0,-9.6 c 0,-0.554 -0.446,-1 -1,-1 z m 0,0.96875 c 0.0325,0 0.0313,-10e-4 0.0313,0.0313 l 0,9.6 -4.40625,-3.05 c -0.17453,-0.14241 -0.39981,-0.22127 -0.62505,-0.2188 l -1,0 c -0.0325,0 -0.0313,10e-4 -0.0313,-0.0313 l 0,-3 c 0,-0.0325 -0.001,-0.0313 0.0313,-0.0313 l 1,0 c 0.22522,0.002 0.45048,-0.0764 0.625,-0.21875 z"
|
||||
id="path4050"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssssccsssscscccssssccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 37 KiB |
1661
src/desktoptheme/air/icons/battery.svg
Normal file
After Width: | Height: | Size: 54 KiB |
966
src/desktoptheme/air/icons/bookmarks.svg
Normal file
@ -0,0 +1,966 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="128"
|
||||
height="128"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/Users/david/Progetti/oxygen-svn/theme/svg/actions"
|
||||
sodipodi:docname="bookmarks.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
inkscape:export-filename="/home/pinheiro/pics/oxygen/scalable/actions/rating.png"
|
||||
inkscape:export-xdpi="11.25"
|
||||
inkscape:export-ydpi="11.25">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3640">
|
||||
<stop
|
||||
id="stop3643"
|
||||
offset="0"
|
||||
style="stop-color:#7e0000;stop-opacity:0.50990099" />
|
||||
<stop
|
||||
id="stop3645"
|
||||
offset="1"
|
||||
style="stop-color:#673400;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 64 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="128 : 64 : 1"
|
||||
inkscape:persp3d-origin="64 : 42.666667 : 1"
|
||||
id="perspective102" />
|
||||
<linearGradient
|
||||
id="linearGradient3946">
|
||||
<stop
|
||||
style="stop-color:#7e0000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3948" />
|
||||
<stop
|
||||
style="stop-color:#673400;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3950" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3844">
|
||||
<stop
|
||||
style="stop-color:#faff64;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3846" />
|
||||
<stop
|
||||
style="stop-color:#faff64;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3848" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3379">
|
||||
<stop
|
||||
style="stop-color:#fffc07;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3381" />
|
||||
<stop
|
||||
style="stop-color:#fffc07;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3383" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3363">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3365" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3367" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3309">
|
||||
<stop
|
||||
style="stop-color:#f4ff3f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3311" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3313" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient26907"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-84.002403"
|
||||
y1="-383.9971"
|
||||
x2="-12.0029"
|
||||
y2="-383.9971"
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
id="stop26909" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
id="stop26911" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
|
||||
y2="-383.9975"
|
||||
x2="-23.516129"
|
||||
y1="-383.9971"
|
||||
x1="-84.002403"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3711">
|
||||
<stop
|
||||
id="stop3713"
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3715"
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3081">
|
||||
<stop
|
||||
id="stop3083"
|
||||
offset="0"
|
||||
style="stop-color:#28691f;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3085"
|
||||
offset="1"
|
||||
style="stop-color:#00bf00;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3290">
|
||||
<stop
|
||||
style="stop-color:yellow;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3292" />
|
||||
<stop
|
||||
style="stop-color:#f07800;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3294" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3638">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3640" />
|
||||
<stop
|
||||
id="stop3661"
|
||||
offset="0.06868132"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3659"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3642" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1563">
|
||||
<stop
|
||||
id="stop1565"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1567"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3273">
|
||||
<stop
|
||||
id="stop3275"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.55035973;" />
|
||||
<stop
|
||||
id="stop3277"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient12948">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop12950" />
|
||||
<stop
|
||||
style="stop-color:#c0c0c0;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12952" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.111111,0,138.1081)"
|
||||
r="64.796692"
|
||||
fy="177.29686"
|
||||
fx="80.738739"
|
||||
cy="155.37218"
|
||||
cx="80.738739"
|
||||
id="radialGradient5079"
|
||||
xlink:href="#linearGradient5073"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient5073"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5075"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5077"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<foreignObject
|
||||
id="foreignObject7221"
|
||||
height="1"
|
||||
width="1"
|
||||
y="0"
|
||||
x="0"
|
||||
requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/">
|
||||
<i:pgfRef
|
||||
xlink:href="#adobe_illustrator_pgf" />
|
||||
</foreignObject>
|
||||
<linearGradient
|
||||
id="XMLID_1_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="95.693398"
|
||||
y1="141.1738"
|
||||
x2="32.308601"
|
||||
y2="77.789001">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffc60a;stop-opacity:1;"
|
||||
id="stop7227" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#b03b00;stop-opacity:1;"
|
||||
id="stop7233" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="XMLID_3_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="63.9995"
|
||||
y1="92.865196"
|
||||
x2="63.9995"
|
||||
y2="120.8652"
|
||||
gradientTransform="translate(175.0067,11.74752)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#888A85"
|
||||
id="stop7261" />
|
||||
<stop
|
||||
offset="0.3226"
|
||||
style="stop-color:#A6A7A3"
|
||||
id="stop7263" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#EEEEEC"
|
||||
id="stop7265" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="XMLID_4_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="64.000504"
|
||||
y1="108.8652"
|
||||
x2="64.000504"
|
||||
y2="92.865196">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#EEEEEC"
|
||||
id="stop7270" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop7272" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3081"
|
||||
id="linearGradient2149"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="62.112335"
|
||||
y1="90.513916"
|
||||
x2="67.887672"
|
||||
y2="39.095695" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient26907"
|
||||
id="linearGradient3226"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
|
||||
x1="-70.002899"
|
||||
y1="-383.9971"
|
||||
x2="-11.91648"
|
||||
y2="-383.9971" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3711"
|
||||
id="radialGradient3228"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="343.99899"
|
||||
cy="92"
|
||||
fx="343.99899"
|
||||
fy="92"
|
||||
r="36" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3711"
|
||||
id="linearGradient3230"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.022977,-1.022977,0,111.9686,137.8125)"
|
||||
x1="-88.058083"
|
||||
y1="-131.93112"
|
||||
x2="-45.096584"
|
||||
y2="-131.93112" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3290"
|
||||
id="radialGradient2906"
|
||||
cx="69.526619"
|
||||
cy="60.115833"
|
||||
fx="69.526619"
|
||||
fy="89.655701"
|
||||
r="111.65377"
|
||||
gradientTransform="matrix(0.9439139,-0.3301918,0.332644,0.9509241,-16.097695,27.249949)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3290"
|
||||
id="radialGradient3304"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5227399,0,-1.554444e-8,0.5266221,349.81061,60.575712)"
|
||||
cx="69.526619"
|
||||
cy="60.115833"
|
||||
fx="69.526619"
|
||||
fy="60.115833"
|
||||
r="111.65377" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3363"
|
||||
id="linearGradient3315"
|
||||
x1="219.22163"
|
||||
y1="28.149843"
|
||||
x2="219.22163"
|
||||
y2="116.41813"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-170.08594,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1563"
|
||||
id="linearGradient3345"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-37.771032,-0.1213203)"
|
||||
x1="261.50107"
|
||||
y1="77.652245"
|
||||
x2="200.17728"
|
||||
y2="31.10997" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3363"
|
||||
id="linearGradient3369"
|
||||
x1="177.42397"
|
||||
y1="22.377773"
|
||||
x2="177.60074"
|
||||
y2="93.022789"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3379"
|
||||
id="linearGradient3385"
|
||||
x1="216.88614"
|
||||
y1="122.5867"
|
||||
x2="216.88614"
|
||||
y2="37.969955"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-152,0)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3391">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.55939545"
|
||||
id="feGaussianBlur3393" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3401">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.11157909"
|
||||
id="feGaussianBlur3403" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3363"
|
||||
id="linearGradient3800"
|
||||
x1="63.948792"
|
||||
y1="12.034382"
|
||||
x2="67.219337"
|
||||
y2="12.034382"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3838"
|
||||
x="-0.17816916"
|
||||
width="1.3563383"
|
||||
y="-0.15506857"
|
||||
height="1.3101371">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.46259975"
|
||||
id="feGaussianBlur3840" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3844"
|
||||
id="linearGradient3850"
|
||||
x1="28.637825"
|
||||
y1="120.84999"
|
||||
x2="31.289474"
|
||||
y2="122.08743"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3928">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.18346262"
|
||||
id="feGaussianBlur3930" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3844"
|
||||
id="linearGradient3934"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect"
|
||||
x1="28.637825"
|
||||
y1="120.84999"
|
||||
x2="31.289474"
|
||||
y2="122.08743" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3946"
|
||||
id="radialGradient3956"
|
||||
cx="64.35347"
|
||||
cy="98.207405"
|
||||
fx="64.35347"
|
||||
fy="98.207405"
|
||||
r="60.700505"
|
||||
gradientTransform="matrix(9.1358439e-2,-2.9656957e-8,4.5207376e-8,0.1392616,58.276716,94.261412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_1_"
|
||||
id="linearGradient2475"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="64.07962"
|
||||
y1="-14.227339"
|
||||
x2="64.07962"
|
||||
y2="120.44466" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3259">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.23739589"
|
||||
id="feGaussianBlur3261" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_1_"
|
||||
id="radialGradient3263"
|
||||
cx="64.07962"
|
||||
cy="66.197433"
|
||||
fx="64.07962"
|
||||
fy="66.197433"
|
||||
r="60.700504"
|
||||
gradientTransform="matrix(1,0,0,0.9554688,0,2.9478533)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3946"
|
||||
id="radialGradient3267"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4443044,1.2598841e-8,0,0.1825067,35.563425,89.646593)"
|
||||
cx="64.35347"
|
||||
cy="106.71302"
|
||||
fx="64.35347"
|
||||
fy="106.71302"
|
||||
r="60.700505" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3285">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.26585998"
|
||||
id="feGaussianBlur3287" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3946"
|
||||
id="radialGradient3300"
|
||||
cx="26.573795"
|
||||
cy="73.493042"
|
||||
fx="35.587811"
|
||||
fy="102.79941"
|
||||
r="60.700562"
|
||||
gradientTransform="matrix(4.6812453,-5.2700969e-7,3.571426e-8,0.3172375,-85.242554,44.725131)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3362">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.3785028"
|
||||
id="feGaussianBlur3364" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3309"
|
||||
id="radialGradient3372"
|
||||
cx="64.101562"
|
||||
cy="48.703125"
|
||||
fx="64.101562"
|
||||
fy="48.703125"
|
||||
r="56.812496"
|
||||
gradientTransform="matrix(1,0,0,0.6476898,0,17.158608)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1563"
|
||||
id="radialGradient3382"
|
||||
cx="121.58587"
|
||||
cy="52.85474"
|
||||
fx="121.58587"
|
||||
fy="52.85474"
|
||||
r="3.1883843"
|
||||
gradientTransform="matrix(2.2248115,-0.5961364,0.2773621,1.0351295,-163.57967,70.62501)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3564"
|
||||
x="-0.18218182"
|
||||
width="1.3643636"
|
||||
y="-0.1679142"
|
||||
height="1.3358284">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.40814561"
|
||||
id="feGaussianBlur3566" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1563"
|
||||
id="radialGradient3570"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2538745,-0.4598801,0.2575547,0.7022291,-43.321636,71.69735)"
|
||||
cx="122.69361"
|
||||
cy="52.672272"
|
||||
fx="122.55822"
|
||||
fy="51.026066"
|
||||
r="3.1883843" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3604"
|
||||
x="-0.11538182"
|
||||
width="1.2307636"
|
||||
y="-0.10634566"
|
||||
height="1.2126913">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.25849222"
|
||||
id="feGaussianBlur3606" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1563"
|
||||
id="radialGradient3618"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.2248115,-0.5961364,0.2773621,1.0351295,-163.57967,70.62501)"
|
||||
cx="121.58587"
|
||||
cy="52.85474"
|
||||
fx="121.58587"
|
||||
fy="52.85474"
|
||||
r="3.1883843" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1563"
|
||||
id="radialGradient3620"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2538745,-0.4598801,0.2575547,0.7022291,-43.321636,71.69735)"
|
||||
cx="122.69361"
|
||||
cy="52.672272"
|
||||
fx="122.55822"
|
||||
fy="51.026066"
|
||||
r="3.1883843" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3640"
|
||||
id="radialGradient3638"
|
||||
cx="41.233166"
|
||||
cy="39.832623"
|
||||
fx="41.409943"
|
||||
fy="44.369892"
|
||||
r="8.1317282"
|
||||
gradientTransform="matrix(1,0,0,0.75,0,9.9581557)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3663">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.24178075"
|
||||
id="feGaussianBlur3665" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3309"
|
||||
id="radialGradient3669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.75,0,9.9581557)"
|
||||
cx="41.233166"
|
||||
cy="39.832623"
|
||||
fx="41.409943"
|
||||
fy="44.369892"
|
||||
r="8.1317282" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3309"
|
||||
id="radialGradient3673"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.75,0,9.9581557)"
|
||||
cx="41.233166"
|
||||
cy="39.832623"
|
||||
fx="41.409943"
|
||||
fy="44.369892"
|
||||
r="8.1317282" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8284271"
|
||||
inkscape:cx="50.522502"
|
||||
inkscape:cy="49.822074"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="1247"
|
||||
inkscape:window-height="816"
|
||||
inkscape:window-x="388"
|
||||
inkscape:window-y="110"
|
||||
showgrid="true"
|
||||
inkscape:grid-points="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2302"
|
||||
spacingx="4px"
|
||||
spacingy="4px"
|
||||
empspacing="2"
|
||||
visible="true"
|
||||
enabled="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g3675">
|
||||
<path
|
||||
style="opacity:1;fill:url(#radialGradient3263);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269000000059;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3259)"
|
||||
d="M 64.03125,8.2 C 56.162818,8.2100117 46.828561,34.754451 40.46875,39.3875 C 34.10894,44.020548 5.9844574,44.776082 3.5625,52.2625 C 1.1405426,59.748917 23.465249,76.813524 25.90625,84.29375 C 28.347251,91.77398 20.40967,118.7394 26.78125,123.35625 C 33.15283,127.9731 56.287818,112.02251 64.15625,112.0125 C 72.024682,112.00249 95.202691,127.89555 101.5625,123.2625 C 107.92231,118.62945 99.890544,91.686414 102.3125,84.2 C 104.73446,76.713583 127.03475,59.58648 124.59375,52.10625 C 122.15275,44.626021 94.027829,43.941849 87.65625,39.325 C 81.28467,34.708152 71.899685,8.1899879 64.03125,8.2 z M 64.03125,12.10625 C 64.208046,12.245423 65.56776,12.912264 67.15625,14.85625 C 68.97167,17.077947 71.031426,20.410059 73.0625,23.95 C 75.093573,27.48994 77.113982,31.248819 79.09375,34.5125 C 81.073519,37.776182 82.75512,40.528991 85.40625,42.45 C 88.057376,44.371009 91.18831,45.11637 94.90625,45.98125 C 98.624192,46.846129 102.81606,47.591152 106.8125,48.41875 C 110.80894,49.246347 114.60465,50.166787 117.28125,51.2 C 119.62327,52.104061 120.71845,53.200764 120.90625,53.325 C 120.82618,53.533062 120.57672,54.994782 119.21875,57.10625 C 117.66679,59.519356 115.1453,62.518181 112.40625,65.54375 C 109.66721,68.569316 106.71091,71.652346 104.21875,74.54375 C 101.72659,77.435155 99.632744,79.897501 98.625,83.0125 C 97.617256,86.127495 97.892393,89.334266 98.21875,93.1375 C 98.545107,96.940738 99.114622,101.17466 99.5625,105.23125 C 100.01038,109.28783 100.31178,113.17888 100.15625,116.04375 C 100.02016,118.55052 99.34151,119.89095 99.28125,120.10625 C 99.057443,120.09786 97.552762,120.37027 95.125,119.73125 C 92.350417,119.00093 88.723899,117.49504 85,115.825 C 81.276103,114.15497 77.426259,112.30169 73.90625,110.825 C 70.386242,109.3483 67.4302,108.13334 64.15625,108.1375 C 60.882303,108.14167 57.891241,109.3706 54.375,110.85625 C 50.858761,112.3419 47.032137,114.20799 43.3125,115.8875 C 39.592862,117.567 35.960216,119.05638 33.1875,119.79375 C 30.761373,120.43895 29.286908,120.19088 29.0625,120.2 C 29.004012,119.9864 28.29872,118.6439 28.15625,116.1375 C 27.993428,113.27303 28.281199,109.38271 28.71875,105.325 C 29.156299,101.2673 29.714573,97.035302 30.03125,93.23125 C 30.347928,89.427198 30.609418,86.187425 29.59375,83.075 C 28.578082,79.962573 26.468263,77.522553 23.96875,74.6375 C 21.469238,71.752452 18.527988,68.687339 15.78125,65.66875 C 13.034512,62.650158 10.495601,59.671649 8.9375,57.2625 C 7.5741618,55.154496 7.3592053,53.657399 7.28125,53.45 C 7.2962039,53.537785 8.2681026,52.326785 10.84375,51.325 C 13.517705,50.284977 17.34943,49.350265 21.34375,48.5125 C 25.33807,47.674737 29.534272,46.949339 33.25,46.075 C 36.96573,45.200663 40.103767,44.44025 42.75,42.5125 C 45.396234,40.584748 47.059794,37.812458 49.03125,34.54375 C 51.002705,31.275042 53.009191,27.526347 55.03125,23.98125 C 57.053308,20.436153 59.096493,17.08256 60.90625,14.85625 C 62.489787,12.908229 63.857465,12.244552 64.03125,12.10625 z"
|
||||
id="path3961" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:url(#radialGradient2906);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
id="path3574"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="52.952892"
|
||||
sodipodi:cy="25.510532"
|
||||
sodipodi:r1="121.72647"
|
||||
sodipodi:r2="76.832565"
|
||||
sodipodi:arg1="0.60469864"
|
||||
sodipodi:arg2="1.2330172"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.20136392"
|
||||
inkscape:randomized="0"
|
||||
d="M 153.09403,94.713757 C 144.53658,107.09689 92.616372,93.013297 78.414631,98.001518 C 64.21289,102.98974 32.50348,146.4474 18.082028,142.13539 C 3.6605746,137.82337 1.0106378,84.092245 -8.1220219,72.127031 C -17.254681,60.161818 -68.384124,43.433534 -68.739625,28.385431 C -69.095125,13.337327 -18.812666,-5.7867426 -10.255219,-18.169872 C -1.697772,-30.553002 -1.5880954,-84.349316 12.613645,-89.337536 C 26.815387,-94.325757 60.541592,-52.41396 74.963045,-48.101941 C 89.384498,-43.789923 140.58172,-60.30959 149.71438,-48.344376 C 158.84704,-36.379162 129.40853,8.6478227 129.76403,23.695927 C 130.11953,38.74403 161.65148,82.330628 153.09403,94.713757 z"
|
||||
transform="matrix(0.4934214,0.1726044,-0.1726044,0.4934214,42.377875,49.908537)" />
|
||||
<path
|
||||
id="path2304"
|
||||
d="M 64.03125,8 C 56.162818,8.0100117 46.828561,34.554451 40.46875,39.1875 C 34.10894,43.820548 5.984457,44.576082 3.5625,52.0625 C 1.140543,59.548917 23.465249,76.613524 25.90625,84.09375 C 28.347251,91.57398 20.40967,118.5394 26.78125,123.15625 C 33.15283,127.7731 56.287818,111.82251 64.15625,111.8125 C 72.024682,111.80249 95.202691,127.69555 101.5625,123.0625 C 107.92231,118.42945 99.890544,91.486414 102.3125,84 C 104.73446,76.513583 127.03475,59.38648 124.59375,51.90625 C 122.15275,44.426021 94.027829,43.741849 87.65625,39.125 C 81.28467,34.508152 71.899685,7.9899879 64.03125,8 z M 64.03125,11.90625 C 64.208046,12.045423 65.56776,12.712264 67.15625,14.65625 C 68.97167,16.877947 71.031426,20.210059 73.0625,23.75 C 75.093573,27.28994 77.113982,31.048819 79.09375,34.3125 C 81.073519,37.576182 82.75512,40.328991 85.40625,42.25 C 88.057376,44.171009 91.18831,44.91637 94.90625,45.78125 C 98.624192,46.646129 102.81606,47.391152 106.8125,48.21875 C 110.80894,49.046347 114.60465,49.966787 117.28125,51 C 119.62327,51.904061 120.71845,53.000764 120.90625,53.125 C 120.82618,53.333062 120.57672,54.794782 119.21875,56.90625 C 117.66679,59.319356 115.1453,62.318181 112.40625,65.34375 C 109.66721,68.369316 106.71091,71.452346 104.21875,74.34375 C 101.72659,77.235155 99.632744,79.697501 98.625,82.8125 C 97.617256,85.927495 97.892393,89.134266 98.21875,92.9375 C 98.545107,96.740738 99.114622,100.97466 99.5625,105.03125 C 100.01038,109.08783 100.31178,112.97888 100.15625,115.84375 C 100.02016,118.35052 99.34151,119.69095 99.28125,119.90625 C 99.057443,119.89786 97.552762,120.17027 95.125,119.53125 C 92.350417,118.80093 88.723899,117.29504 85,115.625 C 81.276103,113.95497 77.426259,112.10169 73.90625,110.625 C 70.386242,109.1483 67.4302,107.93334 64.15625,107.9375 C 60.882303,107.94167 57.891241,109.1706 54.375,110.65625 C 50.858761,112.1419 47.032137,114.00799 43.3125,115.6875 C 39.592862,117.367 35.960216,118.85638 33.1875,119.59375 C 30.761373,120.23895 29.286908,119.99088 29.0625,120 C 29.004012,119.7864 28.29872,118.4439 28.15625,115.9375 C 27.993428,113.07303 28.281199,109.18271 28.71875,105.125 C 29.156299,101.0673 29.714573,96.835302 30.03125,93.03125 C 30.347928,89.227198 30.609418,85.987425 29.59375,82.875 C 28.578082,79.762573 26.468263,77.322553 23.96875,74.4375 C 21.469238,71.552452 18.527988,68.487339 15.78125,65.46875 C 13.034512,62.450158 10.495601,59.471649 8.9375,57.0625 C 7.574162,54.954496 7.359205,53.457399 7.28125,53.25 C 7.296204,53.337785 8.268103,52.126785 10.84375,51.125 C 13.517705,50.084977 17.34943,49.150265 21.34375,48.3125 C 25.33807,47.474737 29.534272,46.749339 33.25,45.875 C 36.96573,45.000663 40.103767,44.24025 42.75,42.3125 C 45.396234,40.384748 47.059794,37.612458 49.03125,34.34375 C 51.002705,31.075042 53.009191,27.326347 55.03125,23.78125 C 57.053308,20.236153 59.096493,16.88256 60.90625,14.65625 C 62.489787,12.708229 63.857465,12.044552 64.03125,11.90625 z"
|
||||
style="opacity:1;fill:url(#linearGradient2475);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3409"
|
||||
d="M 60.98796,9.471226 C 62.846491,8.2143022 64.889907,8.0204702 67.219338,9.471226 L 64.037358,15.614216 L 60.98796,9.471226 z"
|
||||
style="fill:url(#linearGradient3800);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3838)" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#radialGradient3372);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
d="M 64.039064,11.90625 C 63.865274,12.044552 62.497594,12.708229 60.914064,14.65625 C 59.104304,16.88256 57.061124,20.236153 55.039064,23.78125 C 53.017004,27.326347 51.010514,31.075042 49.039064,34.34375 C 47.067604,37.612458 45.404044,40.384748 42.757814,42.3125 C 40.111574,44.24025 36.973544,45.000663 33.257814,45.875 C 29.542084,46.749339 25.345884,47.474737 21.351564,48.3125 C 17.357244,49.150265 13.525514,50.084977 10.851564,51.125 C 8.2759131,52.126785 7.3040131,53.337785 7.2890631,53.25 C 7.3670131,53.457399 7.5819731,54.954496 8.9453131,57.0625 C 10.503414,59.471649 13.042324,62.450158 15.789064,65.46875 C 18.535804,68.487339 21.477054,71.552452 23.976564,74.4375 C 26.476074,77.322553 28.585894,79.762573 29.601564,82.875 C 29.865144,83.682722 30.019904,84.511238 30.132814,85.34375 C 32.540654,85.431079 34.961934,85.5 37.414064,85.5 C 64.456484,85.5 88.974124,80.107134 106.91406,71.34375 C 108.71383,69.370041 110.60784,67.338911 112.41406,65.34375 C 115.15311,62.318181 117.67459,59.319356 119.22656,56.90625 C 120.58453,54.794782 120.83398,53.333062 120.91406,53.125 C 120.72626,53.000764 119.63107,51.904061 117.28906,51 C 114.61246,49.966787 110.81674,49.046347 106.82031,48.21875 C 102.82387,47.391152 98.631994,46.646129 94.914064,45.78125 C 91.196124,44.91637 88.065184,44.171009 85.414064,42.25 C 82.762934,40.328991 81.081334,37.576182 79.101564,34.3125 C 77.121794,31.048819 75.101384,27.28994 73.070314,23.75 C 71.039234,20.210059 68.979484,16.877947 67.164064,14.65625 C 65.575574,12.712264 64.215854,12.045423 64.039064,11.90625 z"
|
||||
id="path3370" />
|
||||
<path
|
||||
transform="translate(0,0.3)"
|
||||
d="M 44.96875,33.9375 L 44.1875,35.21875 C 44.177097,35.219516 44.166653,35.219516 44.15625,35.21875 L 42.8125,36.9375 L 41.53125,38.46875 C 41.521947,38.480223 41.511473,38.490697 41.5,38.5 L 40.03125,39.71875 C 40.021947,39.730223 40.011473,39.740697 40,39.75 L 37.125,41.03125 C 37.115697,41.042723 37.105223,41.053197 37.09375,41.0625 L 33.875,41.96875 L 33.375,45.625 L 35.125,45.21875 L 35.125,45.25 L 39.71875,43.75 L 39.75,43.75 L 42.8125,42.0625 L 42.875,42.03125 L 45.78125,39.09375 L 45.8125,39.0625 L 48.96875,34.03125 L 44.96875,33.9375 z"
|
||||
id="path3667"
|
||||
style="fill:url(#radialGradient3669);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3663);opacity:0.64356436"
|
||||
inkscape:original="M 44.84375 33.71875 L 44 35.09375 L 42.65625 36.8125 L 41.375 38.34375 L 39.90625 39.5625 L 37.03125 40.84375 L 33.6875 41.78125 L 33.09375 45.9375 L 35.1875 45.4375 L 39.8125 43.9375 L 42.96875 42.21875 L 45.96875 39.21875 L 49.375 33.8125 L 44.84375 33.71875 z "
|
||||
inkscape:radius="-0.21269609"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
id="path2910"
|
||||
d="M 64.039064,11.90625 C 63.865274,12.044552 62.497594,12.708229 60.914064,14.65625 C 59.104304,16.88256 57.061124,20.236153 55.039064,23.78125 C 53.017004,27.326347 51.010514,31.075042 49.039064,34.34375 C 47.067604,37.612458 45.404044,40.384748 42.757814,42.3125 C 40.111574,44.24025 36.973544,45.000663 33.257814,45.875 C 29.542084,46.749339 25.345884,47.474737 21.351564,48.3125 C 17.357244,49.150265 13.525514,50.084977 10.851564,51.125 C 8.2759131,52.126785 7.3040131,53.337785 7.2890631,53.25 C 7.3670131,53.457399 7.5819731,54.954496 8.9453131,57.0625 C 10.503414,59.471649 13.042324,62.450158 15.789064,65.46875 C 18.535804,68.487339 21.477054,71.552452 23.976564,74.4375 C 26.476074,77.322553 28.585894,79.762573 29.601564,82.875 C 29.865144,83.682722 30.019904,84.511238 30.132814,85.34375 C 32.540654,85.431079 34.961934,85.5 37.414064,85.5 C 64.456484,85.5 88.974124,80.107134 106.91406,71.34375 C 108.71383,69.370041 110.60784,67.338911 112.41406,65.34375 C 115.15311,62.318181 117.67459,59.319356 119.22656,56.90625 C 120.58453,54.794782 120.83398,53.333062 120.91406,53.125 C 120.72626,53.000764 119.63107,51.904061 117.28906,51 C 114.61246,49.966787 110.81674,49.046347 106.82031,48.21875 C 102.82387,47.391152 98.631994,46.646129 94.914064,45.78125 C 91.196124,44.91637 88.065184,44.171009 85.414064,42.25 C 82.762934,40.328991 81.081334,37.576182 79.101564,34.3125 C 77.121794,31.048819 75.101384,27.28994 73.070314,23.75 C 71.039234,20.210059 68.979484,16.877947 67.164064,14.65625 C 65.575574,12.712264 64.215854,12.045423 64.039064,11.90625 z"
|
||||
style="opacity:1;fill:url(#linearGradient3315);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-0.21269609"
|
||||
inkscape:original="M 44.84375 33.71875 L 44 35.09375 L 42.65625 36.8125 L 41.375 38.34375 L 39.90625 39.5625 L 37.03125 40.84375 L 33.6875 41.78125 L 33.09375 45.9375 L 35.1875 45.4375 L 39.8125 43.9375 L 42.96875 42.21875 L 45.96875 39.21875 L 49.375 33.8125 L 44.84375 33.71875 z "
|
||||
style="fill:url(#radialGradient3673);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3663);opacity:0.64356436"
|
||||
id="path3671"
|
||||
d="M 44.96875,33.9375 L 44.1875,35.21875 C 44.177097,35.219516 44.166653,35.219516 44.15625,35.21875 L 42.8125,36.9375 L 41.53125,38.46875 C 41.521947,38.480223 41.511473,38.490697 41.5,38.5 L 40.03125,39.71875 C 40.021947,39.730223 40.011473,39.740697 40,39.75 L 37.125,41.03125 C 37.115697,41.042723 37.105223,41.053197 37.09375,41.0625 L 33.875,41.96875 L 33.375,45.625 L 35.125,45.21875 L 35.125,45.25 L 39.71875,43.75 L 39.75,43.75 L 42.8125,42.0625 L 42.875,42.03125 L 45.78125,39.09375 L 45.8125,39.0625 L 48.96875,34.03125 L 44.96875,33.9375 z"
|
||||
transform="matrix(-1,0,0,1,128.125,0.3)" />
|
||||
<g
|
||||
transform="translate(-132.29928,0)"
|
||||
id="g3339">
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient3369);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
d="M 196.34375,11.90625 C 196.16996,12.044552 194.80228,12.708229 193.21875,14.65625 C 191.40899,16.88256 189.36581,20.236153 187.34375,23.78125 C 185.32169,27.326347 183.3152,31.075042 181.34375,34.34375 C 179.37229,37.612458 177.70873,40.384748 175.0625,42.3125 C 172.41626,44.24025 169.27823,45.000663 165.5625,45.875 C 161.84677,46.749339 157.65057,47.474737 153.65625,48.3125 C 149.66193,49.150265 145.8302,50.084977 143.15625,51.125 C 140.5806,52.126785 139.6087,53.337785 139.59375,53.25 C 139.62377,53.329884 139.71528,53.638731 139.84375,54.0625 C 140.2595,53.69998 141.25985,52.862595 143.15625,52.125 C 145.8302,51.084977 149.66193,50.150265 153.65625,49.3125 C 157.65057,48.474737 161.84677,47.749339 165.5625,46.875 C 169.27823,46.000663 172.41626,45.24025 175.0625,43.3125 C 177.70873,41.384748 179.37229,38.612458 181.34375,35.34375 C 183.3152,32.075042 185.32169,28.326347 187.34375,24.78125 C 189.36581,21.236153 191.40899,17.88256 193.21875,15.65625 C 194.80228,13.708229 196.16996,13.044552 196.34375,12.90625 C 196.52054,13.045423 197.88026,13.712264 199.46875,15.65625 C 201.28417,17.877947 203.34392,21.210059 205.375,24.75 C 207.40607,28.28994 209.42648,32.048819 211.40625,35.3125 C 213.38602,38.576182 215.06762,41.328991 217.71875,43.25 C 220.36987,45.171009 223.50081,45.91637 227.21875,46.78125 C 230.93668,47.646129 235.12856,48.391152 239.125,49.21875 C 243.12143,50.046347 246.91715,50.966787 249.59375,52 C 251.51448,52.74144 252.56925,53.579608 253,53.9375 C 253.13371,53.522484 253.18802,53.204851 253.21875,53.125 C 253.03095,53.000764 251.93576,51.904061 249.59375,51 C 246.91715,49.966787 243.12143,49.046347 239.125,48.21875 C 235.12856,47.391152 230.93668,46.646129 227.21875,45.78125 C 223.50081,44.91637 220.36987,44.171009 217.71875,42.25 C 215.06762,40.328991 213.38602,37.576182 211.40625,34.3125 C 209.42648,31.048819 207.40607,27.28994 205.375,23.75 C 203.34392,20.210059 201.28417,16.877947 199.46875,14.65625 C 197.88026,12.712264 196.52054,12.045423 196.34375,11.90625 z"
|
||||
id="path3317" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient3345);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
d="M 246.78125,49.937636 C 247.42469,50.142466 248.03845,50.379526 248.59375,50.593886 C 250.93576,51.497946 252.03095,52.594656 252.21875,52.718886 C 252.13867,52.926956 251.88922,54.388676 250.53125,56.500136 C 248.97928,58.913246 246.4578,61.912066 243.71875,64.937636 C 241.91253,66.932796 240.01852,68.963926 238.21875,70.937636 C 220.27881,79.701026 195.76117,85.093886 168.71875,85.093886 C 166.59433,85.093886 164.49568,85.039506 162.40625,84.968886 C 162.4184,85.051736 162.42625,85.135936 162.4375,85.218886 C 164.84534,85.306216 167.26662,85.375136 169.71875,85.375136 C 196.76117,85.375136 221.27881,79.982276 239.21875,71.218886 C 241.01852,69.245176 242.91253,67.214046 244.71875,65.218886 C 247.4578,62.193316 249.97928,59.194496 251.53125,56.781386 C 252.88922,54.669926 253.13867,53.208206 253.21875,53.000136 C 253.03095,52.875906 251.93576,51.779196 249.59375,50.875136 C 248.75868,50.552786 247.80629,50.238636 246.78125,49.937636 z"
|
||||
id="path3325"
|
||||
sodipodi:nodetypes="cscsscsccscsscsc" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3842"
|
||||
d="M 25.190679,119.77989 C 26.414679,122.74238 27.241162,124.11897 31.289475,123.31542 L 30.638356,120.21008 L 29.079766,120.3986 L 28.261711,118.57341 L 25.190679,119.77989 z"
|
||||
style="fill:url(#linearGradient3850);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.77153558000000000;filter:url(#filter3928)" />
|
||||
<path
|
||||
id="path3936"
|
||||
d="M 26.03125 94.25 C 24.983755 105.1142 22.21942 119.85075 26.78125 123.15625 C 33.15283 127.7731 56.287818 111.82251 64.15625 111.8125 C 72.024682 111.80249 95.202691 127.69555 101.5625 123.0625 C 106.10279 119.75495 103.30815 105.10184 102.21875 94.25 L 98.34375 94.25 C 98.677864 97.707156 99.164649 101.42777 99.5625 105.03125 C 100.01038 109.08783 100.31178 112.97888 100.15625 115.84375 C 100.02016 118.35052 99.34151 119.69095 99.28125 119.90625 C 99.057443 119.89786 97.552762 120.17027 95.125 119.53125 C 92.350417 118.80093 88.723899 117.29504 85 115.625 C 81.276103 113.95497 77.426259 112.10169 73.90625 110.625 C 70.386242 109.1483 67.4302 107.93334 64.15625 107.9375 C 60.882303 107.94167 57.891241 109.1706 54.375 110.65625 C 50.858761 112.1419 47.032137 114.00799 43.3125 115.6875 C 39.592862 117.367 35.960216 118.85638 33.1875 119.59375 C 30.761373 120.23895 29.286908 119.99088 29.0625 120 C 29.004012 119.7864 28.29872 118.4439 28.15625 115.9375 C 27.993428 113.07303 28.281199 109.18271 28.71875 105.125 C 29.110886 101.48845 29.580993 97.733027 29.90625 94.25 L 26.03125 94.25 z "
|
||||
style="opacity:1;fill:url(#radialGradient3956);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269000000059;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssssssssssssssscssssssscssssssscsssssssc"
|
||||
id="path3375"
|
||||
d="M 64.125001,11.90625 C 63.951211,12.044552 62.583531,12.708229 61.000001,14.65625 C 59.190241,16.88256 57.147061,20.236153 55.125001,23.78125 C 53.102941,27.326347 51.096451,31.075042 49.125001,34.34375 C 47.153541,37.612458 45.489981,40.384748 42.843751,42.3125 C 40.197511,44.24025 37.059481,45.000663 33.343751,45.875 C 29.628021,46.749339 25.431821,47.474737 21.437501,48.3125 C 17.443181,49.150265 13.611451,50.084977 10.937501,51.125 C 8.3618506,52.126785 7.3899506,53.337785 7.3750006,53.25 C 7.4529506,53.457399 7.6679106,54.954496 9.0312506,57.0625 C 10.589351,59.471649 13.128261,62.450158 15.875001,65.46875 C 18.621741,68.487339 21.562991,71.552452 24.062501,74.4375 C 26.562011,77.322553 28.671831,79.762573 29.687501,82.875 C 30.703171,85.987425 30.441681,89.227198 30.125001,93.03125 C 29.808321,96.835302 29.250051,101.0673 28.812501,105.125 C 28.374951,109.18271 28.087181,113.07303 28.250001,115.9375 C 28.392471,118.4439 29.097761,119.7864 29.156251,120 C 29.380661,119.99088 30.855121,120.23895 33.281251,119.59375 C 36.053961,118.85638 39.686611,117.367 43.406251,115.6875 C 47.125881,114.00799 50.952511,112.1419 54.468751,110.65625 C 57.984991,109.1706 60.976051,107.94167 64.250001,107.9375 C 67.523951,107.93334 70.479991,109.1483 74.000001,110.625 C 77.520011,112.10169 81.369851,113.95497 85.093751,115.625 C 88.817651,117.29504 92.444151,118.80093 95.218751,119.53125 C 97.646511,120.17027 99.151181,119.89786 99.375001,119.90625 C 99.435261,119.69095 100.1139,118.35052 100.25,115.84375 C 100.40553,112.97888 100.10412,109.08783 99.656251,105.03125 C 99.208371,100.97466 98.638841,96.740738 98.312501,92.9375 C 97.986141,89.134266 97.710991,85.927495 98.718751,82.8125 C 99.726491,79.697501 101.82033,77.235155 104.3125,74.34375 C 106.80466,71.452346 109.76095,68.369316 112.5,65.34375 C 115.23905,62.318181 117.76053,59.319356 119.3125,56.90625 C 120.67047,54.794782 120.91992,53.333062 121,53.125 C 120.8122,53.000764 119.71701,51.904061 117.375,51 C 114.6984,49.966787 110.90268,49.046347 106.90625,48.21875 C 102.90981,47.391152 98.717931,46.646129 95.000001,45.78125 C 91.282061,44.91637 88.151121,44.171009 85.500001,42.25 C 82.848871,40.328991 81.167271,37.576182 79.187501,34.3125 C 77.207731,31.048819 75.187321,27.28994 73.156251,23.75 C 71.125171,20.210059 69.065421,16.877947 67.250001,14.65625 C 65.661511,12.712264 64.301791,12.045423 64.125001,11.90625 z"
|
||||
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3385);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3391)" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,128.17175,0)"
|
||||
id="g3612">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3614"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
style="opacity:0.60891089;fill:url(#radialGradient3618);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3564)" />
|
||||
<path
|
||||
style="opacity:0.60891089;fill:url(#radialGradient3620);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3604)"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
id="path3616"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3608">
|
||||
<path
|
||||
style="fill:url(#radialGradient3382);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;filter:url(#filter3564);opacity:0.60891089"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
id="path3374"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3568"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
style="fill:url(#radialGradient3570);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;filter:url(#filter3604);opacity:0.60891089" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3385);stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3401)"
|
||||
d="M 64.125001,11.90625 C 63.951211,12.044552 62.583531,12.708229 61.000001,14.65625 C 59.190241,16.88256 57.147061,20.236153 55.125001,23.78125 C 53.102941,27.326347 51.096451,31.075042 49.125001,34.34375 C 47.153541,37.612458 45.489981,40.384748 42.843751,42.3125 C 40.197511,44.24025 37.059481,45.000663 33.343751,45.875 C 29.628021,46.749339 25.431821,47.474737 21.437501,48.3125 C 17.443181,49.150265 13.611451,50.084977 10.937501,51.125 C 8.3618506,52.126785 7.3899506,53.337785 7.3750006,53.25 C 7.4529506,53.457399 7.6679106,54.954496 9.0312506,57.0625 C 10.589351,59.471649 13.128261,62.450158 15.875001,65.46875 C 18.621741,68.487339 21.562991,71.552452 24.062501,74.4375 C 26.562011,77.322553 28.671831,79.762573 29.687501,82.875 C 30.703171,85.987425 30.441681,89.227198 30.125001,93.03125 C 29.808321,96.835302 29.250051,101.0673 28.812501,105.125 C 28.374951,109.18271 28.087181,113.07303 28.250001,115.9375 C 28.392471,118.4439 29.097761,119.7864 29.156251,120 C 29.380661,119.99088 30.855121,120.23895 33.281251,119.59375 C 36.053961,118.85638 39.686611,117.367 43.406251,115.6875 C 47.125881,114.00799 50.952511,112.1419 54.468751,110.65625 C 57.984991,109.1706 60.976051,107.94167 64.250001,107.9375 C 67.523951,107.93334 70.479991,109.1483 74.000001,110.625 C 77.520011,112.10169 81.369851,113.95497 85.093751,115.625 C 88.817651,117.29504 92.444151,118.80093 95.218751,119.53125 C 97.646511,120.17027 99.151181,119.89786 99.375001,119.90625 C 99.435261,119.69095 100.1139,118.35052 100.25,115.84375 C 100.40553,112.97888 100.10412,109.08783 99.656251,105.03125 C 99.208371,100.97466 98.638841,96.740738 98.312501,92.9375 C 97.986141,89.134266 97.710991,85.927495 98.718751,82.8125 C 99.726491,79.697501 101.82033,77.235155 104.3125,74.34375 C 106.80466,71.452346 109.76095,68.369316 112.5,65.34375 C 115.23905,62.318181 117.76053,59.319356 119.3125,56.90625 C 120.67047,54.794782 120.91992,53.333062 121,53.125 C 120.8122,53.000764 119.71701,51.904061 117.375,51 C 114.6984,49.966787 110.90268,49.046347 106.90625,48.21875 C 102.90981,47.391152 98.717931,46.646129 95.000001,45.78125 C 91.282061,44.91637 88.151121,44.171009 85.500001,42.25 C 82.848871,40.328991 81.167271,37.576182 79.187501,34.3125 C 77.207731,31.048819 75.187321,27.28994 73.156251,23.75 C 71.125171,20.210059 69.065421,16.877947 67.250001,14.65625 C 65.661511,12.712264 64.301791,12.045423 64.125001,11.90625 z"
|
||||
id="path3395"
|
||||
sodipodi:nodetypes="cssssssssssssssscssssssscssssssscsssssssc" />
|
||||
<path
|
||||
transform="matrix(-1,0,0,1,128.10515,0)"
|
||||
style="opacity:0.7715356;fill:url(#linearGradient3934);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3928)"
|
||||
d="M 25.190679,119.77989 C 26.414679,122.74238 27.241162,124.11897 31.289475,123.31542 L 30.638356,120.21008 L 29.079766,120.3986 L 28.261711,118.57341 L 25.190679,119.77989 z"
|
||||
id="path3932"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssccsscssssssscsscc"
|
||||
style="opacity:1;fill:url(#radialGradient3267);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269000000059;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3285)"
|
||||
d="M 26.03125,94.25 C 24.983755,105.1142 22.21942,119.85075 26.78125,123.15625 C 33.15283,127.7731 56.287818,110.82251 64.15625,110.8125 C 72.024682,110.80249 95.202691,127.69555 101.5625,123.0625 C 106.10279,119.75495 103.30815,105.10184 102.21875,94.25 L 98.34375,94.25 C 98.677864,97.707156 99.164649,101.42777 99.5625,105.03125 C 100.01038,109.08783 100.31178,112.97888 100.15625,115.84375 C 100.02016,118.35052 99.34151,119.69095 99.28125,119.90625 C 99.057443,119.89786 97.552762,120.17027 95.125,119.53125 C 92.350417,118.80093 88.723899,117.29504 85,115.625 C 81.276103,113.95497 77.426259,112.10169 73.90625,110.625 C 70.386242,109.1483 67.4302,107.93334 64.15625,107.9375 C 60.882303,107.94167 57.891241,109.1706 54.375,110.65625 C 50.858761,112.1419 47.032137,114.00799 43.3125,115.6875 C 39.592862,117.367 35.960216,118.85638 33.1875,119.59375 C 30.761373,120.23895 29.286908,119.99088 29.0625,120 C 29.004012,119.7864 28.29872,118.4439 28.15625,115.9375 C 27.993428,113.07303 28.281199,109.18271 28.71875,105.125 C 29.110886,101.48845 29.580993,97.733027 29.90625,94.25 L 26.03125,94.25 z"
|
||||
id="path3265" />
|
||||
<path
|
||||
sodipodi:nodetypes="cscccssssccccssscccscc"
|
||||
id="rect3289"
|
||||
d="M 3.96875,51.25 C 3.8072482,51.513327 3.653679,51.78066 3.5625,52.0625 C 1.4104994,58.714465 18.791507,72.91663 24.40625,81.25 C 25.066744,82.219734 25.881994,83.560003 26.151902,85.050699 C 27.656842,84.748586 29.576041,82.642021 28.90625,81.25 C 27.768648,78.87567 26.012193,76.796136 23.96875,74.4375 C 21.469238,71.552452 18.527988,68.487339 15.78125,65.46875 C 13.034512,62.450158 10.495601,59.471649 8.9375,57.0625 C 7.574162,54.954496 7.359205,53.457399 7.28125,53.25 C 7.2955626,53.33402 8.1966214,52.223338 10.53125,51.25 L 3.96875,51.25 z M 117.875,51.25 C 119.79897,52.094675 120.73559,53.012104 120.90625,53.125 C 120.82618,53.333062 120.57672,54.794782 119.21875,56.90625 C 117.66679,59.319356 115.1453,62.318181 112.40625,65.34375 C 109.66721,68.369316 106.71091,71.452346 104.21875,74.34375 C 102.16137,76.730721 100.3775,78.839259 99.25,81.25 C 98.389358,83.690958 101.19084,84.749904 102.08854,84.829728 C 102.41731,83.373922 103.07445,82.301223 103.75,81.25 C 109.28341,72.913848 126.77026,58.575986 124.59375,51.90625 C 124.52034,51.681299 124.39982,51.462951 124.28125,51.25 L 117.875,51.25 z"
|
||||
style="opacity:0.84158414999999998;fill:url(#radialGradient3300);fill-opacity:1;stroke:none;stroke-width:6.14200020000000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3362)" />
|
||||
</g>
|
||||
<g
|
||||
id="g3701">
|
||||
<path
|
||||
id="path3703"
|
||||
d="M 64.03125,8.2 C 56.162818,8.2100117 46.828561,34.754451 40.46875,39.3875 C 34.10894,44.020548 5.9844574,44.776082 3.5625,52.2625 C 1.1405426,59.748917 23.465249,76.813524 25.90625,84.29375 C 28.347251,91.77398 20.40967,118.7394 26.78125,123.35625 C 33.15283,127.9731 56.287818,112.02251 64.15625,112.0125 C 72.024682,112.00249 95.202691,127.89555 101.5625,123.2625 C 107.92231,118.62945 99.890544,91.686414 102.3125,84.2 C 104.73446,76.713583 127.03475,59.58648 124.59375,52.10625 C 122.15275,44.626021 94.027829,43.941849 87.65625,39.325 C 81.28467,34.708152 71.899685,8.1899879 64.03125,8.2 z M 64.03125,12.10625 C 64.208046,12.245423 65.56776,12.912264 67.15625,14.85625 C 68.97167,17.077947 71.031426,20.410059 73.0625,23.95 C 75.093573,27.48994 77.113982,31.248819 79.09375,34.5125 C 81.073519,37.776182 82.75512,40.528991 85.40625,42.45 C 88.057376,44.371009 91.18831,45.11637 94.90625,45.98125 C 98.624192,46.846129 102.81606,47.591152 106.8125,48.41875 C 110.80894,49.246347 114.60465,50.166787 117.28125,51.2 C 119.62327,52.104061 120.71845,53.200764 120.90625,53.325 C 120.82618,53.533062 120.57672,54.994782 119.21875,57.10625 C 117.66679,59.519356 115.1453,62.518181 112.40625,65.54375 C 109.66721,68.569316 106.71091,71.652346 104.21875,74.54375 C 101.72659,77.435155 99.632744,79.897501 98.625,83.0125 C 97.617256,86.127495 97.892393,89.334266 98.21875,93.1375 C 98.545107,96.940738 99.114622,101.17466 99.5625,105.23125 C 100.01038,109.28783 100.31178,113.17888 100.15625,116.04375 C 100.02016,118.55052 99.34151,119.89095 99.28125,120.10625 C 99.057443,120.09786 97.552762,120.37027 95.125,119.73125 C 92.350417,119.00093 88.723899,117.49504 85,115.825 C 81.276103,114.15497 77.426259,112.30169 73.90625,110.825 C 70.386242,109.3483 67.4302,108.13334 64.15625,108.1375 C 60.882303,108.14167 57.891241,109.3706 54.375,110.85625 C 50.858761,112.3419 47.032137,114.20799 43.3125,115.8875 C 39.592862,117.567 35.960216,119.05638 33.1875,119.79375 C 30.761373,120.43895 29.286908,120.19088 29.0625,120.2 C 29.004012,119.9864 28.29872,118.6439 28.15625,116.1375 C 27.993428,113.27303 28.281199,109.38271 28.71875,105.325 C 29.156299,101.2673 29.714573,97.035302 30.03125,93.23125 C 30.347928,89.427198 30.609418,86.187425 29.59375,83.075 C 28.578082,79.962573 26.468263,77.522553 23.96875,74.6375 C 21.469238,71.752452 18.527988,68.687339 15.78125,65.66875 C 13.034512,62.650158 10.495601,59.671649 8.9375,57.2625 C 7.5741618,55.154496 7.3592053,53.657399 7.28125,53.45 C 7.2962039,53.537785 8.2681026,52.326785 10.84375,51.325 C 13.517705,50.284977 17.34943,49.350265 21.34375,48.5125 C 25.33807,47.674737 29.534272,46.949339 33.25,46.075 C 36.96573,45.200663 40.103767,44.44025 42.75,42.5125 C 45.396234,40.584748 47.059794,37.812458 49.03125,34.54375 C 51.002705,31.275042 53.009191,27.526347 55.03125,23.98125 C 57.053308,20.436153 59.096493,17.08256 60.90625,14.85625 C 62.489787,12.908229 63.857465,12.244552 64.03125,12.10625 z"
|
||||
style="opacity:1;fill:url(#radialGradient3263);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269000000059;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3259)" />
|
||||
<path
|
||||
transform="matrix(0.4934214,0.1726044,-0.1726044,0.4934214,42.377875,49.908537)"
|
||||
d="M 153.09403,94.713757 C 144.53658,107.09689 92.616372,93.013297 78.414631,98.001518 C 64.21289,102.98974 32.50348,146.4474 18.082028,142.13539 C 3.6605746,137.82337 1.0106378,84.092245 -8.1220219,72.127031 C -17.254681,60.161818 -68.384124,43.433534 -68.739625,28.385431 C -69.095125,13.337327 -18.812666,-5.7867426 -10.255219,-18.169872 C -1.697772,-30.553002 -1.5880954,-84.349316 12.613645,-89.337536 C 26.815387,-94.325757 60.541592,-52.41396 74.963045,-48.101941 C 89.384498,-43.789923 140.58172,-60.30959 149.71438,-48.344376 C 158.84704,-36.379162 129.40853,8.6478227 129.76403,23.695927 C 130.11953,38.74403 161.65148,82.330628 153.09403,94.713757 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0.20136392"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.2330172"
|
||||
sodipodi:arg1="0.60469864"
|
||||
sodipodi:r2="76.832565"
|
||||
sodipodi:r1="121.72647"
|
||||
sodipodi:cy="25.510532"
|
||||
sodipodi:cx="52.952892"
|
||||
sodipodi:sides="5"
|
||||
id="path3705"
|
||||
style="opacity:1;fill:url(#radialGradient2906);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient2475);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
d="M 64.03125,8 C 56.162818,8.0100117 46.828561,34.554451 40.46875,39.1875 C 34.10894,43.820548 5.984457,44.576082 3.5625,52.0625 C 1.140543,59.548917 23.465249,76.613524 25.90625,84.09375 C 28.347251,91.57398 20.40967,118.5394 26.78125,123.15625 C 33.15283,127.7731 56.287818,111.82251 64.15625,111.8125 C 72.024682,111.80249 95.202691,127.69555 101.5625,123.0625 C 107.92231,118.42945 99.890544,91.486414 102.3125,84 C 104.73446,76.513583 127.03475,59.38648 124.59375,51.90625 C 122.15275,44.426021 94.027829,43.741849 87.65625,39.125 C 81.28467,34.508152 71.899685,7.9899879 64.03125,8 z M 64.03125,11.90625 C 64.208046,12.045423 65.56776,12.712264 67.15625,14.65625 C 68.97167,16.877947 71.031426,20.210059 73.0625,23.75 C 75.093573,27.28994 77.113982,31.048819 79.09375,34.3125 C 81.073519,37.576182 82.75512,40.328991 85.40625,42.25 C 88.057376,44.171009 91.18831,44.91637 94.90625,45.78125 C 98.624192,46.646129 102.81606,47.391152 106.8125,48.21875 C 110.80894,49.046347 114.60465,49.966787 117.28125,51 C 119.62327,51.904061 120.71845,53.000764 120.90625,53.125 C 120.82618,53.333062 120.57672,54.794782 119.21875,56.90625 C 117.66679,59.319356 115.1453,62.318181 112.40625,65.34375 C 109.66721,68.369316 106.71091,71.452346 104.21875,74.34375 C 101.72659,77.235155 99.632744,79.697501 98.625,82.8125 C 97.617256,85.927495 97.892393,89.134266 98.21875,92.9375 C 98.545107,96.740738 99.114622,100.97466 99.5625,105.03125 C 100.01038,109.08783 100.31178,112.97888 100.15625,115.84375 C 100.02016,118.35052 99.34151,119.69095 99.28125,119.90625 C 99.057443,119.89786 97.552762,120.17027 95.125,119.53125 C 92.350417,118.80093 88.723899,117.29504 85,115.625 C 81.276103,113.95497 77.426259,112.10169 73.90625,110.625 C 70.386242,109.1483 67.4302,107.93334 64.15625,107.9375 C 60.882303,107.94167 57.891241,109.1706 54.375,110.65625 C 50.858761,112.1419 47.032137,114.00799 43.3125,115.6875 C 39.592862,117.367 35.960216,118.85638 33.1875,119.59375 C 30.761373,120.23895 29.286908,119.99088 29.0625,120 C 29.004012,119.7864 28.29872,118.4439 28.15625,115.9375 C 27.993428,113.07303 28.281199,109.18271 28.71875,105.125 C 29.156299,101.0673 29.714573,96.835302 30.03125,93.03125 C 30.347928,89.227198 30.609418,85.987425 29.59375,82.875 C 28.578082,79.762573 26.468263,77.322553 23.96875,74.4375 C 21.469238,71.552452 18.527988,68.487339 15.78125,65.46875 C 13.034512,62.450158 10.495601,59.471649 8.9375,57.0625 C 7.574162,54.954496 7.359205,53.457399 7.28125,53.25 C 7.296204,53.337785 8.268103,52.126785 10.84375,51.125 C 13.517705,50.084977 17.34943,49.150265 21.34375,48.3125 C 25.33807,47.474737 29.534272,46.749339 33.25,45.875 C 36.96573,45.000663 40.103767,44.24025 42.75,42.3125 C 45.396234,40.384748 47.059794,37.612458 49.03125,34.34375 C 51.002705,31.075042 53.009191,27.326347 55.03125,23.78125 C 57.053308,20.236153 59.096493,16.88256 60.90625,14.65625 C 62.489787,12.708229 63.857465,12.044552 64.03125,11.90625 z"
|
||||
id="path3707" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3800);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3838)"
|
||||
d="M 60.98796,9.471226 C 62.846491,8.2143022 64.889907,8.0204702 67.219338,9.471226 L 64.037358,15.614216 L 60.98796,9.471226 z"
|
||||
id="path3709"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
id="path3711"
|
||||
d="M 64.039064,11.90625 C 63.865274,12.044552 62.497594,12.708229 60.914064,14.65625 C 59.104304,16.88256 57.061124,20.236153 55.039064,23.78125 C 53.017004,27.326347 51.010514,31.075042 49.039064,34.34375 C 47.067604,37.612458 45.404044,40.384748 42.757814,42.3125 C 40.111574,44.24025 36.973544,45.000663 33.257814,45.875 C 29.542084,46.749339 25.345884,47.474737 21.351564,48.3125 C 17.357244,49.150265 13.525514,50.084977 10.851564,51.125 C 8.2759131,52.126785 7.3040131,53.337785 7.2890631,53.25 C 7.3670131,53.457399 7.5819731,54.954496 8.9453131,57.0625 C 10.503414,59.471649 13.042324,62.450158 15.789064,65.46875 C 18.535804,68.487339 21.477054,71.552452 23.976564,74.4375 C 26.476074,77.322553 28.585894,79.762573 29.601564,82.875 C 29.865144,83.682722 30.019904,84.511238 30.132814,85.34375 C 32.540654,85.431079 34.961934,85.5 37.414064,85.5 C 64.456484,85.5 88.974124,80.107134 106.91406,71.34375 C 108.71383,69.370041 110.60784,67.338911 112.41406,65.34375 C 115.15311,62.318181 117.67459,59.319356 119.22656,56.90625 C 120.58453,54.794782 120.83398,53.333062 120.91406,53.125 C 120.72626,53.000764 119.63107,51.904061 117.28906,51 C 114.61246,49.966787 110.81674,49.046347 106.82031,48.21875 C 102.82387,47.391152 98.631994,46.646129 94.914064,45.78125 C 91.196124,44.91637 88.065184,44.171009 85.414064,42.25 C 82.762934,40.328991 81.081334,37.576182 79.101564,34.3125 C 77.121794,31.048819 75.101384,27.28994 73.070314,23.75 C 71.039234,20.210059 68.979484,16.877947 67.164064,14.65625 C 65.575574,12.712264 64.215854,12.045423 64.039064,11.90625 z"
|
||||
style="opacity:1;fill:url(#radialGradient3372);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-0.21269609"
|
||||
inkscape:original="M 44.84375 33.71875 L 44 35.09375 L 42.65625 36.8125 L 41.375 38.34375 L 39.90625 39.5625 L 37.03125 40.84375 L 33.6875 41.78125 L 33.09375 45.9375 L 35.1875 45.4375 L 39.8125 43.9375 L 42.96875 42.21875 L 45.96875 39.21875 L 49.375 33.8125 L 44.84375 33.71875 z "
|
||||
style="fill:url(#radialGradient3669);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3663);opacity:0.64356436"
|
||||
id="path3713"
|
||||
d="M 44.96875,33.9375 L 44.1875,35.21875 C 44.177097,35.219516 44.166653,35.219516 44.15625,35.21875 L 42.8125,36.9375 L 41.53125,38.46875 C 41.521947,38.480223 41.511473,38.490697 41.5,38.5 L 40.03125,39.71875 C 40.021947,39.730223 40.011473,39.740697 40,39.75 L 37.125,41.03125 C 37.115697,41.042723 37.105223,41.053197 37.09375,41.0625 L 33.875,41.96875 L 33.375,45.625 L 35.125,45.21875 L 35.125,45.25 L 39.71875,43.75 L 39.75,43.75 L 42.8125,42.0625 L 42.875,42.03125 L 45.78125,39.09375 L 45.8125,39.0625 L 48.96875,34.03125 L 44.96875,33.9375 z"
|
||||
transform="translate(0,0.3)" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient3315);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
d="M 64.039064,11.90625 C 63.865274,12.044552 62.497594,12.708229 60.914064,14.65625 C 59.104304,16.88256 57.061124,20.236153 55.039064,23.78125 C 53.017004,27.326347 51.010514,31.075042 49.039064,34.34375 C 47.067604,37.612458 45.404044,40.384748 42.757814,42.3125 C 40.111574,44.24025 36.973544,45.000663 33.257814,45.875 C 29.542084,46.749339 25.345884,47.474737 21.351564,48.3125 C 17.357244,49.150265 13.525514,50.084977 10.851564,51.125 C 8.2759131,52.126785 7.3040131,53.337785 7.2890631,53.25 C 7.3670131,53.457399 7.5819731,54.954496 8.9453131,57.0625 C 10.503414,59.471649 13.042324,62.450158 15.789064,65.46875 C 18.535804,68.487339 21.477054,71.552452 23.976564,74.4375 C 26.476074,77.322553 28.585894,79.762573 29.601564,82.875 C 29.865144,83.682722 30.019904,84.511238 30.132814,85.34375 C 32.540654,85.431079 34.961934,85.5 37.414064,85.5 C 64.456484,85.5 88.974124,80.107134 106.91406,71.34375 C 108.71383,69.370041 110.60784,67.338911 112.41406,65.34375 C 115.15311,62.318181 117.67459,59.319356 119.22656,56.90625 C 120.58453,54.794782 120.83398,53.333062 120.91406,53.125 C 120.72626,53.000764 119.63107,51.904061 117.28906,51 C 114.61246,49.966787 110.81674,49.046347 106.82031,48.21875 C 102.82387,47.391152 98.631994,46.646129 94.914064,45.78125 C 91.196124,44.91637 88.065184,44.171009 85.414064,42.25 C 82.762934,40.328991 81.081334,37.576182 79.101564,34.3125 C 77.121794,31.048819 75.101384,27.28994 73.070314,23.75 C 71.039234,20.210059 68.979484,16.877947 67.164064,14.65625 C 65.575574,12.712264 64.215854,12.045423 64.039064,11.90625 z"
|
||||
id="path3715" />
|
||||
<path
|
||||
transform="matrix(-1,0,0,1,128.125,0.3)"
|
||||
d="M 44.96875,33.9375 L 44.1875,35.21875 C 44.177097,35.219516 44.166653,35.219516 44.15625,35.21875 L 42.8125,36.9375 L 41.53125,38.46875 C 41.521947,38.480223 41.511473,38.490697 41.5,38.5 L 40.03125,39.71875 C 40.021947,39.730223 40.011473,39.740697 40,39.75 L 37.125,41.03125 C 37.115697,41.042723 37.105223,41.053197 37.09375,41.0625 L 33.875,41.96875 L 33.375,45.625 L 35.125,45.21875 L 35.125,45.25 L 39.71875,43.75 L 39.75,43.75 L 42.8125,42.0625 L 42.875,42.03125 L 45.78125,39.09375 L 45.8125,39.0625 L 48.96875,34.03125 L 44.96875,33.9375 z"
|
||||
id="path3717"
|
||||
style="fill:url(#radialGradient3673);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3663);opacity:0.64356436"
|
||||
inkscape:original="M 44.84375 33.71875 L 44 35.09375 L 42.65625 36.8125 L 41.375 38.34375 L 39.90625 39.5625 L 37.03125 40.84375 L 33.6875 41.78125 L 33.09375 45.9375 L 35.1875 45.4375 L 39.8125 43.9375 L 42.96875 42.21875 L 45.96875 39.21875 L 49.375 33.8125 L 44.84375 33.71875 z "
|
||||
inkscape:radius="-0.21269609"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<g
|
||||
id="g3719"
|
||||
transform="translate(-132.29928,0)">
|
||||
<path
|
||||
id="path3721"
|
||||
d="M 196.34375,11.90625 C 196.16996,12.044552 194.80228,12.708229 193.21875,14.65625 C 191.40899,16.88256 189.36581,20.236153 187.34375,23.78125 C 185.32169,27.326347 183.3152,31.075042 181.34375,34.34375 C 179.37229,37.612458 177.70873,40.384748 175.0625,42.3125 C 172.41626,44.24025 169.27823,45.000663 165.5625,45.875 C 161.84677,46.749339 157.65057,47.474737 153.65625,48.3125 C 149.66193,49.150265 145.8302,50.084977 143.15625,51.125 C 140.5806,52.126785 139.6087,53.337785 139.59375,53.25 C 139.62377,53.329884 139.71528,53.638731 139.84375,54.0625 C 140.2595,53.69998 141.25985,52.862595 143.15625,52.125 C 145.8302,51.084977 149.66193,50.150265 153.65625,49.3125 C 157.65057,48.474737 161.84677,47.749339 165.5625,46.875 C 169.27823,46.000663 172.41626,45.24025 175.0625,43.3125 C 177.70873,41.384748 179.37229,38.612458 181.34375,35.34375 C 183.3152,32.075042 185.32169,28.326347 187.34375,24.78125 C 189.36581,21.236153 191.40899,17.88256 193.21875,15.65625 C 194.80228,13.708229 196.16996,13.044552 196.34375,12.90625 C 196.52054,13.045423 197.88026,13.712264 199.46875,15.65625 C 201.28417,17.877947 203.34392,21.210059 205.375,24.75 C 207.40607,28.28994 209.42648,32.048819 211.40625,35.3125 C 213.38602,38.576182 215.06762,41.328991 217.71875,43.25 C 220.36987,45.171009 223.50081,45.91637 227.21875,46.78125 C 230.93668,47.646129 235.12856,48.391152 239.125,49.21875 C 243.12143,50.046347 246.91715,50.966787 249.59375,52 C 251.51448,52.74144 252.56925,53.579608 253,53.9375 C 253.13371,53.522484 253.18802,53.204851 253.21875,53.125 C 253.03095,53.000764 251.93576,51.904061 249.59375,51 C 246.91715,49.966787 243.12143,49.046347 239.125,48.21875 C 235.12856,47.391152 230.93668,46.646129 227.21875,45.78125 C 223.50081,44.91637 220.36987,44.171009 217.71875,42.25 C 215.06762,40.328991 213.38602,37.576182 211.40625,34.3125 C 209.42648,31.048819 207.40607,27.28994 205.375,23.75 C 203.34392,20.210059 201.28417,16.877947 199.46875,14.65625 C 197.88026,12.712264 196.52054,12.045423 196.34375,11.90625 z"
|
||||
style="opacity:1;fill:url(#linearGradient3369);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cscsscsccscsscsc"
|
||||
id="path3723"
|
||||
d="M 246.78125,49.937636 C 247.42469,50.142466 248.03845,50.379526 248.59375,50.593886 C 250.93576,51.497946 252.03095,52.594656 252.21875,52.718886 C 252.13867,52.926956 251.88922,54.388676 250.53125,56.500136 C 248.97928,58.913246 246.4578,61.912066 243.71875,64.937636 C 241.91253,66.932796 240.01852,68.963926 238.21875,70.937636 C 220.27881,79.701026 195.76117,85.093886 168.71875,85.093886 C 166.59433,85.093886 164.49568,85.039506 162.40625,84.968886 C 162.4184,85.051736 162.42625,85.135936 162.4375,85.218886 C 164.84534,85.306216 167.26662,85.375136 169.71875,85.375136 C 196.76117,85.375136 221.27881,79.982276 239.21875,71.218886 C 241.01852,69.245176 242.91253,67.214046 244.71875,65.218886 C 247.4578,62.193316 249.97928,59.194496 251.53125,56.781386 C 252.88922,54.669926 253.13867,53.208206 253.21875,53.000136 C 253.03095,52.875906 251.93576,51.779196 249.59375,50.875136 C 248.75868,50.552786 247.80629,50.238636 246.78125,49.937636 z"
|
||||
style="opacity:1;fill:url(#linearGradient3345);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80892944000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient3850);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.77153558000000000;filter:url(#filter3928)"
|
||||
d="M 25.190679,119.77989 C 26.414679,122.74238 27.241162,124.11897 31.289475,123.31542 L 30.638356,120.21008 L 29.079766,120.3986 L 28.261711,118.57341 L 25.190679,119.77989 z"
|
||||
id="path3725"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#radialGradient3956);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269000000059;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
||||
d="M 26.03125 94.25 C 24.983755 105.1142 22.21942 119.85075 26.78125 123.15625 C 33.15283 127.7731 56.287818 111.82251 64.15625 111.8125 C 72.024682 111.80249 95.202691 127.69555 101.5625 123.0625 C 106.10279 119.75495 103.30815 105.10184 102.21875 94.25 L 98.34375 94.25 C 98.677864 97.707156 99.164649 101.42777 99.5625 105.03125 C 100.01038 109.08783 100.31178 112.97888 100.15625 115.84375 C 100.02016 118.35052 99.34151 119.69095 99.28125 119.90625 C 99.057443 119.89786 97.552762 120.17027 95.125 119.53125 C 92.350417 118.80093 88.723899 117.29504 85 115.625 C 81.276103 113.95497 77.426259 112.10169 73.90625 110.625 C 70.386242 109.1483 67.4302 107.93334 64.15625 107.9375 C 60.882303 107.94167 57.891241 109.1706 54.375 110.65625 C 50.858761 112.1419 47.032137 114.00799 43.3125 115.6875 C 39.592862 117.367 35.960216 118.85638 33.1875 119.59375 C 30.761373 120.23895 29.286908 119.99088 29.0625 120 C 29.004012 119.7864 28.29872 118.4439 28.15625 115.9375 C 27.993428 113.07303 28.281199 109.18271 28.71875 105.125 C 29.110886 101.48845 29.580993 97.733027 29.90625 94.25 L 26.03125 94.25 z "
|
||||
id="path3727" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3385);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3391)"
|
||||
d="M 64.125001,11.90625 C 63.951211,12.044552 62.583531,12.708229 61.000001,14.65625 C 59.190241,16.88256 57.147061,20.236153 55.125001,23.78125 C 53.102941,27.326347 51.096451,31.075042 49.125001,34.34375 C 47.153541,37.612458 45.489981,40.384748 42.843751,42.3125 C 40.197511,44.24025 37.059481,45.000663 33.343751,45.875 C 29.628021,46.749339 25.431821,47.474737 21.437501,48.3125 C 17.443181,49.150265 13.611451,50.084977 10.937501,51.125 C 8.3618506,52.126785 7.3899506,53.337785 7.3750006,53.25 C 7.4529506,53.457399 7.6679106,54.954496 9.0312506,57.0625 C 10.589351,59.471649 13.128261,62.450158 15.875001,65.46875 C 18.621741,68.487339 21.562991,71.552452 24.062501,74.4375 C 26.562011,77.322553 28.671831,79.762573 29.687501,82.875 C 30.703171,85.987425 30.441681,89.227198 30.125001,93.03125 C 29.808321,96.835302 29.250051,101.0673 28.812501,105.125 C 28.374951,109.18271 28.087181,113.07303 28.250001,115.9375 C 28.392471,118.4439 29.097761,119.7864 29.156251,120 C 29.380661,119.99088 30.855121,120.23895 33.281251,119.59375 C 36.053961,118.85638 39.686611,117.367 43.406251,115.6875 C 47.125881,114.00799 50.952511,112.1419 54.468751,110.65625 C 57.984991,109.1706 60.976051,107.94167 64.250001,107.9375 C 67.523951,107.93334 70.479991,109.1483 74.000001,110.625 C 77.520011,112.10169 81.369851,113.95497 85.093751,115.625 C 88.817651,117.29504 92.444151,118.80093 95.218751,119.53125 C 97.646511,120.17027 99.151181,119.89786 99.375001,119.90625 C 99.435261,119.69095 100.1139,118.35052 100.25,115.84375 C 100.40553,112.97888 100.10412,109.08783 99.656251,105.03125 C 99.208371,100.97466 98.638841,96.740738 98.312501,92.9375 C 97.986141,89.134266 97.710991,85.927495 98.718751,82.8125 C 99.726491,79.697501 101.82033,77.235155 104.3125,74.34375 C 106.80466,71.452346 109.76095,68.369316 112.5,65.34375 C 115.23905,62.318181 117.76053,59.319356 119.3125,56.90625 C 120.67047,54.794782 120.91992,53.333062 121,53.125 C 120.8122,53.000764 119.71701,51.904061 117.375,51 C 114.6984,49.966787 110.90268,49.046347 106.90625,48.21875 C 102.90981,47.391152 98.717931,46.646129 95.000001,45.78125 C 91.282061,44.91637 88.151121,44.171009 85.500001,42.25 C 82.848871,40.328991 81.167271,37.576182 79.187501,34.3125 C 77.207731,31.048819 75.187321,27.28994 73.156251,23.75 C 71.125171,20.210059 69.065421,16.877947 67.250001,14.65625 C 65.661511,12.712264 64.301791,12.045423 64.125001,11.90625 z"
|
||||
id="path3729"
|
||||
sodipodi:nodetypes="cssssssssssssssscssssssscssssssscsssssssc" />
|
||||
<g
|
||||
id="g3731"
|
||||
transform="matrix(-1,0,0,1,128.17175,0)">
|
||||
<path
|
||||
style="opacity:0.60891089;fill:url(#radialGradient3618);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3564)"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
id="path3733"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3735"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
style="opacity:0.60891089;fill:url(#radialGradient3620);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3604)" />
|
||||
</g>
|
||||
<g
|
||||
id="g3737">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3739"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
style="fill:url(#radialGradient3382);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;filter:url(#filter3564);opacity:0.60891089" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3570);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;filter:url(#filter3604);opacity:0.60891089"
|
||||
d="M 122.34464,49.937924 L 118.89749,52.943128 L 119.6046,54.97606 L 123.93563,55.771555 C 124.26838,53.827011 124.96313,51.882468 122.34464,49.937924 z"
|
||||
id="path3741"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cssssssssssssssscssssssscssssssscsssssssc"
|
||||
id="path3743"
|
||||
d="M 64.125001,11.90625 C 63.951211,12.044552 62.583531,12.708229 61.000001,14.65625 C 59.190241,16.88256 57.147061,20.236153 55.125001,23.78125 C 53.102941,27.326347 51.096451,31.075042 49.125001,34.34375 C 47.153541,37.612458 45.489981,40.384748 42.843751,42.3125 C 40.197511,44.24025 37.059481,45.000663 33.343751,45.875 C 29.628021,46.749339 25.431821,47.474737 21.437501,48.3125 C 17.443181,49.150265 13.611451,50.084977 10.937501,51.125 C 8.3618506,52.126785 7.3899506,53.337785 7.3750006,53.25 C 7.4529506,53.457399 7.6679106,54.954496 9.0312506,57.0625 C 10.589351,59.471649 13.128261,62.450158 15.875001,65.46875 C 18.621741,68.487339 21.562991,71.552452 24.062501,74.4375 C 26.562011,77.322553 28.671831,79.762573 29.687501,82.875 C 30.703171,85.987425 30.441681,89.227198 30.125001,93.03125 C 29.808321,96.835302 29.250051,101.0673 28.812501,105.125 C 28.374951,109.18271 28.087181,113.07303 28.250001,115.9375 C 28.392471,118.4439 29.097761,119.7864 29.156251,120 C 29.380661,119.99088 30.855121,120.23895 33.281251,119.59375 C 36.053961,118.85638 39.686611,117.367 43.406251,115.6875 C 47.125881,114.00799 50.952511,112.1419 54.468751,110.65625 C 57.984991,109.1706 60.976051,107.94167 64.250001,107.9375 C 67.523951,107.93334 70.479991,109.1483 74.000001,110.625 C 77.520011,112.10169 81.369851,113.95497 85.093751,115.625 C 88.817651,117.29504 92.444151,118.80093 95.218751,119.53125 C 97.646511,120.17027 99.151181,119.89786 99.375001,119.90625 C 99.435261,119.69095 100.1139,118.35052 100.25,115.84375 C 100.40553,112.97888 100.10412,109.08783 99.656251,105.03125 C 99.208371,100.97466 98.638841,96.740738 98.312501,92.9375 C 97.986141,89.134266 97.710991,85.927495 98.718751,82.8125 C 99.726491,79.697501 101.82033,77.235155 104.3125,74.34375 C 106.80466,71.452346 109.76095,68.369316 112.5,65.34375 C 115.23905,62.318181 117.76053,59.319356 119.3125,56.90625 C 120.67047,54.794782 120.91992,53.333062 121,53.125 C 120.8122,53.000764 119.71701,51.904061 117.375,51 C 114.6984,49.966787 110.90268,49.046347 106.90625,48.21875 C 102.90981,47.391152 98.717931,46.646129 95.000001,45.78125 C 91.282061,44.91637 88.151121,44.171009 85.500001,42.25 C 82.848871,40.328991 81.167271,37.576182 79.187501,34.3125 C 77.207731,31.048819 75.187321,27.28994 73.156251,23.75 C 71.125171,20.210059 69.065421,16.877947 67.250001,14.65625 C 65.661511,12.712264 64.301791,12.045423 64.125001,11.90625 z"
|
||||
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3385);stroke-width:0.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3401)" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3745"
|
||||
d="M 25.190679,119.77989 C 26.414679,122.74238 27.241162,124.11897 31.289475,123.31542 L 30.638356,120.21008 L 29.079766,120.3986 L 28.261711,118.57341 L 25.190679,119.77989 z"
|
||||
style="opacity:0.7715356;fill:url(#linearGradient3934);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3928)"
|
||||
transform="matrix(-1,0,0,1,128.10515,0)" />
|
||||
<path
|
||||
id="path3747"
|
||||
d="M 26.03125,94.25 C 24.983755,105.1142 22.21942,119.85075 26.78125,123.15625 C 33.15283,127.7731 56.287818,110.82251 64.15625,110.8125 C 72.024682,110.80249 95.202691,127.69555 101.5625,123.0625 C 106.10279,119.75495 103.30815,105.10184 102.21875,94.25 L 98.34375,94.25 C 98.677864,97.707156 99.164649,101.42777 99.5625,105.03125 C 100.01038,109.08783 100.31178,112.97888 100.15625,115.84375 C 100.02016,118.35052 99.34151,119.69095 99.28125,119.90625 C 99.057443,119.89786 97.552762,120.17027 95.125,119.53125 C 92.350417,118.80093 88.723899,117.29504 85,115.625 C 81.276103,113.95497 77.426259,112.10169 73.90625,110.625 C 70.386242,109.1483 67.4302,107.93334 64.15625,107.9375 C 60.882303,107.94167 57.891241,109.1706 54.375,110.65625 C 50.858761,112.1419 47.032137,114.00799 43.3125,115.6875 C 39.592862,117.367 35.960216,118.85638 33.1875,119.59375 C 30.761373,120.23895 29.286908,119.99088 29.0625,120 C 29.004012,119.7864 28.29872,118.4439 28.15625,115.9375 C 27.993428,113.07303 28.281199,109.18271 28.71875,105.125 C 29.110886,101.48845 29.580993,97.733027 29.90625,94.25 L 26.03125,94.25 z"
|
||||
style="opacity:1;fill:url(#radialGradient3267);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.80851269000000059;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter3285)"
|
||||
sodipodi:nodetypes="csssccsscssssssscsscc" />
|
||||
<path
|
||||
style="opacity:0.84158414999999998;fill:url(#radialGradient3300);fill-opacity:1;stroke:none;stroke-width:6.14200020000000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3362)"
|
||||
d="M 3.96875,51.25 C 3.8072482,51.513327 3.653679,51.78066 3.5625,52.0625 C 1.4104994,58.714465 18.791507,72.91663 24.40625,81.25 C 25.066744,82.219734 25.881994,83.560003 26.151902,85.050699 C 27.656842,84.748586 29.576041,82.642021 28.90625,81.25 C 27.768648,78.87567 26.012193,76.796136 23.96875,74.4375 C 21.469238,71.552452 18.527988,68.487339 15.78125,65.46875 C 13.034512,62.450158 10.495601,59.471649 8.9375,57.0625 C 7.574162,54.954496 7.359205,53.457399 7.28125,53.25 C 7.2955626,53.33402 8.1966214,52.223338 10.53125,51.25 L 3.96875,51.25 z M 117.875,51.25 C 119.79897,52.094675 120.73559,53.012104 120.90625,53.125 C 120.82618,53.333062 120.57672,54.794782 119.21875,56.90625 C 117.66679,59.319356 115.1453,62.318181 112.40625,65.34375 C 109.66721,68.369316 106.71091,71.452346 104.21875,74.34375 C 102.16137,76.730721 100.3775,78.839259 99.25,81.25 C 98.389358,83.690958 101.19084,84.749904 102.08854,84.829728 C 102.41731,83.373922 103.07445,82.301223 103.75,81.25 C 109.28341,72.913848 126.77026,58.575986 124.59375,51.90625 C 124.52034,51.681299 124.39982,51.462951 124.28125,51.25 L 117.875,51.25 z"
|
||||
id="path3749"
|
||||
sodipodi:nodetypes="cscccssssccccssscccscc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 81 KiB |
3571
src/desktoptheme/air/icons/computer.svg
Normal file
After Width: | Height: | Size: 155 KiB |
1337
src/desktoptheme/air/icons/configure.svg
Normal file
After Width: | Height: | Size: 62 KiB |
205
src/desktoptheme/air/icons/device.svg
Normal file
@ -0,0 +1,205 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg3434"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="device.svgz">
|
||||
<defs
|
||||
id="defs3436">
|
||||
<linearGradient
|
||||
id="linearGradient4425">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.33620688;"
|
||||
offset="0"
|
||||
id="stop4427" />
|
||||
<stop
|
||||
id="stop4433"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.37068966;"
|
||||
offset="1"
|
||||
id="stop4429" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4391">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4393" />
|
||||
<stop
|
||||
id="stop4401"
|
||||
offset="0.70021862"
|
||||
style="stop-color:#ffffff;stop-opacity:0.87931037;" />
|
||||
<stop
|
||||
id="stop4399"
|
||||
offset="0.76645595"
|
||||
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4395" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4425"
|
||||
id="linearGradient4431"
|
||||
x1="2.53125"
|
||||
y1="11.875"
|
||||
x2="21.8125"
|
||||
y2="11.875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4391"
|
||||
id="linearGradient4397"
|
||||
x1="1.5625"
|
||||
y1="11.5"
|
||||
x2="21.969252"
|
||||
y2="11.5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4407"
|
||||
id="radialGradient4413"
|
||||
cx="15.328376"
|
||||
cy="18.72982"
|
||||
fx="15.328376"
|
||||
fy="18.72982"
|
||||
r="10.203376"
|
||||
gradientTransform="matrix(0.2991245,0,0,0.263759,10.743283,10.434841)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4407">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4409" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4411" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4407"
|
||||
id="radialGradient4417"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.2991245,0,0,0.263759,10.743283,10.434841)"
|
||||
cx="8.6421967"
|
||||
cy="-11.837857"
|
||||
fx="8.6421967"
|
||||
fy="-11.837857"
|
||||
r="10.203376" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627418"
|
||||
inkscape:cx="2.5958787"
|
||||
inkscape:cy="11.723256"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="device-notifier"
|
||||
showgrid="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3564"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3439">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Camada 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="device-notifier"
|
||||
transform="translate(0,-1028.3622)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="test"
|
||||
transform="translate(0,1028.3622)">
|
||||
<rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect16227"
|
||||
style="fill:#ffffff;fill-opacity:0;stroke:none" />
|
||||
<g
|
||||
transform="matrix(0.97913769,0,0,1.008596,0.47983317,-1037.1791)"
|
||||
id="g4447">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3597"
|
||||
transform="translate(0,1028.3622)"
|
||||
d="m 12,0.96875 c -4.6576599,0 -8.6366332,2.9393 -10.1875,7.0625 a 1.0268884,1.0268884 0 0 0 0.0625,0.875 c -0.8051378,0.6028673 -1.34396679,1.556499 -1.34375,2.625 -1.969e-4,0.970464 0.44098964,1.839782 1.125,2.4375 a 1.0268884,1.0268884 0 0 0 -0.125,0.84375 C 2.8117406,19.4002 7.011022,22.78125 12,22.78125 c 5.675614,0 10.350129,-4.386 10.84375,-9.9375 a 1.0268884,1.0268884 0 0 0 -0.125,-0.625 c 0.08315,-0.120083 0.187443,-0.281122 0.1875,-0.28125 8.3e-5,-1.87e-4 0.09376,-0.437269 0.09375,-0.4375 -9e-6,-2.31e-4 -0.0624,-0.312225 -0.0625,-0.3125 -1.01e-4,-2.75e-4 -0.09356,-0.187182 -0.09375,-0.1875 -3.83e-4,-6.36e-4 -0.093,-0.121455 -0.125,-0.15625 -0.032,-0.0348 -0.04244,-0.07589 -0.0625,-0.09375 -0.03068,-0.02731 -0.04076,-0.01924 -0.0625,-0.03125 a 1.0268884,1.0268884 0 0 0 0.125,-0.65625 C 21.849873,4.9173 17.381687,0.96875 12,0.96875 Z M 12,2 c 4.882711,0 8.931882,3.5592159 9.71875,8.21875 -0.235746,-0.12254 -0.477991,-0.2374183 -0.75,-0.375 C 20.76343,9.7398995 20.751964,9.7232712 20.5625,9.625 19.560948,5.8212722 16.118225,3 12,3 8.3852219,3 5.2586808,5.1492897 3.875,8.25 c -0.03146,-0.00107 -0.061874,0 -0.09375,0 -0.3477775,0 -0.6862488,0.053096 -1,0.15625 C 4.1860335,4.6712732 7.775153,2 12,2 Z m 0,2.03125 c 3.326743,0 6.139422,2.055729 7.28125,4.96875 a 1.0307635,1.0307635 0 0 0 -1.3125,0.96875 l -4.3125,0 c 1.28599,-0.091404 2.375266,-1.108003 2.375,-2.4375 C 16.031528,6.1408091 14.890163,5 13.5,5 12.726947,5 12.113462,5.4163065 11.65625,5.96875 l -0.28125,0 C 10.715005,5.96875 10.223515,6.2447393 9.8125,6.5 9.4014847,6.7552607 9.0728013,7.0141711 8.84375,7.21875 8.3559107,7.6544705 7.9603846,8.1610247 7.5625,8.59375 7.1022254,9.09439 6.6581162,9.3206318 6.21875,9.5625 5.8543323,9.1069096 5.3965756,8.7331958 4.875,8.5 6.128902,5.8453164 8.8514757,4.03125 12,4.03125 Z m 1.5,2 c 0.819277,0 1.500164,0.6807 1.5,1.5 C 15.000164,8.35045 14.319277,9 13.5,9 12.850602,9 12.294625,8.5810581 12.09375,8 L 11.6875,8 C 11.088334,8 10.656549,8.28645 10.3125,8.59375 9.9684499,8.90105 9.490967,9.4714 9.0625,9.9375 8.7369706,10.291544 8.3359771,10.659677 7.875,11 L 19,11 19,10 c 0,0 3.013861,1.49475 2.96875,1.53125 C 21.92364,11.56805 19,13 19,13 l 0,-1 -8.59375,0 c 0.199243,0.140875 0.381517,0.30883 0.53125,0.46875 0.763173,0.815 1.442526,1.88595 2.34375,2.40625 0.190733,0.1105 0.579334,0.125 0.75,0.125 l 0,-1 2.96875,0 0,1 0,1 0,0.96875 -2.96875,0 0,-0.96875 C 13.687966,16 13.240877,15.9577 12.96875,15.8125 11.783242,15.1798 11.002907,13.81775 10.3125,13.03125 9.623179,12.24605 8.7439926,12 7.53125,12 l -1.5625,0 c -0.2186048,1.001538 -1.1203545,1.75 -2.1875,1.75 -1.2312067,0 -2.2189998,-0.98755 -2.21875,-2.21875 -2.498e-4,-1.2312 0.9875433,-2.25 2.21875,-2.25 1.0307224,0 1.9012707,0.706048 2.15625,1.65625 C 6.8961478,10.707703 7.6356378,10.017472 8.3125,9.28125 8.7285671,8.82875 9.121135,8.3663 9.53125,8 9.941368,7.6337 10.728167,7 11.375,7 l 0.75,0 C 12.335708,6.4374016 12.863856,6.03125 13.5,6.03125 Z M 11.65625,9.0625 c 0.422074,0.504087 0.968474,0.8495657 1.65625,0.90625 l -2.875,0 C 10.633496,9.7529733 10.893336,9.4702709 11,9.375 11.247566,9.1538774 11.411558,9.0727038 11.65625,9.0625 Z M 21.8125,12.75 c -0.447431,5.032058 -4.664493,9 -9.8125,9 -4.5258588,0 -8.3085178,-3.062023 -9.46875,-7.21875 0.3424564,0.145907 0.7050449,0.231134 1.09375,0.25 C 4.8310216,18.250746 8.1197297,20.75 12,20.75 c 4.409132,0 8.059676,-3.223692 8.75,-7.4375 0.09283,-0.04558 0.09292,-0.04719 0.1875,-0.09375 0.323375,-0.15919 0.613518,-0.33197 0.875,-0.46875 z m -15.34375,0.28125 1.0625,0 c 1.0733374,0 1.5269019,0.148598 2,0.6875 0.555223,0.6325 1.375675,2.166462 2.9375,3 0.207285,0.110602 0.347052,0.04807 0.53125,0.09375 l 0,0.15625 A 1.0307635,1.0307635 0 0 0 14.03125,18 l 2.875,0 C 15.563823,19.070834 13.856181,19.71875 12,19.71875 c -3.3637586,0 -6.1915065,-2.131391 -7.3125,-5.09375 0.7606617,-0.27247 1.3689062,-0.87348 1.78125,-1.59375 z m 6.4375,0 0.78125,0 A 1.0307635,1.0307635 0 0 0 13.21875,13.375 c -0.09611,-0.0947 -0.209997,-0.230249 -0.3125,-0.34375 z m 4.46875,0 0.59375,0 a 1.0307635,1.0307635 0 0 0 1.5,0.90625 c 0,0 0.114774,-0.05752 0.125,-0.0625 -0.296257,1.130204 -0.835227,2.161458 -1.5625,3.03125 l 0,-0.90625 0,-1 0,-1 A 1.0307635,1.0307635 0 0 0 17.375,13.03125 Z"
|
||||
style="fill:#000000;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(0,1028.3622)"
|
||||
id="path3371"
|
||||
d="M 12,2 C 7.775153,2 4.1860335,4.6712732 2.78125,8.40625 3.0950012,8.3030961 3.4334725,8.25 3.78125,8.25 3.813126,8.25 3.84354,8.24893 3.875,8.25 5.2586808,5.1492897 8.3852219,3 12,3 c 4.118225,0 7.560948,2.8212722 8.5625,6.625 0.189464,0.098271 0.20093,0.1148995 0.40625,0.21875 0.272009,0.1375817 0.514254,0.25246 0.75,0.375 C 20.931882,5.5592159 16.882711,2 12,2 Z m 9.8125,10.75 c -0.261482,0.13678 -0.551625,0.30956 -0.875,0.46875 C 20.84292,13.26531 20.84283,13.26692 20.75,13.3125 20.059676,17.526308 16.409132,20.75 12,20.75 8.1197297,20.75 4.8310216,18.250746 3.625,14.78125 3.2362949,14.762384 2.8737064,14.677157 2.53125,14.53125 3.6914822,18.687977 7.4741412,21.75 12,21.75 c 5.148007,0 9.365069,-3.967942 9.8125,-9 z"
|
||||
style="fill:url(#linearGradient4431);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect3379"
|
||||
transform="translate(0,1028.3622)"
|
||||
d="m 13.5,6.03125 c -0.636144,0 -1.164292,0.4061516 -1.375,0.96875 l -0.75,0 C 10.728167,7 9.941368,7.6337 9.53125,8 9.121135,8.3663 8.7285671,8.82875 8.3125,9.28125 7.6356378,10.017472 6.8961478,10.707703 5.9375,10.9375 5.6825207,9.987298 4.8119724,9.28125 3.78125,9.28125 c -1.2312067,0 -2.2189998,1.0188 -2.21875,2.25 -2.498e-4,1.2312 0.9875433,2.21875 2.21875,2.21875 1.0671455,0 1.9688952,-0.748462 2.1875,-1.75 l 1.5625,0 c 1.2127426,0 2.091929,0.24605 2.78125,1.03125 0.690407,0.7865 1.470742,2.14855 2.65625,2.78125 C 13.240877,15.9577 13.687966,16 14.03125,16 l 0,0.96875 2.96875,0 L 17,16 l 0,-1 0,-1 -2.96875,0 0,1 c -0.170666,0 -0.559267,-0.0145 -0.75,-0.125 C 12.380026,14.3547 11.700673,13.28375 10.9375,12.46875 10.787767,12.30883 10.605493,12.140875 10.40625,12 L 19,12 l 0,1 c 0,0 2.92364,-1.43195 2.96875,-1.46875 C 22.013861,11.49475 19,10 19,10 l 0,1 -11.125,0 C 8.3359771,10.659677 8.7369706,10.291544 9.0625,9.9375 9.490967,9.4714 9.9684499,8.90105 10.3125,8.59375 10.656549,8.28645 11.088334,8 11.6875,8 l 0.40625,0 c 0.200875,0.5810581 0.756852,1 1.40625,1 0.819277,0 1.500164,-0.64955 1.5,-1.46875 1.64e-4,-0.8193 -0.680723,-1.5 -1.5,-1.5 z"
|
||||
style="fill:url(#linearGradient4397);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#radialGradient4413);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 13.5,6.03125 c -0.636144,0 -1.164292,0.4061516 -1.375,0.96875 l -0.75,0 C 10.728167,7 9.941368,7.6337 9.53125,8 9.121135,8.3663 8.7285671,8.82875 8.3125,9.28125 7.6356378,10.017472 6.8961478,10.707703 5.9375,10.9375 5.6825207,9.987298 4.8119724,9.28125 3.78125,9.28125 c -1.2312067,0 -2.2189998,1.0188 -2.21875,2.25 -2.498e-4,1.2312 0.9875433,2.21875 2.21875,2.21875 1.0671455,0 1.9688952,-0.748462 2.1875,-1.75 l 1.5625,0 c 1.2127426,0 2.091929,0.24605 2.78125,1.03125 0.690407,0.7865 1.470742,2.14855 2.65625,2.78125 C 13.240877,15.9577 13.687966,16 14.03125,16 l 0,0.96875 2.96875,0 L 17,16 l 0,-1 0,-1 -2.96875,0 0,1 c -0.170666,0 -0.559267,-0.0145 -0.75,-0.125 C 12.380026,14.3547 11.700673,13.28375 10.9375,12.46875 10.787767,12.30883 10.605493,12.140875 10.40625,12 L 19,12 l 0,1 c 0,0 2.92364,-1.43195 2.96875,-1.46875 C 22.013861,11.49475 19,10 19,10 l 0,1 -11.125,0 C 8.3359771,10.659677 8.7369706,10.291544 9.0625,9.9375 9.490967,9.4714 9.9684499,8.90105 10.3125,8.59375 10.656549,8.28645 11.088334,8 11.6875,8 l 0.40625,0 c 0.200875,0.5810581 0.756852,1 1.40625,1 0.819277,0 1.500164,-0.64955 1.5,-1.46875 1.64e-4,-0.8193 -0.680723,-1.5 -1.5,-1.5 z"
|
||||
transform="translate(0,1028.3622)"
|
||||
id="path4403" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4415"
|
||||
transform="translate(0,1028.3622)"
|
||||
d="m 13.5,6.03125 c -0.636144,0 -1.164292,0.4061516 -1.375,0.96875 l -0.75,0 C 10.728167,7 9.941368,7.6337 9.53125,8 9.121135,8.3663 8.7285671,8.82875 8.3125,9.28125 7.6356378,10.017472 6.8961478,10.707703 5.9375,10.9375 5.6825207,9.987298 4.8119724,9.28125 3.78125,9.28125 c -1.2312067,0 -2.2189998,1.0188 -2.21875,2.25 -2.498e-4,1.2312 0.9875433,2.21875 2.21875,2.21875 1.0671455,0 1.9688952,-0.748462 2.1875,-1.75 l 1.5625,0 c 1.2127426,0 2.091929,0.24605 2.78125,1.03125 0.690407,0.7865 1.470742,2.14855 2.65625,2.78125 C 13.240877,15.9577 13.687966,16 14.03125,16 l 0,0.96875 2.96875,0 L 17,16 l 0,-1 0,-1 -2.96875,0 0,1 c -0.170666,0 -0.559267,-0.0145 -0.75,-0.125 C 12.380026,14.3547 11.700673,13.28375 10.9375,12.46875 10.787767,12.30883 10.605493,12.140875 10.40625,12 L 19,12 l 0,1 c 0,0 2.92364,-1.43195 2.96875,-1.46875 C 22.013861,11.49475 19,10 19,10 l 0,1 -11.125,0 C 8.3359771,10.659677 8.7369706,10.291544 9.0625,9.9375 9.490967,9.4714 9.9684499,8.90105 10.3125,8.59375 10.656549,8.28645 11.088334,8 11.6875,8 l 0.40625,0 c 0.200875,0.5810581 0.756852,1 1.40625,1 0.819277,0 1.500164,-0.64955 1.5,-1.46875 1.64e-4,-0.8193 -0.680723,-1.5 -1.5,-1.5 z"
|
||||
style="fill:url(#radialGradient4417);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 13.5,6.03125 c -0.636144,0 -1.164292,0.4061516 -1.375,0.96875 l -0.75,0 C 10.728167,7 9.941368,7.6337 9.53125,8 9.121135,8.3663 8.7285671,8.82875 8.3125,9.28125 7.6356378,10.017472 6.8961478,10.707703 5.9375,10.9375 5.6825207,9.987298 4.8119724,9.28125 3.78125,9.28125 c -1.2312067,0 -2.2189998,1.0188 -2.21875,2.25 -2.498e-4,1.2312 0.9875433,2.21875 2.21875,2.21875 1.0671455,0 1.9688952,-0.748462 2.1875,-1.75 l 1.5625,0 c 1.2127426,0 2.091929,0.24605 2.78125,1.03125 0.690407,0.7865 1.470742,2.14855 2.65625,2.78125 C 13.240877,15.9577 13.687966,16 14.03125,16 l 0,0.96875 2.96875,0 L 17,16 l 0,-1 0,-1 -2.96875,0 0,1 c -0.170666,0 -0.559267,-0.0145 -0.75,-0.125 C 12.380026,14.3547 11.700673,13.28375 10.9375,12.46875 10.787767,12.30883 10.605493,12.140875 10.40625,12 L 19,12 l 0,1 c 0,0 2.92364,-1.43195 2.96875,-1.46875 C 22.013861,11.49475 19,10 19,10 l 0,1 -11.125,0 C 8.3359771,10.659677 8.7369706,10.291544 9.0625,9.9375 9.490967,9.4714 9.9684499,8.90105 10.3125,8.59375 10.656549,8.28645 11.088334,8 11.6875,8 l 0.40625,0 c 0.200875,0.5810581 0.756852,1 1.40625,1 0.819277,0 1.500164,-0.64955 1.5,-1.46875 1.64e-4,-0.8193 -0.680723,-1.5 -1.5,-1.5 z"
|
||||
transform="translate(0,1028.3622)"
|
||||
id="path4419" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
341
src/desktoptheme/air/icons/edit.svg
Normal file
@ -0,0 +1,341 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="edit.svgz"
|
||||
style="display:inline">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient16121">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.74100721;"
|
||||
offset="0"
|
||||
id="stop16123" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.35251799;"
|
||||
offset="1"
|
||||
id="stop16125" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16018">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.60431653;"
|
||||
offset="0"
|
||||
id="stop16020" />
|
||||
<stop
|
||||
style="stop-color:#1c1c1c;stop-opacity:0.68345326;"
|
||||
offset="1"
|
||||
id="stop16022" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.92086333;"
|
||||
offset="0"
|
||||
id="stop16008" />
|
||||
<stop
|
||||
id="stop16016"
|
||||
offset="0.25"
|
||||
style="stop-color:#ffffff;stop-opacity:0.88489211;" />
|
||||
<stop
|
||||
id="stop16014"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.89928055;"
|
||||
offset="1"
|
||||
id="stop16010" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3138">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.6513927"
|
||||
id="feGaussianBlur3140" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5958"
|
||||
id="linearGradient3014"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
|
||||
x1="-86.120354"
|
||||
y1="-381.09921"
|
||||
x2="-56.357521"
|
||||
y2="-373.1243" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
|
||||
y2="-383.9971"
|
||||
x2="-12.0029"
|
||||
y1="-383.9971"
|
||||
x1="-84.002403"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5958">
|
||||
<stop
|
||||
id="stop5960"
|
||||
style="stop-color:#8c0000;stop-opacity:1;"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop5962"
|
||||
style="stop-color:#bf0000;stop-opacity:1;"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4770"
|
||||
id="radialGradient3012"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="345.80753"
|
||||
cy="85.250488"
|
||||
fx="345.80753"
|
||||
fy="85.250488"
|
||||
r="36"
|
||||
gradientTransform="matrix(0.6662862,-0.6560105,0.9893764,1.0048737,31.05592,226.43791)" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
|
||||
y2="-383.9971"
|
||||
x2="-12.0029"
|
||||
y1="-383.9971"
|
||||
x1="-84.002403"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4770">
|
||||
<stop
|
||||
id="stop4772"
|
||||
style="stop-color:#ffbe00;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4774"
|
||||
style="stop-color:#f5d600;stop-opacity:0;"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3162">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.96794009"
|
||||
id="feGaussianBlur3164" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4296"
|
||||
id="linearGradient3010"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="328.12448"
|
||||
y1="120.81158"
|
||||
x2="336.98077"
|
||||
y2="87.759453" />
|
||||
<linearGradient
|
||||
id="linearGradient4296">
|
||||
<stop
|
||||
id="stop4298"
|
||||
offset="0"
|
||||
style="stop-color:#ff0000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4300"
|
||||
offset="1"
|
||||
style="stop-color:#650000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5163">
|
||||
<circle
|
||||
style="fill:url(#linearGradient5167);fill-opacity:1"
|
||||
r="36"
|
||||
cx="343.99899"
|
||||
cy="92"
|
||||
id="circle5165" />
|
||||
</clipPath>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter7317">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="2.8805897"
|
||||
id="feGaussianBlur7319" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3711"
|
||||
id="linearGradient3003"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.3460321,-1.3460321,0,-112.6741,119.24399)"
|
||||
x1="-80.00296"
|
||||
y1="-131.93112"
|
||||
x2="-45.096584"
|
||||
y2="-131.93112" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
|
||||
y2="-383.9975"
|
||||
x2="-23.516129"
|
||||
y1="-383.9971"
|
||||
x1="-84.002403"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3711">
|
||||
<stop
|
||||
id="stop3713"
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3715"
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6740"
|
||||
id="linearGradient3008"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(20.000035,-56.000003)"
|
||||
x1="117.81589"
|
||||
y1="103.01254"
|
||||
x2="90.537666"
|
||||
y2="76.633896" />
|
||||
<linearGradient
|
||||
id="linearGradient6740">
|
||||
<stop
|
||||
style="stop-color:#4d0000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop6742" />
|
||||
<stop
|
||||
id="stop6748"
|
||||
offset="0.5"
|
||||
style="stop-color:#4d0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#4d0000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6744" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter5943">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.04"
|
||||
id="feGaussianBlur5945" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="10.112813"
|
||||
inkscape:cy="2.0660858"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="edit-delete">
|
||||
<g
|
||||
transform="matrix(0.17657036,0,0,0.17662738,0.60537461,0.36299937)"
|
||||
id="g4252">
|
||||
<circle
|
||||
r="100"
|
||||
cy="20"
|
||||
cx="15.5"
|
||||
transform="matrix(0.5662048,0,0,0.5662048,55.73989,54.555422)"
|
||||
id="path2396"
|
||||
style="opacity:0.50271738;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.13749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4.1500001;stroke-opacity:1;filter:url(#filter3138)" />
|
||||
<circle
|
||||
transform="matrix(-1.5639433,0.4190574,-0.4190574,-1.5639433,641.54821,62.027543)"
|
||||
id="circle3581_2_"
|
||||
cy="92"
|
||||
cx="343.99899"
|
||||
r="36"
|
||||
style="fill:url(#linearGradient3014);fill-opacity:1" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient3012);fill-opacity:1;filter:url(#filter3162)"
|
||||
r="36"
|
||||
cx="343.99899"
|
||||
cy="92"
|
||||
id="circle4383"
|
||||
transform="matrix(-1.1729576,0.3142929,-0.3142929,-1.1729576,497.41122,62.095683)" />
|
||||
<circle
|
||||
style="opacity:0.8;fill:none;fill-opacity:1;stroke:url(#linearGradient3010);stroke-width:6.75138187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7317)"
|
||||
r="36"
|
||||
cx="343.99899"
|
||||
cy="92"
|
||||
id="circle4776"
|
||||
transform="matrix(-1.5639433,-0.4190574,-0.4190574,1.5639433,641.54821,62.572542)"
|
||||
clip-path="url(#clipPath5163)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="circle16776"
|
||||
d="m 65.000079,11.557516 c -20.67048,0 -37.942548,14.596148 -42.105568,34.029379 8.298024,7.735491 24.043093,12.955554 42.105568,12.955554 18.062496,0 33.807544,-5.220063 42.105561,-12.955554 -4.163,-19.433231 -21.435087,-34.029379 -42.105561,-34.029379 z"
|
||||
style="opacity:0.8;fill:url(#linearGradient3003);fill-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1.2882604,1.2882604,-1.2882604,1.2882604,-45.790405,-141.24514)"
|
||||
id="g6850">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4123"
|
||||
d="m 118.00003,15.999997 0,16 -16,0 0,8 16,0 0,16 8,0 0,-16 16,0 0,-8 -16,0 0,-16 -8,0 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3008);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter5943)"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 118.00003,15.999997 0,16 -16,0 0,8 16,0 0,16 8,0 0,-16 16,0 0,-8 -16,0 0,-16 -8,0 z"
|
||||
id="rect3232"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
236
src/desktoptheme/air/icons/kdeconnect.svg
Normal file
@ -0,0 +1,236 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="kdeconnect.svgz"
|
||||
style="display:inline">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient4124">
|
||||
<stop
|
||||
id="stop4126"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;"
|
||||
offset="0.185378"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.88489211;"
|
||||
offset="0.44680852"
|
||||
id="stop4130" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="0.76861703"
|
||||
id="stop4132" />
|
||||
<stop
|
||||
id="stop4134"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.89928055;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16121">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.15107913;"
|
||||
offset="0"
|
||||
id="stop16123" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.77697843;"
|
||||
offset="1"
|
||||
id="stop16125" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006-3-9">
|
||||
<stop
|
||||
id="stop16016-1-7"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.9285714;" />
|
||||
<stop
|
||||
id="stop16014-1-2"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.91208792;"
|
||||
offset="1"
|
||||
id="stop3998" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16121"
|
||||
id="linearGradient4264"
|
||||
x1="13"
|
||||
y1="0"
|
||||
x2="13"
|
||||
y2="22"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,24)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-3-9"
|
||||
id="linearGradient4287"
|
||||
x1="12"
|
||||
y1="22"
|
||||
x2="12"
|
||||
y2="20"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4124"
|
||||
id="linearGradient4303"
|
||||
x1="12"
|
||||
y1="18"
|
||||
x2="12"
|
||||
y2="3"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient4082-8">
|
||||
<stop
|
||||
style="stop-color:#282828;stop-opacity:0.60217983;"
|
||||
offset="0"
|
||||
id="stop4084-8" />
|
||||
<stop
|
||||
id="stop3846"
|
||||
offset="0.64731497"
|
||||
style="stop-color:#1e1e1e;stop-opacity:0.78610355;" />
|
||||
<stop
|
||||
style="stop-color:#141414;stop-opacity:0.68627453;"
|
||||
offset="1"
|
||||
id="stop4090-8" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4082-8"
|
||||
id="linearGradient4183"
|
||||
x1="13"
|
||||
y1="12"
|
||||
x2="13"
|
||||
y2="3"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4082-8"
|
||||
id="linearGradient4191"
|
||||
x1="11"
|
||||
y1="18"
|
||||
x2="11"
|
||||
y2="9"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#c4cbff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="917"
|
||||
id="namedview14999"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="-27.332491"
|
||||
inkscape:cy="13.71027"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
showborder="true"
|
||||
inkscape:object-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="kdeconnect">
|
||||
<rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect11043"
|
||||
style="fill:none;stroke:none" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient4303);fill-opacity:1;stroke:none"
|
||||
id="rect4295"
|
||||
width="10"
|
||||
height="15"
|
||||
x="7"
|
||||
y="3" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient4183);fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 12.5,3.5 -0.277344,1.1074219 c -0.252122,0.0672 -0.494401,0.166996 -0.720703,0.296875 L 10.525391,4.3183594 9.8183594,5.0253906 10.404297,6.0019531 c -0.131391,0.226716 -0.232511,0.4696683 -0.300781,0.7226563 L 9,7 9,8 10.107422,8.2773438 c 0.0672,0.2521222 0.166996,0.4944012 0.296875,0.7207032 l -0.5859376,0.976562 0.7070316,0.707032 0.976562,-0.585938 c 0.226716,0.131391 0.469668,0.232511 0.722656,0.300781 L 12.5,11.5 l 1,0 0.277344,-1.107422 c 0.252122,-0.0672 0.494401,-0.166996 0.720703,-0.296875 l 0.976562,0.585938 0.707032,-0.707032 -0.585938,-0.976562 C 15.727094,8.771331 15.828214,8.528379 15.896484,8.2753906 L 17,8 17,7 15.892578,6.7226562 C 15.825378,6.4705343 15.725582,6.2282551 15.595703,6.0019531 L 16.181641,5.0253906 15.474609,4.3183594 14.498047,4.9042969 C 14.271331,4.7729059 14.028379,4.6717856 13.775391,4.6035156 L 13.5,3.5 l -1,0 z m 0.597656,2.0019531 A 2.0067127,2 0 0 1 15,7.2695312 L 14.998,7.7519531 A 2.0067127,2 0 0 1 12.875,9.496094 2.0067127,2 0 0 1 11,7.4882812 a 2.0067127,2 0 0 1 1.896484,-1.984375 2.0067127,2 0 0 1 0.201172,-0.00195 z"
|
||||
id="rect4403"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,23 A 1,1 0 0 1 5,22 L 5,2 A 1,1 0 0 1 6,1 l 12,0 a 1,1 0 0 1 1,1 l 0,20 a 1,1 0 0 1 -1,1 L 6,23 Z m 6,-1 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 z M 6,19 18,19 18,2 6,2 6,19 Z"
|
||||
id="rect4171" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4264);fill-opacity:1;stroke:none"
|
||||
d="M 6,19 6,2 18,2 18,19 Z M 7,18 17,18 17,3 7,3 Z"
|
||||
id="rect4253"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4287);fill-opacity:1;stroke:none"
|
||||
id="path4279"
|
||||
sodipodi:type="arc"
|
||||
sodipodi:cx="12"
|
||||
sodipodi:cy="21"
|
||||
sodipodi:rx="1"
|
||||
sodipodi:ry="1"
|
||||
sodipodi:start="0"
|
||||
sodipodi:end="6.2021528"
|
||||
d="m 13,21 a 1,1 0 0 1 -0.979743,0.999795 1,1 0 0 1 -1.019436,-0.95929 1,1 0 0 1 0.938442,-1.038659 1,1 0 0 1 1.057456,0.91721 L 12,21 Z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;opacity:1;fill:url(#linearGradient4191);fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 10.5,9.5 -0.277344,1.107422 c -0.252122,0.0672 -0.494401,0.166996 -0.720703,0.296875 l -0.976562,-0.585938 -0.7070316,0.707032 0.5859375,0.976562 c -0.131391,0.226716 -0.2325113,0.469668 -0.3007813,0.722656 L 7,13 l 0,1 1.1074219,0.277344 c 0.0672,0.252122 0.166996,0.494401 0.296875,0.720703 l -0.5859375,0.976562 0.7070316,0.707032 0.976562,-0.585938 c 0.226716,0.131391 0.469668,0.232511 0.722656,0.300781 L 10.5,17.5 l 1,0 0.277344,-1.107422 c 0.252122,-0.0672 0.494401,-0.166996 0.720703,-0.296875 l 0.976562,0.585938 0.707032,-0.707032 -0.585938,-0.976562 c 0.131391,-0.226716 0.232511,-0.469668 0.300781,-0.722656 L 15,14 15,13 13.892578,12.722656 c -0.0672,-0.252122 -0.166996,-0.494401 -0.296875,-0.720703 l 0.585938,-0.976562 -0.707032,-0.707032 -0.976562,0.585938 C 12.271331,10.772906 12.028379,10.671786 11.775391,10.603516 L 11.5,9.5 l -1,0 z m 0.597656,2.001953 A 2.0067127,2 0 0 1 13,13.269531 l -0.002,0.482422 A 2.0067127,2 0 0 1 10.875,15.496094 2.0067127,2 0 0 1 9,13.488281 a 2.0067127,2 0 0 1 1.896484,-1.984375 2.0067127,2 0 0 1 0.201172,-0.002 z"
|
||||
id="rect4403-5" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
3763
src/desktoptheme/air/icons/keyboard.svg
Normal file
After Width: | Height: | Size: 171 KiB |
229
src/desktoptheme/air/icons/kget.svg
Normal file
@ -0,0 +1,229 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="kget.svgz"
|
||||
style="display:inline">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient4124">
|
||||
<stop
|
||||
id="stop4126"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;"
|
||||
offset="0.185378"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.88489211;"
|
||||
offset="0.44680852"
|
||||
id="stop4130" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="0.76861703"
|
||||
id="stop4132" />
|
||||
<stop
|
||||
id="stop4134"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.89928055;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4000">
|
||||
<stop
|
||||
id="stop4002"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.60762942;" />
|
||||
<stop
|
||||
id="stop4010"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.29411766;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16121">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.15107913;"
|
||||
offset="0"
|
||||
id="stop16123" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.77697843;"
|
||||
offset="1"
|
||||
id="stop16125" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006-3-9">
|
||||
<stop
|
||||
id="stop16016-1-7"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.9285714;" />
|
||||
<stop
|
||||
id="stop16014-1-2"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.91208792;"
|
||||
offset="1"
|
||||
id="stop3998" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4124"
|
||||
id="linearGradient5956"
|
||||
x1="14.198953"
|
||||
y1="0.86910993"
|
||||
x2="19.162304"
|
||||
y2="11.581152"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16121"
|
||||
id="linearGradient6057"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="14.198953"
|
||||
y1="0.86910993"
|
||||
x2="14.324608"
|
||||
y2="14" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-3-9"
|
||||
id="linearGradient3852"
|
||||
x1="3"
|
||||
y1="18"
|
||||
x2="19"
|
||||
y2="6"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4000"
|
||||
id="linearGradient5123"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="19"
|
||||
y1="22"
|
||||
x2="19"
|
||||
y2="18" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="32"
|
||||
inkscape:cx="12.881078"
|
||||
inkscape:cy="11.483638"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="kget">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none;display:inline"
|
||||
d="M 8.8125,1.03125 A 0.97391938,0.97391938 0 0 0 8.03125,2 l 0,3.03125 -3.03125,0 a 0.97391938,0.97391938 0 0 0 -0.96875,0.8125 l -2,12 a 0.97391938,0.97391938 0 0 0 0,0.15625 l 0,3 a 0.97391938,0.97391938 0 0 0 0.28125,0.6875 l 1,1 A 0.97391938,0.97391938 0 0 0 4,22.96875 l 16,0 a 0.97391938,0.97391938 0 0 0 0.6875,-0.28125 l 1,-1 A 0.97391938,0.97391938 0 0 0 21.96875,21 l 0,-3 a 0.97391938,0.97391938 0 0 0 0,-0.15625 l -2,-12 A 0.97391938,0.97391938 0 0 0 19,5.03125 l -3.03125,0 0,-3.03125 A 0.97391938,0.97391938 0 0 0 15,1.03125 l -6,0 a 0.97391938,0.97391938 0 0 0 -0.1875,0 z M 9,2 l 6,0 0,4 4,0 2,12 0,3 -1,1 L 4,22 3,21 3,18 5,6 9,6 9,2 z"
|
||||
id="path5204"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5123);fill-opacity:1;stroke:none;display:inline"
|
||||
d="m 3,18 0,3 1,1 16,0 1,-1 0,-3 z"
|
||||
id="path4554"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3852);fill-opacity:1;stroke:none"
|
||||
d="M 5,6 3,18 21,18 19,6 15,6 15,8 18,8 12,14 6,8 9,8 9,6 5,6 z"
|
||||
id="path3059"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect11043"
|
||||
style="fill:none;stroke:none" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.39215687;stroke:none"
|
||||
id="rect6061"
|
||||
width="18"
|
||||
height="1"
|
||||
x="3"
|
||||
y="18" />
|
||||
<path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:0.19607843;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="m 7.21875,10.59375 c -0.057442,0.02741 -0.1316278,0.03407 -0.1875,0.0625 -1.3024003,0.662764 -2.21875,1.661248 -2.21875,2.875 0,1.213752 0.9163497,2.180986 2.21875,2.84375 1.3024002,0.662765 3.044198,1.0625 4.96875,1.0625 1.924553,0 3.66635,-0.399735 4.96875,-1.0625 1.3024,-0.662764 2.21875,-1.629998 2.21875,-2.84375 0,-1.213752 -0.91635,-2.212236 -2.21875,-2.875 -0.05587,-0.02843 -0.129962,-0.03509 -0.1875,-0.0625 L 16.0625,11.3125 c 0.179928,0.07339 0.37022,0.136805 0.53125,0.21875 1.145698,0.583023 1.71875,1.312746 1.71875,2 0,0.687255 -0.573052,1.416978 -1.71875,2 C 15.448052,16.114273 13.81112,16.5 12,16.5 c -1.811119,0 -3.4480519,-0.385727 -4.59375,-0.96875 -1.145698,-0.583022 -1.71875,-1.312745 -1.71875,-2 0,-0.687254 0.573052,-1.416977 1.71875,-2 C 7.5672801,11.44931 7.7585027,11.385886 7.9375,11.3125 L 7.21875,10.59375 z"
|
||||
id="path4014"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none;display:inline"
|
||||
d="m 8.03125,6 0,1.03125 -2.03125,0 A 0.97391938,0.97391938 0 0 0 5.3125,8.6875 l 6,6 a 0.97391938,0.97391938 0 0 0 1.375,0 l 6,-6 A 0.97391938,0.97391938 0 0 0 18,7.03125 l -2.03125,0 L 15.96875,6 15,6 15,8 18,8 12,14 6,8 9,8 9,6 8.03125,6 z"
|
||||
id="path5865"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5956);fill-opacity:1;stroke:none"
|
||||
d="m 9,2 0,6 -3,0 6,6 6,-6 -3,0 0,-6 z"
|
||||
id="path3456"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:url(#linearGradient6057);fill-opacity:1;stroke:none"
|
||||
d="m 9,2 0,6 -3,0 6,6 6,-6 -3,0 0,-6 -6,0 z m 1,1 4,0 0,5 a 1.0053361,1.0053361 0 0 0 1,1 L 15.5625,9 12,12.5625 8.4375,9 9,9 a 1.0053361,1.0053361 0 0 0 1,-1 l 0,-5 z"
|
||||
id="path3456-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:none"
|
||||
id="rect4038"
|
||||
width="16"
|
||||
height="1"
|
||||
x="4"
|
||||
y="20" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.8 KiB |
155
src/desktoptheme/air/icons/klipper.svg
Normal file
After Width: | Height: | Size: 16 KiB |
260
src/desktoptheme/air/icons/konv_message.svg
Normal file
@ -0,0 +1,260 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg1307"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.0"
|
||||
sodipodi:docname="konv_message.svgz">
|
||||
<defs
|
||||
id="defs1309">
|
||||
<linearGradient
|
||||
id="linearGradient4082">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4084" />
|
||||
<stop
|
||||
id="stop4086"
|
||||
offset="0.67448568"
|
||||
style="stop-color:#e5e5e5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4088"
|
||||
offset="0.67448568"
|
||||
style="stop-color:#d3d3d3;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4090" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3952">
|
||||
<stop
|
||||
style="stop-color:#ffad9c;stop-opacity:0.91366905;"
|
||||
offset="0"
|
||||
id="stop3954" />
|
||||
<stop
|
||||
id="stop3960"
|
||||
offset="0.5"
|
||||
style="stop-color:#ff4923;stop-opacity:0.9137255;" />
|
||||
<stop
|
||||
style="stop-color:#bf2000;stop-opacity:0.9137255;"
|
||||
offset="0.75"
|
||||
id="stop3962" />
|
||||
<stop
|
||||
style="stop-color:#ff6b4b;stop-opacity:0.9137255;"
|
||||
offset="1"
|
||||
id="stop3956" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3952"
|
||||
id="radialGradient3958"
|
||||
cx="8.9466743"
|
||||
cy="110.68961"
|
||||
fx="8.9466743"
|
||||
fy="110.68961"
|
||||
r="10"
|
||||
gradientTransform="matrix(1.643958,0,0,1.1982826,-5.7612829,-21.313401)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4082"
|
||||
id="radialGradient4080"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.40421546,0.01319,-2.674854e-4,0.20438145,-9.6836604,104.22893)"
|
||||
cx="53.058922"
|
||||
cy="26.622444"
|
||||
fx="53.058922"
|
||||
fy="26.622444"
|
||||
r="39.596578" />
|
||||
<linearGradient
|
||||
id="linearGradient3952-9">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.63309354;"
|
||||
offset="0"
|
||||
id="stop3954-7" />
|
||||
<stop
|
||||
id="stop3960-3"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.16546762;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.1294964;"
|
||||
offset="0.75"
|
||||
id="stop3962-6" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.33812949;"
|
||||
offset="1"
|
||||
id="stop3956-1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="10"
|
||||
fy="110.68961"
|
||||
fx="8.9466743"
|
||||
cy="110.68961"
|
||||
cx="8.9466743"
|
||||
gradientTransform="matrix(1.643958,0,0,1.1982826,-5.7612829,-125.3134)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3054"
|
||||
xlink:href="#linearGradient3952-9"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4082-7">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.2086331;"
|
||||
offset="0"
|
||||
id="stop4084-0" />
|
||||
<stop
|
||||
id="stop4086-8"
|
||||
offset="0.60124201"
|
||||
style="stop-color:#000000;stop-opacity:0.07194245;" />
|
||||
<stop
|
||||
id="stop4088-6"
|
||||
offset="0.67448568"
|
||||
style="stop-color:#000000;stop-opacity:0.2086331;" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.35251799;"
|
||||
offset="1"
|
||||
id="stop4090-2" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4082-7"
|
||||
id="radialGradient3961"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.40421546,0.01319,-2.674854e-4,0.20438145,-9.6836599,104.22893)"
|
||||
cx="53.058922"
|
||||
cy="26.622444"
|
||||
fx="53.058922"
|
||||
fy="26.622444"
|
||||
r="39.596577" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="9.448099"
|
||||
inkscape:cy="4.9811619"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
guidetolerance="0.1px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-global="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3109"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata1312">
|
||||
<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/GPL/2.0/" />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Oxygen team</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:title></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
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(0,-104)">
|
||||
<g
|
||||
id="konv_message">
|
||||
<rect
|
||||
transform="translate(0,104)"
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4094"
|
||||
style="opacity:1;fill:#ffffff;stroke:none;fill-opacity:0" />
|
||||
<g
|
||||
id="g4211"
|
||||
transform="matrix(0.99394534,0,0,1.0311488,0.00605466,-2.9666671)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none"
|
||||
d="m 12.05348,105.6875 c -0.273924,0.0123 -0.5346,0.0303 -0.8125,0.0625 -5.8719318,0.67949 -10.3535026,5.43607 -9.7812503,10.78125 0.1948748,1.82024 1.0704663,3.38475 2.21875,4.71875 -0.409035,0.69845 -0.9218242,1.17504 -1.75,1.28125 a 1.0539464,1.0539464 0 0 0 -0.25,2.03125 c 2.4617232,0.91833 5.0540038,0.41539 6.96875,-0.125 1.4596533,0.41679 3.0299023,0.5632 4.6562503,0.375 5.871933,-0.67948 10.353503,-5.43608 9.78125,-10.78125 -0.464905,-4.34246 -4.145814,-7.54032 -8.625,-8.21875 -0.767423,-0.11624 -1.584477,-0.16185 -2.40625,-0.125 z m 0.0625,1.03125 c 0.747849,-0.0362 1.481133,0.018 2.1875,0.125 4.08123,0.61815 7.310478,3.49902 7.71875,7.3125 0.502486,4.69351 -3.464734,9.00256 -8.84375,9.625 -1.597912,0.18491 -3.136313,0.0353 -4.5312503,-0.40625 -1.8392796,0.54289 -4.3844408,1.01167 -6.59375,0.1875 1.3975074,-0.17922 2.340802,-1.0885 2.875,-2.34375 -1.3231287,-1.26814 -2.2061561,-2.94351 -2.40625,-4.8125 -0.5024858,-4.69352 3.4647319,-9.00255 8.8437503,-9.625 0.252142,-0.0292 0.500717,-0.0504 0.75,-0.0625 z"
|
||||
id="path4034" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3958);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 14.239953,106.84082 c -0.941823,-0.14266 -1.931023,-0.16517 -2.939589,-0.0484 -5.3790181,0.62245 -9.3319573,4.93286 -8.8294715,9.62638 0.2000939,1.86899 1.0775837,3.51937 2.4007124,4.78751 -0.534198,1.25525 -1.4740976,2.16249 -2.871605,2.34171 2.2093092,0.82417 4.7486396,0.37119 6.5879192,-0.1717 1.3949373,0.44159 2.9352519,0.60435 4.5331639,0.41944 5.379016,-0.62244 9.338402,-4.93779 8.835916,-9.6313 -0.408272,-3.81348 -3.635816,-6.70543 -7.717046,-7.32358 z"
|
||||
id="path1969"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 16.34375,109.83789 a 0.81848562,0.81848562 0 0 0 -0.291016,0.0527 l -5.599609,2.13477 -3.515625,0 c -0.5839936,-2e-5 -0.9968533,0.38078 -1.2519531,0.78906 -0.5433359,0.30305 -0.9411308,0.82242 -0.9414063,1.4668 l 0,1.6875 c -2.733e-4,0.64504 0.3979446,1.16375 0.9414063,1.4668 0.2551397,0.40873 0.6680487,0.78904 1.2519531,0.78906 l 0.2441406,0 0,1.05664 c -3.806e-4,0.88941 0.6129212,1.78706 1.5996094,1.78711 l 0.4375,0 c 0.986768,5e-5 1.59923,-0.89855 1.599609,-1.78711 l 0,-0.92578 5.205079,2.21094 a 0.81848562,0.81848562 0 0 0 0.320312,0.0644 c 0.921834,6e-5 1.567989,-0.86046 1.568359,-1.72461 l 0,-1.11523 c 0.975911,-0.38589 1.624504,-1.42558 1.625,-2.57227 4.19e-4,-1.14732 -0.648874,-2.18636 -1.625,-2.57227 l 0,-1.05273 c 3.7e-4,-0.86498 -0.60618,-1.75581 -1.568359,-1.75586 z"
|
||||
id="path3959"
|
||||
style="fill:url(#radialGradient3961);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:original="M 16.34375 110.65625 L 10.6875 112.8125 C 10.6539 112.8255 10.62944 112.82685 10.59375 112.84375 L 6.9375 112.84375 C 6.6438155 112.84374 6.4146053 113.05166 6.28125 113.34375 C 5.8822019 113.38715 5.5627139 113.78095 5.5625 114.28125 L 5.5625 115.96875 C 5.562288 116.46905 5.8822373 116.86282 6.28125 116.90625 C 6.4143559 117.19836 6.6438139 117.40624 6.9375 117.40625 L 8 117.40625 L 8 119.28125 C 7.9997734 119.81069 8.3488935 120.24998 8.78125 120.25 L 9.21875 120.25 C 9.651104 120.25002 9.9997738 119.8107 10 119.28125 L 10 117.40625 L 10.6875 117.40625 C 10.70909 117.41835 10.72838 117.4255 10.75 117.4375 L 16.34375 119.8125 C 16.765285 119.81253 17.093527 119.42602 17.09375 118.90625 L 17.09375 117.15625 L 17.125 117.15625 C 17.998751 117.15629 18.718287 116.28871 18.71875 115.21875 C 18.71914 114.14879 17.99875 113.28129 17.125 113.28125 L 17.09375 113.28125 L 17.09375 111.59375 C 17.093972 111.07399 16.765285 110.65627 16.34375 110.65625 z "
|
||||
inkscape:radius="0.81840378"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#radialGradient4080);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 16.337068,110.648 -5.643614,2.16193 c -0.0336,0.013 -0.06442,0.0291 -0.10011,0.046 l -3.6408531,-1.9e-4 c -0.2936845,-1e-5 -0.5487326,0.1809 -0.6820879,0.47299 -0.3990481,0.0434 -0.7133466,0.44191 -0.7135605,0.94221 l -7.283e-4,1.70064 c -2.12e-4,0.5003 0.3137405,0.89885 0.7127532,0.94228 0.1331059,0.29211 0.3879822,0.4903 0.6816683,0.49031 l 1.0572239,6e-5 -8.072e-4,1.8845 c -2.266e-4,0.52944 0.3492036,0.95759 0.7815601,0.95761 l 0.4227722,1e-5 c 0.432354,2e-5 0.7821533,-0.42808 0.7823795,-0.95753 l 8.073e-4,-1.88449 0.7006445,3e-5 c 0.02159,0.0121 0.04092,0.0263 0.06254,0.0383 l 5.575482,2.38271 c 0.421535,3e-5 0.76338,-0.41478 0.763603,-0.93455 l 0.0012,-1.72891 0.02529,0 c 0.873751,4e-5 1.580658,-0.86512 1.581121,-1.93508 l 7.1e-5,-0.003 c 3.9e-4,-1.06996 -0.705783,-1.93521 -1.579533,-1.93525 l -0.02528,0 3.27e-4,-1.69817 c 2.22e-4,-0.51976 -0.341266,-0.94226 -0.762801,-0.94228 z"
|
||||
id="rect2909"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccc" />
|
||||
<path
|
||||
id="path1969-2"
|
||||
transform="translate(0,104)"
|
||||
d="m 12.0625,2.71875 c -0.249283,0.012081 -0.497858,0.033307 -0.75,0.0625 -5.3790181,0.62245 -9.3462358,4.93148 -8.84375,9.625 0.2000939,1.86899 1.0831213,3.54436 2.40625,4.8125 C 4.340802,18.474 3.3975074,19.38328 2,19.5625 c 2.2093092,0.82417 4.7544704,0.35539 6.59375,-0.1875 1.3949373,0.44159 2.933338,0.59116 4.53125,0.40625 5.379016,-0.62244 9.346236,-4.93149 8.84375,-9.625 C 21.560478,6.34277 18.33123,3.4619 14.25,2.84375 13.543633,2.736755 12.810349,2.6825058 12.0625,2.71875 Z m 0.03125,0.9375 c 0.689828,-0.02821 1.379272,0.02624 2.03125,0.125 3.726731,0.56446 6.548427,3.12649 6.90625,6.46875 0.440338,4.11301 -3.060075,8.02212 -8,8.59375 -1.472141,0.17036 -2.892498,0.02506 -4.15625,-0.375 a 0.93885565,0.93885565 0 0 0 -0.5625,0 c -1.0560298,0.3117 -2.3028047,0.49056 -3.5625,0.5 0.3794872,-0.4276 0.7752976,-0.847 1,-1.375 a 0.93885565,0.93885565 0 0 0 -0.21875,-1.0625 c -1.1755721,-1.12672 -1.9497045,-2.58139 -2.125,-4.21875 -0.4403378,-4.11302 3.0600693,-8.02211 8,-8.59375 0.229196,-0.026535 0.457557,-0.053097 0.6875,-0.0625 z"
|
||||
style="fill:url(#radialGradient3054);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
228
src/desktoptheme/air/icons/konversation.svg
Normal file
@ -0,0 +1,228 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg1307"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.0"
|
||||
sodipodi:docname="konversation.svgz">
|
||||
<defs
|
||||
id="defs1309">
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3952-0"
|
||||
id="radialGradient3958-3"
|
||||
cx="8.9466743"
|
||||
cy="110.68961"
|
||||
fx="8.9466743"
|
||||
fy="110.68961"
|
||||
r="10"
|
||||
gradientTransform="matrix(1.643958,0,0,1.1982826,-5.7612829,-125.3134)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3952-0">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.91366905;"
|
||||
offset="0"
|
||||
id="stop3954-20" />
|
||||
<stop
|
||||
id="stop3960-7"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.84892088;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.3543956;"
|
||||
offset="0.75"
|
||||
id="stop3962-4" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.84892088;"
|
||||
offset="1"
|
||||
id="stop3956-7" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4082-8"
|
||||
id="radialGradient4080-7"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.40421546,0.01319,-2.674854e-4,0.20438145,-9.6836604,104.22893)"
|
||||
cx="53.058922"
|
||||
cy="26.622444"
|
||||
fx="53.058922"
|
||||
fy="26.622444"
|
||||
r="39.596577" />
|
||||
<linearGradient
|
||||
id="linearGradient4082-8">
|
||||
<stop
|
||||
style="stop-color:#282828;stop-opacity:0.60217983;"
|
||||
offset="0"
|
||||
id="stop4084-8" />
|
||||
<stop
|
||||
id="stop3846"
|
||||
offset="0.64731497"
|
||||
style="stop-color:#1e1e1e;stop-opacity:0.78610355;" />
|
||||
<stop
|
||||
style="stop-color:#141414;stop-opacity:0.68627453;"
|
||||
offset="1"
|
||||
id="stop4090-8" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3952-9-3">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.26618704;"
|
||||
offset="0"
|
||||
id="stop3954-7-1" />
|
||||
<stop
|
||||
id="stop3960-3-0"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.41007194;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.28776979;"
|
||||
offset="0.75"
|
||||
id="stop3962-6-3" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.67625898;"
|
||||
offset="1"
|
||||
id="stop3956-1-6" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="10"
|
||||
fy="110.68961"
|
||||
fx="8.9466743"
|
||||
cy="110.68961"
|
||||
cx="8.9466743"
|
||||
gradientTransform="matrix(1.643958,0,0,1.1982826,-5.7612829,-125.3134)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4010"
|
||||
xlink:href="#linearGradient3952-9-3"
|
||||
inkscape:collect="always" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="0.079705822"
|
||||
inkscape:cy="13.876355"
|
||||
inkscape:current-layer="konversation"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
guidetolerance="0.1px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-global="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3109"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata1312">
|
||||
<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/GPL/2.0/" />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Oxygen team</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:title></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
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(0,-104)">
|
||||
<g
|
||||
id="konversation">
|
||||
<rect
|
||||
transform="translate(0,104)"
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4094-3"
|
||||
style="fill:#ffffff;fill-opacity:0;stroke:none" />
|
||||
<g
|
||||
id="g4222"
|
||||
transform="matrix(0.99394535,0,0,1.0311488,0.05921051,-2.9666695)">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none"
|
||||
d="M 12,1.6875 C 11.726076,1.699782 11.4654,1.717825 11.1875,1.75 5.3155685,2.42949 0.83399774,7.18607 1.40625,12.53125 1.6011248,14.35149 2.4767163,15.916 3.625,17.25 3.215965,17.94845 2.7031758,18.42504 1.875,18.53125 a 1.0539464,1.0539464 0 0 0 -0.25,2.03125 c 2.4617232,0.91833 5.0540038,0.41539 6.96875,-0.125 1.459653,0.41679 3.029902,0.5632 4.65625,0.375 5.871933,-0.67948 10.353503,-5.43608 9.78125,-10.78125 C 22.566345,5.68879 18.885436,2.49093 14.40625,1.8125 13.638827,1.6962575 12.821773,1.6506539 12,1.6875 Z m 0.0625,1.03125 c 0.747849,-0.036244 1.481133,0.018005 2.1875,0.125 4.08123,0.61815 7.310478,3.49902 7.71875,7.3125 0.502486,4.69351 -3.464734,9.00256 -8.84375,9.625 C 11.527088,19.96616 9.9886873,19.81659 8.59375,19.375 6.7544704,19.91789 4.2093092,20.38667 2,19.5625 3.3975074,19.38328 4.340802,18.474 4.875,17.21875 3.5518713,15.95061 2.6688439,14.27524 2.46875,12.40625 1.9662642,7.71273 5.9334819,3.4037 11.3125,2.78125 c 0.252142,-0.029193 0.500717,-0.050419 0.75,-0.0625 z"
|
||||
transform="translate(0,104)"
|
||||
id="path4034-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="scscccsscs"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1969-22"
|
||||
transform="translate(0,104)"
|
||||
d="m 12.0625,2.71875 c -0.249283,0.012081 -0.497858,0.033307 -0.75,0.0625 -5.3790181,0.62245 -9.3462358,4.93148 -8.84375,9.625 0.2000939,1.86899 1.0831213,3.54436 2.40625,4.8125 C 4.340802,18.474 3.3975074,19.38328 2,19.5625 c 2.2093092,0.82417 4.7544704,0.35539 6.59375,-0.1875 1.3949373,0.44159 2.933338,0.59116 4.53125,0.40625 5.379016,-0.62244 9.346236,-4.93149 8.84375,-9.625 C 21.560478,6.34277 18.33123,3.4619 14.25,2.84375 13.543633,2.736755 12.810349,2.6825058 12.0625,2.71875 Z"
|
||||
style="fill:url(#radialGradient3958-3);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
id="path3959-1"
|
||||
transform="translate(0,104)"
|
||||
d="m 16.1875,5.84375 a 0.81848562,0.81848562 0 0 0 -0.125,0.0625 l -5.5625,2.125 -3.5625,0 C 6.3558,8.03123 5.9431387,8.40615 5.6875,8.8125 5.1378124,9.11336 4.7502773,9.63268 4.75,10.28125 l 0,1.6875 c -2.751e-4,0.64923 0.3876885,1.16789 0.9375,1.46875 0.25568,0.4068 0.6683888,0.78123 1.25,0.78125 l 0.25,0 0,1.0625 c -3.807e-4,0.88941 0.6070618,1.7812 1.59375,1.78125 l 0.4375,0 c 0.986768,5e-5 1.59337,-0.89269 1.59375,-1.78125 l 0,-0.9375 5.21875,2.21875 a 0.81848562,0.81848562 0 0 0 0.3125,0.0625 c 0.921834,7e-5 1.562129,-0.8546 1.5625,-1.71875 l 0,-1.125 c 0.975124,-0.38635 1.624504,-1.41636 1.625,-2.5625 4.18e-4,-1.14677 -0.649661,-2.17613 -1.625,-2.5625 l 0,-1.0625 c 3.69e-4,-0.86498 -0.600321,-1.74995 -1.5625,-1.75 a 0.81848562,0.81848562 0 0 0 -0.15625,0 z m 0.15625,0.8125 c 0.421535,2e-5 0.750222,0.41774 0.75,0.9375 l 0,1.6875 0.03125,0 c 0.87375,4e-5 1.59414,0.86754 1.59375,1.9375 -4.63e-4,1.06996 -0.719999,1.93754 -1.59375,1.9375 l -0.03125,0 0,1.75 c -2.23e-4,0.51977 -0.328465,0.90628 -0.75,0.90625 L 10.75,13.4375 c -0.02162,-0.012 -0.04091,-0.01915 -0.0625,-0.03125 l -0.6875,0 0,1.875 C 9.9997738,15.8107 9.651104,16.25002 9.21875,16.25 l -0.4375,0 C 8.3488935,16.24998 7.9997734,15.81069 8,15.28125 l 0,-1.875 -1.0625,0 c -0.2936861,-10e-6 -0.5231441,-0.20789 -0.65625,-0.5 -0.3990127,-0.04343 -0.718962,-0.4372 -0.71875,-0.9375 l 0,-1.6875 c 2.139e-4,-0.5003 0.3197019,-0.8941 0.71875,-0.9375 0.1333553,-0.29209 0.3625655,-0.50001 0.65625,-0.5 l 3.65625,0 C 10.62944,8.82685 10.6539,8.8255 10.6875,8.8125 l 5.65625,-2.15625 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#radialGradient4080-7);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 16.337068,110.648 -5.643614,2.16193 c -0.0336,0.013 -0.06442,0.0291 -0.10011,0.046 l -3.6408531,-1.9e-4 c -0.2936845,-1e-5 -0.5487326,0.1809 -0.6820879,0.47299 -0.3990481,0.0434 -0.7133466,0.44191 -0.7135605,0.94221 l -7.283e-4,1.70064 c -2.12e-4,0.5003 0.3137405,0.89885 0.7127532,0.94228 0.1331059,0.29211 0.3879822,0.4903 0.6816683,0.49031 l 1.0572239,6e-5 -8.072e-4,1.8845 c -2.266e-4,0.52944 0.3492036,0.95759 0.7815601,0.95761 l 0.4227722,1e-5 c 0.432354,2e-5 0.7821533,-0.42808 0.7823795,-0.95753 l 8.073e-4,-1.88449 0.7006445,3e-5 c 0.02159,0.0121 0.04092,0.0263 0.06254,0.0383 l 5.575482,2.38271 c 0.421535,3e-5 0.76338,-0.41478 0.763603,-0.93455 l 0.0012,-1.72891 0.02529,0 c 0.873751,4e-5 1.580658,-0.86512 1.581121,-1.93508 l 7.1e-5,-0.003 c 3.9e-4,-1.06996 -0.705783,-1.93521 -1.579533,-1.93525 l -0.02528,0 3.27e-4,-1.69817 c 2.22e-4,-0.51976 -0.341266,-0.94226 -0.762801,-0.94228 z"
|
||||
id="rect2909-5"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccc" />
|
||||
<path
|
||||
id="path1969-2-3"
|
||||
transform="translate(0,104)"
|
||||
d="m 12.0625,2.71875 c -0.249283,0.012081 -0.497858,0.033307 -0.75,0.0625 -5.3790181,0.62245 -9.3462358,4.93148 -8.84375,9.625 0.2000939,1.86899 1.0831213,3.54436 2.40625,4.8125 C 4.340802,18.474 3.3975074,19.38328 2,19.5625 c 2.2093092,0.82417 4.7544704,0.35539 6.59375,-0.1875 1.3949373,0.44159 2.933338,0.59116 4.53125,0.40625 5.379016,-0.62244 9.346236,-4.93149 8.84375,-9.625 C 21.560478,6.34277 18.33123,3.4619 14.25,2.84375 13.543633,2.736755 12.810349,2.6825058 12.0625,2.71875 Z m 0.03125,0.9375 c 0.689828,-0.02821 1.379272,0.02624 2.03125,0.125 3.726731,0.56446 6.548427,3.12649 6.90625,6.46875 0.440338,4.11301 -3.060075,8.02212 -8,8.59375 -1.472141,0.17036 -2.892498,0.02506 -4.15625,-0.375 a 0.93885565,0.93885565 0 0 0 -0.5625,0 c -1.0560298,0.3117 -2.3028047,0.49056 -3.5625,0.5 0.3794872,-0.4276 0.7752976,-0.847 1,-1.375 a 0.93885565,0.93885565 0 0 0 -0.21875,-1.0625 c -1.1755721,-1.12672 -1.9497045,-2.58139 -2.125,-4.21875 -0.4403378,-4.11302 3.0600693,-8.02211 8,-8.59375 0.229196,-0.026535 0.457557,-0.053097 0.6875,-0.0625 z"
|
||||
style="fill:url(#radialGradient4010);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
339
src/desktoptheme/air/icons/kopete.svg
Normal file
@ -0,0 +1,339 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
width="48"
|
||||
height="23.999998"
|
||||
viewBox="0 0 70.661626 23.489061"
|
||||
id="Livello_1"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="kopete.svgz"><metadata
|
||||
id="metadata3065"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview3063"
|
||||
showgrid="true"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="-17.043585"
|
||||
inkscape:cy="-15.203383"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:snap-global="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3158"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true"
|
||||
originx="35.330813"
|
||||
originy="-1.3702626e-06" /></sodipodi:namedview><defs
|
||||
id="defs64"><radialGradient
|
||||
cx="66.265602"
|
||||
cy="57.4487"
|
||||
r="62.1035"
|
||||
id="radialGradient4097"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3537258,-0.2279136,0.2083657,1.3813824,7.1703388,-35.53963)"><stop
|
||||
id="stop4099"
|
||||
style="stop-color:#ffffff;stop-opacity:0.48920864;"
|
||||
offset="0.20921239" /><stop
|
||||
offset="0.37583435"
|
||||
style="stop-color:#ffffff;stop-opacity:0.28776979;"
|
||||
id="stop4101" /><stop
|
||||
id="stop4103"
|
||||
style="stop-color:#ffffff;stop-opacity:0.22302158;"
|
||||
offset="0.73694849" /><stop
|
||||
id="stop4105"
|
||||
style="stop-color:#ffffff;stop-opacity:0.28776979;"
|
||||
offset="1" /></radialGradient><radialGradient
|
||||
gradientTransform="matrix(1.3537258,-0.2279136,0.2083657,1.3813824,7.1703388,-35.53963)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3950"
|
||||
r="62.1035"
|
||||
cy="57.4487"
|
||||
cx="66.265602"><stop
|
||||
offset="0.20921239"
|
||||
style="stop-color:#ffffff;stop-opacity:0.95683455;"
|
||||
id="stop3952" /><stop
|
||||
id="stop3954"
|
||||
style="stop-color:#f8f8f8;stop-opacity:0.92086333;"
|
||||
offset="0.37583435" /><stop
|
||||
offset="0.73694849"
|
||||
style="stop-color:#ffffff;stop-opacity:0.35164836;"
|
||||
id="stop3956" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.8705036;"
|
||||
id="stop3958" /></radialGradient><radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#SVGID_6_"
|
||||
id="radialGradient4199"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.49214,-0.49180762,0.37244673,1.13,7.709911,9.4567051)"
|
||||
cx="17.080635"
|
||||
cy="8.5265236"
|
||||
fx="17.080635"
|
||||
fy="8.5265236"
|
||||
r="6.7138529" /><radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#radialGradient4097"
|
||||
id="radialGradient4203"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.21984823,-0.06524669,0.04957867,0.18503014,-4.4156639,5.3919959)"
|
||||
cx="58.367058"
|
||||
cy="29.788382"
|
||||
fx="58.367058"
|
||||
fy="29.788382"
|
||||
r="62.1035" /><radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#radialGradient3950"
|
||||
id="radialGradient4197-6"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.21984823,-0.06524669,0.04957867,0.18503014,-3.8837769,5.830272)"
|
||||
cx="58.367058"
|
||||
cy="29.788382"
|
||||
fx="58.367058"
|
||||
fy="29.788382"
|
||||
r="62.1035" /><radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#radialGradient3950"
|
||||
id="radialGradient5555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.21984823,-0.06524669,0.04957867,0.18503014,20.11622,5.830272)"
|
||||
cx="58.367058"
|
||||
cy="29.788382"
|
||||
fx="58.367058"
|
||||
fy="29.788382"
|
||||
r="62.1035" /></defs><radialGradient
|
||||
cx="66.265602"
|
||||
cy="57.4487"
|
||||
r="62.1035"
|
||||
id="SVGID_1_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3537258,-0.2279136,0.2083657,1.3813824,7.1703388,-35.53963)"><stop
|
||||
id="stop6"
|
||||
style="stop-color:#e0e0e0;stop-opacity:1"
|
||||
offset="0.3669" /><stop
|
||||
id="stop12"
|
||||
style="stop-color:#acacac;stop-opacity:1"
|
||||
offset="0.73034632" /><stop
|
||||
id="stop20"
|
||||
style="stop-color:#5b5b5b;stop-opacity:1"
|
||||
offset="1" /></radialGradient><linearGradient
|
||||
x1="63.1133"
|
||||
y1="84.261703"
|
||||
x2="63.1133"
|
||||
y2="56.7295"
|
||||
id="SVGID_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9875,-0.1574,0.1574,0.9875,10.5626,9.6975)"><stop
|
||||
id="stop25"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0" /><stop
|
||||
id="stop27"
|
||||
style="stop-color:#dbdbdb;stop-opacity:1"
|
||||
offset="1" /></linearGradient><linearGradient
|
||||
x1="81.905296"
|
||||
y1="67.636703"
|
||||
x2="184.3334"
|
||||
y2="67.636703"
|
||||
id="SVGID_5_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9875,-0.1574,0.1574,0.9875,-29.4374,9.6975)"><stop
|
||||
id="stop46"
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
offset="0" /><stop
|
||||
id="stop48"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0.1243" /><stop
|
||||
id="stop50"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0.8876" /><stop
|
||||
id="stop52"
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
offset="1" /></linearGradient><linearGradient
|
||||
x1="58.5298"
|
||||
y1="54.625"
|
||||
x2="58.5298"
|
||||
y2="7.1538"
|
||||
id="SVGID_6_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.42989,0.2279136,-0.2279136,-1.42989,199.73027,16.811143)"><stop
|
||||
id="stop57"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0" /><stop
|
||||
id="stop59"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="0.81660002" /></linearGradient><g
|
||||
transform="matrix(1.0552094,0,0,1.0329623,32.044829,-152.05931)"
|
||||
id="g4183"><g
|
||||
id="g10105"><g
|
||||
transform="translate(-2.7901897,0)"
|
||||
id="g10130"><g
|
||||
transform="matrix(1.4479899,0,0,1.4479899,5.872577,-30.497191)"
|
||||
id="g31"><defs
|
||||
id="defs33"><path
|
||||
d="M 119.543,41.087 C 112.398,-6.388 40.306,-12.726 11.126,22.1 -3.935,40.076 -4.02,65.416 12.799,82.405 c 8.54,8.624 20.096,14.019 32.045,16.151 8.259,1.477 0.901,16.63 -2.96,22.719 6.832,-3.531 13.315,-7.657 19.173,-12.31 4.062,-3.228 7.896,-6.782 10.936,-10.865 6.368,-1.327 12.513,-3.494 18.181,-6.461 18.749,-9.809 32.547,-29.44 29.369,-50.552 z"
|
||||
id="SVGID_3_"
|
||||
inkscape:connector-curvature="0" /></defs><clipPath
|
||||
id="SVGID_4_"><use
|
||||
id="use37"
|
||||
style="overflow:visible"
|
||||
x="0"
|
||||
y="0"
|
||||
width="188.431"
|
||||
height="125.275"
|
||||
xlink:href="#SVGID_3_" /></clipPath></g></g></g></g><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Layer"
|
||||
style="display:inline"
|
||||
transform="translate(35.330816,-2.1805737e-7)"><g
|
||||
style="display:inline"
|
||||
id="kopete-offline"><rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4184-1"
|
||||
style="opacity:0.66799999;fill:#ffffff;fill-opacity:0;stroke:none"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,0,-5.920875)" /><g
|
||||
transform="matrix(1.0407295,0,0,0.94539911,0.02203831,1.3668588)"
|
||||
id="g4109-7"><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686"
|
||||
d="M 12.875,1.34375 C 9.399471,1.2551445 5.7622225,2.5103036 3.46875,5.21875 0.75639041,8.4220298 0.76420715,13.078279 3.8125,16.125 c 1.4504931,1.449356 3.322577,2.312098 5.28125,2.71875 -0.00536,0.07993 -0.018974,0.09123 -0.0625,0.25 -0.1518364,0.553861 -0.528641,1.355813 -0.78125,1.75 a 1.0954658,1.0954658 0 0 0 1.375,1.5625 c 1.151267,-0.588751 2.2705,-1.261419 3.25,-2.03125 0.557848,-0.438649 1.131282,-0.984525 1.65625,-1.59375 0.981484,-0.239496 1.920339,-0.585332 2.78125,-1.03125 3.299747,-1.708189 5.80787,-5.158795 5.21875,-9.03125 C 22.167517,6.3273386 20.836123,4.4359021 19.0625,3.21875 17.288877,2.0015979 15.108873,1.4007005 12.875,1.34375 Z M 12.84375,2.4375 c 4.104294,0.1046351 7.988647,2.2537082 8.625,6.4375 0.503186,3.307592 -1.687646,6.369485 -4.65625,7.90625 -0.897437,0.464837 -1.866728,0.82335 -2.875,1.03125 -0.481334,0.639679 -1.106847,1.181773 -1.75,1.6875 -0.927521,0.728979 -1.949511,1.384305 -3.03125,1.9375 C 9.7675777,20.483545 10.932681,18.106401 9.625,17.875 7.7330671,17.540982 5.9146724,16.694863 4.5625,15.34375 1.8994803,12.682104 1.8965817,8.7225284 4.28125,5.90625 6.3025814,3.5191851 9.6515212,2.356117 12.84375,2.4375 Z m -0.5,1.40625 c -0.253579,0.00369 -0.495932,0.00972 -0.75,0.03125 -2.4389933,0.206707 -4.8128074,1.2090161 -6.25,2.90625 -1.9693162,2.3257502 -1.9871819,5.420191 0.1875,7.59375 1.1130381,1.112166 2.6938427,1.864961 4.34375,2.15625 0.76397,0.135188 1.52666,0.864336 1.6875,1.53125 0.01805,0.07484 -0.01146,0.11607 0,0.1875 0.493103,-0.405746 0.915501,-0.805459 1.25,-1.25 a 1.3885138,1.3885138 0 0 1 0.84375,-0.53125 c 0.884198,-0.182317 1.750836,-0.502027 2.53125,-0.90625 2.544241,-1.317084 4.300382,-3.878001 3.90625,-6.46875 C 19.80454,7.1923041 18.76199,5.8931384 17.21875,5 15.868415,4.218504 14.118802,3.8179266 12.34375,3.84375 Z M 11.6875,4.9375 c 0.185997,-0.015764 0.381316,0.004 0.65625,0 1.603888,-0.023333 3.181731,0.3455764 4.3125,1 1.330914,0.7702566 2.134131,1.7288764 2.375,3.3125 0.305203,2.006195 -1.132745,4.199173 -3.34375,5.34375 -0.694619,0.359785 -1.477717,0.653259 -2.25,0.8125 a 1.0954658,1.0954658 0 0 0 -0.03125,0 c -0.0087,0.0018 -0.179048,0.0599 -0.1875,0.0625 -0.0085,0.0026 -0.210568,0.05915 -0.21875,0.0625 -0.0082,0.0034 -0.179655,0.08967 -0.1875,0.09375 -0.0078,0.0041 -0.211306,0.08898 -0.21875,0.09375 -0.0074,0.0048 -0.180517,0.150824 -0.1875,0.15625 -0.007,0.0054 -0.149786,0.118966 -0.15625,0.125 -0.0065,0.006 -0.150358,0.180906 -0.15625,0.1875 -0.0059,0.0066 -0.150978,0.149151 -0.15625,0.15625 -0.03568,0.04742 -0.08544,0.108586 -0.125,0.15625 -0.05682,-0.05815 -0.06487,-0.163898 -0.125,-0.21875 -0.437849,-0.399419 -0.974036,-0.697309 -1.625,-0.8125 -1.4448904,-0.255094 -2.8237986,-0.949524 -3.75,-1.875 -1.7911134,-1.801926 -1.7816615,-4.1684929 -0.125,-6.125 1.1919662,-1.4076372 3.2991148,-2.3447228 5.5,-2.53125 z"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,-0.78299992,-6.5660687)"
|
||||
id="path4836"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:url(#radialGradient4197-6);fill-opacity:1"
|
||||
d="M 12.84375,2.4375 C 9.651521,2.356117 6.3025815,3.5191851 4.28125,5.90625 c -2.3846683,2.8162784 -2.3817697,6.775854 0.28125,9.4375 1.3521724,1.351113 3.1705671,2.197232 5.0625,2.53125 1.307681,0.231401 0.1425777,2.608545 -0.46875,3.5625 1.081739,-0.553195 2.10373,-1.208521 3.03125,-1.9375 0.643154,-0.505727 1.268666,-1.047821 1.75,-1.6875 1.008272,-0.2079 1.977563,-0.566413 2.875,-1.03125 2.968604,-1.536765 5.159436,-4.598658 4.65625,-7.90625 -0.636353,-4.1837918 -4.520706,-6.3328649 -8.625,-6.4375 z m -0.5,1.40625 c 1.775053,-0.025823 3.524665,0.374754 4.875,1.15625 1.54324,0.8931383 2.58579,2.1923041 2.875,4.09375 0.394132,2.590749 -1.362009,5.151666 -3.90625,6.46875 -0.780414,0.404223 -1.647052,0.723933 -2.53125,0.90625 A 1.3885138,1.3885138 0 0 0 12.8125,17 c -0.3345,0.444541 -0.756897,0.844254 -1.25,1.25 -0.01146,-0.07143 0.01805,-0.112659 0,-0.1875 C 11.40166,17.395586 10.63897,16.666438 9.875,16.53125 8.2250927,16.239961 6.6442881,15.487166 5.53125,14.375 3.3565681,12.201441 3.3744338,9.1070002 5.34375,6.78125 6.7809426,5.0840161 9.1547567,4.0817071 11.59375,3.875 c 0.254068,-0.021533 0.496421,-0.027561 0.75,-0.03125 z"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,-0.78299992,-6.5660687)"
|
||||
id="path22-9"
|
||||
inkscape:connector-curvature="0" /></g></g><g
|
||||
id="kopete"
|
||||
transform="translate(-35.330822,0)"><rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4184"
|
||||
style="opacity:0.66799999;fill:#ffffff;fill-opacity:0;stroke:none"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,0,-5.920875)" /><g
|
||||
transform="matrix(1.0427582,0,0,0.9470812,0.00421844,1.327048)"
|
||||
id="g4109"><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686"
|
||||
d="m 36.3125,1.375 c -0.310265,0.00465 -0.627722,0.036246 -0.9375,0.0625 -2.973906,0.2520415 -5.949189,1.470084 -7.90625,3.78125 -2.700343,3.189088 -2.690415,7.842401 0.34375,10.875 1.457566,1.456425 3.376955,2.318036 5.34375,2.71875 -0.0043,0.07906 -0.01354,0.102655 -0.0625,0.28125 -0.153742,0.560813 -0.557946,1.384028 -0.8125,1.78125 a 1.0552935,1.0552935 0 0 0 1.375,1.5 c 1.138973,-0.582464 2.233331,-1.256765 3.21875,-2.03125 0.588332,-0.462619 1.123638,-1.023184 1.625,-1.625 0.969764,-0.231509 1.938564,-0.547337 2.8125,-1 3.291127,-1.703726 5.773568,-5.147595 5.1875,-9 C 46.097585,6.0730232 44.502628,4.0701772 42.4375,2.875 40.630513,1.82922 38.484355,1.3424304 36.3125,1.375 Z m 0.53125,1.0625 c 4.104295,0.1046351 7.988646,2.2537081 8.625,6.4375 0.503186,3.307592 -1.687646,6.369485 -4.65625,7.90625 -0.897438,0.464837 -1.866729,0.82335 -2.875,1.03125 -0.481334,0.639679 -1.106846,1.181773 -1.75,1.6875 -0.92752,0.728979 -1.949511,1.384305 -3.03125,1.9375 0.611328,-0.953954 1.776431,-3.331101 0.46875,-3.5625 -1.891933,-0.334018 -3.710328,-1.180137 -5.0625,-2.53125 -2.66302,-2.661645 -2.665918,-6.6212216 -0.28125,-9.4375 2.021331,-2.3870649 5.370271,-3.5501328 8.5625,-3.46875 z"
|
||||
id="path4027"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,-36.113813,-6.5660687)"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:url(#radialGradient5555)"
|
||||
d="m 36.84375,2.4375 c -3.192229,-0.081383 -6.541169,1.0816851 -8.5625,3.46875 -2.384668,2.8162784 -2.38177,6.775854 0.28125,9.4375 1.352172,1.351113 3.170567,2.197232 5.0625,2.53125 1.307681,0.231401 0.142578,2.608545 -0.46875,3.5625 1.081739,-0.553195 2.10373,-1.208521 3.03125,-1.9375 0.643154,-0.505727 1.268666,-1.047821 1.75,-1.6875 1.008272,-0.2079 1.977563,-0.566413 2.875,-1.03125 2.968604,-1.536765 5.159436,-4.598658 4.65625,-7.90625 -0.636353,-4.1837918 -4.520706,-6.3328649 -8.625,-6.4375 z"
|
||||
id="path22"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,-36.113809,-6.5660687)"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccccccccs" /><path
|
||||
style="font-style:normal;font-weight:normal;font-size:409.62963867px;line-height:125%;font-family:'Bitstream Vera Sans';display:inline;fill:url(#radialGradient4199);fill-opacity:1;stroke:none"
|
||||
d="M 37.34375,4.03125 36.75,4.15625 a 1.2542728,1.2542728 0 0 0 -0.71875,2.0625 c 0.269525,0.3029446 0.454415,0.5419035 0.625,0.75 0.150908,0.1841025 0.303636,0.4166296 0.46875,0.65625 a 1.2542728,1.2542728 0 0 0 0.03125,0 c 0.15922,0.2249575 0.244903,0.4471676 0.3125,0.59375 a 1.2542728,1.2542728 0 0 0 0.03125,0 c 0.04626,0.097324 0.100306,0.2790991 0.15625,0.4375 A 1.2542728,1.2542728 0 0 0 36.625,8.375 L 34.03125,8.84375 33.875,8 A 1.2542728,1.2542728 0 0 0 32.4375,7.03125 L 31.46875,7.1875 a 1.2542728,1.2542728 0 0 0 -1.03125,1.5 L 30.625,9.625 a 1.2542728,1.2542728 0 0 0 1.4375,0.96875 L 33,10.4375 l 0.125,0.59375 -0.90625,0.15625 a 1.2542728,1.2542728 0 0 0 -1.03125,1.46875 l 0.21875,0.96875 a 1.2542728,1.2542728 0 0 0 0.125,0.40625 1.2542728,1.2542728 0 0 0 0.3125,1.25 l 0.3125,0.28125 a 1.2542728,1.2542728 0 0 0 1.5625,0.1875 c 0.43884,-0.279917 0.815931,-0.733476 1,-1.25 0.179041,-0.502415 0.185838,-1.045431 0.09375,-1.53125 l 0,-0.03125 -0.15625,-0.8125 2.5625,-0.4375 a 1.2542728,1.2542728 0 0 0 0.8125,-0.53125 C 38.014992,12.013377 37.889464,12.895993 37.5,13.875 a 1.2542728,1.2542728 0 0 0 1.375,1.6875 l 0.59375,-0.09375 A 1.2542728,1.2542728 0 0 0 40.375,14.8125 c 0.439335,-0.846719 0.753515,-1.761192 0.9375,-2.6875 0.187856,-0.950906 0.217154,-1.932724 0.03125,-2.90625 C 41.241111,8.6812893 41.108249,8.1522134 40.90625,7.65625 40.710761,7.1663005 40.4746,6.7325384 40.1875,6.3125 39.923378,5.9261001 39.636225,5.5672586 39.34375,5.25 39.049404,4.9307311 38.744308,4.6032769 38.40625,4.3125 a 1.2542728,1.2542728 0 0 0 -0.9375,-0.28125 1.2542728,1.2542728 0 0 0 -0.125,0 z M 37.5625,4.875 a 0.38844879,0.38844879 0 0 1 0.25,0.09375 c 0.32164,0.2766553 0.612331,0.5900901 0.875,0.875 0.262088,0.2842965 0.539053,0.5831748 0.78125,0.9375 0.249311,0.3647508 0.451436,0.7524999 0.625,1.1875 0.177767,0.4364679 0.313056,0.9182478 0.40625,1.40625 0.165656,0.867493 0.140658,1.735296 -0.03125,2.59375 -0.167134,0.850546 -0.469601,1.656186 -0.875,2.4375 a 0.38844879,0.38844879 0 0 1 -0.25,0.21875 L 38.75,14.71875 A 0.38844879,0.38844879 0 0 1 38.3125,14.1875 c 0.640793,-1.61078 0.800992,-3.087459 0.53125,-4.5 C 38.77119,9.3075791 38.696054,8.9649426 38.59375,8.65625 38.490287,8.3340966 38.38354,8.0589501 38.28125,7.84375 38.182949,7.6305893 38.026523,7.3832351 37.84375,7.125 a 0.38844879,0.38844879 0 0 1 0,-0.03125 C 37.660932,6.8284368 37.502767,6.6314944 37.34375,6.4375 37.178641,6.2360832 36.941727,5.9458739 36.65625,5.625 A 0.38844879,0.38844879 0 0 1 36.875,5 L 37.5,4.90625 A 0.38844879,0.38844879 0 0 1 37.5625,4.875 Z m -4.96875,3 a 0.38844879,0.38844879 0 0 1 0.4375,0.28125 l 0.1875,0.96875 a 0.38844879,0.38844879 0 0 1 -0.3125,0.46875 L 31.9375,9.75 A 0.38844879,0.38844879 0 0 1 31.46875,9.46875 L 31.28125,8.5 a 0.38844879,0.38844879 0 0 1 0.3125,-0.46875 l 1,-0.15625 z m 4.1875,1.34375 a 0.38844879,0.38844879 0 0 1 0.4375,0.3125 l 0.15625,0.875 A 0.38844879,0.38844879 0 0 1 37.25,10.75 0.38844879,0.38844879 0 0 1 37.0625,10.84375 l -2.625,0.46875 A 0.38844879,0.38844879 0 0 1 33.96875,11 l -0.125,-0.84375 a 0.38844879,0.38844879 0 0 1 0.3125,-0.4375 l 2.625,-0.5 z m -3.4375,2.625 a 0.38844879,0.38844879 0 0 1 0.4375,0.34375 l 0.1875,0.9375 c 0.07352,0.381165 0.05296,0.769761 -0.0625,1.09375 C 33.788532,14.549082 33.556624,14.804418 33.25,15 a 0.38844879,0.38844879 0 0 1 -0.46875,-0.03125 l -0.3125,-0.3125 a 0.38844879,0.38844879 0 0 1 0.0625,-0.59375 c 0.105677,-0.07076 0.162836,-0.134423 0.1875,-0.21875 a 0.38844879,0.38844879 0 0 1 0,-0.03125 c 0.0029,-0.0092 -0.0022,-0.04956 0,-0.0625 l -0.03125,0 A 0.38844879,0.38844879 0 0 1 32.25,13.4375 L 32.0625,12.5 a 0.38844879,0.38844879 0 0 1 0.3125,-0.46875 l 0.96875,-0.1875 z"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,-36.113809,-6.5660687)"
|
||||
id="path3176-9"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
transform="translate(-0.36995616,-0.17112302)"
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="0.57178497"
|
||||
inkscape:original="M 19.5625 1.375 L 18.65625 1.53125 C 19.08704 2.0154556 19.416806 2.4266525 19.65625 2.71875 C 19.895696 3.0108658 20.156678 3.3424588 20.4375 3.75 C 20.72212 4.1521309 20.960012 4.5484801 21.125 4.90625 C 21.294657 5.2631791 21.438753 5.6736357 21.59375 6.15625 C 21.753414 6.6380211 21.889124 7.1694145 22 7.75 C 22.41904 9.944358 22.16392 12.264294 21.1875 14.71875 L 22.0625 14.5625 C 22.634837 13.45945 23.045938 12.291256 23.28125 11.09375 C 23.521225 9.8953912 23.542096 8.7023272 23.3125 7.5 C 23.181546 6.8142688 22.99569 6.1657375 22.75 5.5625 C 22.508974 4.9584207 22.217056 4.4066907 21.875 3.90625 C 21.532937 3.4058259 21.178254 2.9592475 20.8125 2.5625 C 20.446741 2.1657719 20.025149 1.7729423 19.5625 1.375 z M 12.3125 5.75 L 10.875 6 L 11.15625 7.40625 L 12.59375 7.15625 L 12.3125 5.75 z M 18.5 7.75 L 14.625 8.46875 L 14.84375 9.6875 L 18.71875 9 L 18.5 7.75 z M 13.4375 11.625 L 12 11.875 L 12.28125 13.28125 L 12.96875 13.15625 C 13.03274 13.541971 13.05032 13.868776 12.96875 14.125 C 12.892723 14.384942 12.721583 14.611968 12.46875 14.78125 L 12.90625 15.21875 C 13.634376 14.75431 13.888898 14.035286 13.6875 13.03125 L 13.4375 11.625 z "
|
||||
style="font-style:normal;font-weight:normal;font-size:409.62963867px;line-height:125%;font-family:'Bitstream Vera Sans';fill:#3c3c3c;fill-opacity:0.78431373;stroke:none"
|
||||
id="path3176"
|
||||
d="M 19.568359,0.80273438 A 0.57184215,0.57184215 0 0 0 19.464844,0.8125 l -0.90625,0.15625 a 0.57184215,0.57184215 0 0 0 -0.330078,0.9433594 c 0.420254,0.472364 0.743267,0.8734127 0.986328,1.1699218 0.23409,0.2855826 0.482824,0.6016154 0.751953,0.9921876 a 0.57184215,0.57184215 0 0 0 0.0039,0.00586 c 0.269064,0.3801524 0.490056,0.7526087 0.634766,1.0664063 a 0.57184215,0.57184215 0 0 0 0.0039,0.00586 c 0.150583,0.3167996 0.287143,0.7054398 0.439453,1.1796874 a 0.57184215,0.57184215 0 0 0 0.002,0.00391 c 0.150604,0.4544317 0.27991,0.9621962 0.386719,1.5214844 0.397092,2.0794252 0.162072,4.2791331 -0.78125,6.6503901 a 0.57184215,0.57184215 0 0 0 0.630859,0.773438 l 0.875,-0.15625 a 0.57184215,0.57184215 0 0 0 0.408203,-0.298828 c 0.596509,-1.149634 1.025386,-2.369622 1.271485,-3.621094 l 0,-0.002 C 24.094503,9.9400134 24.118741,8.6689803 23.875,7.3925781 23.738085,6.6756308 23.54215,5.9929692 23.28125,5.3515625 l -0.002,-0.00391 C 23.024105,4.7089048 22.713869,4.1197675 22.347656,3.5839844 21.991113,3.0623762 21.618245,2.5942989 21.232422,2.1757812 20.845742,1.7563604 20.409039,1.3486753 19.935547,0.94140625 A 0.57184215,0.57184215 0 0 0 19.568359,0.80273438 Z M 12.296875,5.1777344 a 0.57184215,0.57184215 0 0 0 -0.08203,0.00977 l -1.4375,0.25 a 0.57184215,0.57184215 0 0 0 -0.462891,0.6738281 l 0.28125,1.40625 A 0.57184215,0.57184215 0 0 0 11.253906,7.96875 l 1.4375,-0.25 a 0.57184215,0.57184215 0 0 0 0.462891,-0.6738281 l -0.28125,-1.40625 A 0.57184215,0.57184215 0 0 0 12.296875,5.1777344 Z m 6.201172,2 A 0.57184215,0.57184215 0 0 0 18.396484,7.1875 l -3.875,0.71875 A 0.57184215,0.57184215 0 0 0 14.0625,8.5703125 l 0.21875,1.21875 A 0.57184215,0.57184215 0 0 0 14.943359,10.25 l 3.875,-0.6875 A 0.57184215,0.57184215 0 0 0 19.28125,8.9023438 l -0.21875,-1.25 A 0.57184215,0.57184215 0 0 0 18.498047,7.1777344 Z m -5.064453,3.8749996 a 0.57184215,0.57184215 0 0 0 -0.09375,0.0098 l -1.4375,0.25 a 0.57184215,0.57184215 0 0 0 -0.462891,0.673828 l 0.28125,1.40625 a 0.57184215,0.57184215 0 0 0 0.662109,0.451172 l 0.03711,-0.0078 c -0.0037,0.02434 0.0091,0.09885 0.0039,0.115234 a 0.57184215,0.57184215 0 0 0 -0.0039,0.01367 c -0.03631,0.124139 -0.113962,0.237637 -0.269531,0.341797 a 0.57184215,0.57184215 0 0 0 -0.08594,0.878906 l 0.4375,0.4375 a 0.57184215,0.57184215 0 0 0 0.710938,0.07813 c 0.451386,-0.28792 0.797409,-0.695353 0.970703,-1.181641 0.173083,-0.485695 0.179029,-1.027023 0.06445,-1.599609 L 14,11.525391 a 0.57184215,0.57184215 0 0 0 -0.566406,-0.472657 z" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:url(#radialGradient4203);fill-opacity:1"
|
||||
d="M 12.3125,2 C 9.120271,1.9186172 5.7713315,3.0816851 3.75,5.46875 c -2.3846683,2.8162784 -2.3817697,6.775855 0.28125,9.4375 1.3521723,1.351113 3.1705671,2.197232 5.0625,2.53125 1.307681,0.2314 0.1425777,2.608546 -0.46875,3.5625 1.0817386,-0.553195 2.10373,-1.208521 3.03125,-1.9375 0.643154,-0.505727 1.268666,-1.047821 1.75,-1.6875 1.008271,-0.2079 1.977562,-0.566414 2.875,-1.03125 C 19.249854,14.806985 21.440685,11.745092 20.9375,8.4375 20.301146,4.2537081 16.416794,2.1046351 12.3125,2 Z m -0.5,1 c 1.844369,-0.029939 3.665509,0.3609169 5.09375,1.1875 1.632275,0.9446664 2.753977,2.3778291 3.0625,4.40625 0.426876,2.805989 -1.45334,5.523205 -4.125,6.90625 -0.815553,0.422423 -1.703548,0.716252 -2.625,0.90625 a 0.97159811,0.97159811 0 0 0 -0.59375,0.375 c -0.411761,0.547219 -0.929668,1.058212 -1.53125,1.53125 -0.15376,0.120847 -0.371541,0.196087 -0.53125,0.3125 0.04283,-0.290681 0.142888,-0.541675 0.0625,-0.875 C 10.492855,17.202066 9.9139917,16.580717 9.28125,16.46875 7.5586725,16.164632 5.9035908,15.402663 4.71875,14.21875 2.3974396,11.898638 2.40597,8.5667864 4.5,6.09375 6.0258828,4.2917787 8.5009997,3.2456912 11.03125,3.03125 11.294822,3.008912 11.549019,3.0042769 11.8125,3 Z"
|
||||
id="path22-8"
|
||||
transform="matrix(1.4721172,0,0,1.4721172,0,-5.920875)" /></g></g></g><linearGradient
|
||||
x1="81.905296"
|
||||
y1="67.636703"
|
||||
x2="184.3334"
|
||||
y2="67.636703"
|
||||
id="SVGID_5_-958"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9875,-0.1574,0.1574,0.9875,-29.4374,9.6975)"><stop
|
||||
id="stop2501"
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
offset="0" /><stop
|
||||
id="stop2503"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0.1243" /><stop
|
||||
id="stop2505"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0.8876" /><stop
|
||||
id="stop2507"
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
offset="1" /></linearGradient><radialGradient
|
||||
cx="66.265602"
|
||||
cy="57.4487"
|
||||
r="62.1035"
|
||||
id="SVGID_1_-681"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.3537258,-0.2279136,0.2083657,1.3813824,7.1703388,-35.53963)"><stop
|
||||
id="stop2510"
|
||||
style="stop-color:#121212;stop-opacity:0.46762589;"
|
||||
offset="0.3669" /><stop
|
||||
id="stop2512"
|
||||
style="stop-color:#1a1a1a;stop-opacity:0.35971224;"
|
||||
offset="0.73034632" /><stop
|
||||
id="stop2514"
|
||||
style="stop-color:#040404;stop-opacity:0.39568347;"
|
||||
offset="1" /></radialGradient><linearGradient
|
||||
x1="63.1133"
|
||||
y1="84.261703"
|
||||
x2="63.1133"
|
||||
y2="56.7295"
|
||||
id="SVGID_2_-861"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9875,-0.1574,0.1574,0.9875,10.5626,9.6975)"><stop
|
||||
id="stop2517"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0" /><stop
|
||||
id="stop2519"
|
||||
style="stop-color:#dbdbdb;stop-opacity:1"
|
||||
offset="1" /></linearGradient><linearGradient
|
||||
x1="58.5298"
|
||||
y1="54.625"
|
||||
x2="58.5298"
|
||||
y2="7.1538"
|
||||
id="SVGID_6_-658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.42989,0.2279136,-0.2279136,-1.42989,199.73027,16.811143)"><stop
|
||||
id="stop2522"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0" /><stop
|
||||
id="stop2524"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="0.81660002" /></linearGradient></svg>
|
After Width: | Height: | Size: 27 KiB |
242
src/desktoptheme/air/icons/korgac.svg
Normal file
@ -0,0 +1,242 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="korgac.svgz">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient3877">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.8561151;"
|
||||
offset="0"
|
||||
id="stop3879" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3881" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16121">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.74100721;"
|
||||
offset="0"
|
||||
id="stop16123" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.61151081;"
|
||||
offset="1"
|
||||
id="stop16125" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006">
|
||||
<stop
|
||||
id="stop3915"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3895"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:0.94964027;" />
|
||||
<stop
|
||||
id="stop16014"
|
||||
offset="0.53266597"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.96402878;"
|
||||
offset="1"
|
||||
id="stop16010" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16018-7">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.69064748;"
|
||||
offset="0"
|
||||
id="stop16020-4" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.48920864;"
|
||||
offset="1"
|
||||
id="stop16022-3" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006"
|
||||
id="radialGradient6247"
|
||||
cx="8.3723621"
|
||||
cy="9.7446938"
|
||||
fx="8.3723621"
|
||||
fy="9.7446938"
|
||||
r="9.7842484"
|
||||
gradientTransform="matrix(1.4883361,0.31302742,-0.43944909,2.2490562,2.1126929,-15.827125)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient16006-6">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.92086333;"
|
||||
offset="0"
|
||||
id="stop16008-3" />
|
||||
<stop
|
||||
id="stop16016-0"
|
||||
offset="0.25"
|
||||
style="stop-color:#ffffff;stop-opacity:0.88489211;" />
|
||||
<stop
|
||||
id="stop16014-1"
|
||||
offset="0.5"
|
||||
style="stop-color:#d7d7d7;stop-opacity:0.92156863;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.89928055;"
|
||||
offset="1"
|
||||
id="stop16010-4" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-6"
|
||||
id="radialGradient6296"
|
||||
cx="12.092206"
|
||||
cy="16.943794"
|
||||
fx="12.092206"
|
||||
fy="16.943794"
|
||||
r="2"
|
||||
gradientTransform="matrix(1.6539031,-0.89117539,0.79750005,1.5931281,-21.702904,2.4907457)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16121"
|
||||
id="radialGradient7802"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5651947,-0.24223806,0.35518928,2.4703532,-7.1002414,-13.104734)"
|
||||
cx="7.6595116"
|
||||
cy="10.169191"
|
||||
fx="7.6595116"
|
||||
fy="10.169191"
|
||||
r="9.7842484" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16018-7"
|
||||
id="radialGradient3939"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.6539031,-0.89117539,0.79750005,1.5931281,-21.702904,3.0161188)"
|
||||
cx="12.092206"
|
||||
cy="16.943794"
|
||||
fx="12.092206"
|
||||
fy="16.943794"
|
||||
r="2" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3877"
|
||||
id="radialGradient4693"
|
||||
cx="13.853403"
|
||||
cy="14.874346"
|
||||
fx="13.853403"
|
||||
fy="14.874346"
|
||||
r="2.0418849"
|
||||
gradientTransform="matrix(1.9455911,-0.2391939,0.40612117,3.5557422,-15.998922,-33.882293)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="25.662084"
|
||||
inkscape:cx="0.070144354"
|
||||
inkscape:cy="7.44563"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="korgac"
|
||||
transform="translate(0,-1)">
|
||||
<path
|
||||
id="path3161"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="m 12,3.1492537 c 1.173984,0 1.04688,1.2612694 1.297613,1.3134329 0.631218,0.1313215 2.825163,0.9175832 4.430873,3.7104477 1.60571,2.7928647 0.785033,7.9711357 2.626875,9.5880597 1.841847,1.616923 1.846655,2.116961 1.04442,2.889552 -0.802232,0.772589 -4.169206,2.2 -9.399781,2.2 -5.2305771,0 -8.5975469,-1.427411 -9.3997813,-2.2 C 1.7979849,19.878155 1.8027938,19.378117 3.6446388,17.761194 5.4864837,16.144273 4.6658028,10.965999 6.2715137,8.1731343 7.8772246,5.3802698 10.07117,4.5940081 10.702387,4.4626866 10.953122,4.4105233 10.826015,3.1492537 12,3.1492537 Z M 12,2 C 11.02865,2 10.251271,2.741324 10.006107,3.280597 9.93775,3.4309573 9.9130363,3.5055765 9.8795106,3.6089552 8.7327074,3.9757969 6.8742527,4.8822778 5.3220409,7.5820896 4.3213248,9.3226676 4.1527994,11.43697 3.9294807,13.262687 c -0.2233188,1.825716 -0.6015649,3.25095 -1.0127711,3.61194 -0.9637664,0.846073 -1.5544275,1.390011 -1.8356475,2.298507 -0.14061005,0.454248 -0.0915312,1.008598 0.094947,1.411941 0.1864782,0.403342 0.4197707,0.68359 0.664631,0.919403 0.7197987,0.693199 1.8150892,1.15935 3.5130495,1.641791 C 7.0516503,23.628709 9.2870802,24 12,24 c 2.712919,0 4.948349,-0.371291 6.64631,-0.853731 1.697961,-0.482441 2.79325,-0.948589 3.51305,-1.641791 0.24486,-0.235813 0.478152,-0.516062 0.664631,-0.919403 0.186478,-0.403342 0.235557,-0.957693 0.09495,-1.411941 C 22.637721,18.264638 22.04706,17.7207 21.083293,16.874627 20.672086,16.513635 20.293841,15.088403 20.070522,13.262687 19.8472,11.43697 19.678674,9.3226665 18.677959,7.5820896 17.125748,4.8822777 15.267294,3.9757969 14.120489,3.6089552 14.086967,3.5055765 14.062245,3.4309573 13.993893,3.280597 13.74873,2.7413241 12.971349,2 12,2 Z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6167"
|
||||
d="m 12,18.155224 c -0.607563,0 -1.198052,0.0067 -1.772349,0.03284 -0.160006,0.3007 -0.2531931,0.650133 -0.2531931,1.01791 0,1.160622 0.9068671,2.101493 2.0255421,2.101493 1.118676,0 2.025542,-0.940871 2.025542,-2.101493 0,-0.367777 -0.09319,-0.71721 -0.253193,-1.01791 C 13.198052,18.161917 12.607563,18.155224 12,18.155224 Z"
|
||||
style="fill:url(#radialGradient6296);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
id="path6362"
|
||||
style="display:inline;fill:url(#radialGradient3939);fill-opacity:1;stroke:none"
|
||||
d="m 12,18.155224 c 0.607563,0 1.198052,0.0067 1.772349,0.03284 0.160008,0.3007 0.253193,0.650133 0.253193,1.01791 0,1.160622 -0.906866,2.101493 -2.025542,2.101493 -1.118675,0 -2.0255421,-0.940871 -2.0255421,-2.101493 0,-0.367777 0.093185,-0.71721 0.2531931,-1.01791 0.574297,-0.02611 1.164786,-0.03284 1.772349,-0.03284 z m 0,-0.525373 c -5.034042,0 -9.1149395,0.940871 -9.1149395,2.101492 0,0.561131 4.0808975,2.101493 9.1149395,2.101493 5.034042,0 9.114939,-1.540362 9.114939,-2.101493 0,-1.160621 -4.080897,-2.101492 -9.114939,-2.101492 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4628-8"
|
||||
d="m 12,3.1492537 c -1.173985,0 -1.046878,1.2612694 -1.297613,1.3134329 -0.631217,0.1313215 -2.8251624,0.9175832 -4.4308733,3.7104477 -1.6057109,2.7928647 -0.78503,7.9711387 -2.6268749,9.5880597 -1.841845,1.616923 -1.8466539,2.116961 -1.0444201,2.889552 0.8022344,0.772589 4.1692042,2.2 9.3997813,2.2 5.230575,0 8.597549,-1.427411 9.399781,-2.2 0.802235,-0.772591 0.797427,-1.272629 -1.04442,-2.889552 C 18.513519,16.14427 19.334196,10.965999 17.728486,8.1731343 16.122776,5.3802698 13.928831,4.5940081 13.297613,4.4626866 13.04688,4.4105233 13.173984,3.1492537 12,3.1492537 Z m 0,14.4805973 c 5.034042,0 9.114939,0.940871 9.114939,2.101492 0,0.561131 -4.080897,2.101493 -9.114939,2.101493 -5.034042,0 -9.1149395,-1.540362 -9.1149395,-2.101493 0,-1.160621 4.0808975,-2.101492 9.1149395,-2.101492 z"
|
||||
style="fill:url(#radialGradient6247);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
y="1"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect6487"
|
||||
style="fill:none;stroke:none" />
|
||||
<path
|
||||
style="display:inline;fill:url(#radialGradient7802);fill-opacity:1;stroke:none"
|
||||
d="M 20.355361,17.761194 C 18.513519,16.14427 19.334196,10.965999 17.728486,8.1731343 16.122776,5.3802698 13.928831,4.5940081 13.297613,4.4626866 13.04688,4.4105233 13.173984,3.1492537 12,3.1492537 c -1.173985,0 -1.046878,1.2612694 -1.297613,1.3134329 C 10.07117,4.5940081 7.8772246,5.3802698 6.2715137,8.1731343 4.6658028,10.965999 5.4864837,16.144273 3.6446388,17.761194 l 1.0444201,-0.06567 C 5.449748,16.569709 5.6409314,15.058218 5.8284264,13.525373 6.0559173,11.665547 6.2716141,9.7558398 6.9361447,8.6 8.414969,6.0278334 10.475782,5.3308127 10.860633,5.2507463 c 0.334028,-0.069492 0.523047,-0.3242244 0.601332,-0.4597015 0.07829,-0.1354772 0.09973,-0.2145834 0.126597,-0.2955224 0.05374,-0.161878 0.08799,-0.2762799 0.126596,-0.361194 C 11.792362,3.9645001 11.681716,3.9701493 12,3.9701493 c 0.318287,0 0.207634,-0.00565 0.284842,0.1641791 0.03861,0.084914 0.07286,0.1993166 0.126596,0.361194 0.02687,0.080939 0.04831,0.1600459 0.126597,0.2955224 0.07829,0.1354765 0.267302,0.3902085 0.601332,0.4597015 0.384852,0.080067 2.445665,0.7770873 3.924488,3.3492537 0.664531,1.1558398 0.880227,3.065548 1.107719,4.925373 0.187495,1.532845 0.378679,3.044336 1.139367,4.170149 z"
|
||||
id="path4628-8-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssccssssssssssssscc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4693);fill-opacity:1;stroke:none"
|
||||
d="m 16.177681,8.4358209 c -2.194047,0.2697394 -3.622893,3.7394371 -3.16491,7.7492541 0.05854,0.512487 0.142824,1.001923 0.253193,1.477612 3.637473,0.117745 6.595089,0.707614 7.532485,1.510447 0.06157,-0.272053 0.08599,-0.562619 0.126596,-0.853731 C 20.739283,18.136554 20.607155,17.98224 20.355361,17.761194 18.692827,16.301681 19.206412,11.949035 18.139925,9.0597015 17.52291,8.5884325 16.850521,8.3531008 16.177681,8.4358209 Z m 4.304277,11.8208951 c -0.940893,0.483161 -2.892817,1.040413 -5.348698,1.346269 0.311988,0.365779 0.633575,0.696034 0.981122,0.919403 1.580665,-0.256928 2.819979,-0.637789 3.734594,-1.01791 0.240238,-0.364209 0.459467,-0.777228 0.632982,-1.247762 z"
|
||||
id="path4685"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
301
src/desktoptheme/air/icons/kpackagekit.svg
Normal file
After Width: | Height: | Size: 42 KiB |
210
src/desktoptheme/air/icons/ktorrent.svg
Normal file
@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="ktorrent.svgz"
|
||||
style="display:inline">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient4124">
|
||||
<stop
|
||||
id="stop4126"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.70503598;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.6978417;"
|
||||
offset="0.185378"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.80575538;"
|
||||
offset="0.44680852"
|
||||
id="stop4130" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.77697843;"
|
||||
offset="0.76861703"
|
||||
id="stop4132" />
|
||||
<stop
|
||||
id="stop4134"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.74100721;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006-3-9">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop16008-5-6" />
|
||||
<stop
|
||||
id="stop16016-1-7"
|
||||
offset="0.25"
|
||||
style="stop-color:#ffffff;stop-opacity:0.8705036;" />
|
||||
<stop
|
||||
id="stop16014-1-2"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.8561151;"
|
||||
offset="0.75"
|
||||
id="stop3998" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop16010-4-1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-3-9"
|
||||
id="linearGradient3878"
|
||||
x1="5.7225132"
|
||||
y1="19.981676"
|
||||
x2="18.560209"
|
||||
y2="6.5052357"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-1)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4124"
|
||||
id="linearGradient4042"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="9"
|
||||
y1="-3"
|
||||
x2="14"
|
||||
y2="22"
|
||||
gradientTransform="translate(0,-1)" />
|
||||
<linearGradient
|
||||
id="linearGradient4046-1-38">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop4048-6-5" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.72661871;"
|
||||
offset="1"
|
||||
id="stop4051-4-0" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4046-1-38"
|
||||
id="radialGradient4295"
|
||||
cx="12"
|
||||
cy="19.5"
|
||||
fx="12"
|
||||
fy="19.5"
|
||||
r="9"
|
||||
gradientTransform="matrix(1,0,0,0.27777778,0,14.083333)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="5.0305468"
|
||||
inkscape:cy="12.878696"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="ktorrent"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="kget">
|
||||
<g
|
||||
id="ktorrent">
|
||||
<rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4305"
|
||||
style="fill:none;stroke:none" />
|
||||
<g
|
||||
id="g4160"
|
||||
transform="matrix(1.0410959,0,0,1.0505118,-0.49315068,-1.1617714)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4268"
|
||||
d="M 9.09375,17.125 C 7.9755039,17.231242 6.9366321,17.406467 6.0625,17.625 5.2679493,17.823638 4.5923785,18.043336 4.03125,18.375 3.4701215,18.706664 2.875,19.234142 2.875,20 c 0,0.765858 0.5951215,1.293336 1.15625,1.625 0.5611285,0.331664 1.2366993,0.551362 2.03125,0.75 C 7.6516014,22.772275 9.7068906,23 12,23 c 2.293109,0 4.348399,-0.227725 5.9375,-0.625 0.794551,-0.198638 1.470121,-0.418336 2.03125,-0.75 C 20.529879,21.293336 21.125,20.765858 21.125,20 c 0,-0.765858 -0.595121,-1.293336 -1.15625,-1.625 -0.561129,-0.331664 -1.236699,-0.551362 -2.03125,-0.75 -0.874132,-0.218533 -1.913004,-0.393758 -3.03125,-0.5 l -0.8125,0.9375 C 17.496261,18.292612 20,19.07659 20,20 20,21.104569 16.418278,22 12,22 7.581722,22 4,21.104569 4,20 4,19.07659 6.5037388,18.292612 9.90625,18.0625 L 9.09375,17.125 Z"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none" />
|
||||
<ellipse
|
||||
transform="matrix(0.88888888,0,0,0.8,1.3333333,4.4)"
|
||||
id="path3353"
|
||||
style="fill:url(#radialGradient4295);fill-opacity:1;stroke:none"
|
||||
cx="12"
|
||||
cy="19.5"
|
||||
rx="9"
|
||||
ry="2.5" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="M 8.8125,2.0625 C 8.3877766,2.1510601 8.0556681,2.5661957 8.0625,3 l 0,7.0625 -3.0625,0 C 4.2780004,10.0557 3.8062504,11.081212 4.28125,11.625 l 7,8 c 0.352525,0.41559 1.084975,0.41559 1.4375,0 l 7,-8 C 20.19375,11.081212 19.722,10.055668 19,10.0625 l -3.0625,0 0,-7.0625 C 15.934905,2.5098399 15.49016,2.0650948 15,2.0625 l -6,0 C 8.937707,2.05627 8.8747931,2.05627 8.8125,2.0625 Z M 9,3 l 6,0 0,8 4,0 -7,8 -7,-8 4,0 z"
|
||||
id="path3923"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3878);fill-opacity:1;stroke:none"
|
||||
d="m 9,3 6,0 0,8 4,0 -7,8 -7,-8 4,0 z"
|
||||
id="path3102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="display:inline;fill:url(#linearGradient4042);fill-opacity:1;stroke:none"
|
||||
d="m 9,3 0,8 -4,0 7,8 7,-8 -4,0 0,-8 z m 1,1 4,0 0,7 c -0.0029,0.524397 0.475603,1.002941 1,1 L 16.8125,12 12,17.5 7.1875,12 9,12 c 0.5243966,0.0029 1.002941,-0.475603 1,-1 z"
|
||||
id="path3102-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.5 KiB |
151
src/desktoptheme/air/icons/nepomuk.svg
Normal file
After Width: | Height: | Size: 20 KiB |
14554
src/desktoptheme/air/icons/network.svg
Normal file
After Width: | Height: | Size: 1.1 MiB |
1139
src/desktoptheme/air/icons/notification.svg
Normal file
After Width: | Height: | Size: 57 KiB |
501
src/desktoptheme/air/icons/preferences.svg
Normal file
@ -0,0 +1,501 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg3727"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="preferences.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape">
|
||||
<sodipodi:namedview
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="1"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#999999"
|
||||
id="base"
|
||||
showgrid="true"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="23.283269"
|
||||
inkscape:cy="15.47019"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:current-layer="svg3727"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-global="true"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:showpageshadow="true">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
type="xygrid"
|
||||
id="grid2629" />
|
||||
<sodipodi:guide
|
||||
position="-135,0"
|
||||
orientation="0,128"
|
||||
id="guide4838" />
|
||||
<sodipodi:guide
|
||||
position="-7,0"
|
||||
orientation="-128,0"
|
||||
id="guide4840" />
|
||||
<sodipodi:guide
|
||||
position="-7,128"
|
||||
orientation="0,-128"
|
||||
id="guide4842" />
|
||||
<sodipodi:guide
|
||||
position="-135,128"
|
||||
orientation="128,0"
|
||||
id="guide4844" />
|
||||
<sodipodi:guide
|
||||
position="-135,0"
|
||||
orientation="0,128"
|
||||
id="guide4846" />
|
||||
<sodipodi:guide
|
||||
position="-7,0"
|
||||
orientation="-128,0"
|
||||
id="guide4848" />
|
||||
<sodipodi:guide
|
||||
position="-7,128"
|
||||
orientation="0,-128"
|
||||
id="guide4850" />
|
||||
<sodipodi:guide
|
||||
position="-135,128"
|
||||
orientation="128,0"
|
||||
id="guide4852" />
|
||||
<sodipodi:guide
|
||||
position="-135,0"
|
||||
orientation="0,128"
|
||||
id="guide4854" />
|
||||
<sodipodi:guide
|
||||
position="-7,0"
|
||||
orientation="-128,0"
|
||||
id="guide4856" />
|
||||
<sodipodi:guide
|
||||
position="-7,128"
|
||||
orientation="0,-128"
|
||||
id="guide4858" />
|
||||
<sodipodi:guide
|
||||
position="-135,128"
|
||||
orientation="128,0"
|
||||
id="guide4860" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata244">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs3729">
|
||||
<style
|
||||
id="style4675"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:#0093DD}
|
||||
.fil1 {fill:white}
|
||||
|
||||
</style>
|
||||
<linearGradient
|
||||
id="linearGradient4249">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4251" />
|
||||
<stop
|
||||
id="stop4253"
|
||||
offset="0.47000003"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="0.75125003"
|
||||
id="stop4255" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="18.01074"
|
||||
y1="65.760353"
|
||||
x2="72.498932"
|
||||
y2="65.760353"
|
||||
id="linearGradient2867"
|
||||
xlink:href="#linearGradient3289"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.017716,0,0,0.960169,5.524222,-18.774756)" />
|
||||
<linearGradient
|
||||
id="linearGradient3140">
|
||||
<stop
|
||||
id="stop3142"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3144"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3289">
|
||||
<stop
|
||||
id="stop3291"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3294"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4364">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4366" />
|
||||
<stop
|
||||
id="stop4368"
|
||||
offset="0.47499999"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="0.84912485"
|
||||
id="stop4370" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4372" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3802"
|
||||
id="radialGradient2943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.0138491,0.0053605,-0.00525039,2.1027528,-11.596667,-12.492002)"
|
||||
cx="11.481655"
|
||||
cy="10.667185"
|
||||
fx="11.481655"
|
||||
fy="10.667185"
|
||||
r="5.78125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4364"
|
||||
id="linearGradient2945"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="8.9951181"
|
||||
y1="14.6875"
|
||||
x2="14.009747"
|
||||
y2="14.6875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3140"
|
||||
id="linearGradient2947"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="14.009747"
|
||||
y1="23.000015"
|
||||
x2="14.009747"
|
||||
y2="19.999989" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3140"
|
||||
id="linearGradient2949"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="14.009747"
|
||||
y1="5.9999762"
|
||||
x2="14.009747"
|
||||
y2="10.000011" />
|
||||
<linearGradient
|
||||
id="linearGradient3802">
|
||||
<stop
|
||||
id="stop3804"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="0.5"
|
||||
id="stop3818" />
|
||||
<stop
|
||||
id="stop3820"
|
||||
offset="0.75"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
id="stop3806"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3942"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3944"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3946"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3802"
|
||||
id="linearGradient2956"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-23)"
|
||||
x1="14.3125"
|
||||
y1="123"
|
||||
x2="27.75"
|
||||
y2="123" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3942"
|
||||
id="radialGradient2958"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.32159852,-0.44669491,1.6776455,1.2078229,-141.54707,-12.385996)"
|
||||
cx="22.656315"
|
||||
cy="92.770393"
|
||||
fx="22.656315"
|
||||
fy="92.770393"
|
||||
r="6.375" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3942"
|
||||
id="radialGradient2960"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.3652004,0.41181382,-0.72097162,0.63936447,96.364194,26.036233)"
|
||||
cx="16.392656"
|
||||
cy="105.12477"
|
||||
fx="16.392656"
|
||||
fy="105.12477"
|
||||
r="6.375" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3802"
|
||||
id="linearGradient2962"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(32,-23)"
|
||||
x1="14.3125"
|
||||
y1="123"
|
||||
x2="27.75"
|
||||
y2="123" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3643"
|
||||
x1="137"
|
||||
y1="116.5"
|
||||
x2="157"
|
||||
y2="116.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-135,-104)" />
|
||||
</defs>
|
||||
<g
|
||||
id="preferences-desktop-display-randrf" />
|
||||
<g
|
||||
style="display:none"
|
||||
id="WhiteBackgroundLayer"
|
||||
transform="translate(70.31612,-81.90703)">
|
||||
<rect
|
||||
style="opacity:0.69897964;fill:url(#linearGradient2867);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="Background"
|
||||
y="-7.9516411"
|
||||
x="3.8541794"
|
||||
ry="1.9589152"
|
||||
rx="2.1937749"
|
||||
height="104.63548"
|
||||
width="55.453815" />
|
||||
</g>
|
||||
<g
|
||||
id="preferences-desktop-text-to-speech"
|
||||
transform="translate(24,0)">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4455"
|
||||
style="opacity:0.01000001;fill:#000000;fill-opacity:0.00392157;stroke:none" />
|
||||
<g
|
||||
id="g4245"
|
||||
transform="matrix(0.94736842,0,0,0.91755252,1.1052632,0.97873949)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="m 11.59375,5.375 c -1.9896365,0 -3.625,1.6353634 -3.625,3.625 0,0.3620526 0.1479579,0.5040454 0.25,0.8318737 l -4.21875,0 c -1.0573925,0 -2,1.0135023 -2,2.1056263 l 0,0.125 c 0,1.092124 0.9426075,2.128797 2,2.128797 l 4,0 L 8,16 l 0,1 0,5 c 0,1.090952 0.909048,2 2,2 0.630521,0 1.131251,-0.345446 1.5,-0.8125 C 11.868749,23.654554 12.369479,24 13,24 c 1.090952,0 2,-0.909048 2,-2 l 0,-5 2.22e-4,-2.808703 3.999778,0 c 1.057392,0 2,-1.036673 2,-2.128797 l 0,-0.125 C 21,10.845376 20.057392,9.8318737 19,9.8318737 l -4.0625,0 C 15.03954,9.5040431 15.1875,9.3620493 15.1875,9 c 0,-1.975211 -1.604114,-3.625 -3.59375,-3.625 z m 0,1.1873061 c 1.444862,0 2.59375,0.9928318 2.59375,2.4376939 0,0.8171259 -0.38189,1.441977 -0.96875,1.92173 l 5.78125,0 c 0.554,0 1,0.496395 1,1.01577 l 0,0.125 c 0,0.519375 -0.446,1.038941 -1,1.038941 l -5,0 L 14,17 l 0,5 c 0,0.554 -0.446,1 -1,1 -0.554,0 -1,-0.446 -1,-1 l 0,-4 -1,0 0,4 c 0,0.554 -0.446,1 -1,1 -0.554,0 -1,-0.446 -1,-1 l 0,-5 0,-1 0,-2.898559 -5,0 c -0.554,0 -1,-0.519566 -1,-1.038941 l 0,-0.125 c 0,-0.519375 0.446,-1.01577 1,-1.01577 l 5.9375,0 C 9.350673,10.441977 8.96875,9.817099 8.96875,9 c 0,-1.4448621 1.180138,-2.4376939 2.625,-2.4376939 z"
|
||||
id="path4378"
|
||||
sodipodi:nodetypes="cscccccccccscsccccccccsccsccccccccsccccscccccccccsc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0.19607843;stroke:none"
|
||||
d="M 11.25,0.03125 C 7.4246253,0.18338047 3.9470017,2.803361 2.90625,6.6875 A 0.99016089,0.99016089 0 0 0 3.625,7.90625 l 0.96875,0.25 a 0.99016089,0.99016089 0 0 0 0.5,0 0.99016089,0.99016089 0 0 0 0.03125,0 0.99016089,0.99016089 0 0 0 0.4375,0.28125 l 0.96875,0.25 A 0.99016089,0.99016089 0 0 0 7.75,7.96875 C 8.2096357,6.253319 9.731289,5 11.59375,5 c 1.860943,0 3.383394,1.2543918 3.84375,2.96875 a 0.99016089,0.99016089 0 0 0 1.21875,0.71875 l 0.96875,-0.25 a 0.99016089,0.99016089 0 0 0 0.46875,-0.28125 0.99016089,0.99016089 0 0 0 0.03125,0 0.99016089,0.99016089 0 0 0 0.46875,0 l 0.96875,-0.25 A 0.99016089,0.99016089 0 0 0 20.28125,6.6875 C 19.451226,3.5898068 17.003944,1.1425243 13.90625,0.3125 12.999561,0.06955337 12.11782,-0.00326217 11.25,0.03125 Z m 0.03125,1 c 0.785105,-0.031223 1.57612,0.035941 2.375,0.25 2.756187,0.7385178 4.917732,2.9000635 5.65625,5.65625 l -0.96875,0.25 C 17.546664,4.2023726 14.830112,2 11.59375,2 8.3573882,2 5.6408361,4.2023726 4.84375,7.1875 L 3.875,6.9375 C 4.8025903,3.4756852 7.8791263,1.1665483 11.28125,1.03125 Z m 0.0625,2 c 0.58744,-0.023362 1.214753,0.027334 1.8125,0.1875 2.062263,0.5525817 3.666168,2.1877367 4.21875,4.25 l -0.96875,0.25 C 15.833563,5.5860713 13.907207,4 11.59375,4 9.2793424,4 7.3530425,5.5847324 6.78125,7.71875 L 5.8125,7.46875 C 6.5065516,4.8785139 8.7981767,3.1324843 11.34375,3.03125 Z"
|
||||
id="path4414" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#radialGradient2943);fill-opacity:1;stroke:none"
|
||||
d="M 11.28125,1.03125 C 7.8791263,1.1665483 4.8025903,3.4756852 3.875,6.9375 l 0.96875,0.25 C 5.6408361,4.2023726 8.3573882,2 11.59375,2 c 3.236362,0 5.952914,2.2023726 6.75,5.1875 l 0.96875,-0.25 C 18.573982,4.1813135 16.412437,2.0197678 13.65625,1.28125 c -0.79888,-0.2140593 -1.589895,-0.2812227 -2.375,-0.25 z m 0.0625,2 C 8.7981767,3.1324843 6.5065516,4.8785139 5.8125,7.46875 l 0.96875,0.25 C 7.3530425,5.5847324 9.2793424,4 11.59375,4 c 2.313457,0 4.239813,1.5860713 4.8125,3.71875 l 0.96875,-0.25 C 16.822418,5.4064867 15.218513,3.7713317 13.15625,3.21875 12.558503,3.0585843 11.93119,3.0078882 11.34375,3.03125 Z"
|
||||
id="path4389" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient2945);fill-opacity:1;stroke:none"
|
||||
d="m 11.59375,6.375 c -1.444862,0 -2.625,1.1801379 -2.625,2.625 0,0.817099 0.381923,1.520247 0.96875,2 L 4,11 c -0.554,0 -1,0.418125 -1,0.9375 l 0,0.125 C 3,12.581875 3.446,13 4,13 l 5,0 0,3 0,1 0,5 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 1,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-5 0,-4 5,0 c 0.554,0 1,-0.418125 1,-0.9375 l 0,-0.125 C 20,11.418125 19.554,11 19,11 l -5.78125,0 c 0.58686,-0.479753 0.96875,-1.1828741 0.96875,-2 0,-1.4448621 -1.148888,-2.625 -2.59375,-2.625 z m 0,2.625 c 0.552285,0 1,0.4477153 1,1 0,0.552285 -0.447715,1 -1,1 -0.552285,0 -1,-0.447715 -1,-1 0,-0.5522847 0.447715,-1 1,-1 z"
|
||||
id="rect4341"
|
||||
sodipodi:nodetypes="cscccccccccsccccsccccccccsccsssc" />
|
||||
<circle
|
||||
r="0.5"
|
||||
cy="9.5"
|
||||
cx="11.5"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
id="path4437"
|
||||
transform="matrix(2,0,0,2,-11.4,-9)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscccccccccsccccsccccccccsccsssc"
|
||||
id="path4465"
|
||||
d="m 11.59375,6.375 c -1.444862,0 -2.625,1.1801379 -2.625,2.625 0,0.817099 0.381923,1.520247 0.96875,2 L 4,11 c -0.554,0 -1,0.418125 -1,0.9375 l 0,0.125 c 0,0.519375 0.446,1.038941 1,1.038941 l 5,0 L 9,16 l 0,1 0,5 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 1,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-5 0,-3.898559 5,0 c 0.554,0 1,-0.519566 1,-1.038941 l 0,-0.125 C 20,11.418125 19.554,11 19,11 l -5.78125,0 c 0.58686,-0.479753 0.96875,-1.1828741 0.96875,-2 0,-1.4448621 -1.148888,-2.625 -2.59375,-2.625 z m 0,2.625 c 0.552285,0 1,0.4477153 1,1 0,0.552285 -0.447715,1 -1,1 -0.552285,0 -1,-0.447715 -1,-1 0,-0.5522847 0.447715,-1 1,-1 z"
|
||||
style="fill:url(#linearGradient2947);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient2949);fill-opacity:1;stroke:none"
|
||||
d="m 11.59375,6.375 c -1.444862,0 -2.625,1.1801379 -2.625,2.625 0,0.817099 0.381923,1.520247 0.96875,2 l 3.28125,0 c 0.58686,-0.479753 0.96875,-1.1828741 0.96875,-2 0,-1.4448621 -1.148888,-2.625 -2.59375,-2.625 z m 0,2.625 c 0.552285,0 1,0.4477153 1,1 0,0.552285 -0.447715,1 -1,1 -0.552285,0 -1,-0.447715 -1,-1 0,-0.5522847 0.447715,-1 1,-1 z"
|
||||
id="path4469"
|
||||
sodipodi:nodetypes="csccsccsssc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="preferences-system-bluetooth"
|
||||
transform="translate(39,-87.99588)"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180">
|
||||
<rect
|
||||
style="opacity:0.8;fill:#000000;fill-opacity:0;stroke:none"
|
||||
id="rect3152"
|
||||
width="24"
|
||||
height="24"
|
||||
x="9"
|
||||
y="87.99588"
|
||||
inkscape:export-filename="/home/pinheiro/pics/desktoptheme/air/icons/blueactive.png"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc"
|
||||
id="path241"
|
||||
d="M 21,89.54375 21,98.5625 20.5,98.96875 15,94.375 15,96.46875 19.25,100 15,103.53125 l 0,2.09375 5.5,-4.59375 0.5,0.40625 0,9.01875 L 27.75,105 22,100.21875 21.7,100.00194 22,99.78125 27.75,94.96875 21,89.54375 Z m 1,2.8625 L 25.25,95 22,97.71875 l 0,-5.3125 z m 0,9.875 3.25,2.71875 -3.25,2.59375 0,-5.3125 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient2956);fill-opacity:1;stroke:none;stroke-width:1.60000002;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccscccsscsscsscscsscssssccccccccccccccccccccccccccccccccccc"
|
||||
id="path3061"
|
||||
d="m 20,89.53215 0,7.6875 -4.34375,-3.625 C 15.57176,93.52415 15.443269,93.47621 15.375,93.43825 14.767577,93.1926 13.99322,93.72057 14,94.37575 l 0,0.5625 0,1.53125 c 0,0.36641 0.166843,0.60849 0.375,0.7813 l 3.3125,2.75 -3.3125,2.75 C 14.086887,102.98999 14,103.25159 14,103.5322 l 0,1.53125 0,0.5625 c 0,1.35246 1.130196,1.22006 1.65625,0.78105 L 20,102.782 l 0,7.6875 c 0,1.09741 0.858016,1.40118 1.625,0.782 l 6.75,-5.46875 c 0.654519,-0.53028 0.517941,-1.09096 0.03125,-1.50015 L 23.3125,100 28.40625,95.7187 c 0.601564,-0.50561 0.471721,-1.0928 -0.03125,-1.5003 l -6.75,-5.46875 C 20.958032,88.20928 20,88.80065 20,89.53215 Z m 1,0.0108 6.75,5.42578 L 22,99.78125 21.6875,100 22,100.21875 27.75,105.00363 21,110.46875 21,101.4375 20.5,101.03125 15,105.625 15,103.53125 19.25,100 15,96.46875 15,94.375 l 5.5,4.59375 0.5,-0.40625 0,-9.01953 0,-2e-5 z m 1,2.86328 0,5.3125 L 25.25,95 22,92.40625 l 0,-2e-5 z M 22.6,93.7 24.05625,95 22.6,96.3625 22.6,93.7 Z m -0.6,8.58125 0,5.3125 L 25.25,105 22,102.28125 Z m 0.6,1.55625 1.45625,1.1625 -1.45625,1.3 0,-2.4625 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:1.60000002;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2958);fill-opacity:1;stroke:none;stroke-width:1.60000002;marker:none;enable-background:accumulate"
|
||||
d="M 21,89.54375 21,98.5625 20.5,98.96875 15,94.375 15,96.46875 19.25,100 15,103.53125 l 0,2.09375 5.5,-4.59375 0.5,0.40625 0,9.01875 L 27.75,105 22,100.21875 21.7,100.00194 22,99.78125 27.75,94.96875 21,89.54375 Z m 1,2.8625 L 25.25,95 22,97.71875 l 0,-5.3125 z m 0,9.875 3.25,2.71875 -3.25,2.59375 0,-5.3125 z"
|
||||
id="path3940"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc"
|
||||
id="path3950"
|
||||
d="M 21,89.54375 21,98.5625 20.5,98.96875 15,94.375 15,96.46875 19.25,100 15,103.53125 l 0,2.09375 5.5,-4.59375 0.5,0.40625 0,9.01875 L 27.75,105 22,100.21875 21.7,100.00194 22,99.78125 27.75,94.96875 21,89.54375 Z m 1,2.8625 L 25.25,95 22,97.71875 l 0,-5.3125 z m 0,9.875 3.25,2.71875 -3.25,2.59375 0,-5.3125 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2960);fill-opacity:1;stroke:none;stroke-width:1.60000002;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="preferences-system-bluetooth-inactive"
|
||||
transform="translate(31,-87.99588)"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.19607843;stroke:none;stroke-width:1.60000002;marker:none;enable-background:accumulate"
|
||||
d="m 52,89.53215 0,7.6875 -4.34375,-3.625 C 47.57176,93.52415 47.443269,93.47621 47.375,93.43825 46.767577,93.1926 45.99322,93.72057 46,94.37575 l 0,0.5625 0,1.53125 c 0,0.36641 0.166843,0.60849 0.375,0.7813 l 3.3125,2.75 -3.3125,2.75 C 46.086887,102.98999 46,103.25159 46,103.5322 l 0,1.53125 0,0.5625 c 0,1.35246 1.130196,1.22006 1.65625,0.78105 L 52,102.782 l 0,7.6875 c 0,1.09741 0.858016,1.40118 1.625,0.782 l 6.75,-5.46875 c 0.654519,-0.53028 0.517941,-1.09096 0.03125,-1.50015 L 55.3125,100 60.40625,95.7187 c 0.601564,-0.50561 0.471721,-1.0928 -0.03125,-1.5003 l -6.75,-5.46875 C 52.958032,88.20928 52,88.80065 52,89.53215 Z m 1,0.0108 6.75,5.42578 L 54,99.78125 53.6875,100 54,100.21875 59.75,105.00363 53,110.46875 53,101.4375 52.5,101.03125 47,105.625 47,103.53125 51.25,100 47,96.46875 47,94.375 l 5.5,4.59375 0.5,-0.40625 0,-9.01953 0,-2e-5 z m 1,2.86328 0,5.3125 L 57.25,95 54,92.40625 l 0,-2e-5 z M 54.8,94.3 55.65625,95 54.8,95.7625 54.8,94.3 Z m -0.8,7.98125 0,5.3125 L 57.25,105 54,102.28125 Z m 0.8,2.15625 0.85625,0.5625 -0.85625,0.7 0,-1.2625 z"
|
||||
id="path3863"
|
||||
sodipodi:nodetypes="ccscccsscsscsscscsscssssccccccccccccccccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
y="87.99588"
|
||||
x="41"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect3859"
|
||||
style="opacity:0.8;fill:#000000;fill-opacity:0;stroke:none"
|
||||
inkscape:export-filename="/home/pinheiro/pics/desktoptheme/air/icons/blueinactive.png"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.33663366;fill:url(#linearGradient2962);fill-opacity:1;stroke:none;stroke-width:1.60000002;marker:none;enable-background:accumulate"
|
||||
d="M 53,89.54375 53,98.5625 52.5,98.96875 47,94.375 47,96.46875 51.25,100 47,103.53125 l 0,2.09375 5.5,-4.59375 0.5,0.40625 0,9.01875 L 59.75,105 54,100.21875 53.7,100.00194 54,99.78125 59.75,94.96875 53,89.54375 Z m 1,2.8625 L 57.25,95 54,97.71875 l 0,-5.3125 z m 0,9.875 3.25,2.71875 -3.25,2.59375 0,-5.3125 z"
|
||||
id="path3861"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="preferences-desktop-display-randr">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4455-5"
|
||||
style="opacity:0.01000001;fill:#000000;fill-opacity:0.00392157;stroke:none" />
|
||||
<rect
|
||||
y="6"
|
||||
x="5"
|
||||
height="9"
|
||||
width="14"
|
||||
id="rect4679"
|
||||
style="fill:#000000;fill-opacity:0.15846994;stroke:none" />
|
||||
<path
|
||||
id="rect2848"
|
||||
d="M 4,3 C 2.892,3 2,3.892 2,5 l 0,11 c 0,1.108 0.892,2 2,2 l 7,0 0,2 -2,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 0,-2 7,0 c 1.108,0 2,-0.892 2,-2 L 22,5 C 22,3.892 21.108,3 20,3 L 4,3 Z M 4,5 20,5 20,16 4,16 4,5 Z"
|
||||
style="fill:url(#linearGradient3643);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccsccsccccccccccccccccsccsccccccccccccccccc"
|
||||
id="path2860"
|
||||
d="M 4,2 C 2.38884,2 1,3.38884 1,5 l 0,11 c 0,1.61116 1.38884,3 3,3 l 6.0625,-0.0625 0,0.125 -1.0625,0 c -1.05716,0 -2,0.88034 -2,1.9375 0,1.05716 0.94284,2 2,2 l 6,0 c 1.05716,0 2,-0.94284 2,-2 0,-1.05716 -0.94284,-1.9375 -2,-1.9375 l -1.0625,0 0,-0.125 L 20,19 c 1.61116,0 3,-1.38884 3,-3 L 23,5 C 23,3.38884 21.61116,2 20,2 L 4,2 Z m 0,1 16,0 c 1.108,0 2,0.892 2,2 l 0,11 c 0,1.108 -0.892,2 -2,2 l -7,0 0,2 2,0 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 L 9,22 C 8.446,22 8,21.554 8,21 8,20.446 8.446,20 9,20 l 2,0 0,-2 -7,0 C 2.892,18 2,17.108 2,16 L 2,5 C 2,3.892 2.892,3 4,3 Z M 4,5 4,16 20,16 20,5 4,5 Z m 1,1 14,0 0,9 -14,0 0,-9 z"
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
d="m 16.599609,6 0,1 L 18,7 l 0,1.4003906 1,0 L 19,7 19,6 18,6 16.599609,6 Z M 5,12.599609 5,14 l 0,1 1,0 1.4003906,0 0,-1 L 6,14 l 0,-1.400391 -1,0 z"
|
||||
id="path4621"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.7103825;stroke:none"
|
||||
d="m 17,7 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m -10,4 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z"
|
||||
id="rect4649"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.48837208;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
d="M 4,3 4,4 20,4 20,3 4,3 Z m 0,13 0,1 16,0 0,-1 -16,0 z m 5,4 0,1 6,0 0,-1 -6,0 z"
|
||||
id="rect4673"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 27 KiB |
288
src/desktoptheme/air/icons/printer.svg
Normal file
@ -0,0 +1,288 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="24"
|
||||
height="24"
|
||||
sodipodi:docname="printer.svgz">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient3890">
|
||||
<stop
|
||||
id="stop3892"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.71223021;" />
|
||||
<stop
|
||||
id="stop3896"
|
||||
offset="1"
|
||||
style="stop-color:#3c3c3c;stop-opacity:0.71372551;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11010">
|
||||
<stop
|
||||
id="stop11012"
|
||||
offset="0"
|
||||
style="stop-color:#ededed;stop-opacity:0.92086333;" />
|
||||
<stop
|
||||
style="stop-color:#d8d8d8;stop-opacity:0.88489211;"
|
||||
offset="0.25"
|
||||
id="stop11014" />
|
||||
<stop
|
||||
style="stop-color:#dbdbdb;stop-opacity:0.71703297;"
|
||||
offset="0.5"
|
||||
id="stop11016" />
|
||||
<stop
|
||||
id="stop11018"
|
||||
offset="1"
|
||||
style="stop-color:#d5d5d5;stop-opacity:0.89928055;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10924">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop10926" />
|
||||
<stop
|
||||
style="stop-color:#ededed;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop10928" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10880">
|
||||
<stop
|
||||
id="stop10882"
|
||||
offset="0"
|
||||
style="stop-color:#1f1f1f;stop-opacity:0.73381293;" />
|
||||
<stop
|
||||
style="stop-color:#353535;stop-opacity:0.79856116;"
|
||||
offset="0.5"
|
||||
id="stop10884" />
|
||||
<stop
|
||||
id="stop10886"
|
||||
offset="1"
|
||||
style="stop-color:#8a8a8a;stop-opacity:0.70503598;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.92086333;"
|
||||
offset="0"
|
||||
id="stop16008" />
|
||||
<stop
|
||||
id="stop16016"
|
||||
offset="0.25"
|
||||
style="stop-color:#ffffff;stop-opacity:0.88489211;" />
|
||||
<stop
|
||||
id="stop16014"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.89928055;"
|
||||
offset="1"
|
||||
id="stop16010" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10924"
|
||||
id="radialGradient11091"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.408377,0.01615548,-0.01230969,0.78841108,-4.3193969,1.0827559)"
|
||||
cx="11.573418"
|
||||
cy="3.5066421"
|
||||
fx="11.573418"
|
||||
fy="3.5066421"
|
||||
r="5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10924"
|
||||
id="radialGradient11103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.41666667,0,10.791667)"
|
||||
cx="12.188481"
|
||||
cy="16.012041"
|
||||
fx="12.188481"
|
||||
fy="16.012041"
|
||||
r="6" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3890"
|
||||
id="radialGradient11106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4406491,0.09838776,-0.14631419,2.142415,-2.8736046,-20.0305)"
|
||||
cx="10.857632"
|
||||
cy="16.845716"
|
||||
fx="10.857632"
|
||||
fy="16.845716"
|
||||
r="6" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11010"
|
||||
id="radialGradient11109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.1044957,0.51428068,-0.16176254,0.66195089,-4.7077548,-1.5025153)"
|
||||
cx="7.6955943"
|
||||
cy="11.785413"
|
||||
fx="7.6955943"
|
||||
fy="11.785413"
|
||||
r="10" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10880"
|
||||
id="radialGradient3877"
|
||||
cx="11.186728"
|
||||
cy="9.336751"
|
||||
fx="11.186728"
|
||||
fy="9.336751"
|
||||
r="7"
|
||||
gradientTransform="matrix(1.4662124,-0.79103147,0.57142824,1.0591681,-10.737404,8.959865)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006"
|
||||
id="radialGradient3922"
|
||||
cx="11.153491"
|
||||
cy="13.811987"
|
||||
fx="11.153491"
|
||||
fy="13.811987"
|
||||
r="10"
|
||||
gradientTransform="matrix(1.9071357,-0.60887349,0.38886562,1.218019,-15.390917,4.3814153)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3890"
|
||||
id="linearGradient3901"
|
||||
x1="16"
|
||||
y1="13"
|
||||
x2="16"
|
||||
y2="10"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="16.146925"
|
||||
inkscape:cy="8.0371505"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="printer"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="printer">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.39215686;stroke:none;display:inline"
|
||||
d="M 6.8125,2 A 1.0053361,1.0053361 0 0 0 6,3 L 6,7 3,7 A 1.0053361,1.0053361 0 0 0 2.09375,7.5625 l -1,2 A 1.0053361,1.0053361 0 0 0 1,10 l 0,7 a 1.0053361,1.0053361 0 0 0 0.28125,0.71875 l 1,1 A 1.0053361,1.0053361 0 0 0 3,19 L 5.34375,19 5,20.8125 A 1.0053361,1.0053361 0 0 0 6,22 l 12,0 a 1.0053361,1.0053361 0 0 0 1,-1.1875 L 18.65625,19 21,19 a 1.0053361,1.0053361 0 0 0 0.71875,-0.28125 l 1,-1 A 1.0053361,1.0053361 0 0 0 23,17 l 0,-7 A 1.0053361,1.0053361 0 0 0 22.90625,9.5625 l -1,-2 A 1.0053361,1.0053361 0 0 0 21,7 L 18,7 18,3 A 1.0053361,1.0053361 0 0 0 17,2 L 7,2 A 1.0053361,1.0053361 0 0 0 6.8125,2 z M 7,3 l 10,0 0,5 4,0 1,2 0,7 -1,1 -3.59375,0 L 18,21 6,21 6.59375,18 3,18 2,17 2,10 3,8 7,8 7,3 z"
|
||||
id="path4021"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3922);fill-opacity:1;stroke:none"
|
||||
d="m 2,10 0,7 1,1 18,0 1,-1 0,-7 z"
|
||||
id="path3914"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path9986"
|
||||
d="m 2,10 1,-2 18,0 1,2 z"
|
||||
style="fill:url(#radialGradient11109);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10852"
|
||||
d="m 5,18 0,-3 1,-1 12,0 1,1 0,3 z"
|
||||
style="fill:url(#radialGradient11106);fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10758"
|
||||
d="m 6,21 1,-5 10,0 1,5 z"
|
||||
style="fill:url(#radialGradient11103);fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
y="0"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect11043"
|
||||
style="fill:none;stroke:none" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3877);fill-opacity:1;stroke:none"
|
||||
d="M 6,8 5,10 19,10 18,8 z"
|
||||
id="path3867"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10762"
|
||||
d="M 7,3 7,9 17,9 17,3 z"
|
||||
style="fill:url(#radialGradient11091);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3901);fill-opacity:1;stroke:none"
|
||||
d="m 5,10 0,2 1,1 12,0 1,-1 0,-2 z"
|
||||
id="path3902"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.431694;stroke:none"
|
||||
d="m 2,10 0,1 3,0 0,-1 -3,0 z m 17,0 0,1 3,0 0,-1 -3,0 z"
|
||||
id="rect4121"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:0.0744681;stroke:none"
|
||||
id="rect3914"
|
||||
width="14"
|
||||
height="1"
|
||||
x="5"
|
||||
y="10" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
591
src/desktoptheme/air/icons/quassel.svg
Normal file
@ -0,0 +1,591 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg14997"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="72"
|
||||
height="24"
|
||||
sodipodi:docname="quassel.svgz">
|
||||
<metadata
|
||||
id="metadata15003">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs15001">
|
||||
<linearGradient
|
||||
id="linearGradient7027">
|
||||
<stop
|
||||
style="stop-color:#ff6c4d;stop-opacity:0.9137255;"
|
||||
offset="0"
|
||||
id="stop7031" />
|
||||
<stop
|
||||
id="stop7033"
|
||||
offset="0.75"
|
||||
style="stop-color:#e82700;stop-opacity:0.9137255;" />
|
||||
<stop
|
||||
id="stop7035"
|
||||
offset="1"
|
||||
style="stop-color:#bf2200;stop-opacity:0.9137255;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6756">
|
||||
<stop
|
||||
style="stop-color:#ed2900;stop-opacity:0.91366905;"
|
||||
offset="0"
|
||||
id="stop6758" />
|
||||
<stop
|
||||
id="stop6760"
|
||||
offset="0.29411766"
|
||||
style="stop-color:#ff5937;stop-opacity:0.9137255;" />
|
||||
<stop
|
||||
style="stop-color:#f12800;stop-opacity:0.9137255;"
|
||||
offset="0.75"
|
||||
id="stop6762" />
|
||||
<stop
|
||||
style="stop-color:#ff3105;stop-opacity:0.9137255;"
|
||||
offset="1"
|
||||
id="stop6764" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006-70">
|
||||
<stop
|
||||
id="stop3915-5"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3895-1"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:0.94964027;" />
|
||||
<stop
|
||||
id="stop16014-10"
|
||||
offset="0.53266597"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.96402878;"
|
||||
offset="1"
|
||||
id="stop16010-3" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16006-70-8">
|
||||
<stop
|
||||
id="stop3915-5-1"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
id="stop3895-1-6"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop16010-3-9" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70"
|
||||
id="radialGradient4866"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2844565,-0.01501783,0.01501783,1.2844565,-3.5936925,-1.2332645)"
|
||||
cx="12.042423"
|
||||
cy="14.89196"
|
||||
fx="12.042423"
|
||||
fy="14.89196"
|
||||
r="10.5" />
|
||||
<linearGradient
|
||||
id="linearGradient16006-70-29">
|
||||
<stop
|
||||
id="stop3915-5-0"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3895-1-3"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:0.94964027;" />
|
||||
<stop
|
||||
id="stop16014-10-0"
|
||||
offset="0.53266597"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.96402878;"
|
||||
offset="1"
|
||||
id="stop16010-3-3" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-29"
|
||||
id="radialGradient5283"
|
||||
cx="12.840557"
|
||||
cy="13.439815"
|
||||
fx="12.840557"
|
||||
fy="13.439815"
|
||||
r="4.1314058"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4286712,0,0,1.4286712,-5.747131,-6.2580494)" />
|
||||
<linearGradient
|
||||
id="linearGradient16006-70-8-0-5">
|
||||
<stop
|
||||
id="stop3915-5-1-2-99"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3895-1-6-4-1"
|
||||
offset="0.72549021"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.19607843;"
|
||||
offset="1"
|
||||
id="stop16010-3-9-9-6" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-8"
|
||||
id="linearGradient6291"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.3775868"
|
||||
y1="7"
|
||||
x2="20"
|
||||
y2="4"
|
||||
gradientTransform="translate(0,1)" />
|
||||
<linearGradient
|
||||
id="linearGradient3952">
|
||||
<stop
|
||||
id="stop3954"
|
||||
offset="0"
|
||||
style="stop-color:#ffad9c;stop-opacity:0.91366905;" />
|
||||
<stop
|
||||
style="stop-color:#ff4923;stop-opacity:0.9137255;"
|
||||
offset="0.5"
|
||||
id="stop3960" />
|
||||
<stop
|
||||
id="stop3962"
|
||||
offset="0.75"
|
||||
style="stop-color:#ff2f05;stop-opacity:0.9137255;" />
|
||||
<stop
|
||||
id="stop3956"
|
||||
offset="1"
|
||||
style="stop-color:#ffbcad;stop-opacity:0.9137255;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-8-0-5"
|
||||
id="radialGradient7539"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.63839286,0,5.6162109)"
|
||||
cx="-93"
|
||||
cy="13.752803"
|
||||
fx="-93"
|
||||
fy="13.752803"
|
||||
r="7" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3952"
|
||||
id="radialGradient4866-71"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2844565,-0.01501783,0.01501783,1.2844565,-3.5936925,-1.2332645)"
|
||||
cx="12.103274"
|
||||
cy="9.6874046"
|
||||
fx="12.103274"
|
||||
fy="9.6874046"
|
||||
r="10.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6756"
|
||||
id="linearGradient6291-2"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.3775868"
|
||||
y1="7"
|
||||
x2="20"
|
||||
y2="4"
|
||||
gradientTransform="translate(0,1)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-29-05"
|
||||
id="radialGradient5283-1"
|
||||
cx="12.840557"
|
||||
cy="13.439815"
|
||||
fx="12.840557"
|
||||
fy="13.439815"
|
||||
r="4.1314058"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.4286712,0,0,1.4286712,-5.747131,-6.2580494)" />
|
||||
<linearGradient
|
||||
id="linearGradient16006-70-29-05">
|
||||
<stop
|
||||
id="stop3915-5-0-7"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3895-1-3-42"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:0.94964027;" />
|
||||
<stop
|
||||
id="stop16014-10-0-0"
|
||||
offset="0.53266597"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.96402878;"
|
||||
offset="1"
|
||||
id="stop16010-3-3-0" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7027"
|
||||
id="radialGradient7664"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.54946499,-0.47306176,0.41652129,0.48379279,58.123796,-36.213452)"
|
||||
cx="-94.369072"
|
||||
cy="10.769191"
|
||||
fx="-94.369072"
|
||||
fy="10.769191"
|
||||
r="7" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-3"
|
||||
id="radialGradient4866-3"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2844565,-0.01501783,0.01501783,1.2844565,-3.5936925,-1.2332645)"
|
||||
cx="12.042423"
|
||||
cy="14.89196"
|
||||
fx="12.042423"
|
||||
fy="14.89196"
|
||||
r="10.5" />
|
||||
<linearGradient
|
||||
id="linearGradient16006-70-3">
|
||||
<stop
|
||||
id="stop3915-5-9"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3895-1-7"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:0.94964027;" />
|
||||
<stop
|
||||
id="stop16014-10-5"
|
||||
offset="0.53266597"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.96402878;"
|
||||
offset="1"
|
||||
id="stop16010-3-4" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-8-9"
|
||||
id="linearGradient6291-4"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="4.3775868"
|
||||
y1="7"
|
||||
x2="20"
|
||||
y2="4"
|
||||
gradientTransform="translate(0,1)" />
|
||||
<linearGradient
|
||||
id="linearGradient16006-70-8-9">
|
||||
<stop
|
||||
id="stop3915-5-1-6"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
id="stop3895-1-6-7"
|
||||
offset="0.12995452"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop16010-3-9-2" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16006-70-8-0-5"
|
||||
id="radialGradient3906"
|
||||
cx="13.941654"
|
||||
cy="15.562485"
|
||||
fx="13.941654"
|
||||
fy="15.562485"
|
||||
r="7"
|
||||
gradientTransform="matrix(1.5450739,0,0,1.0001594,-6.5408864,-0.00246607)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
r="7"
|
||||
fy="13.582804"
|
||||
fx="15.222783"
|
||||
cy="13.582804"
|
||||
cx="15.222783"
|
||||
gradientTransform="matrix(1.8913508,0.50678589,-0.34787899,1.298302,-7.0039507,-10.380525)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3924"
|
||||
xlink:href="#linearGradient16006-70-8-0-5"
|
||||
inkscape:collect="always" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.15294118"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
id="namedview14999"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:snap-bbox="false"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="33.502367"
|
||||
inkscape:cy="11.529279"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid15007"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Icon"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="quassel"
|
||||
transform="translate(24,-1)">
|
||||
<path
|
||||
style="fill:url(#radialGradient7539);fill-opacity:1;stroke:none"
|
||||
d="M -97.71875,11.0625 C -97.89465,11.676256 -98,12.329717 -98,13 c 0,3.865993 3.134007,7 7,7 3.865993,0 7,-3.134007 7,-7 0,-0.670283 -0.10535,-1.323744 -0.28125,-1.9375 -0.345408,0.622376 -0.782132,1.188252 -1.28125,1.6875 0.278709,0.589271 0.46875,1.244841 0.46875,1.9375 0,2.511284 -2.05122,4.5625 -4.5625,4.5625 -2.51128,0 -4.5625,-2.051216 -4.5625,-4.5625 0,-0.129627 0.02054,-0.248044 0.03125,-0.375 -1.500463,-0.678439 -2.736574,-1.818108 -3.53125,-3.25 z"
|
||||
transform="translate(103,1)"
|
||||
id="path7113"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39153436;stroke:none"
|
||||
d="m 13.34375,11.125 c -2.511284,0 -4.5625,2.051216 -4.5625,4.5625 0,2.511284 2.051216,4.5625 4.5625,4.5625 2.511284,0 4.5625,-2.051216 4.5625,-4.5625 0,-2.511284 -2.051216,-4.5625 -4.5625,-4.5625 z m 0,1.03125 c 1.950777,0 3.53125,1.580473 3.53125,3.53125 0,1.950777 -1.580473,3.53125 -3.53125,3.53125 -1.950777,0 -3.53125,-1.580473 -3.53125,-3.53125 0,-1.950777 1.580473,-3.53125 3.53125,-3.53125 z"
|
||||
id="path5375"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
y="1"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect6487"
|
||||
style="fill:none;stroke:none" />
|
||||
<path
|
||||
style="display:inline;fill:url(#radialGradient4866);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 12,5 c -4.9705627,0 -9,4.0294373 -9,9 0,4.970563 4.0294373,9 9,9 4.970563,0 9,-4.029437 9,-9 0,-4.9705627 -4.029437,-9 -9,-9 z m 0,2 c 3.865993,0 7,3.134007 7,7 0,3.865993 -3.134007,7 -7,7 C 8.1340068,21 5,17.865993 5,14 5,10.134007 8.1340068,7 12,7 Z"
|
||||
id="path3916-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:url(#linearGradient6291);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,3 C 8.0270614,3 4.7179316,5.8912829 4.09375,9.6875 5.6216521,6.8949884 8.5923959,5 12,5 15.407604,5 18.378348,6.8949884 19.90625,9.6875 19.282068,5.8912829 15.972938,3 12,3 Z"
|
||||
id="path3916-0-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient5283);fill-opacity:1;stroke:none"
|
||||
id="path5275"
|
||||
transform="matrix(0.85496182,0,0,0.85496182,2.0966388,3.5899231)"
|
||||
cx="13.151117"
|
||||
cy="14.160316"
|
||||
r="4.1314058" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.31216933;stroke:none"
|
||||
d="M 5.125,12.84375 C 5.0562697,13.220645 5,13.603723 5,14 c 0,3.865993 3.1340068,7 7,7 3.865993,0 7,-3.134007 7,-7 0,-0.396277 -0.05627,-0.779355 -0.125,-1.15625 -0.09693,1.305629 -0.463037,2.51022 -1.03125,3.5625 -0.351793,2.166644 -2.237259,3.84375 -4.5,3.84375 -0.300385,0 -0.591049,-0.03752 -0.875,-0.09375 -0.01,-0.002 -0.0213,0.002 -0.03125,0 C 12.294821,20.1665 12.144893,20.1875 12,20.1875 c -3.6106455,0 -6.5696158,-3.230348 -6.875,-7.34375 z"
|
||||
id="path4886-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.23809521;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,4.28125 C 8.8411131,4.28125 6.0360949,5.9476714 4.375,8.5 4.2480267,8.8853523 4.1609696,9.2786766 4.09375,9.6875 4.1779777,9.5335589 4.2821714,9.398319 4.375,9.25 4.4516356,9.1273542 4.5114647,8.9935939 4.59375,8.875 4.7208823,8.6922656 4.8599755,8.5162811 5,8.34375 5.1576426,8.1489341 5.3269175,7.962145 5.5,7.78125 5.7146641,7.5568964 5.9507944,7.3574823 6.1875,7.15625 6.220908,7.1278323 6.247424,7.0904364 6.28125,7.0625 6.314889,7.0347387 6.3409534,6.9960294 6.375,6.96875 6.4854022,6.880238 6.6041751,6.8020857 6.71875,6.71875 6.8401816,6.630459 6.9678387,6.5510103 7.09375,6.46875 7.2982631,6.3350699 7.5031622,6.2108113 7.71875,6.09375 7.9449433,5.9708744 8.1688693,5.85352 8.40625,5.75 8.4365877,5.7367749 8.4694899,5.7316497 8.5,5.71875 8.8166897,5.5848015 9.1347629,5.4724984 9.46875,5.375 9.5508253,5.3510598 9.635728,5.334149 9.71875,5.3125 10.051237,5.2256172 10.403695,5.1423865 10.75,5.09375 11.162701,5.0357887 11.571318,5 12,5 c 0.428682,0 0.837299,0.035789 1.25,0.09375 0.346305,0.048636 0.698763,0.1318672 1.03125,0.21875 0.08204,0.021438 0.168889,0.038822 0.25,0.0625 0.293014,0.085468 0.563873,0.1988908 0.84375,0.3125 0.310968,0.1262761 0.613734,0.2473456 0.90625,0.40625 0.215588,0.1170613 0.420487,0.2413199 0.625,0.375 0.125925,0.082311 0.253555,0.1616673 0.375,0.25 0.185162,0.1346287 0.357127,0.2894718 0.53125,0.4375 0.236706,0.2012323 0.472836,0.4006464 0.6875,0.625 0.171888,0.1793536 0.343326,0.3694547 0.5,0.5625 0.140024,0.1725311 0.279118,0.3485156 0.40625,0.53125 0.08323,0.119629 0.141294,0.2512434 0.21875,0.375 0.09175,0.1468429 0.19789,0.2851452 0.28125,0.4375 C 19.83903,9.2786766 19.751973,8.8853523 19.625,8.5 17.963905,5.9476714 15.158887,4.28125 12,4.28125 Z"
|
||||
id="path3916-0-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path7448"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="m 12,3 c 3.97294,0 7.28207,2.8912829 7.90625,6.6875 C 20.60705,10.968336 21,12.437041 21,14 21,18.970563 16.97056,23 12,23 7.02944,23 3,18.970563 3,14 3,12.437041 3.39295,10.968336 4.09375,9.6875 4.71793,5.8912829 8.02706,3 12,3 Z M 12,1.96875 C 7.649888,1.96875 4.041391,5.0753571 3.1875,9.1875 3.162241,9.3091417 3.082788,9.4078572 3.0625,9.53125 2.38568,10.884657 1.96875,12.391697 1.96875,14 c 0,5.534051 4.497202,10.03125 10.03125,10.03125 5.534048,0 10.03125,-4.497199 10.03125,-10.03125 0,-1.608303 -0.416927,-3.115343 -1.09375,-4.46875 C 20.921058,9.4312522 20.863463,9.3488544 20.84375,9.25 20.832783,9.2296169 20.823606,9.2077979 20.8125,9.1875 19.958609,5.0753571 16.350112,1.96875 12,1.96875 Z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.23529412;stroke:none"
|
||||
d="m -96.5,10.875 -1.21875,0.1875 c 0.794678,1.431892 2.030788,2.571561 3.53125,3.25 0.03196,-0.378815 0.130432,-0.746472 0.25,-1.09375 -1.041864,-0.549644 -1.922513,-1.355264 -2.5625,-2.34375 z m 11,0 c -0.202997,0.313538 -0.439378,0.597612 -0.6875,0.875 0.256705,0.3031 0.453451,0.637297 0.625,1 0.499118,-0.499248 0.935841,-1.065124 1.28125,-1.6875 L -85.5,10.875 Z"
|
||||
transform="translate(103,1)"
|
||||
id="path7473"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="m -91,6 c -3.195708,0 -5.880112,2.1362911 -6.71875,5.0625 L -96.5,10.875 c 0.857694,-2.2296486 2.954727,-3.84375 5.5,-3.84375 2.545273,0 4.642306,1.6141014 5.5,3.84375 l 1.21875,0.1875 C -85.119888,8.1362911 -87.804292,6 -91,6 Z"
|
||||
id="path7336"
|
||||
transform="translate(103,1)"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="quassel-message"
|
||||
transform="translate(48,-1)"
|
||||
inkscape:label="#quassel-message">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7448-4"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="m 12,3 c 3.97294,0 7.28207,2.8912829 7.90625,6.6875 C 20.60705,10.968336 21,12.437041 21,14 21,18.970563 16.97056,23 12,23 7.02944,23 3,18.970563 3,14 3,12.437041 3.39295,10.968336 4.09375,9.6875 4.71793,5.8912829 8.02706,3 12,3 Z M 12,1.96875 C 7.649888,1.96875 4.041391,5.0753571 3.1875,9.1875 3.162241,9.3091417 3.082788,9.4078572 3.0625,9.53125 2.38568,10.884657 1.96875,12.391697 1.96875,14 c 0,5.534051 4.497202,10.03125 10.03125,10.03125 5.534048,0 10.03125,-4.497199 10.03125,-10.03125 0,-1.608303 -0.416927,-3.115343 -1.09375,-4.46875 C 20.921058,9.4312522 20.863463,9.3488544 20.84375,9.25 20.832783,9.2296169 20.823606,9.2077979 20.8125,9.1875 19.958609,5.0753571 16.350112,1.96875 12,1.96875 Z" />
|
||||
<path
|
||||
style="fill:url(#radialGradient7664);fill-opacity:1;stroke:none"
|
||||
d="M 5.15625,10.5 A 0.56156451,0.56156451 0 0 0 4.75,10.90625 C 4.561378,11.564396 4.4375,12.270881 4.4375,13 c 0,4.169455 3.3930453,7.5625 7.5625,7.5625 4.169455,0 7.5625,-3.393045 7.5625,-7.5625 0,-0.729119 -0.123878,-1.435604 -0.3125,-2.09375 a 0.56156451,0.56156451 0 0 0 -0.71875,-0.375 c 0.06572,0.174724 0.135599,0.350156 0.1875,0.53125 -0.345409,0.622376 -0.782132,1.188252 -1.28125,1.6875 0.278709,0.589271 0.46875,1.244841 0.46875,1.9375 0,2.511284 -2.051216,4.5625 -4.5625,4.5625 -2.511284,0 -4.5625,-2.051216 -4.5625,-4.5625 0,-0.129627 0.020538,-0.248044 0.03125,-0.375 C 7.312038,13.634061 6.075928,12.494392 5.28125,11.0625 5.3341791,10.877818 5.432702,10.709301 5.5,10.53125 A 0.56156451,0.56156451 0 0 0 5.21875,10.5 a 0.56156451,0.56156451 0 0 0 -0.0625,0 z"
|
||||
transform="translate(0,1)"
|
||||
id="path7662"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39153436;stroke:none"
|
||||
d="m 13.34375,11.125 c -2.511284,0 -4.5625,2.051216 -4.5625,4.5625 0,2.511284 2.051216,4.5625 4.5625,4.5625 2.511284,0 4.5625,-2.051216 4.5625,-4.5625 0,-2.511284 -2.051216,-4.5625 -4.5625,-4.5625 z m 0,1.03125 c 1.950777,0 3.53125,1.580473 3.53125,3.53125 0,1.950777 -1.580473,3.53125 -3.53125,3.53125 -1.950777,0 -3.53125,-1.580473 -3.53125,-3.53125 0,-1.950777 1.580473,-3.53125 3.53125,-3.53125 z"
|
||||
id="path5375-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
y="1"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect6487-0"
|
||||
style="fill:none;stroke:none" />
|
||||
<path
|
||||
style="display:inline;fill:url(#radialGradient4866-71);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 12,5 c -4.9705627,0 -9,4.0294373 -9,9 0,4.970563 4.0294373,9 9,9 4.970563,0 9,-4.029437 9,-9 0,-4.9705627 -4.029437,-9 -9,-9 z m 0,2 c 3.865993,0 7,3.134007 7,7 0,3.865993 -3.134007,7 -7,7 C 8.1340068,21 5,17.865993 5,14 5,10.134007 8.1340068,7 12,7 Z"
|
||||
id="path3916-0-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:url(#linearGradient6291-2);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,3 C 8.0270614,3 4.7179316,5.8912829 4.09375,9.6875 5.6216521,6.8949884 8.5923959,5 12,5 15.407604,5 18.378348,6.8949884 19.90625,9.6875 19.282068,5.8912829 15.972938,3 12,3 Z"
|
||||
id="path3916-0-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient5283-1);fill-opacity:1;stroke:none"
|
||||
id="path5275-3"
|
||||
transform="matrix(0.85496182,0,0,0.85496182,2.0966388,3.5899231)"
|
||||
cx="13.151117"
|
||||
cy="14.160316"
|
||||
r="4.1314058" />
|
||||
<path
|
||||
style="display:inline;fill:#ffffff;fill-opacity:0.4425287;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,4.28125 C 8.8411131,4.28125 6.0360949,5.9476714 4.375,8.5 4.2480267,8.8853523 4.1609696,9.2786766 4.09375,9.6875 4.1779777,9.5335589 4.2821714,9.398319 4.375,9.25 4.4516356,9.1273542 4.5114647,8.9935939 4.59375,8.875 4.7208823,8.6922656 4.8599755,8.5162811 5,8.34375 5.1576426,8.1489341 5.3269175,7.962145 5.5,7.78125 5.7146641,7.5568964 5.9507944,7.3574823 6.1875,7.15625 6.220908,7.1278323 6.247424,7.0904364 6.28125,7.0625 6.314889,7.0347387 6.3409534,6.9960294 6.375,6.96875 6.4854022,6.880238 6.6041751,6.8020857 6.71875,6.71875 6.8401816,6.630459 6.9678387,6.5510103 7.09375,6.46875 7.2982631,6.3350699 7.5031622,6.2108113 7.71875,6.09375 7.9449433,5.9708744 8.1688693,5.85352 8.40625,5.75 8.4365877,5.7367749 8.4694899,5.7316497 8.5,5.71875 8.8166897,5.5848015 9.1347629,5.4724984 9.46875,5.375 9.5508253,5.3510598 9.635728,5.334149 9.71875,5.3125 10.051237,5.2256172 10.403695,5.1423865 10.75,5.09375 11.162701,5.0357887 11.571318,5 12,5 c 0.428682,0 0.837299,0.035789 1.25,0.09375 0.346305,0.048636 0.698763,0.1318672 1.03125,0.21875 0.08204,0.021438 0.168889,0.038822 0.25,0.0625 0.293014,0.085468 0.563873,0.1988908 0.84375,0.3125 0.310968,0.1262761 0.613734,0.2473456 0.90625,0.40625 0.215588,0.1170613 0.420487,0.2413199 0.625,0.375 0.125925,0.082311 0.253555,0.1616673 0.375,0.25 0.185162,0.1346287 0.357127,0.2894718 0.53125,0.4375 0.236706,0.2012323 0.472836,0.4006464 0.6875,0.625 0.171888,0.1793536 0.343326,0.3694547 0.5,0.5625 0.140024,0.1725311 0.279118,0.3485156 0.40625,0.53125 0.08323,0.119629 0.141294,0.2512434 0.21875,0.375 0.09175,0.1468429 0.19789,0.2851452 0.28125,0.4375 C 19.83903,9.2786766 19.751973,8.8853523 19.625,8.5 17.963905,5.9476714 15.158887,4.28125 12,4.28125 Z"
|
||||
id="path3916-0-1-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.23529412;stroke:none"
|
||||
d="m -96.5,10.875 -1.21875,0.1875 c 0.794678,1.431892 2.030788,2.571561 3.53125,3.25 0.03196,-0.378815 0.130432,-0.746472 0.25,-1.09375 -1.041864,-0.549644 -1.922513,-1.355264 -2.5625,-2.34375 z m 11,0 c -0.202997,0.313538 -0.439378,0.597612 -0.6875,0.875 0.256705,0.3031 0.453451,0.637297 0.625,1 0.499118,-0.499248 0.935841,-1.065124 1.28125,-1.6875 L -85.5,10.875 Z"
|
||||
transform="translate(103,1)"
|
||||
id="path7473-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;stroke:none"
|
||||
d="m -91,6 c -3.195708,0 -5.880112,2.1362911 -6.71875,5.0625 L -96.5,10.875 c 0.857694,-2.2296486 2.954727,-3.84375 5.5,-3.84375 2.545273,0 4.642306,1.6141014 5.5,3.84375 l 1.21875,0.1875 C -85.119888,8.1362911 -87.804292,6 -91,6 Z"
|
||||
id="path7336-3"
|
||||
transform="translate(103,1)" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="quassel-inactive"
|
||||
transform="translate(0,-1)">
|
||||
<rect
|
||||
y="1"
|
||||
x="0"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect6487-04"
|
||||
style="fill:none;stroke:none" />
|
||||
<path
|
||||
style="display:inline;fill:url(#radialGradient4866-3);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 12,5 c -4.9705627,0 -9,4.0294373 -9,9 0,4.970563 4.0294373,9 9,9 4.970563,0 9,-4.029437 9,-9 0,-4.9705627 -4.029437,-9 -9,-9 z m 0,2 c 3.865993,0 7,3.134007 7,7 0,3.865993 -3.134007,7 -7,7 C 8.1340068,21 5,17.865993 5,14 5,10.134007 8.1340068,7 12,7 Z"
|
||||
id="path3916-0-11"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:url(#linearGradient6291-4);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,3 C 8.0270614,3 4.7179316,5.8912829 4.09375,9.6875 5.6216521,6.8949884 8.5923959,5 12,5 15.407604,5 18.378348,6.8949884 19.90625,9.6875 19.282068,5.8912829 15.972938,3 12,3 Z"
|
||||
id="path3916-0-3-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.23809521;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,4.28125 C 8.8411131,4.28125 6.0360949,5.9476714 4.375,8.5 4.2480267,8.8853523 4.1609696,9.2786766 4.09375,9.6875 4.1779777,9.5335589 4.2821714,9.398319 4.375,9.25 4.4516356,9.1273542 4.5114647,8.9935939 4.59375,8.875 4.7208823,8.6922656 4.8599755,8.5162811 5,8.34375 5.1576426,8.1489341 5.3269175,7.962145 5.5,7.78125 5.7146641,7.5568964 5.9507944,7.3574823 6.1875,7.15625 6.220908,7.1278323 6.247424,7.0904364 6.28125,7.0625 6.314889,7.0347387 6.3409534,6.9960294 6.375,6.96875 6.4854022,6.880238 6.6041751,6.8020857 6.71875,6.71875 6.8401816,6.630459 6.9678387,6.5510103 7.09375,6.46875 7.2982631,6.3350699 7.5031622,6.2108113 7.71875,6.09375 7.9449433,5.9708744 8.1688693,5.85352 8.40625,5.75 8.4365877,5.7367749 8.4694899,5.7316497 8.5,5.71875 8.8166897,5.5848015 9.1347629,5.4724984 9.46875,5.375 9.5508253,5.3510598 9.635728,5.334149 9.71875,5.3125 10.051237,5.2256172 10.403695,5.1423865 10.75,5.09375 11.162701,5.0357887 11.571318,5 12,5 c 0.428682,0 0.837299,0.035789 1.25,0.09375 0.346305,0.048636 0.698763,0.1318672 1.03125,0.21875 0.08204,0.021438 0.168889,0.038822 0.25,0.0625 0.293014,0.085468 0.563873,0.1988908 0.84375,0.3125 0.310968,0.1262761 0.613734,0.2473456 0.90625,0.40625 0.215588,0.1170613 0.420487,0.2413199 0.625,0.375 0.125925,0.082311 0.253555,0.1616673 0.375,0.25 0.185162,0.1346287 0.357127,0.2894718 0.53125,0.4375 0.236706,0.2012323 0.472836,0.4006464 0.6875,0.625 0.171888,0.1793536 0.343326,0.3694547 0.5,0.5625 0.140024,0.1725311 0.279118,0.3485156 0.40625,0.53125 0.08323,0.119629 0.141294,0.2512434 0.21875,0.375 0.09175,0.1468429 0.19789,0.2851452 0.28125,0.4375 C 19.83903,9.2786766 19.751973,8.8853523 19.625,8.5 17.963905,5.9476714 15.158887,4.28125 12,4.28125 Z"
|
||||
id="path3916-0-1-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3906);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 5.3125,10.9375 C 5.1136031,11.586776 5,12.28557 5,13 c 0,3.865993 3.1340068,7 7,7 3.865993,0 7,-3.134007 7,-7 0,-0.71443 -0.113603,-1.413224 -0.3125,-2.0625 -1.426756,2.192928 -3.87628,3.65625 -6.6875,3.65625 -2.8112199,0 -5.2607443,-1.463322 -6.6875,-3.65625 z"
|
||||
transform="translate(0,1)"
|
||||
id="path3101"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:url(#radialGradient3924);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 5.3125,11.9375 C 5.1136031,12.586776 5,13.28557 5,14 c 0,3.865993 3.1340068,7 7,7 3.865993,0 7,-3.134007 7,-7 0,-0.71443 -0.113603,-1.413224 -0.3125,-2.0625 -1.426756,2.192928 -3.87628,3.65625 -6.6875,3.65625 -2.8112199,0 -5.2607443,-1.463322 -6.6875,-3.65625 z"
|
||||
id="path3101-2" />
|
||||
<path
|
||||
id="path4203"
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none"
|
||||
d="m 12,3 c 3.972938,0 7.282068,2.8912829 7.90625,6.6875 C 20.60705,10.968336 21,12.437041 21,14 21,18.970563 16.970563,23 12,23 7.0294373,23 3,18.970563 3,14 3,12.437041 3.3929503,10.968336 4.09375,9.6875 4.7179316,5.8912829 8.0270614,3 12,3 Z m 0,-0.96875 c -4.3254098,0 -7.9130359,3.0952358 -8.75,7.1875 C 3.2270689,9.3308697 3.1436804,9.4176376 3.125,9.53125 2.4449411,10.881185 2.03125,12.392639 2.03125,14 c 0,5.495203 4.4735475,9.96875 9.96875,9.96875 5.495203,0 9.96875,-4.473547 9.96875,-9.96875 0,-1.607361 -0.413691,-3.118815 -1.09375,-4.46875 C 20.85632,9.4176376 20.772931,9.3308697 20.75,9.21875 19.913035,5.1264859 16.325409,2.03125 12,2.03125 Z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none"
|
||||
d="m 7.71875,6.09375 c -0.2140817,0.1162961 -0.4218567,0.2422826 -0.625,0.375 0.2045131,-0.1336801 0.4094122,-0.2579387 0.625,-0.375 z"
|
||||
id="path4201"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none"
|
||||
d="m 16.28125,6.09375 c 0.214082,0.1162961 0.421857,0.2422826 0.625,0.375 -0.204513,-0.1336801 -0.409412,-0.2579387 -0.625,-0.375 z"
|
||||
id="path4199"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none"
|
||||
d="M 18.6875,10.9375 17.53125,10.75 C 16.248921,12.455494 14.297726,13.625 12,13.625 9.7022739,13.625 7.7510791,12.455494 6.46875,10.75 L 5.3125,10.9375 c 1.4267557,2.192928 3.8762801,3.65625 6.6875,3.65625 2.81122,0 5.260744,-1.463322 6.6875,-3.65625 z"
|
||||
id="path4212"
|
||||
transform="translate(0,1)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none"
|
||||
d="M 12,6 C 8.848437,6 6.1898931,8.073353 5.3125,10.9375 L 6.46875,10.75 C 7.362673,8.5477229 9.4623972,6.96875 12,6.96875 c 2.537603,0 4.637327,1.5789729 5.53125,3.78125 l 1.15625,0.1875 C 17.810107,8.073353 15.151563,6 12,6 Z"
|
||||
id="path4195"
|
||||
transform="translate(0,1)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none"
|
||||
d="M 5.09375,12.9375 C 5.0404871,13.282662 5,13.642785 5,14 5,13.637563 5.0406392,13.285091 5.09375,12.9375 Z"
|
||||
id="path4193"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none"
|
||||
d="M 18.90625,12.9375 C 18.959361,13.285091 19,13.637563 19,14 19,13.642785 18.95951,13.282662 18.90625,12.9375 Z"
|
||||
id="path4109"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.31372549;fill-rule:evenodd;stroke:none"
|
||||
d="M 5.0625,12.1875 C 5.0309274,12.453943 5,12.727106 5,13 c 0,3.865993 3.1340068,7 7,7 3.865993,0 7,-3.134007 7,-7 0,-0.272894 -0.03093,-0.546057 -0.0625,-0.8125 C 18.838673,15.966517 15.769123,19 12,19 8.2308764,19 5.161327,15.966517 5.0625,12.1875 Z"
|
||||
transform="translate(0,1)"
|
||||
id="path3101-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 32 KiB |
626
src/desktoptheme/air/icons/slc.svg
Normal file
@ -0,0 +1,626 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="66"
|
||||
height="22"
|
||||
id="svg7538"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="slc.svgz"
|
||||
inkscape:export-filename="/home/diau/git/kdegit/playground/plasma-mobile/artwork/desktoptheme/air-mobile/icons/slc.png"
|
||||
inkscape:export-xdpi="78.671318"
|
||||
inkscape:export-ydpi="78.671318">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#999999"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16.000001"
|
||||
inkscape:cx="30.091461"
|
||||
inkscape:cy="10.264931"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
gridtolerance="10"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
id="grid7639"
|
||||
type="xygrid"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="-1.7382813e-05" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs7540">
|
||||
<linearGradient
|
||||
id="linearGradient3851">
|
||||
<stop
|
||||
id="stop3853"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="0.47000003"
|
||||
id="stop3855" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="0.75125003"
|
||||
style="stop-color:#ffffff;stop-opacity:0.28346458;" />
|
||||
<stop
|
||||
id="stop3859"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2916">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
id="stop2918" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
id="stop2920" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3291">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
id="stop3293" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
id="stop3295" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4249">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4251" />
|
||||
<stop
|
||||
id="stop4253"
|
||||
offset="0.47000003"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.28346458;"
|
||||
offset="0.75125003"
|
||||
id="stop4255" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.37702257,0.20532666,-0.20378285,0.3798788,-1.1428571,615.50124)"
|
||||
x1="485.75998"
|
||||
y1="860.09186"
|
||||
x2="485.75998"
|
||||
y2="865.3877" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3979"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.37702257,-0.20532666,-0.20378285,-0.3798788,-1.7779331,1468.8641)"
|
||||
x1="485.75998"
|
||||
y1="865.3877"
|
||||
x2="485.75998"
|
||||
y2="860.09186" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3981"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5"
|
||||
y1="-19.5"
|
||||
x2="20"
|
||||
y2="-19.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2916"
|
||||
id="linearGradient3983"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.5"
|
||||
y1="-27"
|
||||
x2="12.5"
|
||||
y2="-12" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3985"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5"
|
||||
y1="-19.5"
|
||||
x2="20"
|
||||
y2="-19.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2916"
|
||||
id="linearGradient3987"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.5"
|
||||
y1="-27"
|
||||
x2="12.5"
|
||||
y2="-12" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3989"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5"
|
||||
y1="-19.5"
|
||||
x2="20"
|
||||
y2="-19.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2916"
|
||||
id="linearGradient3991"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.5"
|
||||
y1="-27"
|
||||
x2="12.5"
|
||||
y2="-12" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4031"
|
||||
x1="35"
|
||||
y1="1031.3622"
|
||||
x2="35"
|
||||
y2="1033.3622"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83333333,0,0,1,5.9999993,1.0000174)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4055"
|
||||
x1="34"
|
||||
y1="42.5"
|
||||
x2="36"
|
||||
y2="42.5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4070"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="30"
|
||||
y1="1036.8622"
|
||||
x2="40"
|
||||
y2="1036.8622"
|
||||
gradientTransform="matrix(0.83333333,0,0,0.85714286,5.8333333,148.62317)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient4072"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="35"
|
||||
y1="1039.3622"
|
||||
x2="35"
|
||||
y2="1042.3622"
|
||||
gradientTransform="matrix(0.83333333,0,0,1,5.8333333,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3291"
|
||||
id="linearGradient4094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83333333,0,0,0.85714286,5.8333333,148.62317)"
|
||||
x1="35"
|
||||
y1="1033.3622"
|
||||
x2="35"
|
||||
y2="1035.6956" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3291"
|
||||
id="linearGradient4098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="35"
|
||||
y1="38"
|
||||
x2="35"
|
||||
y2="42" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2231">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2233" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2235" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2341">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2343" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2345" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3920">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3922" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3924" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3291-4">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3293-6" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3295-6" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2231"
|
||||
id="linearGradient3862"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.1505702,0,0,0.16534678,1.3324422,1007.3142)"
|
||||
x1="61.962692"
|
||||
y1="28.706591"
|
||||
x2="104.65211"
|
||||
y2="4.5699611" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2231"
|
||||
id="linearGradient3865"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.1505702,0,0,0.16534678,1.3324422,1007.3142)"
|
||||
x1="61.962692"
|
||||
y1="28.706591"
|
||||
x2="104.65211"
|
||||
y2="4.5699611" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2341"
|
||||
id="radialGradient3868"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.18080228,-0.17536118,0.04350515,-0.04869247,30.428583,1022.9798)"
|
||||
cx="66.450279"
|
||||
cy="21.283276"
|
||||
fx="66.450279"
|
||||
fy="21.283276"
|
||||
r="26.231684" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2341"
|
||||
id="radialGradient3871"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.32654068,-0.03114009,0.0056174,-0.06351714,29.696209,1013.1456)"
|
||||
cx="59.546715"
|
||||
cy="28.174582"
|
||||
fx="59.546715"
|
||||
fy="28.174582"
|
||||
r="26.231684" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3920"
|
||||
id="linearGradient3874"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.18168222,0,0,0.17810362,-0.49245721,1007.0352)"
|
||||
x1="55.403236"
|
||||
y1="-10.92763"
|
||||
x2="38.105381"
|
||||
y2="73.298271" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3920"
|
||||
id="linearGradient3877"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.18168222,0,0,0.17810362,-0.49245721,1007.0352)"
|
||||
x1="55.403236"
|
||||
y1="-10.92763"
|
||||
x2="38.105381"
|
||||
y2="73.298271" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3920"
|
||||
id="linearGradient3880"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.18168222,0,0,0.17810362,-0.49245721,1007.0352)"
|
||||
x1="55.403236"
|
||||
y1="-10.92763"
|
||||
x2="51.263126"
|
||||
y2="75.70253" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3291-4"
|
||||
id="linearGradient3883"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.15657735,0,0,0.16258946,0.94115621,1007.6292)"
|
||||
x1="121.72159"
|
||||
y1="59.862431"
|
||||
x2="51.468773"
|
||||
y2="59.862431" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3851"
|
||||
id="linearGradient3886"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.97346194,0,0,1.0051318,-1.6582551,-4.5004934)"
|
||||
x1="13"
|
||||
y1="1033.7258"
|
||||
x2="13"
|
||||
y2="1009.2151" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata7543">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
transform="translate(0,-1030.3622)">
|
||||
<g
|
||||
id="slc-share">
|
||||
<rect
|
||||
ry="0"
|
||||
y="1030.3622"
|
||||
x="0"
|
||||
height="22"
|
||||
width="22"
|
||||
id="rect3123"
|
||||
style="opacity:0;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none" />
|
||||
<g
|
||||
transform="matrix(1.0099668,0,0,1.007874,0.40033223,-8.6878913)"
|
||||
id="g3966">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient3977);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 7.7767858,1042.5369 c -0.1672127,0.7864 -0.6111694,1.4689 -1.2321429,1.9297 l 5.6116071,3.0497 c 0.04288,-0.8184 0.374644,-1.5585 0.910714,-2.1051 l -5.2901782,-2.8743 z"
|
||||
id="rect3916" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient3979);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 12.169643,1036.478 -5.4107144,2.9552 c 0.5746205,0.5075 0.9693339,1.2082 1.0714286,2.0107 l 5.4374998,-2.9553 c -0.583795,-0.5033 -0.988923,-1.206 -1.098214,-2.0106 z"
|
||||
id="rect3929" />
|
||||
<circle
|
||||
style="fill:url(#linearGradient3981);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3100"
|
||||
transform="matrix(0.42857143,0,0,0.43181818,-0.71428558,1050.2827)"
|
||||
cx="12.5"
|
||||
cy="-19.5"
|
||||
r="7.5" />
|
||||
<circle
|
||||
transform="matrix(0.42857143,0,0,0.43181818,-0.71428558,1050.2827)"
|
||||
id="path3878"
|
||||
style="opacity:0.419048;fill:url(#linearGradient3983);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
cx="12.5"
|
||||
cy="-19.5"
|
||||
r="7.5" />
|
||||
<circle
|
||||
transform="matrix(0.42857143,0,0,0.43181818,10.000001,1044.4531)"
|
||||
id="path3896"
|
||||
style="fill:url(#linearGradient3985);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
cx="12.5"
|
||||
cy="-19.5"
|
||||
r="7.5" />
|
||||
<circle
|
||||
style="opacity:0.419048;fill:url(#linearGradient3987);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3898"
|
||||
transform="matrix(0.42857143,0,0,0.43181818,10.000001,1044.4531)"
|
||||
cx="12.5"
|
||||
cy="-19.5"
|
||||
r="7.5" />
|
||||
<circle
|
||||
style="fill:url(#linearGradient3989);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3906"
|
||||
transform="matrix(0.42857143,0,0,0.43181818,10.000001,1056.1122)"
|
||||
cx="12.5"
|
||||
cy="-19.5"
|
||||
r="7.5" />
|
||||
<circle
|
||||
transform="matrix(0.42857143,0,0,0.43181818,10.000001,1056.1122)"
|
||||
id="path3908"
|
||||
style="opacity:0.419048;fill:url(#linearGradient3991);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
cx="12.5"
|
||||
cy="-19.5"
|
||||
r="7.5" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none;stroke-width:0.82999998;marker:none;enable-background:accumulate"
|
||||
d="m 15.34375,27.5625 c -2.237873,0 -4.03125,1.84405 -4.03125,4.09375 0,0.021 -3.58e-4,0.0405 0,0.0625 l -4.46875,2.4375 c -0.6414799,-0.4271 -1.362849,-0.75 -2.1875,-0.75 -2.2378847,0 -4.0625,1.84405 -4.0625,4.09375 0,2.2497 1.8246264,4.0625 4.0625,4.0625 0.7236438,0 1.3756738,-0.2254 1.96875,-0.5625 l 4.75,2.5625 c 0.136372,2.127 1.81953,3.84375 3.96875,3.84375 2.237873,0 4.0625,-1.84395 4.0625,-4.09375 0,-2.2497 -1.824627,-4.09375 -4.0625,-4.09375 -0.926099,0 -1.726378,0.38085 -2.40625,0.90625 L 8.65625,37.8125 C 8.66452,37.7043 8.6875,37.6092 8.6875,37.5 c 0,-0.011 1.536e-4,-0.02025 0,-0.03125 L 13.21875,35 c 0.629206,0.4068 1.321063,0.75 2.125,0.75 2.237873,0 4.0625,-1.84395 4.0625,-4.09375 0,-2.2497 -1.824627,-4.09375 -4.0625,-4.09375 z m 0,0.875 c 1.775201,0 3.21875,1.430101 3.21875,3.21875 0,1.788649 -1.443549,3.25 -3.21875,3.25 -0.95652,0 -1.786195,-0.425651 -2.375,-1.09375 0.09822,0.110844 0.200232,0.215712 0.3125,0.3125 l -5.4375,2.96875 C 7.83429,37.01942 7.805352,36.948158 7.78125,36.875 c 0.038964,0.201545 0.0625,0.41197 0.0625,0.625 0,0.376202 -0.070439,0.726601 -0.1875,1.0625 0.042782,-0.124749 0.097131,-0.243933 0.125,-0.375 l 5.28125,2.875 c 0.583853,-0.603793 1.378508,-0.96875 2.28125,-0.96875 1.775201,0 3.21875,1.461351 3.21875,3.25 0,1.788649 -1.443549,3.21875 -3.21875,3.21875 -1.775201,0 -3.1875,-1.430101 -3.1875,-3.21875 0,-0.191928 0.03072,-0.379744 0.0625,-0.5625 -0.02297,0.123933 -0.05572,0.245648 -0.0625,0.375 l -5.625,-3.0625 C 6.0067873,40.500284 5.3708403,40.75 4.65625,40.75 2.881049,40.75 1.4375,39.288649 1.4375,37.5 c 0,-1.788649 1.443549,-3.25 3.21875,-3.25 0.8087527,0 1.5288196,0.315678 2.09375,0.8125 l 5.40625,-2.9375 0,-0.46875 c 0,-1.788649 1.412299,-3.21875 3.1875,-3.21875 z"
|
||||
transform="translate(0,1004.3622)"
|
||||
id="rect3914"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssccsssccsssccsccssssssccccscccsssscccssscccs" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="slc-connect"
|
||||
transform="translate(-2,0)">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="1"
|
||||
y="1030.3622"
|
||||
x="24"
|
||||
height="22"
|
||||
width="22"
|
||||
id="rect4100"
|
||||
style="opacity:0;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none" />
|
||||
<rect
|
||||
rx="1"
|
||||
ry="0.98895144"
|
||||
y="1032.3622"
|
||||
x="31"
|
||||
height="2.0000174"
|
||||
width="8"
|
||||
id="rect4006"
|
||||
style="fill:url(#linearGradient4031);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<rect
|
||||
rx="0.99999994"
|
||||
style="fill:url(#linearGradient4072);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="rect4011"
|
||||
width="10"
|
||||
height="2"
|
||||
x="30"
|
||||
y="1040.3622"
|
||||
ry="1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4013"
|
||||
d="m 32,1034.3622 6,0 1,6 -8,0 z"
|
||||
style="fill:url(#linearGradient4070);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4019"
|
||||
d="m 34,38 2,0 0,3 -1,6 -1,-6 z"
|
||||
style="fill:url(#linearGradient4055);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="translate(0,1004.3622)" />
|
||||
<path
|
||||
id="rect4074"
|
||||
transform="translate(0,1004.3622)"
|
||||
d="m 32,27 c -1.098069,0 -2,0.9094 -2,2 0,0.6552 0.376944,1.16465 0.875,1.53125 L 30.0625,35.375 C 29.466045,35.7242 29,36.27 29,37 c 0,1.0907 0.909297,2 2,2 l 2,0 0,2 a 1.0001,1.0001 0 0 0 0,0.15625 l 1,6 a 1.0001,1.0001 0 0 0 2,0 l 1,-6 A 1.0001,1.0001 0 0 0 37,41 l 0,-2 2,0 c 1.090703,0 2,-0.9093 2,-2 0,-0.73 -0.466045,-1.2758 -1.0625,-1.625 L 39.125,30.53125 C 39.623056,30.16465 40,29.6552 40,29 40,27.9094 39.098069,27 38,27 l -6,0 z m 0,1 6,0 c 0.554,0 1,0.452121 1,1 0,0.547879 -0.446,1 -1,1 l 1,6 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 l -3,0 0,3 -1,6 -1,-6 0,-3 -3,0 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 l 1,-6 c -0.554,0 -1,-0.452121 -1,-1 0,-0.547879 0.446,-1 1,-1 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.3;fill:url(#linearGradient4094);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 32,1034.3622 6,0 1,6 -8,0 z"
|
||||
id="path4092"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
transform="translate(0,1004.3622)"
|
||||
style="opacity:0.27619048;fill:url(#linearGradient4098);fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,38 2,0 0,3 -1,6 -1,-6 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="slc-like"
|
||||
transform="translate(44,24.000017)">
|
||||
<rect
|
||||
y="1006.3622"
|
||||
x="0"
|
||||
height="22"
|
||||
width="22"
|
||||
id="rect4791"
|
||||
style="opacity:0;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
id="path2279"
|
||||
transform="translate(0,1004.3622)"
|
||||
d="M 6.9375,3 C 6.3470985,3 5.7507408,3.10095 5.15625,3.28125 3.4222207,3.80785 2.1200632,5.02205 1.5,6.53125 0.87993682,8.04035 0.87832652,9.7333 1.28125,11.4375 c 1.0497421,4.44 4.3905285,8.4771 8.625,11.125 0.11734,0.073 0.225036,0.14755 0.34375,0.21875 0.04978,0.032 0.02025,0.0255 0.09375,0.0625 0.04594,0.023 0.187213,0.09375 0.1875,0.09375 2.87e-4,2e-4 0.249724,0.0625 0.25,0.0625 l 0.375,0 c 2.58e-4,-10e-5 0.468518,-0.1249 0.46875,-0.125 6e-5,-10e-5 0.08116,-0.06175 0.125,-0.09375 0.110561,-0.067 0.232651,-0.14875 0.34375,-0.21875 10e-6,0 -0.0013,-0.02925 0,-0.03125 3.647274,-2.3032 7.544832,-6.52515 8.625,-11.09375 C 21.121673,9.7333 21.120062,8.04045 20.5,6.53125 19.879937,5.02205 18.577783,3.80775 16.84375,3.28125 15.139332,2.76365 13.454723,3.0122 12.1875,3.8125 11.708068,4.1153 11.364289,4.55165 11,4.96875 9.9864705,3.81825 8.6282532,2.9882 6.9375,3 Z M 6.65625,3.96875 C 8.8014659,3.95375 10.33448,5.4836 11,7.4375 11.807811,5.066 13.906254,3.33625 16.8125,4.21875 c 2.967368,0.9011 3.780466,3.5812 3.03125,6.75 C 18.828084,15.26465 14.941884,19.7617 11,22.125 6.928942,19.6842 3.1719144,15.26465 2.15625,10.96875 c -0.7492202,-3.1688 0.063873,-5.8489 3.03125,-6.75 0.5119212,-0.1556 1.0100907,-0.25 1.46875,-0.25 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:3.27651048;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none"
|
||||
d="m 8.9953809,1007.8568 0,-0.4621 0,0.4621 z"
|
||||
id="path2276"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssccsccsscc"
|
||||
id="path2245"
|
||||
d="m 6.651337,1008.3397 c -0.4586593,0 -0.9455002,0.077 -1.4574214,0.2326 -2.9673768,0.9011 -3.8005367,3.5935 -3.0513165,6.7623 1.0156644,4.2959 4.7391671,8.6842 8.8490409,11.1482 l 0,0.016 c 0.0016,0 0.0034,-0.011 0.0051,-0.011 0.0016,0 0.0034,0.011 0.0051,0.011 l 0,-0.016 c 3.953229,-2.3702 7.833376,-6.8523 8.849042,-11.1482 0.749216,-3.1688 -0.08395,-5.8612 -3.051318,-6.7623 -2.906246,-0.8825 -4.995027,0.8651 -5.802838,3.2366 -0.66552,-1.9539 -2.200203,-3.4842 -4.3454189,-3.4692 z"
|
||||
style="fill:url(#linearGradient3886);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssccsccsscc"
|
||||
style="opacity:0.28095242;fill:url(#linearGradient3883);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 6.651337,1008.3397 c -0.4586593,0 -0.9455002,0.077 -1.4574214,0.2326 -2.9673768,0.9011 -3.8005367,3.5935 -3.0513165,6.7623 1.0156644,4.2959 4.7779829,8.7074 8.8490409,11.1482 l 0,0.016 c 0.0016,0 0.0034,-0.011 0.0051,-0.011 0.0016,0 0.0034,0.011 0.0051,0.011 l 0,-0.016 c 3.941884,-2.3633 7.833376,-6.8523 8.849042,-11.1482 0.749216,-3.1688 -0.08395,-5.8612 -3.051318,-6.7623 -2.906246,-0.8825 -4.995027,0.8651 -5.802838,3.2366 -0.66552,-1.9539 -2.200203,-3.4842 -4.3454189,-3.4692 z"
|
||||
id="path2369"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2294"
|
||||
d="m 6.5198272,1008.3405 c -0.4204246,0.015 -0.8614886,0.092 -1.3254171,0.2337 -2.6891858,0.8166 -3.6238358,3.1034 -3.2181318,5.8838 3.442029,5.3767 9.1880407,8.6347 13.1200757,8.0633 2.110958,-2.3185 4.161377,-4.6737 4.754995,-7.1843 0.749219,-3.1689 -0.08573,-5.8617 -3.053099,-6.7628 -2.906246,-0.8825 -4.994108,0.8649 -5.801919,3.2365 -0.665519,-1.9539 -2.2023568,-3.4853 -4.3475727,-3.4702 -0.042998,0 -0.085441,0 -0.1289311,0 z"
|
||||
style="opacity:0.1762295;fill:url(#linearGradient3880);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2317"
|
||||
d="m 6.4630967,1008.3405 c -0.4025654,0.02 -0.8265042,0.1 -1.2686866,0.2337 -2.6891858,0.8166 -3.6238358,3.1034 -3.2181318,5.8838 1.4947361,2.3349 3.4247461,4.2695 5.4512262,5.6652 0.4213776,-3.8163 1.5685158,-6.7379 3.2903345,-9.0035 -0.7670087,-1.6128 -2.1836371,-2.7925 -4.0690807,-2.7792 -0.042998,0 -0.085441,0 -0.1289311,0 -0.019712,0 -0.036933,0 -0.056734,0 z m 11.5264813,0.752 c -5.334687,2.4704 -7.208181,6.9267 -8.055643,12.4635 1.833499,0.8334 3.634989,1.1872 5.162419,0.9653 2.110958,-2.3185 4.161377,-4.6737 4.754995,-7.1843 0.637105,-2.6947 0.129314,-5.0473 -1.861771,-6.2445 z"
|
||||
style="opacity:0.295082;fill:url(#linearGradient3877);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccsscccsc"
|
||||
style="opacity:0.24590167;fill:url(#linearGradient3874);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 6.4630967,1008.3405 c -0.4025654,0.02 -0.8265042,0.1 -1.2686866,0.2337 -2.6891858,0.8166 -3.6238358,3.1034 -3.2181318,5.8838 4.0516819,6.9137 6.8024203,-1.3939 8.5242397,-3.6594 -0.7670104,-1.6128 -1.9663161,-2.4714 -3.8517597,-2.4581 -0.042998,0 -0.085441,0 -0.1289311,0 -0.019712,0 -0.036933,0 -0.056734,0 z m 11.9611213,0.9661 c -5.334685,2.4704 -9.715669,14.901 -3.327864,13.2147 2.110958,-2.3185 4.161377,-4.6737 4.754995,-7.1843 0.637105,-2.6947 0.183646,-4.9939 -1.427131,-6.0304 z"
|
||||
id="path2333"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cscsc"
|
||||
id="path2339"
|
||||
d="m 10.962101,1011.5313 c -0.953936,-2.2901 -2.9276848,-3.5011 -4.6973179,-3.3305 -1.1838407,0.1141 -2.6653203,0.9724 -3.5172523,1.8974 0.9162797,-0.6995 2.2739759,-1.4473 3.4189453,-1.4935 2.5696432,-0.1029 4.2556579,1.9208 4.7956249,2.9266 z"
|
||||
style="fill:url(#radialGradient3871);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3868);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 20.207907,1012.7661 c -0.31976,-2.3992 -1.927762,-4.0713 -3.706543,-4.3977 -1.189964,-0.2184 -2.871113,0.1762 -3.953584,0.8056 1.085015,-0.4015 2.615256,-0.7267 3.74895,-0.4557 2.544015,0.6095 3.652243,2.9609 3.911177,4.0478 z"
|
||||
id="path2353"
|
||||
sodipodi:nodetypes="cscsc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path1348"
|
||||
d="m 11.014754,1011.4279 c 0.634396,-1.5158 1.569303,-2.7415 3.390165,-3.1123 -1.559798,0.7543 -2.547503,1.8854 -3.390165,3.1123 z"
|
||||
style="opacity:0.22950822;fill:url(#linearGradient3865);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.22950822;fill:url(#linearGradient3862);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 10.987632,1011.7628 c 0.05807,-1.4114 1.596425,-2.8084 3.390166,-3.3281 -1.559798,0.7543 -2.845838,2.3471 -3.390166,3.3281 z"
|
||||
id="path2241"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
549
src/desktoptheme/air/icons/start.svg
Normal file
@ -0,0 +1,549 @@
|
||||
<?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"
|
||||
version="1.0"
|
||||
width="128"
|
||||
height="128"
|
||||
id="svg2250"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docname="kmenu.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<metadata
|
||||
id="metadata89">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-height="602"
|
||||
inkscape:window-width="722"
|
||||
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"
|
||||
inkscape:zoom="2.8284271"
|
||||
inkscape:cx="64"
|
||||
inkscape:cy="56.400243"
|
||||
inkscape:window-x="48"
|
||||
inkscape:window-y="59"
|
||||
inkscape:current-layer="g2221" />
|
||||
<defs
|
||||
id="defs2252">
|
||||
<radialGradient
|
||||
cx="76.764198"
|
||||
cy="58.0625"
|
||||
r="66.164497"
|
||||
id="XMLID_27_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9397,0,0,0.9397,4.2153,4.1331)">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop107" />
|
||||
<stop
|
||||
style="stop-color:#fdfdfc;stop-opacity:1"
|
||||
offset="0.32780001"
|
||||
id="stop109" />
|
||||
<stop
|
||||
style="stop-color:#f4f5f4;stop-opacity:1"
|
||||
offset="0.6773591"
|
||||
id="stop111" />
|
||||
<stop
|
||||
style="stop-color:#cacfd0;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop113" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
cx="110.74259"
|
||||
cy="123.17536"
|
||||
r="81.292717"
|
||||
fx="110.74259"
|
||||
fy="123.17536"
|
||||
id="radialGradient5096"
|
||||
xlink:href="#XMLID_27_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0727282,0,0,-0.7852748,-88.140453,159.47421)" />
|
||||
<linearGradient
|
||||
x1="9.5995998"
|
||||
y1="68.399902"
|
||||
x2="129.6001"
|
||||
y2="68.399902"
|
||||
id="linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,-4.371139e-8,4.371139e-8,-1,139.2007,136.8)">
|
||||
<stop
|
||||
style="stop-color:#2451b1;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3221" />
|
||||
<stop
|
||||
style="stop-color:#c5d1fb;stop-opacity:0"
|
||||
offset="0.5"
|
||||
id="stop3227" />
|
||||
<stop
|
||||
style="stop-color:#7ab4ff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3233" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769"
|
||||
id="linearGradient3213"
|
||||
xlink:href="#linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
cx="66.136703"
|
||||
cy="0.75440001"
|
||||
r="81.971497"
|
||||
id="XMLID_25_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9459,0,0,1,1051.1319,-330.17143)">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.1302"
|
||||
id="stop95" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16862746;"
|
||||
offset="0.5"
|
||||
id="stop97" />
|
||||
</radialGradient>
|
||||
<filter
|
||||
x="-0.29221493"
|
||||
width="1.5844299"
|
||||
y="-0.057434313"
|
||||
height="1.1148686"
|
||||
id="filter4446">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="2.4087233"
|
||||
id="feGaussianBlur4448" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
x1="108.00493"
|
||||
y1="72.341148"
|
||||
x2="115.9771"
|
||||
y2="102.0937"
|
||||
id="linearGradient4456"
|
||||
xlink:href="#XMLID_23_"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
x="-0.29221493"
|
||||
width="1.5844299"
|
||||
y="-0.057434313"
|
||||
height="1.1148686"
|
||||
id="filter4442">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="2.4087233"
|
||||
id="feGaussianBlur4444" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
x1="115.9771"
|
||||
y1="72.399902"
|
||||
x2="115.9771"
|
||||
y2="120.3999"
|
||||
id="XMLID_23_"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
style="stop-color:#00316e;stop-opacity:0"
|
||||
offset="0"
|
||||
id="stop79" />
|
||||
<stop
|
||||
style="stop-color:#00316e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop81" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="108.00493"
|
||||
y1="72.341148"
|
||||
x2="115.9771"
|
||||
y2="102.0937"
|
||||
id="linearGradient4454"
|
||||
xlink:href="#XMLID_23_"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<clipPath
|
||||
id="clipPath4458">
|
||||
<use
|
||||
id="use4460"
|
||||
x="0"
|
||||
y="0"
|
||||
width="1"
|
||||
height="1"
|
||||
xlink:href="#XMLID_10_" />
|
||||
</clipPath>
|
||||
<filter
|
||||
id="AI_Sfocatura_4">
|
||||
<feGaussianBlur
|
||||
stdDeviation="4"
|
||||
id="feGaussianBlur6" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
cx="69.600098"
|
||||
cy="145.3999"
|
||||
r="141"
|
||||
id="XMLID_21_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1047.3429,-330.17143)">
|
||||
<stop
|
||||
style="stop-color:#2c72c7;stop-opacity:0"
|
||||
offset="0.3373"
|
||||
id="stop58" />
|
||||
<stop
|
||||
style="stop-color:#2c72c7;stop-opacity:1"
|
||||
offset="0.57990003"
|
||||
id="stop60" />
|
||||
<stop
|
||||
style="stop-color:#2c72c7;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop62" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
cx="69.600098"
|
||||
cy="68.399902"
|
||||
r="85"
|
||||
id="XMLID_20_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1047.3429,-330.17143)">
|
||||
<stop
|
||||
style="stop-color:#6193ff;stop-opacity:1"
|
||||
offset="0.5"
|
||||
id="stop47" />
|
||||
<stop
|
||||
style="stop-color:#003685;stop-opacity:1"
|
||||
offset="0.78109998"
|
||||
id="stop49" />
|
||||
<stop
|
||||
style="stop-color:#709dff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop51" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
x1="9.5995998"
|
||||
y1="68.399902"
|
||||
x2="129.6001"
|
||||
y2="68.399902"
|
||||
id="XMLID_18_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,-4.371139e-8,4.371139e-8,-1,1186.5436,-193.37143)">
|
||||
<stop
|
||||
style="stop-color:#003685;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop13" />
|
||||
<stop
|
||||
style="stop-color:#083c8f;stop-opacity:1"
|
||||
offset="0.0105"
|
||||
id="stop15" />
|
||||
<stop
|
||||
style="stop-color:#2451b1;stop-opacity:1"
|
||||
offset="0.0533"
|
||||
id="stop17" />
|
||||
<stop
|
||||
style="stop-color:#3b63cd;stop-opacity:1"
|
||||
offset="0.099"
|
||||
id="stop19" />
|
||||
<stop
|
||||
style="stop-color:#4d71e3;stop-opacity:1"
|
||||
offset="0.1477"
|
||||
id="stop21" />
|
||||
<stop
|
||||
style="stop-color:#597bf3;stop-opacity:1"
|
||||
offset="0.20100001"
|
||||
id="stop23" />
|
||||
<stop
|
||||
style="stop-color:#6180fc;stop-opacity:1"
|
||||
offset="0.2622"
|
||||
id="stop25" />
|
||||
<stop
|
||||
style="stop-color:#6382ff;stop-opacity:1"
|
||||
offset="0.34909999"
|
||||
id="stop27" />
|
||||
<stop
|
||||
style="stop-color:#6382ff;stop-opacity:1"
|
||||
offset="0.58579999"
|
||||
id="stop31" />
|
||||
<stop
|
||||
style="stop-color:#003685;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop33" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter4466">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="2.32"
|
||||
id="feGaussianBlur4468" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769"
|
||||
id="linearGradient2328"
|
||||
xlink:href="#linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769"
|
||||
id="linearGradient2330"
|
||||
xlink:href="#linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
x1="9.5995998"
|
||||
y1="68.399902"
|
||||
x2="129.6001"
|
||||
y2="68.399902"
|
||||
id="linearGradient2352"
|
||||
xlink:href="#XMLID_18_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,-4.371139e-8,4.371139e-8,-1,1186.5436,-193.37143)" />
|
||||
<radialGradient
|
||||
cx="69.600098"
|
||||
cy="68.399902"
|
||||
r="85"
|
||||
id="radialGradient2354"
|
||||
xlink:href="#XMLID_20_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1047.3429,-330.17143)" />
|
||||
<radialGradient
|
||||
cx="69.600098"
|
||||
cy="145.3999"
|
||||
r="141"
|
||||
id="radialGradient2356"
|
||||
xlink:href="#XMLID_21_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1047.3429,-330.17143)" />
|
||||
<linearGradient
|
||||
x1="108.00493"
|
||||
y1="72.341148"
|
||||
x2="115.9771"
|
||||
y2="102.0937"
|
||||
id="linearGradient2358"
|
||||
xlink:href="#XMLID_23_"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
x1="108.00493"
|
||||
y1="72.341148"
|
||||
x2="115.9771"
|
||||
y2="102.0937"
|
||||
id="linearGradient2360"
|
||||
xlink:href="#XMLID_23_"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
cx="66.136703"
|
||||
cy="0.75440001"
|
||||
r="81.971497"
|
||||
id="radialGradient2362"
|
||||
xlink:href="#XMLID_25_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9459,0,0,1,1051.1319,-330.17143)" />
|
||||
<linearGradient
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769"
|
||||
id="linearGradient2364"
|
||||
xlink:href="#linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769"
|
||||
id="linearGradient2366"
|
||||
xlink:href="#linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769"
|
||||
id="linearGradient2368"
|
||||
xlink:href="#linearGradient3215"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
cx="110.74259"
|
||||
cy="123.17536"
|
||||
r="81.292717"
|
||||
fx="110.74259"
|
||||
fy="123.17536"
|
||||
id="radialGradient2370"
|
||||
xlink:href="#XMLID_27_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0727282,0,0,-0.7852748,-88.140453,159.47421)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3215"
|
||||
id="linearGradient2255"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3215"
|
||||
id="linearGradient2263"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="193.5"
|
||||
y1="6.7293491"
|
||||
x2="193.5"
|
||||
y2="155.16769" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter2904">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="2.32"
|
||||
id="feGaussianBlur2906" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_18_"
|
||||
id="linearGradient2235"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,-4.371139e-8,4.371139e-8,-1,133.6007,132.4)"
|
||||
x1="9.5995998"
|
||||
y1="68.399902"
|
||||
x2="129.6001"
|
||||
y2="68.399902" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_20_"
|
||||
id="radialGradient2237"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9824561,0,0,0.9824561,-4.3789474,-3.2)"
|
||||
cx="69.600098"
|
||||
cy="68.399902"
|
||||
r="85" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_21_"
|
||||
id="radialGradient2239"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-5.5999998,-4.4)"
|
||||
cx="69.600098"
|
||||
cy="145.3999"
|
||||
r="141" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_23_"
|
||||
id="linearGradient2241"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="108.00493"
|
||||
y1="72.341148"
|
||||
x2="115.9771"
|
||||
y2="102.0937" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_23_"
|
||||
id="linearGradient2243"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="108.00493"
|
||||
y1="72.341148"
|
||||
x2="115.9771"
|
||||
y2="102.0937" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_27_"
|
||||
id="radialGradient2247"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4136693,-0.5587442,-0.4989925,-0.3694316,79.652783,167.07706)"
|
||||
cx="110.74259"
|
||||
cy="123.17536"
|
||||
fx="110.74259"
|
||||
fy="123.17536"
|
||||
r="81.292717" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#XMLID_25_"
|
||||
id="linearGradient2802"
|
||||
x1="67.629204"
|
||||
y1="-2.1941743"
|
||||
x2="67.629204"
|
||||
y2="78.850853"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,2)" />
|
||||
</defs>
|
||||
<g
|
||||
transform="matrix(1.0517241,0,0,1.0172414,-7.5172423,-7.0379241)"
|
||||
style="opacity:0.8;filter:url(#filter2904)"
|
||||
id="g8">
|
||||
<path
|
||||
d="M 126,113.8 C 126,122.6 118.8,129.8 110,129.8 L 26,129.8 C 17.2,129.8 10,122.6 10,113.8 L 10,29.800002 C 10,21.000002 17.2,13.800002 26,13.800002 L 110,13.800002 C 118.8,13.800002 126,21.000002 126,29.800002 L 126,113.8 z"
|
||||
id="path10" />
|
||||
</g>
|
||||
<g
|
||||
id="g2221"
|
||||
transform="translate(0,-4)">
|
||||
<path
|
||||
id="path35"
|
||||
style="fill:url(#linearGradient2235)"
|
||||
d="M 4.000002,20 C 4.000002,11.2 11.200002,4 20.000002,4 L 108,4 C 116.8,4 124,11.2 124,20 L 124,108 C 124,116.8 116.8,124 108,124 L 20.000002,124 C 11.200002,124 4.000002,116.8 4.000002,108 L 4.000002,20 z" />
|
||||
<path
|
||||
id="path53"
|
||||
style="fill:url(#radialGradient2237)"
|
||||
d="M 20.77193,8 C 13.729684,8 8,13.729684 8,20.77193 L 8,107.22807 C 8,114.27032 13.729684,120 20.77193,120 L 107.22807,120 C 114.27032,120 120,114.27032 120,107.22807 L 120,20.77193 C 120,13.729684 114.27032,8 107.22807,8 L 20.77193,8 L 20.77193,8 z" />
|
||||
<path
|
||||
id="path64"
|
||||
style="fill:url(#radialGradient2239);filter:url(#AI_Sfocatura_4)"
|
||||
d="M 64.026001,7.014 L 63.973001,7.014 C 40.952001,6.718 16.897001,11.145 16.657001,11.19 C 14.202001,11.648 11.647001,14.202 11.190001,16.657 C 11.145001,16.898 6.7180002,40.952 7.0140002,63.973 C 6.7180002,87.047 11.145001,111.102 11.190001,111.342 C 11.647001,113.796 14.203001,116.352 16.658001,116.811 C 16.898001,116.855 40.952001,121.281 63.974001,120.985 C 87.049001,121.281 111.103,116.855 111.343,116.811 C 113.797,116.353 116.354,113.796 116.812,111.341 C 116.856,111.102 121.282,87.048 120.986,64.026 C 121.282,40.952 116.856,16.898 116.812,16.657 C 116.353,14.202 113.797,11.647 111.343,11.19 C 111.103,11.145 87.048001,6.718 64.026001,7.014 z" />
|
||||
<g
|
||||
id="g66"
|
||||
style="opacity:0.6"
|
||||
transform="translate(-5.5999858,-4.4)">
|
||||
<defs
|
||||
id="defs68">
|
||||
<path
|
||||
id="XMLID_10_"
|
||||
d="M 69.626,12.145 L 69.574,12.145 C 46.847,11.853 23.102,16.222 22.865,16.267 C 20.441,16.718 17.919,19.241 17.468,21.664 C 17.424,21.901 13.054,45.647 13.346,68.374 C 13.054,91.151 17.424,114.897 17.468,115.135 C 17.919,117.558 20.442,120.08 22.866,120.533 C 23.103,120.577 46.848,124.946 69.575,124.654 C 92.354,124.946 116.099,120.577 116.336,120.533 C 118.759,120.081 121.282,117.557 121.734,115.134 C 121.778,114.898 126.147,91.153 125.855,68.425 C 126.147,45.648 121.778,21.902 121.734,21.664 C 121.281,19.241 118.758,16.718 116.336,16.267 C 116.098,16.222 92.352,11.853 69.626,12.145 z" />
|
||||
</defs>
|
||||
<g
|
||||
id="g4450"
|
||||
clip-path="url(#clipPath4458)">
|
||||
<path
|
||||
id="path83"
|
||||
style="filter:url(#filter4442);fill:url(#linearGradient2241);opacity:0.80000000000000004"
|
||||
d="M 119.344,21.665 C 118.967,20.387 117.669,19.089 115.977,18.074 C 114.284,19.089 112.988,20.386 112.612,21.665 C 112.542,21.902 105.647,45.648 106.108,68.375 C 105.647,91.152 112.542,114.898 112.612,115.136 C 112.988,116.414 114.286,117.712 115.977,118.727 C 117.671,117.711 118.968,116.415 119.344,115.135 C 119.413,114.899 126.307,91.154 125.847,68.426 C 126.307,45.648 119.414,21.902 119.344,21.665 z" />
|
||||
<path
|
||||
id="path4438"
|
||||
style="filter:url(#filter4446);fill:url(#linearGradient2243);opacity:0.80000000000000004"
|
||||
transform="matrix(-1,0,0,1,139.2,0)"
|
||||
d="M 119.344,21.665 C 118.967,20.387 117.669,19.089 115.977,18.074 C 114.284,19.089 112.988,20.386 112.612,21.665 C 112.542,21.902 105.647,45.648 106.108,68.375 C 105.647,91.152 112.542,114.898 112.612,115.136 C 112.988,116.414 114.286,117.712 115.977,118.727 C 117.671,117.711 118.968,116.415 119.344,115.135 C 119.413,114.899 126.307,91.154 125.847,68.426 C 126.307,45.648 119.414,21.902 119.344,21.665 z" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
id="path159"
|
||||
style="fill:url(#XMLID_29_);stroke:#2c72c7;stroke-width:2;stroke-linejoin:round"
|
||||
d="" />
|
||||
<path
|
||||
d="M 70.906252,21.510199 L 56.281252,22.916449 L 56.281252,83.166449 L 70.750002,80.978949 L 70.750002,55.291449 L 90.218752,83.791449 L 105.46875,78.947699 L 85.531252,51.541449 L 105.625,25.697699 L 90.062502,22.135199 L 70.750002,47.978949 L 70.906252,21.510199 z M 37.750002,36.197699 C 37.584628,36.214762 37.405752,36.260447 37.281252,36.385199 L 31.531252,42.135199 C 31.289753,42.377445 31.260254,42.748202 31.437502,43.041449 L 38.156252,54.135199 C 36.963258,56.140686 35.994498,58.291961 35.312502,60.572699 L 22.968752,63.135199 C 22.625253,63.206197 22.375002,63.533201 22.375002,63.885199 L 22.375002,72.010199 C 22.375002,72.353697 22.636251,72.647946 22.968752,72.728949 L 34.937502,75.635199 C 35.577498,78.275685 36.566261,80.802462 37.875002,83.103949 L 30.937502,93.666449 C 30.744003,93.961449 30.781756,94.35495 31.031252,94.603949 L 36.781252,100.35395 C 37.023498,100.59544 37.395003,100.62569 37.687502,100.4477 L 48.562502,93.853949 C 50.695492,95.085442 53.004768,96.071949 55.437502,96.728949 L 57.968752,108.91645 C 58.03975,109.26095 58.335755,109.5102 58.687502,109.5102 L 66.812502,109.5102 C 67.153501,109.5102 67.450254,109.2812 67.531252,108.9477 L 70.531252,96.697699 C 73.040237,96.021203 75.405763,95.016938 77.593752,93.728949 L 88.312502,100.7602 C 88.608,100.9527 88.999503,100.91545 89.250002,100.66645 L 94.968752,94.916449 C 95.21175,94.673953 95.271748,94.302698 95.093752,94.010199 L 91.187502,87.572699 L 89.906252,87.978949 C 89.72125,88.035951 89.516249,87.952445 89.406252,87.791449 C 89.406251,87.791448 86.938738,84.16167 83.718752,79.447699 C 79.867775,86.983153 72.014199,92.135199 62.968752,92.135199 C 50.115326,92.135197 39.687502,81.707375 39.687502,68.853949 C 39.687502,59.399254 45.341297,51.278678 53.437502,47.635199 L 53.437502,41.635199 C 51.964011,42.150945 50.540496,42.7732 49.187502,43.510199 C 49.185004,43.508699 49.190001,43.480449 49.187502,43.478949 L 38.218752,36.291449 C 38.071253,36.194951 37.915376,36.180636 37.750002,36.197699 z"
|
||||
style="fill-opacity:1;fill:url(#radialGradient2247)"
|
||||
id="path5692_1_" />
|
||||
<path
|
||||
id="path99"
|
||||
style="opacity:0.7;fill:url(#linearGradient2802);fill-opacity:1"
|
||||
d="M 118,45.413803 C 116.80377,31.931381 114.92663,22.614985 114.8968,22.458943 C 114.4504,20.049615 110.93474,16.560752 108.54743,16.112254 C 108.31292,16.068091 85.938401,11.723449 63.538173,12.013943 L 63.486744,12.013943 C 41.087544,11.723449 18.712001,16.068091 18.477486,16.112254 C 16.089144,16.561733 12.574515,20.049615 12.130172,22.458943 C 12.108572,22.57573 11.03783,27.464065 10.000001,36.102315 C 10.000001,41.887646 10.000001,47.671996 10.000001,53.457327 C 10.000001,57.06494 12.396572,61.237837 15.328001,62.747224 C 15.325943,62.645159 19.962744,76 59.337487,76 C 98.71326,76 112.9744,55.324924 112.97029,55.554571 C 115.73714,53.696788 118,49.2491 118,45.640505 C 118,45.564938 118,45.48937 118,45.413803 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
3259
src/desktoptheme/air/icons/system.svg
Normal file
After Width: | Height: | Size: 193 KiB |
301
src/desktoptheme/air/icons/view.svg
Normal file
@ -0,0 +1,301 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns="http://ns.adobe.com/SaveForWeb/1.0/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
width="54"
|
||||
height="24"
|
||||
viewBox="0 0 54 24"
|
||||
overflow="visible"
|
||||
enable-background="new 0 0 128 128"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="view.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
inkscape:export-filename="/Users/david/Desktop/sandbox/document-new2.png"
|
||||
inkscape:export-xdpi="22.5"
|
||||
inkscape:export-ydpi="22.5"
|
||||
style="overflow:visible"><defs
|
||||
id="defs105"><linearGradient
|
||||
id="linearGradient3802-3"><stop
|
||||
id="stop3804-85"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" /><stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="0.5"
|
||||
id="stop3818-00" /><stop
|
||||
id="stop3820-25"
|
||||
offset="0.75"
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;" /><stop
|
||||
id="stop3806-9"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3802-3"
|
||||
id="linearGradient4419"
|
||||
x1="8.5410156"
|
||||
y1="14.229492"
|
||||
x2="19"
|
||||
y2="14.229492"
|
||||
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3802-3"
|
||||
id="linearGradient4427"
|
||||
x1="8.5410156"
|
||||
y1="14.229492"
|
||||
x2="23.458984"
|
||||
y2="14.229492"
|
||||
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3802-3"
|
||||
id="linearGradient4579"
|
||||
x1="42.605843"
|
||||
y1="9.4570208"
|
||||
x2="47.490234"
|
||||
y2="22.458984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(1,0)" /></defs><sodipodi:namedview
|
||||
inkscape:window-height="1215"
|
||||
inkscape:window-width="1627"
|
||||
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"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="42.617639"
|
||||
inkscape:cy="15.18077"
|
||||
inkscape:window-x="929"
|
||||
inkscape:window-y="0"
|
||||
inkscape:current-layer="Layer_1"
|
||||
showgrid="true"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2406"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
empspacing="5"
|
||||
originx="-5"
|
||||
originy="-101.00002" /></sodipodi:namedview><metadata
|
||||
id="metadata3"><ns:sfw><ns:slices><ns:slice
|
||||
y="0"
|
||||
x="0"
|
||||
height="128"
|
||||
width="128"
|
||||
sliceID="1316743234" /></ns:slices><ns:sliceSourceBounds
|
||||
y="0"
|
||||
x="0"
|
||||
height="128"
|
||||
width="128"
|
||||
bottomLeftOrigin="true" /><ns:optimizationSettings><ns:targetSettings
|
||||
targetSettingsID="0"
|
||||
fileFormat="PNG24Format"><ns:PNG24Format
|
||||
transparency="true"
|
||||
filtered="false"
|
||||
matteColor="#FFFFFF"
|
||||
noMatteColor="false"
|
||||
interlaced="false" /></ns:targetSettings><ns:targetSettings
|
||||
targetSettingsID="1696735251"
|
||||
fileFormat="PNG24Format"><ns:PNG24Format
|
||||
transparency="true"
|
||||
filtered="false"
|
||||
matteColor="#FFFFFF"
|
||||
noMatteColor="false"
|
||||
interlaced="false" /></ns:targetSettings></ns:optimizationSettings></ns:sfw><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><radialGradient
|
||||
id="XMLID_7_"
|
||||
cx="102"
|
||||
cy="112.3047"
|
||||
r="139.5585"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
offset="0"
|
||||
style="stop-color:#00537D"
|
||||
id="stop16" /><stop
|
||||
offset="0.0151"
|
||||
style="stop-color:#186389"
|
||||
id="stop18" /><stop
|
||||
offset="0.0558"
|
||||
style="stop-color:#558CA8"
|
||||
id="stop20" /><stop
|
||||
offset="0.0964"
|
||||
style="stop-color:#89AFC3"
|
||||
id="stop22" /><stop
|
||||
offset="0.1357"
|
||||
style="stop-color:#B3CCD8"
|
||||
id="stop24" /><stop
|
||||
offset="0.1737"
|
||||
style="stop-color:#D4E2E9"
|
||||
id="stop26" /><stop
|
||||
offset="0.2099"
|
||||
style="stop-color:#ECF2F5"
|
||||
id="stop28" /><stop
|
||||
offset="0.2435"
|
||||
style="stop-color:#FAFCFD"
|
||||
id="stop30" /><stop
|
||||
offset="0.2722"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop32" /></radialGradient><radialGradient
|
||||
id="XMLID_8_"
|
||||
cx="102"
|
||||
cy="112.3047"
|
||||
r="139.55859"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
offset="0"
|
||||
style="stop-color:#535557"
|
||||
id="stop37" /><stop
|
||||
offset="0.11366145"
|
||||
style="stop-color:#898A8C"
|
||||
id="stop41" /><stop
|
||||
offset="0.20296688"
|
||||
style="stop-color:#ECECEC"
|
||||
id="stop47" /><stop
|
||||
offset="0.2363"
|
||||
style="stop-color:#FAFAFA"
|
||||
id="stop49" /><stop
|
||||
offset="0.2722"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop51" /><stop
|
||||
offset="0.5313"
|
||||
style="stop-color:#FAFAFA"
|
||||
id="stop53" /><stop
|
||||
offset="0.8449"
|
||||
style="stop-color:#EBECEC"
|
||||
id="stop55" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#E1E2E3"
|
||||
id="stop57" /></radialGradient><linearGradient
|
||||
id="XMLID_9_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="94.343803"
|
||||
y1="102.3447"
|
||||
x2="86.535599"
|
||||
y2="94.536598"><stop
|
||||
offset="0"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop62" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#555753"
|
||||
id="stop64" /></linearGradient><linearGradient
|
||||
id="XMLID_10_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="95"
|
||||
y1="103"
|
||||
x2="86.586502"
|
||||
y2="94.586502"><stop
|
||||
offset="0"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop69" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#555753"
|
||||
id="stop71" /></linearGradient><linearGradient
|
||||
id="XMLID_11_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="95"
|
||||
y1="103"
|
||||
x2="87.292999"
|
||||
y2="95.292999"><stop
|
||||
offset="0"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop76" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#393B38"
|
||||
id="stop78" /></linearGradient><linearGradient
|
||||
id="XMLID_12_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="96"
|
||||
y1="104"
|
||||
x2="88.000198"
|
||||
y2="96.000198"><stop
|
||||
offset="0"
|
||||
style="stop-color:#888A85"
|
||||
id="stop83" /><stop
|
||||
offset="0.0072"
|
||||
style="stop-color:#8C8E89"
|
||||
id="stop85" /><stop
|
||||
offset="0.0673"
|
||||
style="stop-color:#ABACA9"
|
||||
id="stop87" /><stop
|
||||
offset="0.1347"
|
||||
style="stop-color:#C5C6C4"
|
||||
id="stop89" /><stop
|
||||
offset="0.2115"
|
||||
style="stop-color:#DBDBDA"
|
||||
id="stop91" /><stop
|
||||
offset="0.3012"
|
||||
style="stop-color:#EBEBEB"
|
||||
id="stop93" /><stop
|
||||
offset="0.4122"
|
||||
style="stop-color:#F7F7F6"
|
||||
id="stop95" /><stop
|
||||
offset="0.5679"
|
||||
style="stop-color:#FDFDFD"
|
||||
id="stop97" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="stop99" /></linearGradient><g
|
||||
id="view-refresh"
|
||||
transform="translate(-5,-2.9999826)"><rect
|
||||
y="2.9999826"
|
||||
x="5"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4374"
|
||||
style="opacity:0.8;fill:#000000;fill-opacity:0;stroke:none" /><path
|
||||
id="path4398"
|
||||
d="m 15,6 0,1.6171875 A 7.4586466,7.4586466 0 0 0 8.5410156,15 7.4586466,7.4586466 0 0 0 16,22.458984 7.4586466,7.4586466 0 0 0 23.458984,15 L 21.59375,15 A 5.593985,5.593985 0 0 1 16,20.59375 5.593985,5.593985 0 0 1 10.40625,15 5.593985,5.593985 0 0 1 15,9.5 L 15,11 19,8.5 15,6 Z"
|
||||
style="opacity:1;fill:url(#linearGradient4427);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:1;fill:url(#linearGradient4419);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 15,6 0,1.6171875 C 11.303937,8.1170684 8.5452861,11.270289 8.5410156,15 8.5408292,19.11956 11.88044,22.459171 16,22.458984 L 16,20.59375 C 12.910711,20.59362 10.40638,18.089289 10.40625,15 10.408103,12.297779 12.341326,9.9831712 15,9.5 l 0,1.5 4,-2.5 z"
|
||||
id="path4411" /><path
|
||||
id="path4450"
|
||||
d="M 14.958984,5 A 1.0001,1.0001 0 0 0 14,6 l 0,0.9101562 C 10.282051,7.8373731 7.5454905,11.089887 7.5410156,14.998047 a 1.0001,1.0001 0 0 0 0,0.002 C 7.5408048,19.659986 11.339967,23.459195 16,23.458984 20.660032,23.459195 24.459195,19.660032 24.458984,15 a 1.0001,1.0001 0 0 0 -1,-1 l -1.865234,0 a 1.0001,1.0001 0 0 0 -1,1 C 20.593643,17.548879 18.548879,19.593643 16,19.59375 13.451121,19.593643 11.406357,17.548879 11.40625,15 11.407479,13.208056 12.457592,11.675924 14,10.921875 L 14,11 a 1.0001,1.0001 0 0 0 1.529297,0.847656 l 4,-2.4999998 a 1.0001,1.0001 0 0 0 0,-1.6953124 l -4,-2.5 A 1.0001,1.0001 0 0 0 14.958984,5 Z M 15,6 19,8.5 15,11 15,9.5 A 5.593985,5.593985 0 0 0 10.40625,15 5.593985,5.593985 0 0 0 16,20.59375 5.593985,5.593985 0 0 0 21.59375,15 l 1.865234,0 A 7.4586466,7.4586466 0 0 1 16,22.458984 7.4586466,7.4586466 0 0 1 8.5410156,15 7.4586466,7.4586466 0 0 1 15,7.6171875 L 15,6 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.40784314;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" /></g><g
|
||||
id="view-history"
|
||||
transform="translate(-5,-2.9999826)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4568"
|
||||
d="m 47.970703,4.9804688 a 1.0204037,1.0204037 0 0 0 -0.511719,0.1542968 l -4,2.5 a 1.0204037,1.0204037 0 0 0 0,1.7304688 l 4,2.4999996 A 1.0204037,1.0204037 0 0 0 49.019531,11 l 0,-0.05078 C 50.540749,11.704825 51.573002,13.225883 51.574219,15 51.574112,17.537907 49.537907,19.574112 47,19.574219 c -1.800666,-7.6e-5 -3.306246,-1.053271 -4.052734,-2.554688 l 4.052734,0 c 1.101599,0 2.019531,-0.917932 2.019531,-2.019531 0,-1.101599 -0.917932,-2.019531 -2.019531,-2.019531 -0.707305,0 -1.232011,0.437285 -1.59375,1 l -4,0 -1.40625,0 -0.458984,0 A 1.0204037,1.0204037 0 0 0 38.521484,15 C 38.521273,19.671005 42.328995,23.478727 47,23.478516 51.671005,23.478727 55.478727,19.671005 55.478516,15 a 1.0204037,1.0204037 0 0 0 0,-0.002 C 55.474036,11.086135 52.73818,7.8295148 49.019531,6.8945312 L 49.019531,6 A 1.0204037,1.0204037 0 0 0 47.970703,4.9804688 Z M 48,6 48,7.6171875 C 51.696063,8.1170686 54.454713,11.270289 54.458984,15 54.45917,19.11956 51.11956,22.45917 47,22.458984 42.88044,22.45917 39.54083,19.11956 39.541016,15 L 40,15 41.40625,15 46,15 c 0,-0.554 0.446,-1 1,-1 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 l -5.5,0 c 0.47222,2.611258 2.752665,4.593634 5.5,4.59375 C 50.089289,20.59362 52.59362,18.089289 52.59375,15 52.591897,12.297779 50.658674,9.9831712 48,9.5 L 48,11 44,8.5 48,6 Z"
|
||||
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><rect
|
||||
y="2.9999826"
|
||||
x="35"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect4524"
|
||||
style="opacity:0.8;fill:#000000;fill-opacity:0;stroke:none" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4557"
|
||||
d="m 48,6 -4,2.5 4,2.5 0,-1.5 c 2.658674,0.4831712 4.591897,2.797779 4.59375,5.5 C 52.59362,18.089289 50.089289,20.59362 47,20.59375 44.252665,20.593634 41.97222,18.611258 41.5,16 l 5.5,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 L 41.40625,15 40,15 39.541016,15 C 39.54083,19.11956 42.88044,22.45917 47,22.458984 51.11956,22.45917 54.45917,19.11956 54.458984,15 54.454713,11.270289 51.696063,8.1170686 48,7.6171875 L 48,6 Z"
|
||||
style="opacity:1;fill:url(#linearGradient4579);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></g></svg>
|
After Width: | Height: | Size: 14 KiB |
159
src/desktoptheme/air/icons/wallet.svg
Normal file
@ -0,0 +1,159 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
width="48"
|
||||
height="24"
|
||||
id="svg3727"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="wallet.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape">
|
||||
<sodipodi:namedview
|
||||
inkscape:window-height="1046"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="1"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#a2a2a2"
|
||||
id="base"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="10.790161"
|
||||
inkscape:cy="29.02224"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:current-layer="svg3727"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-global="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
id="grid2629"
|
||||
type="xygrid"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-31"
|
||||
originy="-93" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata244">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs3729">
|
||||
<linearGradient
|
||||
id="linearGradient4249">
|
||||
<stop
|
||||
id="stop4251"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="0.47000003"
|
||||
id="stop4253" />
|
||||
<stop
|
||||
id="stop4255"
|
||||
offset="0.75125003"
|
||||
style="stop-color:#ffffff;stop-opacity:0.51724136;" />
|
||||
<stop
|
||||
id="stop4257"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="75"
|
||||
y1="98"
|
||||
x2="75"
|
||||
y2="110.125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4249"
|
||||
id="linearGradient3979"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42"
|
||||
y1="97"
|
||||
x2="42"
|
||||
y2="114" />
|
||||
</defs>
|
||||
<g
|
||||
id="wallet-open"
|
||||
transform="translate(-31,-94)">
|
||||
<rect
|
||||
y="94"
|
||||
x="31"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect3939"
|
||||
style="opacity:0.7;fill:#000000;fill-opacity:0;stroke:none" />
|
||||
<path
|
||||
id="path3930"
|
||||
d="m 34.6875,96.006415 c -0.6875,0 -1.492188,0.145788 -1.78125,0.312404 -0.282756,0.170246 -0.455347,0.389197 -0.59375,0.68729 l -0.15625,0.374886 c -0.01901,0.100722 -0.09375,0.176679 -0.09375,0.281164 l 0,10.996641 c 0,0.52483 0.273019,0.95887 0.53125,1.18714 0.201257,0.1779 0.384877,0.23526 0.5625,0.3124 l 0,0.0312 10.875,6.59174 0.0625,0.0312 0.03125,0 0.0625,0.0312 0.03125,0.0312 0.03125,0.0312 c 0.163877,0.0642 0.388121,0.11933 0.65625,0.0937 0.268129,-0.0256 0.566836,-0.19826 0.75,-0.40612 C 46.022578,116.17814 46,115.8548 46,115.59418 l 0,-5.59204 6.4375,0 c 0.872664,0 1.625,-0.7524 1.625,-1.6245 l 0,-10.715481 c 0,-0.872105 -0.692389,-1.655744 -1.625,-1.655744 l -17.75,0 z m -1,0.999694 18.75,0 c 0.34697,0 0.625,0.305827 0.625,0.65605 l 0,10.715481 c 0,0.35022 -0.27803,0.6248 -0.625,0.6248 l -7.4375,0 0,6.59174 c 0,0.32546 -0.09786,0.48345 -0.375,0.37489 l -0.0625,-0.0312 -10.875,-6.62298 c -0.25747,-0.096 -0.625,-0.31299 -0.625,-0.65605 l 0,-10.996641 c 0,-0.350223 0.27803,-0.65605 0.625,-0.65605 z m 1.375,0.999695 9.5625,5.966926 c 0.31377,0.14651 0.375,0.68757 0.375,1.03094 l 0,2.99908 6.625,0 c 0.22709,0 0.4375,-0.18464 0.4375,-0.40613 l 0,-9.15345 c 0,-0.221482 -0.21041,-0.437366 -0.4375,-0.437366 l -16.5625,0 z m -1,0.999695 0,8.997251 c -0.0034,0.1506 0.0391,0.23648 0.125,0.28116 l 9.875,6.12313 0,-9.37213 -10,-6.029411 z m 4.5,0 12.5,0 0,7.997561 -5.0625,0 0,-1.99939 c 0,-0.24329 -0.02766,-0.53805 -0.125,-0.87474 -0.08789,-0.304 -0.302744,-0.69569 -0.75,-0.96845 l 0.03125,-0.0625 -6.59375,-4.092501 z m -3.5,1.780701 8,4.81104 0,7.0291 -8,-4.96723 0,-6.87291 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccc"
|
||||
id="path2825"
|
||||
d="m 33.67455,97 c -0.34697,0 -0.6213,0.3048 -0.6213,0.65513 l 0,11.01067 c 0,0.34316 0.36383,0.55912 0.6213,0.65513 l 10.89057,6.61369 0.0621,0.0313 C 44.90436,116.07452 45,115.91712 45,115.59156 L 45,109 l 7.426,0.009 c 0.34697,0 0.6213,-0.2736 0.6213,-0.62393 l 0,-10.7299 c 0,-0.35033 -0.27433,-0.65513 -0.6213,-0.65513 l -18.75148,0 0,-5e-5 3e-5,-5e-5 0,6e-5 z m 1.3787,1 16.56509,0 c 0.22709,0 0.43491,0.2135 0.43491,0.43505 l 0,9.17006 c 0,0.22155 -0.20782,0.40556 -0.43491,0.40556 L 45,108 l 0,-3 c 0,-0.34347 -0.0738,-0.89659 -0.38757,-1.04314 L 35.05325,98 Z m -1,1 10,6.01755 0,9.38847 -9.85054,-6.11458 c -0.0859,-0.0447 -0.15871,-0.13012 -0.15533,-0.28077 L 34.05325,99 Z"
|
||||
style="fill:url(#linearGradient3979);fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
ry="0.21213204"
|
||||
y="60"
|
||||
x="44"
|
||||
height="24"
|
||||
width="24"
|
||||
id="rect3847"
|
||||
style="fill:#5222bd;fill-opacity:0;stroke:none" />
|
||||
<g
|
||||
id="wallet-closed"
|
||||
transform="translate(-41,-94)">
|
||||
<rect
|
||||
style="opacity:0.7;fill:#000000;fill-opacity:0;stroke:none"
|
||||
id="rect3941"
|
||||
width="24"
|
||||
height="24"
|
||||
x="65"
|
||||
y="94" />
|
||||
<path
|
||||
id="path3955"
|
||||
d="M 67.53125,96 C 66.698648,96 66,96.698648 66,97.53125 l 0,11.9375 C 66,110.30135 66.698648,111 67.53125,111 l 17.9375,0 C 86.301352,111 87,110.30135 87,109.46875 L 87,107 l 0.46875,0 C 88.301352,107 89,106.30135 89,105.46875 l 0,-3.9375 C 89,100.69865 88.301352,100 87.46875,100 L 87,100 87,97.53125 C 87,96.698648 86.301352,96 85.46875,96 l -17.9375,0 z m 0,1 17.9375,0 C 85.76255,97 86,97.23745 86,97.53125 L 86,101 l 1.46875,0 C 87.76255,101 88,101.23745 88,101.53125 l 0,3.9375 C 88,105.76255 87.76255,106 87.46875,106 L 86,106 l 0,3.46875 C 86,109.76255 85.76255,110 85.46875,110 l -17.9375,0 C 67.23745,110 67,109.76255 67,109.46875 l 0,-11.9375 C 67,97.23745 67.23745,97 67.53125,97 Z m 0.90625,1 C 68.19266,98 68,98.19266 68,98.4375 l 0,10.125 C 68,108.80734 68.19266,109 68.4375,109 l 16.125,0 C 84.80734,109 85,108.80734 85,108.5625 L 85,106 81.53125,106 C 81.23745,106 81,105.76255 81,105.46875 l 0,-3.9375 C 81,101.23745 81.23745,101 81.53125,101 L 85,101 85,98.4375 C 85,98.19266 84.80734,98 84.5625,98 l -16.125,0 z M 69,99 l 15,0 0,1 -2.46875,0 C 80.698648,100 80,100.69865 80,101.53125 l 0,3.9375 C 80,106.30135 80.698648,107 81.53125,107 L 84,107 l 0,1 -15,0 0,-9 z m 13.4375,3 C 82.19266,102 82,102.19266 82,102.4375 l 0,2.125 C 82,104.80734 82.19266,105 82.4375,105 l 4.125,0 C 86.80734,105 87,104.80734 87,104.5625 l 0,-2.125 C 87,102.19266 86.80734,102 86.5625,102 l -4.125,0 z m 0.78125,1 0.5625,0 C 83.903668,103 84,103.09633 84,103.21875 l 0,0.5625 C 84,103.90367 83.903668,104 83.78125,104 l -0.5625,0 C 83.096332,104 83,103.90367 83,103.78125 l 0,-0.5625 C 83,103.09633 83.096332,103 83.21875,103 Z m 1.6875,0 1.09375,0 0,1 -1.09375,0 C 84.924177,103.92018 85,103.86463 85,103.78125 l 0,-0.5625 C 85,103.13535 84.92418,103.07982 84.90625,103 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.39215686;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect2827"
|
||||
d="M 67.53125,97 C 67.23745,97 67,97.23745 67,97.53125 l 0,11.9375 C 67,109.76255 67.23745,110 67.53125,110 l 17.9375,0 C 85.76255,110 86,109.76255 86,109.46875 L 86,106 l 1.46875,0 C 87.76255,106 88,105.76255 88,105.46875 l 0,-3.9375 C 88,101.23745 87.76255,101 87.46875,101 L 86,101 86,97.53125 C 86,97.23745 85.76255,97 85.46875,97 l -17.9375,0 z m 0.90625,1 16.125,0 C 84.80734,98 85,98.19266 85,98.4375 L 85,101 81.53125,101 C 81.23745,101 81,101.23745 81,101.53125 l 0,3.9375 C 81,105.76255 81.23745,106 81.53125,106 L 85,106 l 0,2.5625 C 85,108.80734 84.80734,109 84.5625,109 l -16.125,0 C 68.19266,109 68,108.80734 68,108.5625 l 0,-10.125 C 68,98.19266 68.19266,98 68.4375,98 Z m 14,4 4.125,0 C 86.80734,102 87,102.19266 87,102.4375 l 0,2.125 C 87,104.80734 86.80734,105 86.5625,105 l -4.125,0 C 82.19266,105 82,104.80734 82,104.5625 l 0,-2.125 C 82,102.19266 82.19266,102 82.4375,102 Z m 0.78125,1 C 83.096332,103 83,103.09633 83,103.21875 l 0,0.5625 C 83,103.90367 83.096332,104 83.21875,104 l 0.5625,0 C 83.903668,104 84,103.90367 84,103.78125 l 0,-0.5625 C 84,103.09633 83.903668,103 83.78125,103 l -0.5625,0 z"
|
||||
style="fill:url(#linearGradient3977);fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
495
src/desktoptheme/air/opaque/dialogs/background.svg
Normal file
@ -0,0 +1,495 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/background.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#c1c1c1"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.9999998"
|
||||
inkscape:cx="179.75013"
|
||||
inkscape:cy="36.07811"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="754"
|
||||
inkscape:window-x="609"
|
||||
inkscape:window-y="181"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
objecttolerance="9"
|
||||
gridtolerance="13"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
enabled="true"
|
||||
id="grid2555"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<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>
|
||||
<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:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<rect
|
||||
y="-23"
|
||||
x="-4"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(7.0000004,8.998957)">
|
||||
<g
|
||||
id="g4106"
|
||||
transform="translate(0,1)">
|
||||
<path
|
||||
id="path2667"
|
||||
d="m 10,0 0,7 30,0 0,-7 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 10,0 0,1 30,0 0,-1 z"
|
||||
id="path5283"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2675"
|
||||
d="m 10,-1 0,1 30,0 0,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="center"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path3642"
|
||||
d="M 10,8 10,38 40,38 40,8 10,8 z"
|
||||
style="fill:#f0f0f0;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="translate(14,-13)"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,60 0,7 30,0 0,-7 z"
|
||||
id="path2691"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5362"
|
||||
d="m 3,66 0,1 c 10,0 20,0 30,0 l 0,-1 -30,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,67 0,1 30,0 0,-1 z"
|
||||
id="path3498"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="left"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path10432"
|
||||
d="M 10,8 10,38 3,38 3,8 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 4,8 4,38 3,38 3,8 z"
|
||||
id="path10434"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path3449"
|
||||
d="M 3,8 3,38 2,38 2,8 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="right"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 40,8 0,30 7,0 0,-30 z"
|
||||
id="path2679"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5344"
|
||||
d="m 46,8 0,30 1,0 0,-30 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 47,8 0,30 1,0 0,-30 z"
|
||||
id="path3473"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="30"
|
||||
x="1"
|
||||
height="4"
|
||||
width="6"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="6"
|
||||
x="31"
|
||||
y="3" />
|
||||
<rect
|
||||
y="57"
|
||||
x="31"
|
||||
height="6"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-right-margin"
|
||||
width="6"
|
||||
height="4"
|
||||
x="57.838837"
|
||||
y="30" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,57,9)"
|
||||
id="topright">
|
||||
<g
|
||||
transform="translate(1,1)"
|
||||
id="g3455">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path3459"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3465"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,58 0,8 30,0 0,-8 0,0 z"
|
||||
id="mask-top"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -75,58 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,3 8,0 0,-8 z"
|
||||
id="mask-topleft"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-center"
|
||||
d="m -72,66 0,30 30,0 0,-30 -30,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,96 0,8 0,0 30,0 0,-8 z"
|
||||
id="mask-bottom"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-left"
|
||||
d="m -72,66 0,30 -8,0 0,0 0,-30 8,0 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -42,66 0,30 8,0 0,-30 z"
|
||||
id="mask-right"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="mask-topright"
|
||||
d="m -39,58 0,1 2,0 0,1 1,0 0,1 1,0 0,2 1,0 0,3 -8,0 0,-8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-bottomleft"
|
||||
d="m -75,104 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-3 8,0 0,8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -39,104 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-3 -8,0 0,8 z"
|
||||
id="mask-bottomright"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-compose-over-border"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="15"
|
||||
y="-23" />
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,55,57)">
|
||||
<g
|
||||
id="g3806"
|
||||
transform="translate(1,1)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3808"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3810"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="bottomleft"
|
||||
transform="matrix(0,-1,0.9998696,0,10,56)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3814"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 5.999,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3816"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,0.9998696,8,10.000913)"
|
||||
id="topleft">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path5287"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3447"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3.001,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270"
|
||||
y="-811.71558"
|
||||
x="430.33398"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-811.71558"
|
||||
x="430.33398"
|
||||
id="tspan4272"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,365.5,-275.46875)"
|
||||
id="g3041" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,-1,366,70.585786)"
|
||||
id="balloon-tip-bottom">
|
||||
<g
|
||||
transform="translate(200.00001,-11.000062)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="g4318">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
id="path4320"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path4322"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
id="path4324"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="balloon-tip-right"
|
||||
transform="matrix(0,1,-1,0,177.00084,-192.39731)">
|
||||
<g
|
||||
id="g5019"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(200.00001,-11.000062)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5021"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
id="path5023" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5025"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-86,-3.414214)"
|
||||
id="balloon-tip-top">
|
||||
<g
|
||||
transform="translate(200.00001,-11.000062)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="g5031">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
id="path5033"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path5035"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
id="path5037"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="balloon-tip-left"
|
||||
transform="matrix(0,-1,1,0,103,259.56888)">
|
||||
<g
|
||||
id="g5043"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(200.00001,-11.000062)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5045"
|
||||
d="m 14.99998,19.000062 23.00001,0 L 25.999985,7.0000625 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.78431373;stroke:none"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
id="path5047" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5049"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
364
src/desktoptheme/air/opaque/dialogs/krunner.svg
Normal file
@ -0,0 +1,364 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="krunner.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/background.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#c1c1c1"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.9999999"
|
||||
inkscape:cx="75.090763"
|
||||
inkscape:cy="17.731491"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="754"
|
||||
inkscape:window-x="329"
|
||||
inkscape:window-y="94"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
objecttolerance="9"
|
||||
gridtolerance="13"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
enabled="true"
|
||||
id="grid2555"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<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>
|
||||
<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:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<rect
|
||||
y="-23"
|
||||
x="-4"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(7.0000004,8.998957)">
|
||||
<g
|
||||
id="g4106"
|
||||
transform="translate(0,1)">
|
||||
<path
|
||||
id="path2667"
|
||||
d="m 10,0 0,7 30,0 0,-7 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 10,0 0,1 30,0 0,-1 z"
|
||||
id="path5283"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2675"
|
||||
d="m 10,-1 0,1 30,0 0,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="center"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path3642"
|
||||
d="M 10,8 10,38 40,38 40,8 10,8 z"
|
||||
style="fill:#f0f0f0;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="translate(14,-13)"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,60 0,7 30,0 0,-7 z"
|
||||
id="path2691"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5362"
|
||||
d="m 3,66 0,1 c 10,0 20,0 30,0 l 0,-1 -30,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,67 0,1 30,0 0,-1 z"
|
||||
id="path3498"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="left"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path10432"
|
||||
d="M 10,8 10,38 3,38 3,8 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 4,8 4,38 3,38 3,8 z"
|
||||
id="path10434"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path3449"
|
||||
d="M 3,8 3,38 2,38 2,8 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="right"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 40,8 0,30 7,0 0,-30 z"
|
||||
id="path2679"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5344"
|
||||
d="m 46,8 0,30 1,0 0,-30 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 47,8 0,30 1,0 0,-30 z"
|
||||
id="path3473"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="30"
|
||||
x="1"
|
||||
height="4"
|
||||
width="6"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="6"
|
||||
x="31"
|
||||
y="3" />
|
||||
<rect
|
||||
y="57"
|
||||
x="31"
|
||||
height="6"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-right-margin"
|
||||
width="6"
|
||||
height="4"
|
||||
x="57.838837"
|
||||
y="30" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,57,9)"
|
||||
id="topright">
|
||||
<g
|
||||
transform="translate(1,1)"
|
||||
id="g3455">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path3459"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3465"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,58 0,8 30,0 0,-8 0,0 z"
|
||||
id="mask-top"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -75,58 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,3 8,0 0,-8 z"
|
||||
id="mask-topleft"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-center"
|
||||
d="m -72,66 0,30 30,0 0,-30 -30,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,96 0,8 0,0 30,0 0,-8 z"
|
||||
id="mask-bottom"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-left"
|
||||
d="m -72,66 0,30 -8,0 0,0 0,-30 8,0 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -42,66 0,30 8,0 0,-30 z"
|
||||
id="mask-right"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="mask-topright"
|
||||
d="m -39,58 0,1 2,0 0,1 1,0 0,1 1,0 0,2 1,0 0,3 -8,0 0,-8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-bottomleft"
|
||||
d="m -75,104 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-3 8,0 0,8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -39,104 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-3 -8,0 0,8 z"
|
||||
id="mask-bottomright"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-compose-over-border"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="15"
|
||||
y="-23" />
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,55,57)">
|
||||
<g
|
||||
id="g3806"
|
||||
transform="translate(1,1)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3808"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3810"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="bottomleft"
|
||||
transform="matrix(0,-1,0.9998696,0,10,56)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3814"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 5.999,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3816"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,0.9998696,8,10.000913)"
|
||||
id="topleft">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path5287"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3447"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3.001,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
355
src/desktoptheme/air/opaque/widgets/extender-background.svg
Normal file
@ -0,0 +1,355 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="extender-background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/background.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#c1c1c1"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.9999999"
|
||||
inkscape:cx="36.170652"
|
||||
inkscape:cy="9.1881878"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="754"
|
||||
inkscape:window-x="329"
|
||||
inkscape:window-y="94"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
objecttolerance="9"
|
||||
gridtolerance="13"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
enabled="true"
|
||||
id="grid2555"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<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>
|
||||
<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:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<rect
|
||||
y="-23"
|
||||
x="-4"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(7.0000004,8.998957)">
|
||||
<g
|
||||
id="g4106"
|
||||
transform="translate(0,1)">
|
||||
<path
|
||||
id="path2667"
|
||||
d="m 10,0 0,7 30,0 0,-7 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 10,0 0,1 30,0 0,-1 z"
|
||||
id="path5283"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2675"
|
||||
d="m 10,-1 0,1 30,0 0,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,0.9998696,8.0000004,9.9998696)"
|
||||
id="topleft">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path5287"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3447"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3.001,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="center"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path3642"
|
||||
d="M 10,8 10,38 40,38 40,8 10,8 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="translate(14,-13)"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,60 0,7 30,0 0,-7 z"
|
||||
id="path2691"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5362"
|
||||
d="m 3,66 0,1 c 10,0 20,0 30,0 l 0,-1 -30,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,67 0,1 30,0 0,-1 z"
|
||||
id="path3498"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="left"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path10432"
|
||||
d="M 10,8 10,38 3,38 3,8 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 4,8 4,38 3,38 3,8 z"
|
||||
id="path10434"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path3449"
|
||||
d="M 3,8 3,38 2,38 2,8 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="right"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 40,8 0,30 7,0 0,-30 z"
|
||||
id="path2679"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5344"
|
||||
d="m 46,8 0,30 1,0 0,-30 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 47,8 0,30 1,0 0,-30 z"
|
||||
id="path3473"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="30"
|
||||
x="1"
|
||||
height="4"
|
||||
width="6"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="6"
|
||||
x="31"
|
||||
y="3" />
|
||||
<rect
|
||||
y="57"
|
||||
x="31"
|
||||
height="6"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-right-margin"
|
||||
width="6"
|
||||
height="4"
|
||||
x="57.838837"
|
||||
y="30" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,57,9)"
|
||||
id="topright">
|
||||
<g
|
||||
transform="translate(1,1)"
|
||||
id="g3455">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path3459"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3465"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,55,57)">
|
||||
<g
|
||||
id="g3806"
|
||||
transform="translate(1,1)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3808"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3810"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="bottomleft"
|
||||
transform="matrix(0,-1,0.9998696,0,9.99987,56)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3814"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 5.999,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3816"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -80,66 0,8 30,0 0,-8 0,0 z"
|
||||
id="mask-top"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -83,66 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,3 8,0 0,-8 z"
|
||||
id="mask-topleft"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="mask-center"
|
||||
d="m -80,74 0,30 30,0 0,-30 -30,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -80,104 0,8 0,0 30,0 0,-8 z"
|
||||
id="mask-bottom"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-left"
|
||||
d="m -80,74 0,30 -8,0 0,0 0,-30 8,0 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -50,74 0,30 8,0 0,-30 z"
|
||||
id="mask-right"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="mask-topright"
|
||||
d="m -47,66 0,1 2,0 0,1 1,0 0,1 1,0 0,2 1,0 0,3 -8,0 0,-8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-bottomleft"
|
||||
d="m -83,112 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-3 8,0 0,8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -47,112 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-3 -8,0 0,8 z"
|
||||
id="mask-bottomright"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
364
src/desktoptheme/air/opaque/widgets/panel-background.svg
Normal file
@ -0,0 +1,364 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="krunner.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/background.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#c1c1c1"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.9999999"
|
||||
inkscape:cx="75.090763"
|
||||
inkscape:cy="17.731491"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="754"
|
||||
inkscape:window-x="329"
|
||||
inkscape:window-y="94"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
objecttolerance="9"
|
||||
gridtolerance="13"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
enabled="true"
|
||||
id="grid2555"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<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>
|
||||
<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:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<rect
|
||||
y="-23"
|
||||
x="-4"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(7.0000004,8.998957)">
|
||||
<g
|
||||
id="g4106"
|
||||
transform="translate(0,1)">
|
||||
<path
|
||||
id="path2667"
|
||||
d="m 10,0 0,7 30,0 0,-7 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 10,0 0,1 30,0 0,-1 z"
|
||||
id="path5283"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2675"
|
||||
d="m 10,-1 0,1 30,0 0,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="center"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path3642"
|
||||
d="M 10,8 10,38 40,38 40,8 10,8 z"
|
||||
style="fill:#f0f0f0;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="translate(14,-13)"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,60 0,7 30,0 0,-7 z"
|
||||
id="path2691"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5362"
|
||||
d="m 3,66 0,1 c 10,0 20,0 30,0 l 0,-1 -30,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,67 0,1 30,0 0,-1 z"
|
||||
id="path3498"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="left"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path10432"
|
||||
d="M 10,8 10,38 3,38 3,8 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 4,8 4,38 3,38 3,8 z"
|
||||
id="path10434"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path3449"
|
||||
d="M 3,8 3,38 2,38 2,8 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="right"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 40,8 0,30 7,0 0,-30 z"
|
||||
id="path2679"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5344"
|
||||
d="m 46,8 0,30 1,0 0,-30 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 47,8 0,30 1,0 0,-30 z"
|
||||
id="path3473"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="30"
|
||||
x="1"
|
||||
height="4"
|
||||
width="6"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="6"
|
||||
x="31"
|
||||
y="3" />
|
||||
<rect
|
||||
y="57"
|
||||
x="31"
|
||||
height="6"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-right-margin"
|
||||
width="6"
|
||||
height="4"
|
||||
x="57.838837"
|
||||
y="30" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,57,9)"
|
||||
id="topright">
|
||||
<g
|
||||
transform="translate(1,1)"
|
||||
id="g3455">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path3459"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3465"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,58 0,8 30,0 0,-8 0,0 z"
|
||||
id="mask-top"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -75,58 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,3 8,0 0,-8 z"
|
||||
id="mask-topleft"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-center"
|
||||
d="m -72,66 0,30 30,0 0,-30 -30,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,96 0,8 0,0 30,0 0,-8 z"
|
||||
id="mask-bottom"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-left"
|
||||
d="m -72,66 0,30 -8,0 0,0 0,-30 8,0 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -42,66 0,30 8,0 0,-30 z"
|
||||
id="mask-right"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="mask-topright"
|
||||
d="m -39,58 0,1 2,0 0,1 1,0 0,1 1,0 0,2 1,0 0,3 -8,0 0,-8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-bottomleft"
|
||||
d="m -75,104 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-3 8,0 0,8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -39,104 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-3 -8,0 0,8 z"
|
||||
id="mask-bottomright"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-compose-over-border"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="15"
|
||||
y="-23" />
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,55,57)">
|
||||
<g
|
||||
id="g3806"
|
||||
transform="translate(1,1)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3808"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3810"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="bottomleft"
|
||||
transform="matrix(0,-1,0.9998696,0,10,56)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3814"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 5.999,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3816"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,0.9998696,8,10.000913)"
|
||||
id="topleft">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path5287"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3447"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3.001,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
364
src/desktoptheme/air/opaque/widgets/tooltip.svg
Normal file
@ -0,0 +1,364 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="krunner.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/background.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#c1c1c1"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.9999999"
|
||||
inkscape:cx="75.090763"
|
||||
inkscape:cy="17.731491"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="967"
|
||||
inkscape:window-height="754"
|
||||
inkscape:window-x="329"
|
||||
inkscape:window-y="94"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
objecttolerance="9"
|
||||
gridtolerance="13"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
enabled="true"
|
||||
id="grid2555"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<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>
|
||||
<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:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<rect
|
||||
y="-23"
|
||||
x="-4"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(7.0000004,8.998957)">
|
||||
<g
|
||||
id="g4106"
|
||||
transform="translate(0,1)">
|
||||
<path
|
||||
id="path2667"
|
||||
d="m 10,0 0,7 30,0 0,-7 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 10,0 0,1 30,0 0,-1 z"
|
||||
id="path5283"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path2675"
|
||||
d="m 10,-1 0,1 30,0 0,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="center"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path3642"
|
||||
d="M 10,8 10,38 40,38 40,8 10,8 z"
|
||||
style="fill:#f0f0f0;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="translate(14,-13)"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,60 0,7 30,0 0,-7 z"
|
||||
id="path2691"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5362"
|
||||
d="m 3,66 0,1 c 10,0 20,0 30,0 l 0,-1 -30,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3,67 0,1 30,0 0,-1 z"
|
||||
id="path3498"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="left"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
id="path10432"
|
||||
d="M 10,8 10,38 3,38 3,8 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 4,8 4,38 3,38 3,8 z"
|
||||
id="path10434"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path3449"
|
||||
d="M 3,8 3,38 2,38 2,8 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="right"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(7,9)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 40,8 0,30 7,0 0,-30 z"
|
||||
id="path2679"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5344"
|
||||
d="m 46,8 0,30 1,0 0,-30 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 47,8 0,30 1,0 0,-30 z"
|
||||
id="path3473"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="30"
|
||||
x="1"
|
||||
height="4"
|
||||
width="6"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="6"
|
||||
x="31"
|
||||
y="3" />
|
||||
<rect
|
||||
y="57"
|
||||
x="31"
|
||||
height="6"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-right-margin"
|
||||
width="6"
|
||||
height="4"
|
||||
x="57.838837"
|
||||
y="30" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,57,9)"
|
||||
id="topright">
|
||||
<g
|
||||
transform="translate(1,1)"
|
||||
id="g3455">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path3459"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3465"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,58 0,8 30,0 0,-8 0,0 z"
|
||||
id="mask-top"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -75,58 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,3 8,0 0,-8 z"
|
||||
id="mask-topleft"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-center"
|
||||
d="m -72,66 0,30 30,0 0,-30 -30,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -72,96 0,8 0,0 30,0 0,-8 z"
|
||||
id="mask-bottom"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-left"
|
||||
d="m -72,66 0,30 -8,0 0,0 0,-30 8,0 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -42,66 0,30 8,0 0,-30 z"
|
||||
id="mask-right"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="mask-topright"
|
||||
d="m -39,58 0,1 2,0 0,1 1,0 0,1 1,0 0,2 1,0 0,3 -8,0 0,-8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="mask-bottomleft"
|
||||
d="m -75,104 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-3 8,0 0,8 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -39,104 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-3 -8,0 0,8 z"
|
||||
id="mask-bottomright"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-compose-over-border"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="15"
|
||||
y="-23" />
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,55,57)">
|
||||
<g
|
||||
id="g3806"
|
||||
transform="translate(1,1)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3808"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3810"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="bottomleft"
|
||||
transform="matrix(0,-1,0.9998696,0,10,56)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path3814"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3,2 4,2 4,1 5.999,1 6,0 9,0 9,-1 6,-1 z"
|
||||
id="path3816"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,0.9998696,8,10.000913)"
|
||||
id="topleft">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 6,0 6,1 4,1 4,2 3,2 3,4 2,4 2,7 3,7 3,4 4,4 4,2 6,2 6,1 9,1 9,0 6,0 z"
|
||||
id="path5287"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc"
|
||||
id="path3447"
|
||||
d="M 6,-1 6,0 4,0 4,1 3,1 3,2 2,2 2,4 1,4 1,7 2,7 2,4 3,4 3.001,2 4,2 4,1 6,1 6,0 9,0 9,-1 6,-1 z"
|
||||
style="fill:#9f9f9f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
551
src/desktoptheme/air/translucent/dialogs/background.svg
Normal file
@ -0,0 +1,551 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="148"
|
||||
height="148"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#919191"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8284272"
|
||||
inkscape:cx="261.6654"
|
||||
inkscape:cy="56.494088"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1557"
|
||||
inkscape:window-height="735"
|
||||
inkscape:window-x="310"
|
||||
inkscape:window-y="169"
|
||||
width="148px"
|
||||
height="148px"
|
||||
objecttolerance="23"
|
||||
gridtolerance="10"
|
||||
guidetolerance="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
empspacing="5"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
id="grid3357"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-left"
|
||||
x="-275"
|
||||
y="-72"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="top"
|
||||
transform="matrix(0.5517241,0,0,2,55.793104,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2667"
|
||||
d="m 4,127 0,2 58,0 0,-2 c -0.02169,-6.7e-4 -0.04064,0 -0.0625,0 l -57.875,0 C 4.040639,127 4.021694,126.99933 4,127 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127.00007 0,0.49993 58,0 0,-0.49993 c -0.02169,-1.6e-4 -0.04064,0 -0.0625,0 l -57.875,0 c -0.021861,0 -0.040806,-1.6e-4 -0.0625,0 z"
|
||||
id="path5283" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="right"
|
||||
transform="matrix(2,0,0,2.4615385,-34,-252.53847)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2679"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
id="path5344" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="bottom"
|
||||
transform="matrix(0.5517241,0,0,2,55.793106,-187)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2691"
|
||||
d="m 4,142 0,2 c 0.021694,6.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,6.7e-4 0.0625,0 l 0,-2 -58,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,143.50022 0,0.5 c 0.021694,1.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,1.7e-4 0.0625,0 l 0,-0.5 -58,0 z"
|
||||
id="path5362" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,6.9999975)"
|
||||
style="opacity:0.97899996"
|
||||
id="bottomleft">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2697"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.43137255;fill-rule:nonzero;stroke:none"
|
||||
d="M 54 97 C 54.06722 99.1827 55.817292 100.93278 58 101 L 58 100 C 56.362968 99.949585 55.05042 98.637026 55 97 L 54 97 z "
|
||||
transform="translate(0,-6.9999975)"
|
||||
id="path3814" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.744186,0,0,2.4635078,13.348831,20.656857)"
|
||||
id="center">
|
||||
<g
|
||||
transform="matrix(0.344,0,0,0.8118505,3.584,-783.88382)"
|
||||
id="toolbutton-pressed-center">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11378"
|
||||
d="m 164,987.7235 0,16 125,0 0,-16 -125,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2,97.999996,-193)"
|
||||
id="topright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
id="path5336" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
id="path5338"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="27.24255"
|
||||
x="18.522581"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-left-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="57.855396"
|
||||
y="78.307343" />
|
||||
<rect
|
||||
y="63.723263"
|
||||
x="72.616249"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-bottom-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="72.616249"
|
||||
y="93.24498" />
|
||||
<rect
|
||||
y="78.307343"
|
||||
x="87.553879"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="topleft"
|
||||
transform="matrix(2,0,0,2,50,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4234"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4236"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2.4615385,182.00015,-252.53847)"
|
||||
id="left">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
id="path4246" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4248"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-1,0,0,1,148,6.9999975)"
|
||||
id="bottomright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
id="path4279" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.43137255;fill-rule:nonzero;stroke:none"
|
||||
d="M 93 97 C 92.94958 98.637026 91.637032 99.949585 90 100 L 90 101 C 92.182708 100.93278 93.93278 99.1827 94 97 L 93 97 z "
|
||||
transform="matrix(-1,0,0,1,148,-6.9999975)"
|
||||
id="path3046" />
|
||||
</g>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270"
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
id="tspan4272"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
transform="matrix(0.41935484,0,0,0.41935477,-33.483871,252.3544)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="shadow-center"
|
||||
style="fill:#000000;fill-opacity:0">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0;stroke:none"
|
||||
d="m -6.0000004,-7.998957 0,62 62.0000004,0 0,-62 -62.0000004,0 z"
|
||||
id="path3642"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-left-margin"
|
||||
width="22"
|
||||
height="4"
|
||||
x="-72"
|
||||
y="264" />
|
||||
<rect
|
||||
y="259"
|
||||
x="4"
|
||||
height="4"
|
||||
width="22"
|
||||
id="shadow-hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,133.5,29.499998)"
|
||||
id="g3041" />
|
||||
<image
|
||||
y="213"
|
||||
x="-72"
|
||||
id="shadow-topleft"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<image
|
||||
y="213"
|
||||
x="-36"
|
||||
id="shadow-top"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-topright"
|
||||
x="-26"
|
||||
y="213"
|
||||
transform="scale(-1,1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-right"
|
||||
x="249"
|
||||
y="-26"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-bottomleft"
|
||||
x="-72"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-bottom"
|
||||
x="-36"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
transform="scale(-1,-1)"
|
||||
y="-311"
|
||||
x="-26"
|
||||
id="shadow-bottomright"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-bottom-margin"
|
||||
width="4"
|
||||
height="22"
|
||||
x="-34"
|
||||
y="289" />
|
||||
<rect
|
||||
y="213"
|
||||
x="-25"
|
||||
height="22"
|
||||
width="4"
|
||||
id="shadow-hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270-4"
|
||||
y="-697.71558"
|
||||
x="-329.66602"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-697.71558"
|
||||
x="-329.66602"
|
||||
id="tspan4272-3"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,-394.5,-161.46875)"
|
||||
id="g3041-6" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270-47"
|
||||
y="-787.71558"
|
||||
x="630.33398"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-787.71558"
|
||||
x="630.33398"
|
||||
id="tspan4272-9"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,565.5,-251.46875)"
|
||||
id="g3041-7" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,-1,450,101)"
|
||||
id="balloon-tip-bottom">
|
||||
<image
|
||||
width="58"
|
||||
height="22"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
id="image4316"
|
||||
x="197"
|
||||
y="-15" />
|
||||
<g
|
||||
transform="translate(200.00001,-11.000062)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="g4318">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:#f0f0f0;fill-opacity:0.47058824;stroke:none"
|
||||
d="m 13.99999,19.000062 24,0 L 25.999985,7.0000625 z"
|
||||
id="path4320"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path4322"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43921569;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
id="path4324"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="balloon-tip-right"
|
||||
transform="matrix(0,1,-1,0,261.00084,-162)">
|
||||
<image
|
||||
y="-15"
|
||||
x="197"
|
||||
id="image5017"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
height="22"
|
||||
width="58" />
|
||||
<g
|
||||
id="g5019"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(200.00001,-11.000062)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5021"
|
||||
d="m 13.99999,19.000902 24,-8.4e-4 L 25.999985,7.0000625 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.47058824;stroke:none"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="fill:#ffffff;fill-opacity:0.43921569;fill-rule:nonzero;stroke:none"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
id="path5023" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5025"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-2,26.999157)"
|
||||
id="balloon-tip-top">
|
||||
<image
|
||||
width="58"
|
||||
height="22"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
id="image5029"
|
||||
x="197"
|
||||
y="-15" />
|
||||
<g
|
||||
transform="translate(200.00001,-11.000062)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="g5031">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:#f0f0f0;fill-opacity:0.47058824;stroke:none"
|
||||
d="m 13.99999,19.000905 24,-8.43e-4 L 25.999985,7.0000625 z"
|
||||
id="path5033"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path5035"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43921569;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
id="path5037"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="balloon-tip-left"
|
||||
transform="matrix(0,-1,1,0,187,290)">
|
||||
<image
|
||||
y="-15"
|
||||
x="197"
|
||||
id="image5041"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAAWCAYAAACR1Y9lAAAABHNCSVQICAgIfAhkiAAAAkhJREFU WIXl10tu2zAQgOFfdmo3Dz+SHtRnmTMlCLooEMOLIMgq2fUUdReeKccj0pJCaVUChAyZpvh5hg81 IsL/UK6mfsBut2v6tBOR45TjaKaIaAFXAreAU6BHhWaATeFq5Vi4AuOCZ2N1FJCN9m3XGTAv1Flo 2xT6rCpTzNGGNrSF0HIE/mSu9t1oZZSIun/eR3DG6Y+8AhauLrX6e9bO/7YJfVeVaqgbSAR+02q4 78A1cKP1Wu8Z2tpH8CjYKmiIpEVzToIuSbhb4C7UWxJ6SYLa3LV+q7FfhmbS1QMXpAgacAWsgY3W td4zsEXYohvBVdgvQQtz0qAeacANcA88AL+1Pui9DQnssR5ajR0MLSB9ql5CforIh4h8AJ9cxvpU rsYOgvZI1yWnOZdDvovIm/Wln98L2BvOF6nqNO4NzayutuH7OWmLzgrYKuAH8Coih9in3nvVNvf6 mxVpkfJzNh4wBmF7QbVDv+nnkLbwWCS3nKJ1EJFfpb71u4O23ZIim1ug7Ln/xtIX2wl1SKsl5B1p VbV03YvIz65naJs952m8pr1ARWzTF3sROhBp24el7IuIPHcNwGGfgRdSCvvtpxpbhA5AWrpG5FNf pMM+FbBdadyJzUIzJ56ItBNPCfk4FOmwjx1YvxpHbHGBakELxzq/Vy5Ix7p44qlCZrDxBGXHRb/t +D22iC2lrk/Z+BYSj3aG3I+BtKJ97TlfmGIK+7ceP+ZWOYNeOKTPSa9Ucb9ccdpCBs/JrqJ9Htxz 4v664Hx/LUb1Lw6DnOovEs1hAAAAAElFTkSuQmCC "
|
||||
height="22"
|
||||
width="58" />
|
||||
<g
|
||||
id="g5043"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
transform="translate(200.00001,-11.000062)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5045"
|
||||
d="m 13.99999,19.000062 24,0 L 25.999985,7.0000625 z"
|
||||
style="fill:#f0f0f0;fill-opacity:0.47058824;stroke:none"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
style="fill:#ffffff;fill-opacity:0.43921569;fill-rule:nonzero;stroke:none"
|
||||
d="m 214,8 1.6066,8.429e-4 L 226,-2.585786 236.39256,8 238,8 226,-4 l 0,0 0,0 0,0 0,0 z"
|
||||
id="path5047" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5049"
|
||||
d="M 213.60586,7.0001054 215,7 226.00084,-3.9380585 236.98309,7 l 1.39256,0 -12.37481,-12.3522715 0,0 0,0 0,0 0,0 z"
|
||||
style="opacity:0.35;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
438
src/desktoptheme/air/translucent/dialogs/krunner.svg
Normal file
@ -0,0 +1,438 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="148"
|
||||
height="148"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#919191"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="47.496726"
|
||||
inkscape:cy="57.542163"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1557"
|
||||
inkscape:window-height="735"
|
||||
inkscape:window-x="99"
|
||||
inkscape:window-y="163"
|
||||
width="148px"
|
||||
height="148px"
|
||||
objecttolerance="23"
|
||||
gridtolerance="10"
|
||||
guidetolerance="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3357"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
empspacing="5"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
transform="matrix(0,-1,1,0,-27,142)"
|
||||
id="left">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="image3733"
|
||||
x="45"
|
||||
y="35" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3735"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
id="path3737" />
|
||||
</g>
|
||||
<g
|
||||
id="top"
|
||||
transform="translate(-10e-7,-1)">
|
||||
<image
|
||||
y="35"
|
||||
x="45"
|
||||
id="shadow-top"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<path
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
id="path2667"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5283"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-top-margin"
|
||||
width="4"
|
||||
height="26"
|
||||
x="56"
|
||||
y="34" />
|
||||
<g
|
||||
id="center"
|
||||
transform="matrix(0.60465112,0,0,2.0016001,8.720933,34.971204)">
|
||||
<g
|
||||
id="toolbutton-pressed-center"
|
||||
transform="matrix(0.344,0,0,0.8118505,3.584,-783.88382)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.39215687;stroke:none"
|
||||
d="m 164,987.7235 0,16 125,0 0,-16 -125,0 z"
|
||||
id="path11378"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-stretch-borders"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="18.522581"
|
||||
y="27.24255" />
|
||||
<rect
|
||||
y="83"
|
||||
x="8"
|
||||
height="4"
|
||||
width="26"
|
||||
id="hint-left-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
id="topleft">
|
||||
<image
|
||||
y="34"
|
||||
x="8"
|
||||
id="shadow-topleft"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<path
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path4234"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
id="path4236"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,142,26)"
|
||||
id="topright">
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="image3336"
|
||||
x="8"
|
||||
y="34" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3338"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path3340"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,-1,0.028022,168)"
|
||||
id="bottomleft">
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="image3360"
|
||||
x="8"
|
||||
y="34" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3362"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path3364"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
id="bottomright"
|
||||
transform="matrix(0,-1,-1,0,142.02802,142)">
|
||||
<image
|
||||
y="34"
|
||||
x="8"
|
||||
id="image3368"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<path
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.0672 -3.932783,1.8173 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path3370"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 34,56 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 0,9 1,0 0,-9 c 0,-1.5625 1.34375,-3 3,-3 l 9,0 0,-1 z"
|
||||
id="path3372"
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,143,25.999999)"
|
||||
id="right">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="image3717"
|
||||
x="45"
|
||||
y="35" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3719"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
id="path3721" />
|
||||
</g>
|
||||
<g
|
||||
id="bottom"
|
||||
transform="matrix(-1,0,0,-1,116,169)">
|
||||
<image
|
||||
y="35"
|
||||
x="45"
|
||||
id="image3725"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<path
|
||||
style="opacity:0.97899996000000000;fill:#ffffff;fill-opacity:0.39215687;fill-rule:nonzero;stroke:none"
|
||||
d="m 45.000001,57.001866 0,12.998134 26,0 0,-12.998134 c -0.0097,-0.0042 -0.01822,0 -0.02801,0 l -25.943968,0 c -0.0098,0 -0.01829,-0.0042 -0.02802,0 z"
|
||||
id="path3727"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3729"
|
||||
d="m 45.000001,57.00014 0,0.99986 26,0 0,-0.99986 c -0.0097,-3.2e-4 -0.01822,0 -0.02801,0 l -25.943965,0 c -0.0098,0 -0.01829,-3.2e-4 -0.02801,0 z"
|
||||
style="opacity:0.97899996;fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-right-margin"
|
||||
width="26"
|
||||
height="4"
|
||||
x="82"
|
||||
y="84" />
|
||||
<g
|
||||
transform="translate(25,95)"
|
||||
id="mask-topleft">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
id="path3757"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3632"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="mask-center"
|
||||
d="m -52,158 0,32 32,0 0,-32 -32,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="mask-top"
|
||||
transform="matrix(0,0.8887345,1,0,-114,243.20725)">
|
||||
<path
|
||||
id="path3493"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
id="path3495"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="mask-topright"
|
||||
transform="matrix(0,1,-1,0,43,235)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5484"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path5486" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.8887345,0,0,1,-105.20725,96)"
|
||||
id="mask-right">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
id="path5490" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
id="mask-bottomleft"
|
||||
transform="matrix(1,0,0,-1,25,252.99999)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
id="path5498" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-0.8887345,1,0,-114,104.79275)"
|
||||
id="mask-bottom">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
id="path5502" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5504"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,43,113)"
|
||||
id="mask-bottomright">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -78,62 0,-35 -35,0 0,35 35,0 z"
|
||||
id="path5508"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path5510"
|
||||
d="m -87,49 c -2,0 -4,2 -4,4 l 0,9 13,0 0,-13 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="mask-left"
|
||||
transform="matrix(0.8887345,0,0,1,33.207246,96)">
|
||||
<path
|
||||
id="path5514"
|
||||
d="m -97,62 0,32 -39.38184,0 c 0,0 0,0 0,0 l 0,-32 c 0,0 0,0 0,0 L -97,62 z"
|
||||
style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m -97,62 0,32 -14.62754,0 0,-32 L -97,62 z"
|
||||
id="path5516"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
y="108"
|
||||
x="55"
|
||||
height="26"
|
||||
width="4"
|
||||
id="hint-bottom-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
490
src/desktoptheme/air/translucent/widgets/extender-background.svg
Normal file
@ -0,0 +1,490 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="extender-background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/background.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#9d9d9d"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="44.389903"
|
||||
inkscape:cy="36.957396"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="993"
|
||||
inkscape:window-height="916"
|
||||
inkscape:window-x="191"
|
||||
inkscape:window-y="54"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
objecttolerance="9"
|
||||
gridtolerance="13"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2555"
|
||||
enabled="true"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644">
|
||||
<linearGradient
|
||||
id="TopLight">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.64705884;"
|
||||
offset="0"
|
||||
id="stop3697" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.11764706;"
|
||||
offset="1"
|
||||
id="stop3699" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="Border">
|
||||
<stop
|
||||
id="stop8748"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop8750"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="RightLight">
|
||||
<stop
|
||||
id="stop9727"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
id="stop9729"
|
||||
offset="1"
|
||||
style="stop-color:#b3b3b3;stop-opacity:0.70588237;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#TopLight"
|
||||
id="radialGradient3644"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.3677641e-7,0.2255638,-0.4962441,0,422.71983,-62.959371)"
|
||||
cx="314.58676"
|
||||
cy="801.46021"
|
||||
fx="314.58676"
|
||||
fy="801.46021"
|
||||
r="66.5" />
|
||||
<radialGradient
|
||||
r="1"
|
||||
fy="143.41679"
|
||||
fx="24.782827"
|
||||
cy="143.41679"
|
||||
cx="24.782827"
|
||||
gradientTransform="matrix(3.5675275e-5,-30.000186,30,3.5675055e-5,-4260.5049,811.48537)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3841"
|
||||
xlink:href="#RightLight"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="29"
|
||||
fy="95.844627"
|
||||
fx="54.978642"
|
||||
cy="95.844627"
|
||||
cx="54.978642"
|
||||
gradientTransform="matrix(7.7857271e-4,-1.0284621,1.0333834,2.283777e-3,-58.128002,123.32456)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3867"
|
||||
xlink:href="#RightLight"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="29"
|
||||
fy="74.52903"
|
||||
fx="59.598103"
|
||||
cy="74.52903"
|
||||
cx="59.598103"
|
||||
gradientTransform="matrix(0,-0.224138,0.5495689,0,-22.021338,79.857609)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3869"
|
||||
xlink:href="#Border"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="1"
|
||||
fy="132.97047"
|
||||
fx="12.441417"
|
||||
cy="132.97047"
|
||||
cx="12.441417"
|
||||
gradientTransform="matrix(-7.0970328e-5,-29.999954,30.000113,-7.1053292e-5,-3950.1285,410.28186)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3479"
|
||||
xlink:href="#RightLight"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="29"
|
||||
fy="372.68588"
|
||||
fx="64.182961"
|
||||
cy="372.68588"
|
||||
cx="64.182961"
|
||||
gradientTransform="matrix(0,-1.0345188,1.0333678,-4.1155063e-7,-345.08926,103.39983)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3535"
|
||||
xlink:href="#RightLight"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="1.0001484"
|
||||
fy="135.6752"
|
||||
fx="39.446178"
|
||||
cy="135.6752"
|
||||
cx="39.446178"
|
||||
gradientTransform="matrix(75.404046,0,-1.5606795e-4,-14.997724,-2923.1013,2051.8192)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3416"
|
||||
xlink:href="#TopLight"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="134.6875"
|
||||
x2="63.5"
|
||||
y1="129"
|
||||
x1="63.5"
|
||||
gradientTransform="matrix(-2,0,0,2.3076921,138.00045,-280.69332)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3422"
|
||||
xlink:href="#Border"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#RightLight"
|
||||
id="radialGradient3715"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-7.0970328e-5,-29.999954,30.000113,-7.1053292e-5,-3950.1285,410.28186)"
|
||||
cx="12.441417"
|
||||
cy="132.97047"
|
||||
fx="12.441417"
|
||||
fy="132.97047"
|
||||
r="1" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#RightLight"
|
||||
id="radialGradient3717"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(3.5675275e-5,-30.000186,30,3.5675055e-5,-4260.5049,811.48537)"
|
||||
cx="24.782827"
|
||||
cy="143.41679"
|
||||
fx="24.782827"
|
||||
fy="143.41679"
|
||||
r="1" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#TopLight"
|
||||
id="radialGradient3719"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(75.404046,0,-1.5606795e-4,-14.997724,-2923.1013,2051.8192)"
|
||||
cx="39.446178"
|
||||
cy="135.6752"
|
||||
fx="39.446178"
|
||||
fy="135.6752"
|
||||
r="1.0001484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Border"
|
||||
id="linearGradient3721"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-2,0,0,2.3076921,138.00045,-280.69332)"
|
||||
x1="63.5"
|
||||
y1="129"
|
||||
x2="63.5"
|
||||
y2="134.6875" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<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>
|
||||
<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">
|
||||
<rect
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-stretch-borders"
|
||||
width="5"
|
||||
height="4.375"
|
||||
x="-4"
|
||||
y="-23" />
|
||||
<g
|
||||
transform="translate(7.0000004,8.998957)"
|
||||
id="top">
|
||||
<image
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAJCAYAAAD+WDajAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kCGA4QASHTxJoAAAAZdEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAANElEQVQY02NkYGBgYcABWBgYGJjxSbLik2TD J8mJT5IbnyQPAwMDI5r4f5gkPz6dn3BJAgCIbgJVHAN60AAAAABJRU5ErkJggg== "
|
||||
width="30"
|
||||
height="9"
|
||||
id="image3408"
|
||||
x="10"
|
||||
y="-8"
|
||||
style="opacity:0.86" />
|
||||
<g
|
||||
transform="matrix(0.9989235,0,0,1,1.0764919e-2,0.9998511)"
|
||||
id="g4106">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:url(#radialGradient3535);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0"
|
||||
d="M 10,0.0001489 L 10,7.0001489 L 40.032328,6.999851 L 40.032328,0.00090650955 L 40,0.00090650955 L 10,0.0001489 z"
|
||||
id="path2667" />
|
||||
<path
|
||||
id="path5283"
|
||||
d="M 10,0.0001489 L 10,1 L 40.03233,1.0001489 L 40.03233,0.0001489 C 40.000002,0.0001489 40.043638,0.0001489 40.03233,0.0001489 C 30.021554,0.00027915035 20.010774,-0.00027092315 10,0.0001489 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.65"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 10,-0.9988081 L 10,0.001043 L 40.03233,0.0011919 L 40.03233,-0.9988081 C 40.000002,-0.9988081 40.043638,-0.9988081 40.03233,-0.9988081 C 30.021554,-0.99867785 20.010774,-0.99922792 10,-0.9988081 z"
|
||||
id="path3261" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="topleft">
|
||||
<image
|
||||
y="1"
|
||||
x="1"
|
||||
id="image3384"
|
||||
height="16"
|
||||
width="16"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kDCw8zHfV1VEIAAAAZdEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAjklEQVQ4y82TSw6AIAxES8HP2ityrrkeegR3 urCSSkDLzklIQ5p5mdLgAFCpGKO+Ojmkau6FF+Otg4i4BQof5lteATTkSvBh1gAu6nOEFwUx+RLi jIBFIF5BmIjYmmASwCCAnMgKmMU8Ss1pegCTzL6rN+AewAZgra3HIg8g1RpsBKRWw7TG2n/pTfBj wAn06RJsItuWvAAAAABJRU5ErkJggg== "
|
||||
style="opacity:0.86" />
|
||||
<g
|
||||
transform="translate(8.0000004,9.998957)"
|
||||
id="g3465">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:url(#radialGradient3479);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0"
|
||||
d="M 6,0 C 3.817291,0.06722 2.067217,1.8173 2,4 L 2,7 L 9,7 L 9,0 L 6,0 z"
|
||||
id="path2709" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.65"
|
||||
d="M 6,0 C 3.817291,0.06722 2.067217,1.8173 2,4 L 2,7 L 3,7 L 3,4 C 3,2.4375 4.34375,1 6,1 L 9,1 L 9,0 L 6,0 z"
|
||||
id="path5287"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.2"
|
||||
d="M 14 9 C 11.817291 9.0672204 10.067217 10.8173 10 13 L 10 14 C 10.060511 12.035054 11.498958 10.41409 13.375 10.0625 C 13.385272 10.060575 13.395951 10.064349 13.40625 10.0625 C 13.601501 10.020142 13.792969 10 14 10 L 17 10 L 17 9 L 14 9 z "
|
||||
transform="translate(-8.0000004,-9.998957)"
|
||||
id="path3256" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0"
|
||||
transform="translate(7.0000004,8.998957)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="center">
|
||||
<path
|
||||
style="fill:url(#radialGradient3644);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 9.9999976,8.0000625 L 9.9999976,38.000063 L 39.999985,38.000063 L 39.999985,8.0000625 L 9.9999976,8.0000625 z"
|
||||
id="path3642" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
transform="matrix(1.0010788,0,0,1,13.996764,-13)"
|
||||
id="bottom">
|
||||
<path
|
||||
id="path2691"
|
||||
d="M 3.0000019,59.998957 L 3.0000019,66.998957 C 3.0112228,67.001303 3.0210225,66.998957 3.0323297,66.998957 L 32.967672,66.998957 C 32.97898,66.998957 32.988779,67.001303 33,66.998957 L 33,59.998957 L 3.0000019,59.998957 z"
|
||||
style="fill:url(#radialGradient3867);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3869);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.65"
|
||||
d="M 3.0000019,65.999849 L 3.0000019,66.999849 C 3.0112228,67.000189 3.0210225,66.999849 3.0323297,66.999849 L 32.967672,66.999849 C 32.97898,66.999849 32.988779,67.000189 33,66.999849 L 33,65.999849 L 3.0000019,65.999849 z"
|
||||
id="path5362" />
|
||||
<image
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAJCAYAAAD+WDajAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kCGA4QN+5pUQMAAAAZdEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAANElEQVQY02NkYGAwZcABWBgYGCTxSX5gYGBg RBP/D5P8hE/nF3ySX/FJ/sAn+Quf5B9ckgD7qAgppZw6hgAAAABJRU5ErkJggg== "
|
||||
width="30"
|
||||
height="9"
|
||||
id="image3369"
|
||||
x="3"
|
||||
y="67"
|
||||
style="opacity:0.86" />
|
||||
<path
|
||||
id="path3331"
|
||||
d="M 3.0000019,66.999849 L 3.0000019,67.999849 C 3.0112107,68.000189 3.0209998,67.999849 3.0322949,67.999849 L 32.93538,67.999849 C 32.946675,67.999849 32.956464,68.000189 32.967673,67.999849 L 32.967673,66.999849 L 3.0000019,66.999849 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.2" />
|
||||
</g>
|
||||
<g
|
||||
id="left">
|
||||
<path
|
||||
style="opacity:0;fill:url(#radialGradient3416);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 16.997624,16.998957 L 16.997624,46.998955 L 0.99999952,46.998955 C 0.99465563,46.948901 0.99999952,46.90517 0.99999952,46.854724 L 0.99999952,17.143189 C 0.99999952,17.092742 0.99465563,17.049011 0.99999952,16.998957 L 16.997624,16.998957 z"
|
||||
id="path3735" />
|
||||
<path
|
||||
id="path10434"
|
||||
d="M 11,16.998957 L 11,46.998955 L 10,46.998955 C 9.9996664,46.948901 10,46.90517 10,46.854724 L 10,17.143189 C 10,17.092742 9.9996664,17.049011 10,16.998957 L 11,16.998957 z"
|
||||
style="fill:url(#linearGradient3422);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.65" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-left-margin"
|
||||
width="14"
|
||||
height="4"
|
||||
x="1"
|
||||
y="30" />
|
||||
<rect
|
||||
y="1"
|
||||
x="31"
|
||||
height="14"
|
||||
width="4"
|
||||
id="hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="hint-bottom-margin"
|
||||
width="4"
|
||||
height="14"
|
||||
x="31"
|
||||
y="49" />
|
||||
<rect
|
||||
y="30"
|
||||
x="49"
|
||||
height="4"
|
||||
width="14"
|
||||
id="hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
id="topright"
|
||||
transform="matrix(-1,0,0,1,64,0)">
|
||||
<image
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kDCw8zHfV1VEIAAAAZdEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAjklEQVQ4y82TSw6AIAxES8HP2ityrrkeegR3 urCSSkDLzklIQ5p5mdLgAFCpGKO+Ojmkau6FF+Otg4i4BQof5lteATTkSvBh1gAu6nOEFwUx+RLi jIBFIF5BmIjYmmASwCCAnMgKmMU8Ss1pegCTzL6rN+AewAZgra3HIg8g1RpsBKRWw7TG2n/pTfBj wAn06RJsItuWvAAAAABJRU5ErkJggg== "
|
||||
width="16"
|
||||
height="16"
|
||||
id="image3693"
|
||||
x="1"
|
||||
y="1"
|
||||
style="opacity:0.86" />
|
||||
<g
|
||||
id="g3695"
|
||||
transform="translate(8.0000004,9.998957)">
|
||||
<path
|
||||
id="path3697"
|
||||
d="M 6,0 C 3.817291,0.06722 2.067217,1.8173 2,4 L 2,7 L 9,7 L 9,0 L 6,0 z"
|
||||
style="opacity:0;fill:url(#radialGradient3715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path3699"
|
||||
d="M 6,0 C 3.817291,0.06722 2.067217,1.8173 2,4 L 2,7 L 3,7 L 3,4 C 3,2.4375 4.34375,1 6,1 L 9,1 L 9,0 L 6,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.65" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.2"
|
||||
d="M 47 9 L 47 10 L 50 10 C 50.207031 10 50.398499 10.020142 50.59375 10.0625 C 50.604049 10.064349 50.614728 10.060575 50.625 10.0625 C 52.501042 10.41409 53.939489 12.035054 54 14 L 54 13 C 53.932783 10.8173 52.182709 9.06722 50 9 L 47 9 z "
|
||||
transform="matrix(-1,0,0,1,56,-9.998957)"
|
||||
id="path3265" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="right"
|
||||
transform="matrix(-1,0,0,1,64,0)">
|
||||
<path
|
||||
id="path3711"
|
||||
d="M 16.997624,16.998957 L 16.997624,46.998955 L 0.99999952,46.998955 C 0.99465563,46.948901 0.99999952,46.90517 0.99999952,46.854724 L 0.99999952,17.143189 C 0.99999952,17.092742 0.99465563,17.049011 0.99999952,16.998957 L 16.997624,16.998957 z"
|
||||
style="opacity:0;fill:url(#radialGradient3719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3721);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.65"
|
||||
d="M 11,16.998957 L 11,46.998955 L 10,46.998955 C 9.9996664,46.948901 10,46.90517 10,46.854724 L 10,17.143189 C 10,17.092742 9.9996664,17.049011 10,16.998957 L 11,16.998957 z"
|
||||
id="path3713" />
|
||||
</g>
|
||||
<g
|
||||
id="bottomleft">
|
||||
<g
|
||||
id="g3301">
|
||||
<image
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kDCw8yOdBtgdIAAAAZdEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAn0lEQVQ4y+WSQQoCMQxFX9sRBReuRTyEZ8q5 ek2r0466MIEOjBKZpYHS0pCXz+cHHJVz/tiLrKx/AYjIaa2Cs4gclxrBCbgAO2ACrvqXgDg4AUWH t8AB2AADkJITsAeeCpmABlSgehXcdbDaZvUv/QJoOpg6QIjfct5VBUYF3dSTAhSvgmYb9dj7nQOH CjOudQaOMxMNIiJLgEeXmdn9At+fKj3KaZZgAAAAAElFTkSuQmCC "
|
||||
width="16"
|
||||
height="16"
|
||||
id="image3371"
|
||||
x="1"
|
||||
y="47"
|
||||
style="opacity:0.86" />
|
||||
<g
|
||||
transform="translate(13,-14.001043)"
|
||||
id="g3793">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path2697"
|
||||
d="M -3,64 C -2.932783,66.1827 -1.182708,67.93278 1.0000004,68 L 4,68 L 4,61 L -3,61 L -3,64 z"
|
||||
style="opacity:0;fill:url(#radialGradient3841);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14,55 C 11.817291,54.93278 10.067217,53.1827 10,51 L 10,50 C 10.060511,51.964946 11.498958,53.58591 13.375,53.9375 C 13.385272,53.939425 13.395951,53.935651 13.40625,53.9375 C 13.601501,53.979858 13.792969,54 14,54 L 17,54 L 17,55 L 14,55 z"
|
||||
id="path3278" />
|
||||
</g>
|
||||
<g
|
||||
id="bottomright">
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,64,0)"
|
||||
id="g3329">
|
||||
<image
|
||||
y="47"
|
||||
x="1"
|
||||
id="image3703"
|
||||
height="16"
|
||||
width="16"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9kDCw8yOdBtgdIAAAAZdEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAn0lEQVQ4y+WSQQoCMQxFX9sRBReuRTyEZ8q5 ek2r0466MIEOjBKZpYHS0pCXz+cHHJVz/tiLrKx/AYjIaa2Cs4gclxrBCbgAO2ACrvqXgDg4AUWH t8AB2AADkJITsAeeCpmABlSgehXcdbDaZvUv/QJoOpg6QIjfct5VBUYF3dSTAhSvgmYb9dj7nQOH CjOudQaOMxMNIiJLgEeXmdn9At+fKj3KaZZgAAAAAElFTkSuQmCC "
|
||||
style="opacity:0.86" />
|
||||
<g
|
||||
id="g3705"
|
||||
transform="translate(13,-14.001043)">
|
||||
<path
|
||||
style="opacity:0;fill:url(#radialGradient3717);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M -3,64 C -2.932783,66.1827 -1.182708,67.93278 1.0000004,68 L 4,68 L 4,61 L -3,61 L -3,64 z"
|
||||
id="path3707"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
id="path3313"
|
||||
d="M 50,55 C 52.182709,54.93278 53.932783,53.1827 54,51 L 54,50 C 53.939489,51.964946 52.501042,53.58591 50.625,53.9375 C 50.614728,53.939425 50.604049,53.935651 50.59375,53.9375 C 50.398499,53.979858 50.207031,54 50,54 L 47,54 L 47,55 L 50,55 z"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.59999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 23 KiB |
377
src/desktoptheme/air/translucent/widgets/panel-background.svg
Normal file
@ -0,0 +1,377 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="148"
|
||||
height="148"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#919191"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="26.429324"
|
||||
inkscape:cy="115.265"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1557"
|
||||
inkscape:window-height="735"
|
||||
inkscape:window-x="35"
|
||||
inkscape:window-y="72"
|
||||
width="148px"
|
||||
height="148px"
|
||||
objecttolerance="23"
|
||||
gridtolerance="10"
|
||||
guidetolerance="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
empspacing="5"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
id="grid3357"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-left"
|
||||
x="-275"
|
||||
y="-72"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="top"
|
||||
transform="matrix(0.5517241,0,0,2,55.793104,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2667"
|
||||
d="m 4,127 0,2 58,0 0,-2 c -0.02169,-6.7e-4 -0.04064,0 -0.0625,0 l -57.875,0 C 4.040639,127 4.021694,126.99933 4,127 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127.00007 0,0.49993 58,0 0,-0.49993 c -0.02169,-1.6e-4 -0.04064,0 -0.0625,0 l -57.875,0 c -0.021861,0 -0.040806,-1.6e-4 -0.0625,0 z"
|
||||
id="path5283" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="right"
|
||||
transform="matrix(2,0,0,2.4615385,-34,-252.53847)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2679"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
id="path5344" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="bottom"
|
||||
transform="matrix(0.5517241,0,0,2,55.793106,-187)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2691"
|
||||
d="m 4,142 0,2 c 0.021694,6.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,6.7e-4 0.0625,0 l 0,-2 -58,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,143.50022 0,0.5 c 0.021694,1.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,1.7e-4 0.0625,0 l 0,-0.5 -58,0 z"
|
||||
id="path5362" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,6.9999975)"
|
||||
style="opacity:0.97899996"
|
||||
id="bottomleft">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2697"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.43137255;fill-rule:nonzero;stroke:none"
|
||||
d="M 54 97 C 54.06722 99.1827 55.817292 100.93278 58 101 L 58 100 C 56.362968 99.949585 55.05042 98.637026 55 97 L 54 97 z "
|
||||
transform="translate(0,-6.9999975)"
|
||||
id="path3814" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.744186,0,0,2.4635078,13.348831,20.656857)"
|
||||
id="center">
|
||||
<g
|
||||
transform="matrix(0.344,0,0,0.8118505,3.584,-783.88382)"
|
||||
id="toolbutton-pressed-center">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11378"
|
||||
d="m 164,987.7235 0,16 125,0 0,-16 -125,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2,97.999996,-193)"
|
||||
id="topright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
id="path5336" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
id="path5338"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="27.24255"
|
||||
x="18.522581"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-left-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="57.855396"
|
||||
y="78.307343" />
|
||||
<rect
|
||||
y="63.723263"
|
||||
x="72.616249"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-bottom-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="72.616249"
|
||||
y="93.24498" />
|
||||
<rect
|
||||
y="78.307343"
|
||||
x="87.553879"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="topleft"
|
||||
transform="matrix(2,0,0,2,50,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4234"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4236"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2.4615385,182.00015,-252.53847)"
|
||||
id="left">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
id="path4246" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4248"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-1,0,0,1,148,6.9999975)"
|
||||
id="bottomright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
id="path4279" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.43137255;fill-rule:nonzero;stroke:none"
|
||||
d="M 93 97 C 92.94958 98.637026 91.637032 99.949585 90 100 L 90 101 C 92.182708 100.93278 93.93278 99.1827 94 97 L 93 97 z "
|
||||
transform="matrix(-1,0,0,1,148,-6.9999975)"
|
||||
id="path3046" />
|
||||
</g>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270"
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
id="tspan4272"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
transform="matrix(0.41935484,0,0,0.41935477,-33.483871,252.3544)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="shadow-center"
|
||||
style="fill:#000000;fill-opacity:0">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0;stroke:none"
|
||||
d="m -6.0000004,-7.998957 0,62 62.0000004,0 0,-62 -62.0000004,0 z"
|
||||
id="path3642"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-left-margin"
|
||||
width="22"
|
||||
height="4"
|
||||
x="-72"
|
||||
y="264" />
|
||||
<rect
|
||||
y="259"
|
||||
x="4"
|
||||
height="4"
|
||||
width="22"
|
||||
id="shadow-hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,133.5,29.499998)"
|
||||
id="g3041" />
|
||||
<image
|
||||
y="213"
|
||||
x="-72"
|
||||
id="shadow-topleft"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<image
|
||||
y="213"
|
||||
x="-36"
|
||||
id="shadow-top"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-topright"
|
||||
x="-26"
|
||||
y="213"
|
||||
transform="scale(-1,1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-right"
|
||||
x="249"
|
||||
y="-26"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-bottomleft"
|
||||
x="-72"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-bottom"
|
||||
x="-36"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
transform="scale(-1,-1)"
|
||||
y="-311"
|
||||
x="-26"
|
||||
id="shadow-bottomright"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-bottom-margin"
|
||||
width="4"
|
||||
height="22"
|
||||
x="-34"
|
||||
y="289" />
|
||||
<rect
|
||||
y="213"
|
||||
x="-25"
|
||||
height="22"
|
||||
width="4"
|
||||
id="shadow-hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
377
src/desktoptheme/air/translucent/widgets/tooltip.svg
Normal file
@ -0,0 +1,377 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="148"
|
||||
height="148"
|
||||
id="svg3642"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="background.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
version="1.0">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#919191"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="26.429324"
|
||||
inkscape:cy="115.265"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1557"
|
||||
inkscape:window-height="735"
|
||||
inkscape:window-x="35"
|
||||
inkscape:window-y="72"
|
||||
width="148px"
|
||||
height="148px"
|
||||
objecttolerance="23"
|
||||
gridtolerance="10"
|
||||
guidetolerance="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
empspacing="5"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
id="grid3357"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3644" />
|
||||
<metadata
|
||||
id="metadata3647">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-left"
|
||||
x="-275"
|
||||
y="-72"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="top"
|
||||
transform="matrix(0.5517241,0,0,2,55.793104,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2667"
|
||||
d="m 4,127 0,2 58,0 0,-2 c -0.02169,-6.7e-4 -0.04064,0 -0.0625,0 l -57.875,0 C 4.040639,127 4.021694,126.99933 4,127 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127.00007 0,0.49993 58,0 0,-0.49993 c -0.02169,-1.6e-4 -0.04064,0 -0.0625,0 l -57.875,0 c -0.021861,0 -0.040806,-1.6e-4 -0.0625,0 z"
|
||||
id="path5283" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="right"
|
||||
transform="matrix(2,0,0,2.4615385,-34,-252.53847)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2679"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
id="path5344" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="bottom"
|
||||
transform="matrix(0.5517241,0,0,2,55.793106,-187)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2691"
|
||||
d="m 4,142 0,2 c 0.021694,6.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,6.7e-4 0.0625,0 l 0,-2 -58,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,143.50022 0,0.5 c 0.021694,1.7e-4 0.040639,0 0.0625,0 l 57.875,0 c 0.02186,0 0.04081,1.7e-4 0.0625,0 l 0,-0.5 -58,0 z"
|
||||
id="path5362" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,6.9999975)"
|
||||
style="opacity:0.97899996"
|
||||
id="bottomleft">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2697"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.43137255;fill-rule:nonzero;stroke:none"
|
||||
d="M 54 97 C 54.06722 99.1827 55.817292 100.93278 58 101 L 58 100 C 56.362968 99.949585 55.05042 98.637026 55 97 L 54 97 z "
|
||||
transform="translate(0,-6.9999975)"
|
||||
id="path3814" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.744186,0,0,2.4635078,13.348831,20.656857)"
|
||||
id="center">
|
||||
<g
|
||||
transform="matrix(0.344,0,0,0.8118505,3.584,-783.88382)"
|
||||
id="toolbutton-pressed-center">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11378"
|
||||
d="m 164,987.7235 0,16 125,0 0,-16 -125,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2,97.999996,-193)"
|
||||
id="topright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
id="path5336" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
id="path5338"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<rect
|
||||
y="27.24255"
|
||||
x="18.522581"
|
||||
height="4.375"
|
||||
width="5"
|
||||
id="hint-stretch-borders"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-left-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="57.855396"
|
||||
y="78.307343" />
|
||||
<rect
|
||||
y="63.723263"
|
||||
x="72.616249"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="hint-bottom-margin"
|
||||
width="4"
|
||||
height="4"
|
||||
x="72.616249"
|
||||
y="93.24498" />
|
||||
<rect
|
||||
y="78.307343"
|
||||
x="87.553879"
|
||||
height="4"
|
||||
width="4"
|
||||
id="hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
id="topleft"
|
||||
transform="matrix(2,0,0,2,50,-193)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4234"
|
||||
d="m 4,127 c -1.0913544,0.0336 -1.9663917,0.90865 -2,2 l 2,0 0,-2 z"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4236"
|
||||
transform="matrix(0.5,0,0,0.5,10,121)"
|
||||
d="m -12,12 c -2.182709,0.06722 -3.932783,1.8173 -4,4 l 1,0 c 0,-1.5625 1.34375,-3 3,-3 l 0,-1 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-2,0,0,2.4615385,182.00015,-252.53847)"
|
||||
id="left">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 62,129 0,13 2,0 c 6.68e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 6.68e-4,-0.0408 0,-0.0625 l -2,0 z"
|
||||
id="path4246" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4248"
|
||||
d="m 63.500223,129 0,13 0.5,0 c 1.67e-4,-0.0217 0,-0.0406 0,-0.0625 l 0,-12.875 c 0,-0.0219 1.67e-4,-0.0408 0,-0.0625 l -0.5,0 z"
|
||||
style="fill:#ffffff;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-1,0,0,1,148,6.9999975)"
|
||||
id="bottomright">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:0.47058824;fill-rule:nonzero;stroke:none"
|
||||
d="m 54,90 c 0.06722,2.1827 1.817292,3.93278 4,4 l 0,-4 -4,0 z"
|
||||
id="path4279" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.43137255;fill-rule:nonzero;stroke:none"
|
||||
d="M 93 97 C 92.94958 98.637026 91.637032 99.949585 90 100 L 90 101 C 92.182708 100.93278 93.93278 99.1827 94 97 L 93 97 z "
|
||||
transform="matrix(-1,0,0,1,148,-6.9999975)"
|
||||
id="path3046" />
|
||||
</g>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4270"
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:justify;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Gill Sans"
|
||||
xml:space="preserve"><tspan
|
||||
y="-506.74683"
|
||||
x="198.334"
|
||||
id="tspan4272"
|
||||
sodipodi:role="line" /></text>
|
||||
<g
|
||||
transform="matrix(0.41935484,0,0,0.41935477,-33.483871,252.3544)"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/diau/svn/playground-plasma/desktoptheme/air/widgets/image2579.png"
|
||||
id="shadow-center"
|
||||
style="fill:#000000;fill-opacity:0">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0;stroke:none"
|
||||
d="m -6.0000004,-7.998957 0,62 62.0000004,0 0,-62 -62.0000004,0 z"
|
||||
id="path3642"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-left-margin"
|
||||
width="22"
|
||||
height="4"
|
||||
x="-72"
|
||||
y="264" />
|
||||
<rect
|
||||
y="259"
|
||||
x="4"
|
||||
height="4"
|
||||
width="22"
|
||||
id="shadow-hint-right-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
style="opacity:0.97899996"
|
||||
transform="matrix(-0.75,0,0,0.75,133.5,29.499998)"
|
||||
id="g3041" />
|
||||
<image
|
||||
y="213"
|
||||
x="-72"
|
||||
id="shadow-topleft"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<image
|
||||
y="213"
|
||||
x="-36"
|
||||
id="shadow-top"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
height="35"
|
||||
width="26" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-topright"
|
||||
x="-26"
|
||||
y="213"
|
||||
transform="scale(-1,1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-right"
|
||||
x="249"
|
||||
y="-26"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<image
|
||||
width="35"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
id="shadow-bottomleft"
|
||||
x="-72"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
width="26"
|
||||
height="35"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAYAAABVcWC0AAAABHNCSVQICAgIfAhkiAAAADJJREFU CJmdzTkOgEAMBMHaYTn+/2ETYckpSamzhpUPXZmV4Jjs4JxcwT15GqpKj37wAvPfA5FzI7AdAAAA AElFTkSuQmCC "
|
||||
id="shadow-bottom"
|
||||
x="-36"
|
||||
y="-311"
|
||||
transform="scale(1,-1)" />
|
||||
<image
|
||||
transform="scale(-1,-1)"
|
||||
y="-311"
|
||||
x="-26"
|
||||
id="shadow-bottomright"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAY1JREFU WIXF10GOwyAMBVDTcP9LzqLqFWbDbCYRY/63v0mkQUJxQxNeDIG2jTHs6dJaazvX9X/sfLlmG1MA yNAyRkCw9hRVwiQQ34a+G0IlTIDIAE1sMwkjQrJYQoUYAlE7ZkcaU0wBEh2jc8s1EFOERLHyveue 6tukPj2rqH2534IBWWGfo84rFWMSiJKFV/DZty33qw4Tg7yKR1gvTJCVKBuoMx+jczEmyIQCOeMD IFCFWeokKx7BUKijA8QIuWQ2mjO7iAPEEgphssmKUHNn/TfuDoNAh5IZNGxKZmZAB6BuK/66n8co WfET1z99t78QH/tMXbWyzkSZQZC5DuPZvkoXfr1lc+Z8Qp+JZmZvM/uMMb6VJ54zgxY3dJ7NF5+Z 9xjjS0Gc5ZW0R6swwsz1U4FkmGwbYOtLNzNTh2Yu7G1ikw3tymiYtv6m7ix60Z5zorZKdTuYY4Q4 41uY3Y2SoW5hEAKh1MXvUcwM8sPDcDPqNiZarhmCTeJH3qZsa0AgVm9jEMhPYAa6PUw/nI4Zi365 uP8AAAAASUVORK5CYII= "
|
||||
height="35"
|
||||
width="35" />
|
||||
<rect
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none"
|
||||
id="shadow-hint-bottom-margin"
|
||||
width="4"
|
||||
height="22"
|
||||
x="-34"
|
||||
y="289" />
|
||||
<rect
|
||||
y="213"
|
||||
x="-25"
|
||||
height="22"
|
||||
width="4"
|
||||
id="shadow-hint-top-margin"
|
||||
style="opacity:0.875;fill:#008000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
1187
src/desktoptheme/air/widgets/action-overlays.svg
Normal file
After Width: | Height: | Size: 46 KiB |
362
src/desktoptheme/air/widgets/actionbutton.svg
Normal file
@ -0,0 +1,362 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="128"
|
||||
height="128"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
version="1.0"
|
||||
sodipodi:docname="actionbutton.svgz"
|
||||
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
||||
inkscape:export-filename="arrow-up.png"
|
||||
inkscape:export-xdpi="11.25"
|
||||
inkscape:export-ydpi="11.25">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#d9d9d9"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568542"
|
||||
inkscape:cx="51.507332"
|
||||
inkscape:cy="73.664596"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="128px"
|
||||
height="128px"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1110"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="103"
|
||||
inkscape:window-y="118"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="2"
|
||||
empopacity="0.4"
|
||||
opacity="0.2"
|
||||
empcolor="#0000ff"
|
||||
color="#0000ff"
|
||||
spacingy="1px"
|
||||
spacingx="1px"
|
||||
originy="0px"
|
||||
originx="0px"
|
||||
type="xygrid"
|
||||
id="GridFromPre046Settings"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3798">
|
||||
<stop
|
||||
id="stop3800"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3802"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3647">
|
||||
<stop
|
||||
id="stop3649"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.15686275;" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.15686275;"
|
||||
offset="0.72972971"
|
||||
id="stop3653" />
|
||||
<stop
|
||||
id="stop3651"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4254">
|
||||
<stop
|
||||
style="stop-color:#29d7f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4256" />
|
||||
<stop
|
||||
id="stop4272"
|
||||
offset="0.75999999"
|
||||
style="stop-color:#29d7f5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4270"
|
||||
offset="0.85537487"
|
||||
style="stop-color:#38c2e9;stop-opacity:0.45614034;" />
|
||||
<stop
|
||||
style="stop-color:#31a7f2;stop-opacity:0.13157895;"
|
||||
offset="0.93000001"
|
||||
id="stop3222" />
|
||||
<stop
|
||||
style="stop-color:#2a8dfc;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4258" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3610">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3612" />
|
||||
<stop
|
||||
id="stop3618"
|
||||
offset="0.80000001"
|
||||
style="stop-color:#000000;stop-opacity:0.49803922;" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.33333334;"
|
||||
offset="0.83999997"
|
||||
id="stop3620" />
|
||||
<stop
|
||||
id="stop3622"
|
||||
offset="0.91000003"
|
||||
style="stop-color:#000000;stop-opacity:0.0877193;" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3614" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3272">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3274" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3276" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3765"
|
||||
id="linearGradient3640"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="48"
|
||||
y1="96"
|
||||
x2="48"
|
||||
y2="116" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4254"
|
||||
id="radialGradient4268"
|
||||
cx="74"
|
||||
cy="34"
|
||||
fx="74"
|
||||
fy="34"
|
||||
r="14"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0714286,0,0,1.0714286,-10.285692,-25.42856)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4254"
|
||||
id="radialGradient4276"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0714286,0,0,1.0714286,-12.285692,6.5714382)"
|
||||
cx="74"
|
||||
cy="34"
|
||||
fx="74"
|
||||
fy="34"
|
||||
r="14" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3647"
|
||||
id="radialGradient3645"
|
||||
cx="48"
|
||||
cy="107"
|
||||
fx="48"
|
||||
fy="107"
|
||||
r="12"
|
||||
gradientTransform="matrix(1,6.8531488e-8,-8.9090919e-8,0.90277782,9.5327284e-6,10.236103)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3272"
|
||||
id="linearGradient3642"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6666667,0,0,0.8,23.999999,-6.8)"
|
||||
x1="48"
|
||||
y1="116"
|
||||
x2="48"
|
||||
y2="106" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3765"
|
||||
id="linearGradient3840"
|
||||
x1="58.999996"
|
||||
y1="106"
|
||||
x2="37"
|
||||
y2="106"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3798"
|
||||
id="linearGradient3844"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.6666667,0.8,0,-50.799999,88)"
|
||||
x1="48.999996"
|
||||
y1="121"
|
||||
x2="36"
|
||||
y2="121" />
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="linearGradient6476">
|
||||
<stop
|
||||
id="stop6478"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3765">
|
||||
<stop
|
||||
id="stop3767"
|
||||
offset="0"
|
||||
style="stop-color:#fafafa;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3769"
|
||||
offset="1"
|
||||
style="stop-color:#e6e6e6;stop-opacity:0.47058824;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3610"
|
||||
id="radialGradient4614"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-2.1480515e-7,1.203125,-1.25,-2.2317419e-7,156.5,-37.568458)"
|
||||
cx="48.316662"
|
||||
cy="105.99999"
|
||||
fx="48.316662"
|
||||
fy="105.99999"
|
||||
r="12" />
|
||||
</defs>
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
style="opacity:0.80000000000000004;fill:url(#radialGradient4268);fill-opacity:1;stroke:none"
|
||||
d="M 69 -4 C 60.715729 -4 54 2.7157285 54 11 C 54 19.284271 60.715729 26 69 26 C 77.284271 26 84 19.284271 84 11 C 84 2.7157285 77.284271 -4 69 -4 z M 69 -1 C 75.627418 -1 81 4.372583 81 11 C 81 17.627417 75.627418 23 69 23 C 62.372582 23 57 17.627417 57 11 C 57 4.372583 62.372582 -1 69 -1 z "
|
||||
id="focus" />
|
||||
<g
|
||||
id="pressed"
|
||||
transform="matrix(1.5000001,0,0,1.5,-51.000008,-74)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:none"
|
||||
id="path3606"
|
||||
sodipodi:cx="48"
|
||||
sodipodi:cy="106"
|
||||
sodipodi:rx="12"
|
||||
sodipodi:ry="10"
|
||||
d="m 60,106 c 0,5.52285 -5.372583,10 -12,10 -6.627417,0 -12,-4.47715 -12,-10 0,-5.52285 5.372583,-10 12,-10 6.627417,0 12,4.47715 12,10 z"
|
||||
transform="matrix(0.8333333,0,0,1,32.000002,-4)" />
|
||||
<path
|
||||
transform="matrix(0.61111106,0,0,0.73333324,42.666669,24.266676)"
|
||||
d="m 60,106 c 0,5.52285 -5.372583,10 -12,10 -6.627417,0 -12,-4.47715 -12,-10 0,-5.52285 5.372583,-10 12,-10 6.627417,0 12,4.47715 12,10 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="12"
|
||||
sodipodi:cy="106"
|
||||
sodipodi:cx="48"
|
||||
id="path2826"
|
||||
style="fill:url(#linearGradient3640);fill-opacity:1.0;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.6;fill:url(#radialGradient3645);fill-opacity:1;stroke:none"
|
||||
id="path3643"
|
||||
sodipodi:cx="48"
|
||||
sodipodi:cy="106"
|
||||
sodipodi:rx="12"
|
||||
sodipodi:ry="10"
|
||||
d="m 60,106 c 0,5.52285 -5.372583,10 -12,10 -6.627417,0 -12,-4.47715 -12,-10 0,-5.52285 5.372583,-10 12,-10 6.627417,0 12,4.47715 12,10 z"
|
||||
transform="matrix(0.61111106,0,0,0.73333324,42.666669,24.266676)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3642);fill-opacity:1;stroke:none;opacity:0.6"
|
||||
d="m 56,70 c -4.416,0 -8,3.584 -8,8 0,4.416 3.584,8 8,8 4.416,0 8.000001,-3.584 8,-8 0,-4.416 -3.583999,-8 -8,-8 z m 0,0.666667 c 3.864,0 7.333333,3.469333 7.333333,7.333333 0,3.864 -3.469333,7.333333 -7.333333,7.333333 C 52.135999,85.333333 48.666668,81.864 48.666668,78 48.666666,74.136 52.136,70.666667 56,70.666667 z"
|
||||
id="path3220"
|
||||
sodipodi:nodetypes="csssccsssc"
|
||||
transform="translate(16,24)" />
|
||||
</g>
|
||||
<g
|
||||
id="normal"
|
||||
transform="matrix(1.5000001,0,0,1.5,-84.000009,-102)">
|
||||
<path
|
||||
transform="matrix(0.8333333,0,0,1,32.000002,-4)"
|
||||
d="m 60,106 c 0,5.52285 -5.372583,10 -12,10 -6.627417,0 -12,-4.47715 -12,-10 0,-5.52285 5.372583,-10 12,-10 6.627417,0 12,4.47715 12,10 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="12"
|
||||
sodipodi:cy="106"
|
||||
sodipodi:cx="48"
|
||||
id="path3630"
|
||||
style="fill:none;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#linearGradient3840);fill-opacity:1.0;stroke:none"
|
||||
id="path3632"
|
||||
sodipodi:cx="48"
|
||||
sodipodi:cy="106"
|
||||
sodipodi:rx="12"
|
||||
sodipodi:ry="10"
|
||||
d="m 60,106 c 0,5.52285 -5.372583,10 -12,10 -6.627417,0 -12,-4.47715 -12,-10 0,-5.52285 5.372583,-10 12,-10 6.627417,0 12,4.47715 12,10 z"
|
||||
transform="matrix(0,-0.6666667,0.8,0,-12.799999,134)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3844);fill-opacity:1;stroke:none;opacity:0.3"
|
||||
d="m 34,48 c -4.416,0 -8.000001,3.583998 -8,8 0,4.416 3.584001,7.999999 8,8 4.416,0 8.000001,-3.584001 8,-8 0,-4.416 -3.583999,-7.999998 -8,-8 z m 0,0.666667 c 3.863998,2e-6 7.333334,3.469334 7.333334,7.333333 C 41.333335,59.863999 37.863999,63.333333 34,63.333333 30.136,63.333332 26.666668,59.863999 26.666668,56 26.666667,52.136001 30.136001,48.666667 34,48.666667 z"
|
||||
id="path3209"
|
||||
sodipodi:nodetypes="csssccsssc"
|
||||
transform="translate(38,46)" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#radialGradient4276);fill-opacity:1;stroke:none"
|
||||
d="M 67 28 C 58.715729 28 52 34.715729 52 43 C 52 51.284271 58.715729 58 67 58 C 75.284271 58 82 51.284271 82 43 C 82 34.715729 75.284271 28 67 28 z M 67 31 C 73.627418 31 79 36.372583 79 43 C 79 49.627417 73.627418 55 67 55 C 60.372582 55 55 49.627417 55 43 C 55 36.372583 60.372582 31 67 31 z "
|
||||
id="hover" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4614);fill-opacity:1;stroke:none"
|
||||
d="M 24,5 C 15.715729,5 9,11.715729 9,20 9,28.284271 15.715729,35 24,35 32.284271,35 39,28.284271 39,20 39,11.715729 32.284271,5 24,5 z m 0,3 c 6.627418,0 12,5.372583 12,12 0,6.627417 -5.372582,12 -12,12 C 17.372582,32 12,26.627417 12,20 12,13.372583 17.372582,8 24,8 z"
|
||||
id="shadow"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
transform="matrix(1.25,0,0,1.5,-80.000004,-154)"
|
||||
d="m 60,106 a 12,10 0 1 1 -24,0 12,10 0 1 1 24,0 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="12"
|
||||
sodipodi:cy="106"
|
||||
sodipodi:cx="48"
|
||||
id="path4575"
|
||||
style="fill:none;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |