From dde89228e78b0856ccfb379cccd5453325289104 Mon Sep 17 00:00:00 2001 From: vinceliuice <vinceliuice@hotmail.com> Date: Thu, 24 Dec 2020 21:00:59 +0800 Subject: [PATCH] Fixed #74 --- install.sh | 7 +- .../gnome-shell/assets-dark/no-events.svg | 4 + .../assets-dark/no-notifications.svg | 6 + .../gnome-shell/assets-light/no-events.svg | 4 + .../assets-light/no-notifications.svg | 6 + .../common-assets/process-working.svg | 72 + .../gnome-shell/common-assets/startup.svg | 721 ---- .../gnome-shell/common-assets/startup@2.svg | 326 -- src/assets/gnome-shell/icons/color-pick.svg | 10 + .../icons/eye-not-looking-symbolic.svg | 6 + .../eye-open-negative-filled-symbolic.svg | 6 + .../keyboard-caps-lock-filled-symbolic.svg | 3 + .../icons/keyboard-enter-symbolic.svg | 3 + .../icons/keyboard-hide-symbolic.svg | 10 + .../icons/keyboard-layout-filled-symbolic.svg | 4 + .../icons/keyboard-shift-filled-symbolic.svg | 5 + .../icons/message-indicator-symbolic.svg | 3 + .../icons/pointer-double-click-symbolic.svg | 7 + .../icons/pointer-drag-symbolic.svg | 3 + .../icons/pointer-primary-click-symbolic.svg | 7 + .../pointer-secondary-click-symbolic.svg | 7 + .../gnome-shell/source-assets/color-pick.svg | 94 - .../source-assets/dash-placeholder.svg | 84 - .../eye-not-looking-symbolic.svg | 4 - .../eye-open-negative-filled-symbolic.svg | 27 - .../keyboard-caps-lock-filled-symbolic.svg | 6 - .../source-assets/keyboard-enter-symbolic.svg | 6 - .../source-assets/keyboard-hide-symbolic.svg | 7 - .../keyboard-layout-filled-symbolic.svg | 7 - .../keyboard-shift-filled-symbolic.svg | 3 - .../message-indicator-symbolic.svg | 40 - .../gnome-shell/source-assets/no-events.svg | 119 - .../source-assets/no-notifications.svg | 223 -- .../pointer-double-click-symbolic.svg | 28 - .../source-assets/pointer-drag-symbolic.svg | 20 - .../pointer-primary-click-symbolic.svg | 26 - .../pointer-secondary-click-symbolic.svg | 26 - .../source-assets/process-working.svg | 3084 ----------------- src/main/gnome-shell/gnome-shell-dark-alt.css | 38 +- .../gnome-shell-dark-solid-alt.css | 38 +- .../gnome-shell/gnome-shell-dark-solid.css | 38 +- src/main/gnome-shell/gnome-shell-dark.css | 38 +- .../gnome-shell/gnome-shell-light-alt.css | 42 +- .../gnome-shell-light-solid-alt.css | 42 +- .../gnome-shell/gnome-shell-light-solid.css | 42 +- src/main/gnome-shell/gnome-shell-light.css | 42 +- .../gnome-shell-theme.gresource.xml | 28 +- src/main/gtk-3.0/gtk-dark-solid.css | 2 +- src/main/gtk-3.0/gtk-dark.css | 2 +- src/main/gtk-3.0/gtk-light-solid.css | 2 +- src/main/gtk-3.0/gtk-light.css | 2 +- src/sass/_colors.scss | 4 +- src/sass/gnome-shell/_common.scss | 59 +- src/sass/gtk/_applications.scss | 12 +- 54 files changed, 402 insertions(+), 5053 deletions(-) create mode 100644 src/assets/gnome-shell/assets-dark/no-events.svg create mode 100644 src/assets/gnome-shell/assets-dark/no-notifications.svg create mode 100644 src/assets/gnome-shell/assets-light/no-events.svg create mode 100644 src/assets/gnome-shell/assets-light/no-notifications.svg create mode 100644 src/assets/gnome-shell/common-assets/process-working.svg delete mode 100644 src/assets/gnome-shell/common-assets/startup.svg delete mode 100644 src/assets/gnome-shell/common-assets/startup@2.svg create mode 100644 src/assets/gnome-shell/icons/color-pick.svg create mode 100644 src/assets/gnome-shell/icons/eye-not-looking-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/eye-open-negative-filled-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/keyboard-caps-lock-filled-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/keyboard-enter-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/keyboard-hide-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/keyboard-layout-filled-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/keyboard-shift-filled-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/message-indicator-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/pointer-double-click-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/pointer-drag-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/pointer-primary-click-symbolic.svg create mode 100644 src/assets/gnome-shell/icons/pointer-secondary-click-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/color-pick.svg delete mode 100644 src/assets/gnome-shell/source-assets/dash-placeholder.svg delete mode 100644 src/assets/gnome-shell/source-assets/eye-not-looking-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/eye-open-negative-filled-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/keyboard-caps-lock-filled-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/keyboard-enter-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/keyboard-hide-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/keyboard-layout-filled-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/keyboard-shift-filled-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/message-indicator-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/no-events.svg delete mode 100644 src/assets/gnome-shell/source-assets/no-notifications.svg delete mode 100644 src/assets/gnome-shell/source-assets/pointer-double-click-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/pointer-drag-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/pointer-primary-click-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/pointer-secondary-click-symbolic.svg delete mode 100644 src/assets/gnome-shell/source-assets/process-working.svg diff --git a/install.sh b/install.sh index cb5d88d..756e0bc 100755 --- a/install.sh +++ b/install.sh @@ -111,12 +111,17 @@ install() { echo "ButtonLayout=close,minimize,maximize:menu" >> ${THEME_DIR}/index.theme mkdir -p ${THEME_DIR}/gnome-shell - cp -r ${SRC_DIR}/assets/gnome-shell/source-assets/* ${THEME_DIR}/gnome-shell + cp -r ${SRC_DIR}/assets/gnome-shell/icons ${THEME_DIR}/gnome-shell cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}.css ${THEME_DIR}/gnome-shell/gnome-shell.css cp -r ${SRC_DIR}/assets/gnome-shell/common-assets ${THEME_DIR}/gnome-shell/assets cp -r ${SRC_DIR}/assets/gnome-shell/assets${color}/*.svg ${THEME_DIR}/gnome-shell/assets cp -r ${SRC_DIR}/assets/gnome-shell/activities/activities${icon}.svg ${THEME_DIR}/gnome-shell/assets/activities.svg + cd "${THEME_DIR}/gnome-shell" + ln -s assets/no-events.svg no-events.svg + ln -s assets/process-working.svg process-working.svg + ln -s assets/no-notifications.svg no-notifications.svg + if [[ ${alt} == '-alt' || ${opacity} == '-solid' ]] && [[ ${color} == '-light' ]]; then cp -r ${SRC_DIR}/assets/gnome-shell/activities-black/activities${icon}.svg ${THEME_DIR}/gnome-shell/assets/activities.svg fi diff --git a/src/assets/gnome-shell/assets-dark/no-events.svg b/src/assets/gnome-shell/assets-dark/no-events.svg new file mode 100644 index 0000000..fd56f6b --- /dev/null +++ b/src/assets/gnome-shell/assets-dark/no-events.svg @@ -0,0 +1,4 @@ +<svg width="64px" height="64px" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <path d="m10 2.3636c-4.2096 0-8 3.3803-8 7.75v44.5c0 4.3696 3.7905 7.75 8 7.75h44c4.2096 0 8-3.3803 8-7.75v-44.5c0-4.3696-3.7905-7.75-8-7.75zm0 20h12.125v8h-12.125zm16.125 0h11.875v8h-11.875zm15.875 0h12v8h-12zm-32 12h12.125v8h-12.125zm16.125 0h11.875v8h-11.875zm15.875 0h12v8h-12zm-32 12h12.125v8h-12.125zm16.125 0h11.875v8h-11.875zm15.875 0h12v8h-12z" fill="#dedede"/> + <rect x="42" y="34.364" width="12" height="8" fill="#dedede" opacity=".35" stroke-width="4"/> +</svg> diff --git a/src/assets/gnome-shell/assets-dark/no-notifications.svg b/src/assets/gnome-shell/assets-dark/no-notifications.svg new file mode 100644 index 0000000..7733357 --- /dev/null +++ b/src/assets/gnome-shell/assets-dark/no-notifications.svg @@ -0,0 +1,6 @@ +<svg width="64px" height="64px" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g fill="#dedede"> + <path d="m31.769 7.7935c-8.8366 0-13.321 6-16 16l-4 20c-0.43324 2.1662-1.7909 4-4 4v4h48v-4c-2.2092 0-3.5668-1.8338-4-4l-4-20c-2.1213-10-7.1634-16-16-16z"/> + <path d="m32.472 55.794a6 6 0 0 0 5.6484 4 6 6 0 0 0 5.6484-4z"/> + </g> +</svg> diff --git a/src/assets/gnome-shell/assets-light/no-events.svg b/src/assets/gnome-shell/assets-light/no-events.svg new file mode 100644 index 0000000..4339d54 --- /dev/null +++ b/src/assets/gnome-shell/assets-light/no-events.svg @@ -0,0 +1,4 @@ +<svg width="64px" height="64px" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <path d="m10 2.3636c-4.2096 0-8 3.3803-8 7.75v44.5c0 4.3696 3.7905 7.75 8 7.75h44c4.2096 0 8-3.3803 8-7.75v-44.5c0-4.3696-3.7905-7.75-8-7.75zm0 20h12.125v8h-12.125zm16.125 0h11.875v8h-11.875zm15.875 0h12v8h-12zm-32 12h12.125v8h-12.125zm16.125 0h11.875v8h-11.875zm15.875 0h12v8h-12zm-32 12h12.125v8h-12.125zm16.125 0h11.875v8h-11.875zm15.875 0h12v8h-12z" fill="#363636"/> + <rect x="42" y="34.364" width="12" height="8" fill="#363636" opacity=".35"/> +</svg> diff --git a/src/assets/gnome-shell/assets-light/no-notifications.svg b/src/assets/gnome-shell/assets-light/no-notifications.svg new file mode 100644 index 0000000..498a753 --- /dev/null +++ b/src/assets/gnome-shell/assets-light/no-notifications.svg @@ -0,0 +1,6 @@ +<svg width="64px" height="64px" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g fill="#363636"> + <path d="m31.769 7.7935c-8.8366 0-13.321 6-16 16l-4 20c-0.43324 2.1662-1.7909 4-4 4v4h48v-4c-2.2092 0-3.5668-1.8338-4-4l-4-20c-2.1213-10-7.1634-16-16-16z"/> + <path d="m32.472 55.794a6 6 0 0 0 5.6484 4 6 6 0 0 0 5.6484-4z"/> + </g> +</svg> diff --git a/src/assets/gnome-shell/common-assets/process-working.svg b/src/assets/gnome-shell/common-assets/process-working.svg new file mode 100644 index 0000000..6671e97 --- /dev/null +++ b/src/assets/gnome-shell/common-assets/process-working.svg @@ -0,0 +1,72 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32"> + <defs> + <g id="g" fill="#ffffff" fill-opacity=".7"> + <circle cx="8" cy="8" r="8" fill="none"/> + <path d="M8 1a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7h-3a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4V1z"/> + </g> + </defs> + <use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/> + <use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/> + <use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/> + <use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/> + <use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/> + <use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/> + <use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/> + <use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/> + <use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/> + <use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/> + <use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/> + <use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/> + <use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/> + <use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/> + <use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/> + <use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/> + <use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/> + <use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/> + <use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/> + <use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/> + <use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/> + <use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/> + <use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/> + <use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/> + <use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/> + <use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/> + <use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/> + <use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/> + <use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/> + <use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/> + <use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/> + <use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/> + <use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/> + <use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/> + <use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/> + <use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/> + <use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/> + <use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/> + <use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/> + <use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/> + <use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/> + <use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/> + <use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/> + <use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/> + <use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/> + <use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/> + <use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/> + <use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/> + <use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/> + <use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/> + <use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/> + <use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/> + <use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/> + <use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/> + <use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/> + <use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/> + <use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/> + <use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/> + <use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/> + <use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/> + <use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/> + <use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/> + <use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/> + <use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/> +</svg> diff --git a/src/assets/gnome-shell/common-assets/startup.svg b/src/assets/gnome-shell/common-assets/startup.svg deleted file mode 100644 index 0a95586..0000000 --- a/src/assets/gnome-shell/common-assets/startup.svg +++ /dev/null @@ -1,721 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="48" - height="48" - id="svg5453" - version="1.1" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="yast-bootloader.svg" - inkscape:export-filename="/home/uri/Iconos de KDE/Breeze/apps/software/firefox.png" - inkscape:export-xdpi="1024" - inkscape:export-ydpi="1024"> - <defs - id="defs5455"> - <linearGradient - id="linearGradient910"> - <stop - offset="0" - style="stop-color:#bbb9b9;stop-opacity:1" - id="stop906" /> - <stop - offset="1" - style="stop-color:#f3f9f9;stop-opacity:1" - id="stop908" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4231"> - <stop - style="stop-color:#016ed4;stop-opacity:1" - offset="0" - id="stop4233" /> - <stop - style="stop-color:#00b1ff;stop-opacity:1" - offset="1" - id="stop4235" /> - </linearGradient> - <linearGradient - id="linearGradient4232"> - <stop - style="stop-color:#3889e9;stop-opacity:1" - offset="0" - id="stop4234-0" /> - <stop - style="stop-color:#5ea5fb;stop-opacity:1" - offset="1" - id="stop4236" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4232" - id="linearGradient3426" - x1="399.57144" - y1="545.79797" - x2="399.57144" - y2="517.79797" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4231" - id="linearGradient4237" - x1="-324.94363" - y1="649.7406" - x2="-328.20999" - y2="307.75275" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient910" - id="linearGradient4262" - gradientUnits="userSpaceOnUse" - x1="-326.59558" - y1="651.76007" - x2="-326.59558" - y2="304.86606" - gradientTransform="translate(1.796875e-6,-2.8320312e-6)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4231" - id="linearGradient4266" - gradientUnits="userSpaceOnUse" - x1="-324.94363" - y1="649.7406" - x2="-328.20999" - y2="307.75275" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4231" - id="linearGradient4270" - gradientUnits="userSpaceOnUse" - x1="-324.94363" - y1="649.7406" - x2="-328.20999" - y2="307.75275" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4231" - id="linearGradient4274" - gradientUnits="userSpaceOnUse" - x1="-324.94363" - y1="649.7406" - x2="-328.20999" - y2="307.75275" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4231" - id="linearGradient4278" - gradientUnits="userSpaceOnUse" - x1="-324.94363" - y1="649.7406" - x2="-328.20999" - y2="307.75275" /> - <linearGradient - osb:paint="gradient" - id="linearGradient4207"> - <stop - id="stop3371" - offset="0" - style="stop-color:#3498db;stop-opacity:1;" /> - <stop - id="stop3373" - offset="1" - style="stop-color:#3498db;stop-opacity:0;" /> - </linearGradient> - <style - type="text/css" - id="current-color-scheme">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-8">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-7">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-0">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-8-6">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-7-6">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-4">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-8-0">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style - type="text/css" - id="current-color-scheme-7-7">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <linearGradient - id="linearGradient8467-7-3"> - <stop - id="stop8469-4-0" - style="stop-color:#787777;stop-opacity:1" - offset="0" /> - <stop - id="stop8471-7-5" - style="stop-color:#cde2e9;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8467-7-3" - id="linearGradient898" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.90041913,0,0,0.90041913,-32.452143,47.674009)" - x1="-326.59558" - y1="651.76007" - x2="-326.59558" - y2="304.86606" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#5a5a5a" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="3.6983484" - inkscape:cx="24.65967" - inkscape:cy="47.259031" - inkscape:document-units="px" - inkscape:current-layer="g4222" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1366" - inkscape:window-height="710" - inkscape:window-x="0" - inkscape:window-y="28" - inkscape:window-maximized="1" - inkscape:showpageshadow="false" - borderlayer="true" - showguides="false" - inkscape:guide-bbox="true" - showborder="false" - inkscape:snap-bbox="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:bbox-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid4063" /> - <sodipodi:guide - position="1.1650391e-05,47.999996" - orientation="4,0" - id="guide4146" - inkscape:locked="false" /> - <sodipodi:guide - position="20,43.999996" - orientation="0,48" - id="guide4148" - inkscape:locked="false" /> - <sodipodi:guide - position="48.000012,31" - orientation="-4,0" - id="guide4150" - inkscape:locked="false" /> - <sodipodi:guide - position="60,-10" - orientation="0,-48" - id="guide4152" - inkscape:locked="false" /> - <sodipodi:guide - position="1.1650391e-05,4.0000264" - orientation="4,0" - id="guide4154" - inkscape:locked="false" /> - <sodipodi:guide - position="2,44" - orientation="0,48" - id="guide4156" - inkscape:locked="false" /> - <sodipodi:guide - position="48.000012,2.6367188e-05" - orientation="-4,0" - id="guide4158" - inkscape:locked="false" /> - <sodipodi:guide - position="-10,2.6367188e-05" - orientation="0,-48" - id="guide4160" - inkscape:locked="false" /> - <sodipodi:guide - position="48.000012,48.000026" - orientation="0,-4" - id="guide4162" - inkscape:locked="false" /> - <sodipodi:guide - position="44.000012,48.000026" - orientation="48,0" - id="guide4164" - inkscape:locked="false" /> - <sodipodi:guide - position="44.000012,2.6367188e-05" - orientation="0,4" - id="guide4166" - inkscape:locked="false" /> - <sodipodi:guide - position="48.000012,2.6367188e-05" - orientation="-48,0" - id="guide4168" - inkscape:locked="false" /> - <sodipodi:guide - position="4.0000422,48.000026" - orientation="0,-4" - id="guide4170" - inkscape:locked="false" /> - <sodipodi:guide - position="4.2167969e-05,48.000026" - orientation="48,0" - id="guide4172" - inkscape:locked="false" /> - <sodipodi:guide - position="4.2167969e-05,2.6367188e-05" - orientation="0,4" - id="guide4174" - inkscape:locked="false" /> - <sodipodi:guide - position="4.0000117,22" - orientation="-48,0" - id="guide4176" - inkscape:locked="false" /> - <sodipodi:guide - position="70,4.0000264" - orientation="0,8" - id="guide4155" - inkscape:locked="false" /> - <sodipodi:guide - position="28.000012,43.999996" - orientation="0,-8" - id="guide4159" - inkscape:locked="false" /> - <sodipodi:guide - position="4.0000117,24.000026" - orientation="20,0" - id="guide4205" - inkscape:locked="false" /> - <sodipodi:guide - position="4.0000117,4.0000264" - orientation="0,20" - id="guide4207" - inkscape:locked="false" /> - <sodipodi:guide - position="25,30" - orientation="-20,0" - id="guide4209" - inkscape:locked="false" /> - <sodipodi:guide - position="65,20" - orientation="0,-20" - id="guide4211" - inkscape:locked="false" /> - <sodipodi:guide - position="45,2.6367188e-05" - orientation="0,1" - id="guide4243" - inkscape:locked="false" /> - </sodipodi:namedview> - <metadata - id="metadata5458"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Capa 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-384.57143,-499.798)"> - <g - id="g4207" - transform="matrix(0.09021051,0,0,0.09021051,438.33618,482.07658)"> - <g - id="g4571" - transform="matrix(1.2040873,0,0,1.2040873,-42.995416,-139.03817)"> - <g - transform="matrix(9.206295,0,0,9.206295,-4262.7466,-3635.204)" - id="layer1-5" - inkscape:label="Capa 1"> - <g - transform="matrix(0.09021051,0,0,0.09021051,438.33618,482.07658)" - id="g4207-8"> - <g - transform="matrix(1.2040873,0,0,1.2040873,63.520816,-89.411289)" - id="g4571-5"> - <g - transform="matrix(15.075,0,0,15.075,-6218.9215,-8263.6188)" - id="layer1-9" - inkscape:label="Capa 1"> - <circle - style="opacity:1;fill:url(#linearGradient3426);fill-opacity:1;stroke:none;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4233" - cx="400.57138" - cy="531.79791" - r="0" /> - </g> - </g> - </g> - </g> - <g - style="display:inline" - transform="matrix(9.206295,0,0,9.206295,-4388.4576,-4368.3795)" - id="layer1-4" - inkscape:label="Capa 1" /> - <g - id="g5299" - transform="translate(-14.073535,-2.0105049)"> - <g - id="g4724" - transform="matrix(0.95946374,0,0,0.95946374,-17.710787,32.814237)"> - <g - transform="translate(107.06922,39.919379)" - id="g6482"> - <g - id="g4224" - transform="translate(2.9510586e-6,-0.87876417)"> - <g - transform="matrix(0.94824246,0,0,0.94824246,-4.6469261,6.8243876)" - id="g5856" /> - <g - id="g4222" - transform="matrix(1.051075,0,0,1.051075,16.460236,-22.650073)"> - <g - id="g4235" - transform="matrix(1.2631853,0,0,1.2631853,90.227386,-154.96066)" - style="fill:url(#linearGradient4237);fill-opacity:1;stroke:none;stroke-width:15.27018261;stroke-miterlimit:4;stroke-dasharray:none"> - <circle - r="173.44701" - cy="478.74667" - cx="-325.88733" - id="path4217" - style="opacity:1;fill:url(#linearGradient4262);fill-opacity:1;stroke:none;stroke-width:15.44461155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <g - style="fill:url(#linearGradient4278);fill-opacity:1;stroke:none;stroke-width:1.73581481;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:label="Capa 1" - id="layer1-14" - transform="matrix(8.7971266,0,0,8.7971266,-3865.8704,-4050.7977)"> - <g - style="fill:url(#linearGradient4270);fill-opacity:1;stroke:none;stroke-width:1.03436923;stroke-miterlimit:4;stroke-dasharray:none" - transform="matrix(1.6781385,0,0,1.6781385,-263.91891,-368.65033)" - id="layer1-1" - inkscape:label="Capa 1"> - <path - cx="396.61932" - cy="526.61151" - r="13.407713" - id="path4693" - style="opacity:1;fill:url(#linearGradient4266);fill-opacity:1;stroke:none;stroke-width:1.03436923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0" - d="" /> - </g> - <g - transform="matrix(1.0907255,0,0,1.0907255,-87.783225,-57.81163)" - id="layer1-8" - inkscape:label="Capa 1" - style="fill:url(#linearGradient4274);fill-opacity:1;stroke:none;stroke-width:1.59143138;stroke-miterlimit:4;stroke-dasharray:none" /> - </g> - <circle - style="opacity:1;fill:url(#linearGradient898);fill-opacity:1;stroke:none;stroke-width:15.4446106;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="circle896" - cx="-325.88733" - cy="478.74667" - r="156.175" /> - </g> - <path - style="fill:#484d4f;fill-opacity:1" - inkscape:connector-curvature="0" - sketch:type="MSShapeGroup" - id="Rocket-3" - d="m -284.08921,495.57931 -10.99656,39.61305 c -0.12974,0.47483 -0.40651,0.89337 -0.77843,1.20958 l -33.81221,28.17546 c -0.44111,0.36327 -0.98082,0.55528 -1.5361,0.55528 -0.24217,0 -0.46705,-0.0346 -0.70058,-0.10725 -0.77842,-0.23958 -1.37781,-0.85022 -1.60442,-1.62847 l -11.61411,-39.99775 c -8.46321,0.34164 -15.93178,-1.59854 -22.07788,-5.82998 l -15.39034,12.6687 c -0.97649,0.7992 -2.39669,0.71789 -3.27112,-0.20066 l -11.4273,-12.0489 c -0.4411,-0.46619 -0.67464,-1.09421 -0.65734,-1.74385 0,-0.64522 0.30273,-1.25663 0.77843,-1.69255 l 15.23639,-14.00224 c -1.30084,-3.5561 -3.63437,-12.41649 -1.16071,-25.89726 l -39.15654,-14.32702 c -0.76113,-0.27764 -1.33111,-0.92321 -1.51448,-1.71391 -0.19027,-0.79054 0,-1.61991 0.60545,-2.20978 l 30.31881,-31.9196 c 0.35462,-0.37192 0.81302,-0.62015 1.31814,-0.71356 l 39.93669,-7.15503 c 7.51613,-8.70644 16.26045,-17.51553 25.99769,-26.20068 56.07346,-49.99932 99.90574,-57.46209 121.04085,-57.46209 6.95654,0 10.79158,0.84589 10.95332,0.88049 0.95141,0.21363 1.67621,0.98307 1.84314,1.94476 0.42381,2.48759 9.5461,61.76186 -67.43241,138.89795 -0.1038,0.0986 -10.42053,10.12126 -24.89319,20.90505 l 0,0 z m -3.63871,-43.11794 c 13.39411,0 24.24882,-10.87772 24.24882,-24.29864 0,-13.42093 -10.85471,-24.29873 -24.24882,-24.29873 -13.39325,0 -24.24883,10.8778 -24.24883,24.29873 0,13.42092 10.85558,24.29864 24.24883,24.29864 z m -91.27127,86.92402 c 0.51895,-0.5129 1.27489,-0.71788 1.98758,-0.54316 0.70923,0.17557 1.28354,0.70057 1.5136,1.39337 l 5.51558,16.41709 c 0.26813,0.78621 0.0865,1.65415 -0.5449,2.22681 l -26.15597,25.05104 c -0.39787,0.38056 -0.92547,0.59419 -1.47555,0.59419 l -22.04847,0 c -0.8701,0 -1.65026,-0.53019 -1.97893,-1.33361 -0.32001,-0.80784 -0.12973,-1.73104 0.49301,-2.33796 l 42.69319,-41.46803 z m -29.21,-13.38676 c 0.40651,-0.42294 0.96352,-1.31217 1.54388,-1.31217 l 0.0864,0 c 0.60545,0 1.16505,0.93178 1.55685,1.38915 l 9.48211,11.64282 c 0.72653,0.84243 0.68328,2.09864 -0.0864,2.89359 l -42.26246,43.27605 c -0.39786,0.40997 -0.95141,0.6409 -1.52225,0.6409 l -6.9868,0 -2.13289,0 c -1.17716,0 -2.13289,-0.95737 -2.13289,-2.13712 l 0,-10.23232 c 0,-0.54749 0.21623,-1.40195 0.58814,-1.79946 l 41.89919,-44.3617 z m -41.84383,5.26579 30.5359,-29.8252 c 0.70923,-0.69713 1.80421,-0.80351 2.62762,-0.27332 l 12.50238,7.93285 c 0.55354,0.35029 0.90817,0.92753 0.97649,1.57294 0.0865,0.64523 -0.15568,1.2908 -0.62274,1.74817 l -43.03827,42.77596 c -0.40652,0.40564 -0.95574,0.62015 -1.50583,0.62015 -0.27678,0 -0.55354,-0.0519 -0.82167,-0.16693 -0.78707,-0.32867 -1.30516,-1.10701 -1.30516,-1.97038 l 0,-20.88792 c 0,-0.57257 0.23352,-1.12837 0.64004,-1.52588 z" /> - </g> - </g> - </g> - </g> - </g> - </g> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/common-assets/startup@2.svg b/src/assets/gnome-shell/common-assets/startup@2.svg deleted file mode 100644 index ee23adf..0000000 --- a/src/assets/gnome-shell/common-assets/startup@2.svg +++ /dev/null @@ -1,326 +0,0 @@ -<svg width="96" height="96" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink"> - <defs> - <linearGradient id="linearGradient4231"> - <stop stop-color="#016ed4" offset="0"/> - <stop stop-color="#00b1ff" offset="1"/> - </linearGradient> - <linearGradient id="linearGradient3426" x1="399.57" x2="399.57" y1="545.8" y2="517.8" gradientUnits="userSpaceOnUse"> - <stop stop-color="#3889e9" offset="0"/> - <stop stop-color="#5ea5fb" offset="1"/> - </linearGradient> - <linearGradient id="linearGradient4237" x1="-324.94" x2="-328.21" y1="649.74" y2="307.75" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4231"/> - <linearGradient id="linearGradient4262" x1="-326.6" x2="-326.6" y1="651.76" y2="304.87" gradientTransform="translate(1.7969e-6 -2.832e-6)" gradientUnits="userSpaceOnUse"> - <stop stop-color="#bbb9b9" offset="0"/> - <stop stop-color="#f3f9f9" offset="1"/> - </linearGradient> - <style id="current-color-scheme" type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <style type="text/css">.ColorScheme-Text { - color:#31363b; - } - .ColorScheme-Background{ - color:#eff0f1; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground{ - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#3daee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground{ - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#3daee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - }</style> - <linearGradient id="linearGradient898" x1="-326.6" x2="-326.6" y1="651.76" y2="304.87" gradientTransform="matrix(.90042 0 0 .90042 -32.452 47.674)" gradientUnits="userSpaceOnUse"> - <stop stop-color="#787777" offset="0"/> - <stop stop-color="#cde2e9" offset="1"/> - </linearGradient> - </defs> - <g transform="translate(-384.57 -451.8)"> - <g transform="matrix(.090211 0 0 .090211 438.34 482.08)"> - <g transform="matrix(1.2041 0 0 1.2041 -42.995 -139.04)"> - <g transform="matrix(9.2063 0 0 9.2063 -4262.7 -3635.2)"> - <g transform="matrix(.090211 0 0 .090211 438.34 482.08)"> - <g transform="matrix(1.2041 0 0 1.2041 63.521 -89.411)"> - <g transform="matrix(15.075 0 0 15.075 -6218.9 -8263.6)"> - <circle cx="400.57" cy="531.8" r="0" fill="url(#linearGradient3426)"/> - </g> - </g> - </g> - </g> - <g transform="translate(-14.074 -2.0105)"> - <g transform="matrix(.95946 0 0 .95946 -17.711 32.814)"> - <g transform="translate(107.07 39.919)"> - <g transform="translate(2.9511e-6 -.87876)"> - <g transform="matrix(1.0511 0 0 1.0511 16.46 -22.65)"> - <g transform="matrix(2 0 0 2 539.63 -669.43)"> - <g transform="matrix(1.2632 0 0 1.2632 90.227 -154.96)"> - <circle cx="-325.89" cy="478.75" r="173.45" fill="url(#linearGradient4262)"/> - <g transform="matrix(8.7971 0 0 8.7971 -3865.9 -4050.8)" fill="url(#linearGradient4237)"> - <g transform="matrix(1.6781 0 0 1.6781 -263.92 -368.65)" fill="url(#linearGradient4237)"></g> - </g> - <circle cx="-325.89" cy="478.75" r="156.18" fill="url(#linearGradient898)"/> - </g> - <path d="m-284.09 495.58-10.997 39.613c-0.12974 0.47483-0.40651 0.89337-0.77843 1.2096l-33.812 28.175c-0.44111 0.36327-0.98082 0.55528-1.5361 0.55528-0.24217 0-0.46705-0.0346-0.70058-0.10725-0.77842-0.23958-1.3778-0.85022-1.6044-1.6285l-11.614-39.998c-8.4632 0.34164-15.932-1.5985-22.078-5.83l-15.39 12.669c-0.97649 0.7992-2.3967 0.71789-3.2711-0.20066l-11.427-12.049c-0.4411-0.46619-0.67464-1.0942-0.65734-1.7438 0-0.64522 0.30273-1.2566 0.77843-1.6926l15.236-14.002c-1.3008-3.5561-3.6344-12.416-1.1607-25.897l-39.157-14.327c-0.76113-0.27764-1.3311-0.92321-1.5145-1.7139-0.19027-0.79054 0-1.6199 0.60545-2.2098l30.319-31.92c0.35462-0.37192 0.81302-0.62015 1.3181-0.71356l39.937-7.155c7.5161-8.7064 16.26-17.516 25.998-26.201 56.073-49.999 99.906-57.462 121.04-57.462 6.9565 0 10.792 0.84589 10.953 0.88049 0.95141 0.21363 1.6762 0.98307 1.8431 1.9448 0.42381 2.4876 9.5461 61.762-67.432 138.9-0.1038 0.0986-10.421 10.121-24.893 20.905zm-3.6387-43.118c13.394 0 24.249-10.878 24.249-24.299 0-13.421-10.855-24.299-24.249-24.299-13.393 0-24.249 10.878-24.249 24.299 0 13.421 10.856 24.299 24.249 24.299zm-91.271 86.924c0.51895-0.5129 1.2749-0.71788 1.9876-0.54316 0.70923 0.17557 1.2835 0.70057 1.5136 1.3934l5.5156 16.417c0.26813 0.78621 0.0865 1.6542-0.5449 2.2268l-26.156 25.051c-0.39787 0.38056-0.92547 0.59419-1.4756 0.59419h-22.048c-0.8701 0-1.6503-0.53019-1.9789-1.3336-0.32001-0.80784-0.12973-1.731 0.49301-2.338l42.693-41.468zm-29.21-13.387c0.40651-0.42294 0.96352-1.3122 1.5439-1.3122h0.0864c0.60545 0 1.165 0.93178 1.5568 1.3892l9.4821 11.643c0.72653 0.84243 0.68328 2.0986-0.0864 2.8936l-42.262 43.276c-0.39786 0.40997-0.95141 0.6409-1.5222 0.6409h-9.1197c-1.1772 0-2.1329-0.95737-2.1329-2.1371v-10.232c0-0.54749 0.21623-1.402 0.58814-1.7995l41.899-44.362zm-41.844 5.2658 30.536-29.825c0.70923-0.69713 1.8042-0.80351 2.6276-0.27332l12.502 7.9328c0.55354 0.35029 0.90817 0.92753 0.97649 1.5729 0.0865 0.64523-0.15568 1.2908-0.62274 1.7482l-43.038 42.776c-0.40652 0.40564-0.95574 0.62015-1.5058 0.62015-0.27678 0-0.55354-0.0519-0.82167-0.16693-0.78707-0.32867-1.3052-1.107-1.3052-1.9704v-20.888c0-0.57257 0.23352-1.1284 0.64004-1.5259z" fill="#484d4f"/> - </g> - </g> - </g> - </g> - </g> - </g> - </g> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/icons/color-pick.svg b/src/assets/gnome-shell/icons/color-pick.svg new file mode 100644 index 0000000..2246776 --- /dev/null +++ b/src/assets/gnome-shell/icons/color-pick.svg @@ -0,0 +1,10 @@ +<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"> + <defs> + <filter id="a" color-interpolation-filters="sRGB"> + <feGaussianBlur stdDeviation=".6"/> + </filter> + </defs> + <path d="M1 1v9a9 9 0 109-9H1z" filter="url(#a)" opacity=".6" transform="translate(0 .5)"/> + <path d="M1.5 1.5V10A8.5 8.5 0 1010 1.5H1.5z" stroke="#fff"/> + <circle cx="10" cy="10" r="7" fill="#50dbb5"/> +</svg> diff --git a/src/assets/gnome-shell/icons/eye-not-looking-symbolic.svg b/src/assets/gnome-shell/icons/eye-not-looking-symbolic.svg new file mode 100644 index 0000000..3dacfe1 --- /dev/null +++ b/src/assets/gnome-shell/icons/eye-not-looking-symbolic.svg @@ -0,0 +1,6 @@ +<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g transform="matrix(.90463 0 0 .83333 .76299 1.3333)" fill="#363636"> + <path transform="matrix(1.1054 0 0 1.2 -.84343 -1.6)" d="m7.998 2.0391c-3.7699 0.004577-7.0701 2.3668-8.0078 5.7305a1.042 0.95988 0 0 0 0 0.47852c0.94569 3.3561 4.2458 5.7106 8.0098 5.7129a1.042 0.95988 0 0 0 0.0019531 0c3.7699-0.004584 7.0701-2.3668 8.0078-5.7305a1.042 0.95988 0 0 0 0-0.48047c-0.94569-3.3561-4.2458-5.7086-8.0098-5.7109a1.042 0.95988 0 0 0-0.0019531 0zm0.0019531 0.96094c3.2948 0.0020405 6.1722 2.0544 7 4.9922-0.82087 2.9444-3.7 5.0038-7 5.0078-3.2948-0.002041-6.1722-2.0544-7-4.9922 0.82087-2.9444 3.7-5.0038 7-5.0078z" fill="#363636"/> + </g> + <path d="m8 5a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3zm0 1a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" fill="#363636"/> +</svg> diff --git a/src/assets/gnome-shell/icons/eye-open-negative-filled-symbolic.svg b/src/assets/gnome-shell/icons/eye-open-negative-filled-symbolic.svg new file mode 100644 index 0000000..5ca48d1 --- /dev/null +++ b/src/assets/gnome-shell/icons/eye-open-negative-filled-symbolic.svg @@ -0,0 +1,6 @@ +<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g transform="matrix(-.90463 0 0 .83333 15.237 1.3333)" fill="#363636"> + <path transform="matrix(1.1054 0 0 1.2 -.84343 -1.6)" d="m7.998 2.0391c-3.7698 0.004577-7.0701 2.3668-8.0078 5.7305a1.042 0.95988 0 0 0 0 0.47852c0.38076 1.3513 1.1472 2.5362 2.168 3.4746l0.71094-0.71094c-0.87634-0.81542-1.5396-1.8343-1.8691-3.0039 0.82085-2.9444 3.7001-5.0038 7-5.0078 0.86333 5.345e-4 1.694 0.14902 2.4707 0.41016l0.75977-0.75977c-1-0.39229-2.0938-0.61063-3.2305-0.61133a1.042 0.95988 0 0 0-0.00195 0zm5.8457 2.2402-0.71094 0.71094c0.87533 0.81512 1.5379 1.8332 1.8672 3.002-0.82085 2.9444-3.7001 5.0038-7 5.0078-0.86243-5.24e-4 -1.6928-0.1476-2.4688-0.4082l-0.75781 0.75781c0.9991 0.3917 2.0912 0.61064 3.2266 0.61133a1.042 0.95988 0 0 0 0.00195 0c3.7698-0.0046 7.0701-2.3668 8.0078-5.7305a1.042 0.95988 0 0 0 0-0.48047c-0.38039-1.35-1.1468-2.5331-2.166-3.4707zm-5.8438 0.7207a3 3 0 0 0-3 3 3 3 0 0 0 0.10547 0.77539l0.90039-0.90039a2 2 0 0 1 1.8691-1.8691l0.90234-0.90234a3 3 0 0 0-0.77734-0.10352zm2.8945 2.2285-0.90039 0.90039a2 2 0 0 1-1.8652 1.8652l-0.90234 0.90234a3 3 0 0 0 0.77344 0.10352 3 3 0 0 0 3-3 3 3 0 0 0-0.10547-0.77148z" fill="#363636" opacity=".35"/> + </g> + <rect transform="matrix(-.70711 -.70711 -.70711 .70711 0 0)" x="-19.314" y="-.49958" width="16" height="1" ry="0" fill="#363636"/> +</svg> diff --git a/src/assets/gnome-shell/icons/keyboard-caps-lock-filled-symbolic.svg b/src/assets/gnome-shell/icons/keyboard-caps-lock-filled-symbolic.svg new file mode 100644 index 0000000..99bea5b --- /dev/null +++ b/src/assets/gnome-shell/icons/keyboard-caps-lock-filled-symbolic.svg @@ -0,0 +1,3 @@ +<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> + <path d="m7.9629 0.5a1.0001 1.0001 0 0 0-0.72266 0.34961l-6 7a1.0001 1.0001 0 0 0-0.24023 0.65039v0.5a1.0001 1.0001 0 0 0 1 1v2a1.0001 1.0001 0 0 0-1 1v2a1.0001 1.0001 0 0 0 1 1h12a1.0001 1.0001 0 0 0 1-1v-2a1.0001 1.0001 0 0 0-1-1v-2a1.0001 1.0001 0 0 0 1-1v-0.5a1.0001 1.0001 0 0 0-0.24023-0.65039l-6-7a1.0001 1.0001 0 0 0-0.79688-0.34961zm0.037109 1 6 7v0.5h-1v4h1v2h-12v-2h1v-4h-1v-0.5l6-7zm-0.56055 5.5-2.1445 6h1.2051l0.38281-0.98828h2.2324l0.38477 0.98828h1.2793l-2.2637-6h-1.0762zm0.56055 1.7148 0.77539 2.2852h-1.5547l0.7793-2.2852z" fill="#363636"/> +</svg> diff --git a/src/assets/gnome-shell/icons/keyboard-enter-symbolic.svg b/src/assets/gnome-shell/icons/keyboard-enter-symbolic.svg new file mode 100644 index 0000000..70a27b3 --- /dev/null +++ b/src/assets/gnome-shell/icons/keyboard-enter-symbolic.svg @@ -0,0 +1,3 @@ +<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> + <path d="m13 5v2c0 1.108-0.892 2-2 2h-7.2949l1.9766-1.9766c0.19587-0.19587 0.19587-0.51116 0-0.70703-0.097934-0.097934-0.22571-0.14648-0.35352-0.14648s-0.25558 0.04855-0.35352 0.14648l-2.8281 2.8281c-0.1469 0.1469-0.18283 0.3605-0.10938 0.54102v0.00195c0.024482 0.05962 0.060809 0.1155 0.10938 0.16406l2.8281 2.8301c0.19587 0.19587 0.51116 0.19587 0.70703 0 0.19587-0.19587 0.19587-0.51116 0-0.70703l-1.9727-1.9746h7.291c1.662 0 3-1.338 3-3v-2z" fill="#363636"/> +</svg> diff --git a/src/assets/gnome-shell/icons/keyboard-hide-symbolic.svg b/src/assets/gnome-shell/icons/keyboard-hide-symbolic.svg new file mode 100644 index 0000000..5ba9717 --- /dev/null +++ b/src/assets/gnome-shell/icons/keyboard-hide-symbolic.svg @@ -0,0 +1,10 @@ +<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <path d="m5 12 3 4 3-4z" fill="#363636"/> + <path d="m3 0c-1.108 0-2 0.892-2 2v7c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-7c0-1.108-0.892-2-2-2zm0 1h10c0.554 0 1 0.446 1 1v7c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-7c0-0.554 0.446-1 1-1z" fill="#333333" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".25" stroke-width="1.0016" style="paint-order:markers stroke fill"/> + <rect x="6" y="6" width="4" height="2" rx="1" ry="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.8284" style="paint-order:markers stroke fill"/> + <rect x="11" y="6" width="2" height="2" rx="1" ry="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/> + <rect x="3" y="6" width="2" height="2" rx="1" ry="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/> + <rect x="4" y="3" width="2" height="2" rx="1" ry="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/> + <rect x="7" y="3" width="2" height="2" rx="1" ry="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/> + <rect x="10" y="3" width="2" height="2" rx="1" ry="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/> +</svg> diff --git a/src/assets/gnome-shell/icons/keyboard-layout-filled-symbolic.svg b/src/assets/gnome-shell/icons/keyboard-layout-filled-symbolic.svg new file mode 100644 index 0000000..06e2f53 --- /dev/null +++ b/src/assets/gnome-shell/icons/keyboard-layout-filled-symbolic.svg @@ -0,0 +1,4 @@ +<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> + <path d="m5.0273 2.0469c-1.5565 0.048758-2.7774 0.31438-3.5215 0.6543-0.40593 0.18544-0.70507 0.38119-0.91211 0.54297-0.20704 0.16178-0.36523 0.3418-0.36523 0.3418-0.14782 0.17925-0.22862 0.40438-0.22852 0.63672v8.7773c-4.4155e-4 0.87416 1.0419 1.3281 1.6816 0.73242 0 0-0.043969 0.03077 0.042969-0.02148 0.086938-0.05226 0.25409-0.14226 0.52734-0.23828 0.5465-0.19204 1.5184-0.41406 3.0918-0.41406 1.2419 0 2.1765 0.211 3.1895 0.44531 1.013 0.23431 2.1083 0.49609 3.4922 0.49609 2.3641 0 3.7402-1.5781 3.7402-1.5781 0.15165-0.1805 0.23466-0.40878 0.23438-0.64453v-8.7773c-4.4e-5 -0.85406-1.0015-1.3151-1.6504-0.75977 0 0-0.72405 0.66797-2.3574 0.66797-1.4738 0-2.2551-0.19759-3.1523-0.42383-0.83656-0.21094-1.8577-0.4198-3.2598-0.45117-0.18018 0.0058595-0.38605 0.0060688-0.55273 0.013672zm0.31641 0.95312c2.9477 0 3.5079 0.9082 6.6484 0.9082 1.945 0 3.0078-0.9082 3.0078-0.9082v8.7773s-1.0295 1.2227-2.9746 1.2227c-2.519 0-3.9669-0.94141-6.6816-0.94141-3.3349 0-4.3438 0.94141-4.3438 0.94141v-8.7773s1.0089-1.2227 4.3438-1.2227z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#363636" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/> + <path d="m7.578 5.0544c1.3254 0 2.369 1.0776 2.369 2.4313s-1.0436 2.4625-2.369 2.4625-2.4002-1.1088-2.4002-2.4625 1.0748-2.4313 2.4002-2.4313zm-4.5509 0.9663 0.9663 1.0286-0.93512-0.03112 0.93512 0.99747-0.9663-0.03112 0.9663 1.0286-0.99747-0.03112 0.031121-0.99747h-0.031121l0.031121-0.96635h-0.031121zm4.5509 0c-0.79199 0-1.465 0.65613-1.465 1.465s0.67304 1.465 1.465 1.465c0.79199 0 1.4339-0.65613 1.4339-1.465s-0.64187-1.465-1.4339-1.465zm4.3639 0v0.99747l0.03112 0.9663h-0.03112l0.03112 0.99747-0.99747 0.03112 0.9663-1.0286-0.9663 0.03112 0.93512-0.99747-0.93512 0.03112zm-7.9174 2.9612 0.9663 1.0286-0.99747-0.03112zm6.9199 0 0.03112 0.99747-0.99747 0.03112zm-5.9225 0.99747 0.9663 1.0286-0.99747-0.03112zm4.925 0 0.03112 0.99747-0.99747 0.03112z" fill="#363636"/> +</svg> diff --git a/src/assets/gnome-shell/icons/keyboard-shift-filled-symbolic.svg b/src/assets/gnome-shell/icons/keyboard-shift-filled-symbolic.svg new file mode 100644 index 0000000..f02389c --- /dev/null +++ b/src/assets/gnome-shell/icons/keyboard-shift-filled-symbolic.svg @@ -0,0 +1,5 @@ +<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g transform="matrix(1 0 0 -1 -361 45.001)"> + <path d="m369.57 40.186 5.1783-5.1411c0.32957-0.32704 0.3315-0.8592 4e-3 -1.1885-0.32691-0.32928-0.85904-0.3312-1.1883-0.0043l-4.582 4.5491-4.5488-4.582c-0.32704-0.32928-0.85913-0.3312-1.1884-0.0043-0.32942 0.32691-0.33134 0.85904-4e-3 1.1885l5.1411 5.1785c0.16353 0.16464 0.37811 0.24735 0.5931 0.24812 0.21509 7.77e-4 0.43042-0.08053 0.59506-0.24396z" fill="#363636" stroke-width=".026558"/> + </g> +</svg> diff --git a/src/assets/gnome-shell/icons/message-indicator-symbolic.svg b/src/assets/gnome-shell/icons/message-indicator-symbolic.svg new file mode 100644 index 0000000..7397ba2 --- /dev/null +++ b/src/assets/gnome-shell/icons/message-indicator-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> + <rect fill="#363636" x="4" y="4" width="8" height="8" ry="4"/> +</svg> diff --git a/src/assets/gnome-shell/icons/pointer-double-click-symbolic.svg b/src/assets/gnome-shell/icons/pointer-double-click-symbolic.svg new file mode 100644 index 0000000..625e188 --- /dev/null +++ b/src/assets/gnome-shell/icons/pointer-double-click-symbolic.svg @@ -0,0 +1,7 @@ +<svg width="20" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g> + <g transform="translate(-19 -.75)"> + <path d="m19.855 0.45508v20.084c1.4147-1.3815 2.8294-2.763 4.2441-4.1445 0.5882 1.1887 1.1584 2.3866 1.7585 3.5691 1.1086 1.6403 4.1575 0.46513 3.898-1.4959 0.01057-0.47023-0.40558-0.90844-0.43465-1.3136l0.7782-0.75963c0.5882 1.1887 1.1584 2.3866 1.7585 3.5691 1.1086 1.6403 4.1575 0.46513 3.898-1.4959-0.19232-0.9043-0.71785-1.698-1.0686-2.549-0.23891-0.51266-0.47782-1.0253-0.71672-1.538h5.2676c-4.4609-4.6419-8.9219-9.2839-13.383-13.926v6.2441c-2-2.0814-4-4.1628-6-6.2441zm1.5 3.7266c2 2.0814 4 4.1628 6 6.2441v-6.2441c2.7865 2.8997 5.5729 5.7995 8.3594 8.6992h-4.0996c0.88347 1.9034 1.782 3.8003 2.6561 5.7078 0.0065 0.62278-1.2276 0.98058-1.3251 0.20712-0.80433-1.6403-1.6087-3.2805-2.413-4.9208-1.0202 0.99544-2.0404 1.9909-3.0605 2.9863 0.26364 0.60805 0.5968 1.1925 0.81469 1.8161-0.18266 0.60104-1.2683 0.8373-1.3659 0.06795-0.79609-1.6235-1.5922-3.2469-2.3883-4.8704-1.0592 1.0339-2.1185 2.0677-3.1777 3.1016-4e-6 -4.265-7e-6 -8.53-1.1e-5 -12.795z" fill="#363636"/> + </g> + </g> +</svg> diff --git a/src/assets/gnome-shell/icons/pointer-drag-symbolic.svg b/src/assets/gnome-shell/icons/pointer-drag-symbolic.svg new file mode 100644 index 0000000..eb05cbf --- /dev/null +++ b/src/assets/gnome-shell/icons/pointer-drag-symbolic.svg @@ -0,0 +1,3 @@ +<svg width="20" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <path d="m10.705 1.6719c-0.83652 0.074695-1.8182-0.13657-2.4473 0.57617-0.17925 0.5031-0.39107 0.7297-0.94531 0.61719-0.79382-0.051077-1.7019 0.053784-2.1875 0.77344-0.55491 0.83096-0.31368 1.8562-0.36719 2.793v1.502c-0.50972-0.31797-1.1319-0.13206-1.6992-0.18164-0.44283-0.020725-0.88111 0.025154-1.3184 0.091797 0.056931 2.6859 0.073733 5.3733 0.12109 8.0586 0.093691 1.3023 1.232 2.4048 2.5449 2.4238 0.63295 0.0151 1.4823 0.006779 2.2246 0.011719 3.2218-0.01207 6.4461 0.049849 9.666-0.056641 1.1622-0.12022 2.2133-1.1885 2.0703-2.3965v-9.4805c-0.70681-0.94068-1.8153-1.7809-3.0586-1.5703-0.29955-0.45357-0.48612-1.4731-1.2266-1.7988-0.35486-0.29104-0.83959-0.10977-1.2598-0.16211-0.29744-0.072682-0.8559 0.19254-0.86914-0.25195-0.15735-0.52152-0.71524-0.90857-1.248-0.94922zm-0.10547 1.5039c0.16452 0.27146 0.18277 0.75372 0.21875 1.125 0.006556 0.0068963 0.019796 0.0059113 0.027344 0.011719-0.009105-1.732e-4 -0.018238 1.732e-4 -0.027344 0l0.49414 5.9004 0.66406-5.8418 1.3457 0.0039062c0.53608 0.38955 0.41299 1.1405 0.55469 1.7227-0.011127 0.067472 0.006397 0.096046 0.015625 0.13672-6.5e-4 -8.3e-6 -0.001302 8.3e-6 -0.001953 0l0.011719 0.085938 0.48242 3.8652 0.66406-3.9199c0.57404-0.037127 1.1577 0.038512 1.5586 0.50195 0.40964 0.21687 0.21564 0.68897 0.25977 1.0586v8.3418c-0.33706 0.96368-1.6 0.54827-2.375 0.66016-3.3705 0.01308-6.7421 0.033828-10.111-0.013672-0.97567-0.02828-1.1419-1.07-1.041-1.8418-0.011641-1.9071-0.044744-3.8139-0.078125-5.7207 0.32636 0.00646 0.67596-0.012758 0.98828 0.0097657 0.49388 0.91522 0.48462 2.0012 0.50781 3.0156 0.49264-0.0068 1.0434 0.03983 1.5 0 0.0091468-2.5196-0.018438-5.04 0.013672-7.5586 0.1049-0.5199 0.73074-0.30916 1.1113-0.35352h0.67578l0.48828 5.8477 0.66992-5.877h-0.0039063c0.030948-0.38283-0.15063-0.89584 0.24805-1.1191l1.1387-0.041016z" fill="#363636"/> +</svg> diff --git a/src/assets/gnome-shell/icons/pointer-primary-click-symbolic.svg b/src/assets/gnome-shell/icons/pointer-primary-click-symbolic.svg new file mode 100644 index 0000000..81d2087 --- /dev/null +++ b/src/assets/gnome-shell/icons/pointer-primary-click-symbolic.svg @@ -0,0 +1,7 @@ +<svg width="20" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g> + <g transform="translate(-22.25 -.75)"> + <path d="m25.855 0.45508v20.084c1.4147-1.3809 2.8294-2.7617 4.2441-4.1426 0.61241 1.2154 1.173 2.4602 1.8197 3.6561 1.1419 1.4763 3.9753 0.38901 3.846-1.4736-0.09413-0.82252-0.59476-1.5214-0.89997-2.2776-0.29887-0.64017-0.59774-1.2803-0.89661-1.9205h5.2695c-4.4609-4.6419-8.9219-9.2839-13.383-13.926zm1.5 3.7266c2.7865 2.8997 5.5729 5.7995 8.3594 8.6992h-4.1016c0.88507 1.9032 1.7818 3.8015 2.6596 5.7077 0.0349 0.56608-1.1491 0.98882-1.2821 0.29797-0.81857-1.6712-1.6371-3.3423-2.4557-5.0135-1.0599 1.0345-2.1198 2.069-3.1797 3.1035 1.5e-5 -4.265 3e-5 -8.53 4.5e-5 -12.795z" fill="#363636"/> + </g> + </g> +</svg> diff --git a/src/assets/gnome-shell/icons/pointer-secondary-click-symbolic.svg b/src/assets/gnome-shell/icons/pointer-secondary-click-symbolic.svg new file mode 100644 index 0000000..6ec18f2 --- /dev/null +++ b/src/assets/gnome-shell/icons/pointer-secondary-click-symbolic.svg @@ -0,0 +1,7 @@ +<svg width="20" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <g> + <g transform="matrix(-1 0 0 1 42 -.75)"> + <path d="m25.855 0.45508v20.084c1.4147-1.3809 2.8294-2.7617 4.2441-4.1426 0.61241 1.2154 1.173 2.4602 1.8197 3.6561 1.1419 1.4763 3.9753 0.38901 3.846-1.4736-0.09413-0.82252-0.59476-1.5214-0.89997-2.2776-0.29887-0.64017-0.59774-1.2803-0.89661-1.9205h5.2695c-4.4609-4.6419-8.9219-9.2839-13.383-13.926zm1.5 3.7266c2.7865 2.8997 5.5729 5.7995 8.3594 8.6992h-4.1016c0.88507 1.9032 1.7818 3.8015 2.6596 5.7077 0.0349 0.56608-1.1491 0.98882-1.2821 0.29797-0.81857-1.6712-1.6371-3.3423-2.4557-5.0135-1.0599 1.0345-2.1198 2.069-3.1797 3.1035 1.5e-5 -4.265 3e-5 -8.53 4.5e-5 -12.795z" fill="#363636"/> + </g> + </g> +</svg> diff --git a/src/assets/gnome-shell/source-assets/color-pick.svg b/src/assets/gnome-shell/source-assets/color-pick.svg deleted file mode 100644 index d9af690..0000000 --- a/src/assets/gnome-shell/source-assets/color-pick.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="5.4116011mm" - height="5.1374583mm" - viewBox="0 0 5.4116011 5.1374583" - version="1.1" - id="svg5595" - inkscape:version="0.92.4 (unknown)" - sodipodi:docname="color-pick.svg"> - <defs - id="defs5589"> - <filter - inkscape:collect="always" - x="-0.10291173" - width="1.2058235" - y="-0.065432459" - height="1.1308649" - id="filter5601" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.610872" - id="feGaussianBlur5603" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="39.387731" - inkscape:cy="12.554326" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1016" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5592"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-103.12753,-146.26461)"> - <circle - r="8.4810486" - cy="9.82623" - cx="10.226647" - id="circle7584" - style="color:#000000;display:inline;overflow:visible;opacity:0.6;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter5601)" - transform="matrix(0.26458333,0,0,0.26458333,103.12753,146.26461)" /> - <path - style="color:#000000;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.26399338;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal" - d="m 108.07728,148.64122 c 0,1.2393 -1.00465,2.24394 -2.24395,2.24394 -1.23929,0 -2.24716,-1.00465 -2.25221,-2.24394 l -0.009,-2.24458 2.26136,6.4e-4 c 1.2393,3.4e-4 2.24395,1.00464 2.24395,2.24394 z" - id="path7523-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ssscss" /> - <circle - style="color:#000000;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#50dbb5;fill-opacity:1;stroke:none;stroke-width:0.36885914;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal" - id="path7482-1" - cx="105.83707" - cy="148.64352" - r="1.844296" /> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/dash-placeholder.svg b/src/assets/gnome-shell/source-assets/dash-placeholder.svg deleted file mode 100644 index cbae148..0000000 --- a/src/assets/gnome-shell/source-assets/dash-placeholder.svg +++ /dev/null @@ -1,84 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - width="76" - height="27" - id="svg11252" - version="1.1"> - <defs - id="defs11254"> - <radialGradient - xlink:href="#linearGradient39563-4-2" - id="radialGradient68155-2-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.3486842,0,317.8421)" - cx="49" - cy="488" - fx="49" - fy="488" - r="38" /> - <linearGradient - id="linearGradient39563-4-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop39565-1-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop39567-7-9" /> - </linearGradient> - <radialGradient - xlink:href="#linearGradient39573-6-1" - id="radialGradient68157-0-8" - gradientUnits="userSpaceOnUse" - cx="50.5" - cy="487.5" - fx="50.5" - fy="487.5" - r="10.5" /> - <linearGradient - id="linearGradient39573-6-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop39575-5-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop39577-1-2" /> - </linearGradient> - </defs> - <g - id="layer1" - transform="translate(-337,-518.86218)"> - <g - id="g99967" - style="display:inline" - transform="translate(326,44.862171)"> - <rect - style="opacity:0.49375;color:#000000;fill:url(#radialGradient68155-2-3);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect99969" - width="76" - height="2" - x="11" - y="487" - rx="0" - ry="0" /> - <path - style="opacity:0.43125;color:#000000;fill:url(#radialGradient68157-0-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path99971" - d="M 61,487.5 C 61,493.29899 56.29899,498 50.5,498 44.70101,498 40,493.29899 40,487.5 40,481.70101 44.70101,477 50.5,477 c 5.79899,0 10.5,4.70101 10.5,10.5 z" - transform="matrix(1.2857143,0,0,1.2857143,-14.428572,-139.28571)" /> - <path - transform="matrix(0.43589747,0,0,0.43589747,28.487179,275)" - d="M 61,487.5 C 61,493.29899 56.29899,498 50.5,498 44.70101,498 40,493.29899 40,487.5 40,481.70101 44.70101,477 50.5,477 c 5.79899,0 10.5,4.70101 10.5,10.5 z" - id="path99973" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/eye-not-looking-symbolic.svg b/src/assets/gnome-shell/source-assets/eye-not-looking-symbolic.svg deleted file mode 100644 index a168c87..0000000 --- a/src/assets/gnome-shell/source-assets/eye-not-looking-symbolic.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> - <path d="M13.98 1.99a1 1 0 0 0-.687.303l-.984.984A8 8 0 0 0 8 2 8 8 0 0 0 .262 8.01a8 8 0 0 0 2.943 4.37l-.912.913a1 1 0 1 0 1.414 1.414l11-11a1 1 0 0 0-.727-1.717zM8 4a4 4 0 0 1 2.611.974l-1.42 1.42A2 2 0 0 0 8 6a2 2 0 0 0-2 2 2 2 0 0 0 .396 1.19l-1.42 1.42A4 4 0 0 1 4 8a4 4 0 0 1 4-4zm7.03 2.209l-3.344 3.343a4 4 0 0 1-2.127 2.127l-2.28 2.28a8 8 0 0 0 .721.04 8 8 0 0 0 7.738-6.01 8 8 0 0 0-.709-1.78zm-7.53.79a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5z" fill="#2e3436"/> -</svg> - diff --git a/src/assets/gnome-shell/source-assets/eye-open-negative-filled-symbolic.svg b/src/assets/gnome-shell/source-assets/eye-open-negative-filled-symbolic.svg deleted file mode 100644 index 1e5351c..0000000 --- a/src/assets/gnome-shell/source-assets/eye-open-negative-filled-symbolic.svg +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="16" viewBox="0 0 16 16" version="1.1" id="svg7384" height="16"> - <metadata id="metadata90"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <title id="title9167">Gnome Symbolic Icon Theme</title> - <defs id="defs7386"> - <linearGradient osb:paint="solid" id="linearGradient7212"> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7214"/> - </linearGradient> - </defs> - <g transform="translate(-341.0002,-13.000323)" style="display:inline" id="layer9"/> - <g transform="translate(-100,-380.00032)" id="layer1"/> - <g transform="translate(-100,-380.00032)" style="display:inline" id="layer10"> - <path d="m 108,382 a 8,8 0 0 0 -7.73828,6.00977 A 8,8 0 0 0 108,394 8,8 0 0 0 115.73828,387.99023 8,8 0 0 0 108,382 Z m 0,2 a 4,4 0 0 1 4,4 4,4 0 0 1 -4,4 4,4 0 0 1 -4,-4 4,4 0 0 1 4,-4 z" id="path2314" style="opacity:1;vector-effect:none;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"/> - <path id="path2318" d="m 110,388.00003 a 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 2,2 0 0 1 2,2 z" style="vector-effect:none;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - </g> - <g transform="translate(-100,-380.00032)" id="g6387"/> - <g transform="translate(-100,-380.00032)" id="layer11"/> -</svg> - diff --git a/src/assets/gnome-shell/source-assets/keyboard-caps-lock-filled-symbolic.svg b/src/assets/gnome-shell/source-assets/keyboard-caps-lock-filled-symbolic.svg deleted file mode 100644 index 45985b7..0000000 --- a/src/assets/gnome-shell/source-assets/keyboard-caps-lock-filled-symbolic.svg +++ /dev/null @@ -1,6 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> - <g fill="#2e3436"> - <path d="M6 8H2.937l5.126-5.781L13.186 8H10v2H6z" style="marker:none" color="#000" overflow="visible"/> - <path d="M6 11h4v2H6z" style="marker:none"/> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/keyboard-enter-symbolic.svg b/src/assets/gnome-shell/source-assets/keyboard-enter-symbolic.svg deleted file mode 100644 index de68b71..0000000 --- a/src/assets/gnome-shell/source-assets/keyboard-enter-symbolic.svg +++ /dev/null @@ -1,6 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> - <g font-weight="400" fill="#2e3436"> - <path d="M11.994 3v4.004c.002.666-.183.72-.445.852-.262.13-.555.144-.555.144H4v2h6.994s.71.014 1.45-.355c.738-.37 1.552-1.313 1.55-2.645V3z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none" color="#000" font-family="sans-serif" overflow="visible"/> - <path d="M6 12v-1c0-.257-.13-.528-.313-.719l-1.28-1.303 1.28-1.26C5.87 7.529 6 7.258 6 7V6H5c-.31 0-.552.09-.75.281L1.594 8.978l2.656 2.74c.198.192.44.282.75.282z" style="line-height:normal;-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration-line:none;text-transform:none;marker:none" color="#bebebe" font-family="Bitstream Vera Sans" overflow="visible"/> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/keyboard-hide-symbolic.svg b/src/assets/gnome-shell/source-assets/keyboard-hide-symbolic.svg deleted file mode 100644 index 4212707..0000000 --- a/src/assets/gnome-shell/source-assets/keyboard-hide-symbolic.svg +++ /dev/null @@ -1,7 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> - <g color="#000" fill="#2e3436"> - <path d="M4.707 5.293L3.293 6.707 8 11.414l4.707-4.707-1.414-1.414L8 8.586z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none" font-weight="400" font-family="sans-serif" overflow="visible"/> - <path d="M12 6V5h1v1zM3 6V5h1v1z" style="marker:none" overflow="visible"/> - <path d="M3 6c0-.554.446-1 1-1s1 .446 1 1-.446 1-1 1-1-.446-1-1zM11 6c0-.554.446-1 1-1s1 .446 1 1-.446 1-1 1-1-.446-1-1z" style="marker:none" overflow="visible"/> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/keyboard-layout-filled-symbolic.svg b/src/assets/gnome-shell/source-assets/keyboard-layout-filled-symbolic.svg deleted file mode 100644 index 7c9b955..0000000 --- a/src/assets/gnome-shell/source-assets/keyboard-layout-filled-symbolic.svg +++ /dev/null @@ -1,7 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> - <g fill="#2e3436" fill-rule="evenodd"> - <path d="M2 1v14h2V1z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1" color="#000" font-weight="400" font-family="sans-serif" overflow="visible"/> - <path d="M3 1a1 1 0 00-1 1v6a1 1 0 001 1h3.383l.722 1.447A1 1 0 008 11h5a1 1 0 001-1V4a1 1 0 00-1-1H9.617l-.722-1.447A1 1 0 008 1zm1 2h3.383l.722 1.447A1 1 0 009 5h3v4H8.617l-.722-1.447A1 1 0 007 7H4z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1" color="#000" font-weight="400" font-family="sans-serif" overflow="visible"/> - <path d="M3 8h4l1 2h5V4H9L8 2H3z"/> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/keyboard-shift-filled-symbolic.svg b/src/assets/gnome-shell/source-assets/keyboard-shift-filled-symbolic.svg deleted file mode 100644 index 04069e8..0000000 --- a/src/assets/gnome-shell/source-assets/keyboard-shift-filled-symbolic.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"> - <path d="M6 13V9H2.937l5.126-5.781L13.186 9H10v4z" style="marker:none" color="#000" overflow="visible" fill="#2e3436"/> -</svg> diff --git a/src/assets/gnome-shell/source-assets/message-indicator-symbolic.svg b/src/assets/gnome-shell/source-assets/message-indicator-symbolic.svg deleted file mode 100644 index 257a984..0000000 --- a/src/assets/gnome-shell/source-assets/message-indicator-symbolic.svg +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - viewBox="0 0 4.2333333 4.2333333" - version="1.1" - id="svg8"> - <defs - id="defs2" /> - <metadata - id="metadata5"> - <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" - style="display:inline" - transform="translate(0,-292.76667)"> - <path - style="fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:0.17969394" - d="m 3.1749998,294.88333 a 1.0583333,1.0583333 0 0 1 -1.0583332,1.05833 1.0583333,1.0583333 0 0 1 -1.0583333,-1.05833 1.0583333,1.0583333 0 0 1 1.0583333,-1.05833 1.0583333,1.0583333 0 0 1 1.0583332,1.05833 z" - id="path4485" /> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/no-events.svg b/src/assets/gnome-shell/source-assets/no-events.svg deleted file mode 100644 index 8ab08a9..0000000 --- a/src/assets/gnome-shell/source-assets/no-events.svg +++ /dev/null @@ -1,119 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="64px" - height="64px" - id="svg3471" - version="1.1" - inkscape:version="0.48.5 r10040" - sodipodi:docname="New document 5"> - <defs - id="defs3473" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.5" - inkscape:cx="32" - inkscape:cy="32" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:document-units="px" - inkscape:grid-bbox="true" - inkscape:window-width="1461" - inkscape:window-height="772" - inkscape:window-x="37" - inkscape:window-y="64" - inkscape:window-maximized="0" /> - <metadata - id="metadata3476"> - <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:label="Layer 1" - inkscape:groupmode="layer"> - <g - transform="matrix(4,0,0,4,1.9999997,2.3636364)" - id="g19145" - style="fill:#bebebe;fill-opacity:1;display:inline"> - <g - id="g19147" - inkscape:label="status" - style="fill:#bebebe;fill-opacity:1;display:inline" - transform="translate(-541.0002,-301)" /> - <g - style="fill:#bebebe;fill-opacity:1" - id="g19149" - inkscape:label="devices" - transform="translate(-541.0002,-301)" /> - <g - style="fill:#bebebe;fill-opacity:1" - id="g19151" - inkscape:label="apps" - transform="translate(-541.0002,-301)" /> - <g - style="fill:#bebebe;fill-opacity:1" - id="g19153" - inkscape:label="places" - transform="translate(-541.0002,-301)" /> - <g - style="fill:#bebebe;fill-opacity:1" - id="g19155" - inkscape:label="mimetypes" - transform="translate(-541.0002,-301)"> - <path - inkscape:connector-curvature="0" - d="m 543.0002,301 c -1.05237,0 -2,0.84508 -2,1.9375 l 0,11.125 c 0,1.09242 0.94763,1.9375 2,1.9375 l 11,0 c 1.05237,0 2,-0.84508 2,-1.9375 l 0,-11.125 c 0,-1.09242 -0.94763,-1.9375 -2,-1.9375 l -11,0 z m 0,5 3.03125,0 0,2 -3.03125,0 0,-2 z m 4.03125,0 2.96875,0 0,2 -2.96875,0 0,-2 z m 3.96875,0 3,0 0,2 -3,0 0,-2 z m -8,3 3.03125,0 0,2 -3.03125,0 0,-2 z m 4.03125,0 2.96875,0 0,2 -2.96875,0 0,-2 z m 3.96875,0 3,0 0,2 -3,0 0,-2 z m -8,3 3.03125,0 0,2 -3.03125,0 0,-2 z m 4.03125,0 2.96875,0 0,2 -2.96875,0 0,-2 z m 3.96875,0 3,0 0,2 -3,0 0,-2 z" - id="path19157" - 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:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" /> - <rect - height="1.9999993" - id="rect19159" - style="opacity:0.35;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - width="2.9999993" - x="551.00018" - y="309" /> - </g> - <g - id="g19161" - inkscape:label="emblems" - style="fill:#bebebe;fill-opacity:1;display:inline" - transform="translate(-541.0002,-301)" /> - <g - id="g19163" - inkscape:label="emotes" - style="fill:#bebebe;fill-opacity:1;display:inline" - transform="translate(-541.0002,-301)" /> - <g - id="g19165" - inkscape:label="categories" - style="fill:#bebebe;fill-opacity:1;display:inline" - transform="translate(-541.0002,-301)" /> - <g - id="g19167" - inkscape:label="actions" - style="fill:#bebebe;fill-opacity:1;display:inline" - transform="translate(-541.0002,-301)" /> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/no-notifications.svg b/src/assets/gnome-shell/source-assets/no-notifications.svg deleted file mode 100644 index 862e2d1..0000000 --- a/src/assets/gnome-shell/source-assets/no-notifications.svg +++ /dev/null @@ -1,223 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="64px" - height="64px" - id="svg3393" - version="1.1" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="no-notifications.svg"> - <defs - id="defs3395"> - <clipPath - id="clipPath6262-0" - clipPathUnits="userSpaceOnUse"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none" - id="rect6264-6" - width="3.8250003" - height="6.3750005" - x="26.849981" - y="220.75" /> - </clipPath> - <clipPath - id="clipPath6258-0" - clipPathUnits="userSpaceOnUse"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none" - id="rect6260-6" - width="2.8977275" - height="5.3129687" - x="26.965673" - y="221.28162" /> - </clipPath> - <clipPath - id="clipPath6254-6" - clipPathUnits="userSpaceOnUse"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none" - id="rect6256-6" - width="1.876245" - height="4.8783236" - x="26.998718" - y="221.50153" /> - </clipPath> - <clipPath - id="clipPath8028-3" - clipPathUnits="userSpaceOnUse"> - <path - style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m -73,-30 -7,-7 v -4.5 h 16.5 v 4.5 l -7.5,7 z" - id="path8030-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath6810-7-87-7"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" - id="rect6812-2-4-5" - width="14" - height="11" - x="21" - y="281" /> - </clipPath> - <clipPath - id="clipPath6262" - clipPathUnits="userSpaceOnUse"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none" - id="rect6264" - width="3.8250003" - height="6.3750005" - x="26.849981" - y="220.75" /> - </clipPath> - <clipPath - id="clipPath6258" - clipPathUnits="userSpaceOnUse"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none" - id="rect6260" - width="2.8977275" - height="5.3129687" - x="26.965673" - y="221.28162" /> - </clipPath> - <clipPath - id="clipPath6254" - clipPathUnits="userSpaceOnUse"> - <rect - style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none" - id="rect6256" - width="1.876245" - height="4.8783236" - x="26.998718" - y="221.50153" /> - </clipPath> - <inkscape:path-effect - effect="spiro" - id="path-effect3951" - is_visible="true" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="125.08157" - inkscape:cy="-13.805087" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:document-units="px" - inkscape:grid-bbox="true" - inkscape:window-width="1664" - inkscape:window-height="1034" - inkscape:window-x="1479" - inkscape:window-y="252" - inkscape:window-maximized="0" /> - <metadata - id="metadata3398"> - <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:label="Layer 1" - inkscape:groupmode="layer"> - <g - style="display:inline" - transform="matrix(4,0,0,4,-79.702662,-0.35415646)" - id="g19245"> - <g - id="g19247" - inkscape:label="status" - style="display:inline" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19249" - inkscape:label="devices" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19251" - inkscape:label="apps" - transform="translate(-323.02908,-649.02581)"> - <path - inkscape:connector-curvature="0" - d="m 331.9377,653 c 0.0187,0.16677 0.0625,0.32822 0.0625,0.5 0,2.48528 -2.01472,4.5 -4.5,4.5 -0.11769,0 -0.22834,-0.0224 -0.34375,-0.0312 v 2.21875 c 0,1.00412 0.80838,1.8125 1.8125,1.8125 l 1.54511,-5e-5 2,2.04688 2.0625,-2.04688 h 1.61114 c 1.00413,0 1.8125,-0.80838 1.8125,-1.8125 v -5.375 c 0,-1.00412 -0.80837,-1.8125 -1.8125,-1.8125 z" - id="path19253" - sodipodi:nodetypes="csscsscccssssc" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#c3c3c3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> - <path - inkscape:connector-curvature="0" - d="m 327.5002,650 c -1.933,0 -3.5,1.567 -3.5,3.5 0,1.933 1.567,3.5 3.5,3.5 1.933,0 3.5,-1.567 3.5,-3.5 0,-1.933 -1.567,-3.5 -3.5,-3.5 z m -0.53125,1 h 1.03125 l -0.0625,1.375 a 0.19951718,0.19951718 0 0 0 0,0.0625 0.19951718,0.19951718 0 0 0 0,0.0312 0.19951718,0.19951718 0 0 0 0.125,0.125 0.19951718,0.19951718 0 0 0 0.0312,0 0.19951718,0.19951718 0 0 0 0.0625,0 0.19951718,0.19951718 0 0 0 0.0625,0 0.19951718,0.19951718 0 0 0 0.0312,-0.0312 l 1.15625,-0.75 0.5,0.90625 -1.21875,0.625 a 0.19951718,0.19951718 0 0 0 -0.0312,0 0.19951718,0.19951718 0 0 0 -0.0312,0.0312 0.19951718,0.19951718 0 0 0 -0.0312,0.0937 0.19951718,0.19951718 0 0 0 0,0.0625 0.19951718,0.19951718 0 0 0 0,0.0312 0.19951718,0.19951718 0 0 0 0.0312,0.0625 0.19951718,0.19951718 0 0 0 0.0312,0.0312 0.19951718,0.19951718 0 0 0 0.0312,0.0312 l 1.25,0.625 -0.53125,0.90625 -1.15625,-0.781 a 0.19951718,0.19951718 0 0 0 -0.0312,0 0.19951718,0.19951718 0 0 0 -0.0625,-0.0312 0.19951718,0.19951718 0 0 0 -0.0625,0 0.19951718,0.19951718 0 0 0 -0.125,0.0937 0.19951718,0.19951718 0 0 0 -0.0312,0.0312 0.19951718,0.19951718 0 0 0 0,0.0312 0.19951718,0.19951718 0 0 0 0,0.0625 L 328.0002,656 h -1.03125 l 0.0937,-1.375 a 0.19951718,0.19951718 0 0 0 -0.0312,-0.0937 0.19951718,0.19951718 0 0 0 -0.0312,-0.0625 0.19951718,0.19951718 0 0 0 -0.0625,-0.0312 0.19951718,0.19951718 0 0 0 -0.0625,-0.0312 0.19951718,0.19951718 0 0 0 -0.0312,0 0.19951718,0.19951718 0 0 0 -0.0937,0.0312 l -1.1875,0.78125 -0.5,-0.90625 1.25,-0.625 a 0.19951718,0.19951718 0 0 0 0.0312,-0.0312 0.19951718,0.19951718 0 0 0 0.0312,-0.0312 0.19951718,0.19951718 0 0 0 0.0312,-0.0625 0.19951718,0.19951718 0 0 0 0,-0.0312 0.19951718,0.19951718 0 0 0 0,-0.0625 0.19951718,0.19951718 0 0 0 0,-0.0312 0.19951718,0.19951718 0 0 0 -0.0312,-0.0625 0.19951718,0.19951718 0 0 0 -0.0312,-0.0312 0.19951718,0.19951718 0 0 0 -0.0312,0 l -1.25,-0.625 0.5,-0.90625 1.1875,0.75 a 0.19951718,0.19951718 0 0 0 0.0312,0.0312 0.19951718,0.19951718 0 0 0 0.0625,0 0.19951718,0.19951718 0 0 0 0.0625,0 0.19951718,0.19951718 0 0 0 0.0312,0 0.19951718,0.19951718 0 0 0 0.0312,-0.0312 0.19951718,0.19951718 0 0 0 0.0312,-0.0312 0.19951718,0.19951718 0 0 0 0.0312,-0.0312 0.19951718,0.19951718 0 0 0 0,-0.0312 0.19951718,0.19951718 0 0 0 0.0312,-0.0625 0.19951718,0.19951718 0 0 0 0,-0.0312 z" - id="path19255" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" /> - </g> - <g - id="g19257" - inkscape:label="places" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19259" - inkscape:label="mimetypes" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19261" - inkscape:label="emblems" - style="display:inline" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19263" - inkscape:label="emotes" - style="display:inline" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19265" - inkscape:label="categories" - style="display:inline" - transform="translate(-323.02908,-649.02581)" /> - <g - id="g19267" - inkscape:label="actions" - style="display:inline" - transform="translate(-323.02908,-649.02581)" /> - </g> - <g - style="opacity:1;vector-effect:none;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new" - inkscape:label="preferences-system-notifications" - id="g13967" - transform="matrix(4,0,0,4,-1044.0008,-2172)"> - <path - inkscape:connector-curvature="0" - d="m 268.94244,544.94838 c -2.20914,0 -3.33013,1.5 -4,4 l -1,5 c -0.10831,0.54156 -0.44772,1 -1,1 v 1 h 12 v -1 c -0.55229,0 -0.89169,-0.45844 -1,-1 l -1,-5 c -0.53033,-2.5 -1.79086,-4 -4,-4 z" - id="path40220" - sodipodi:nodetypes="ccsccccscc" - style="opacity:1;vector-effect:none;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal" /> - <path - inkscape:connector-curvature="0" - d="m 269.11822,556.94838 a 1.5,1.5 0 0 0 1.41211,1 1.5,1.5 0 0 0 1.41211,-1 z" - id="path40774" - style="opacity:1;vector-effect:none;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal" /> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/pointer-double-click-symbolic.svg b/src/assets/gnome-shell/source-assets/pointer-double-click-symbolic.svg deleted file mode 100644 index 5267834..0000000 --- a/src/assets/gnome-shell/source-assets/pointer-double-click-symbolic.svg +++ /dev/null @@ -1,28 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="20" - id="svg2"> - <g - id="layer1" - style="display:inline"> - <g - id="id1" - transform="translate(-19,-0.75)"> - <path - style="color:#000000;shape-padding:0;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;opacity:1;solid-color:#000000;solid-opacity:1;fill:#464646;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - d="m 19.855469,0.45507812 c 0,6.69466128 0,13.38932288 0,20.08398388 1.414713,-1.38151 2.829427,-2.763021 4.24414,-4.144531 0.5882,1.18866 1.158389,2.386561 1.758464,3.569127 1.108631,1.640259 4.157538,0.465128 3.89799,-1.495859 0.01057,-0.470226 -0.405577,-0.908445 -0.434651,-1.313638 0.259401,-0.25321 0.518802,-0.50642 0.778203,-0.75963 0.5882,1.18866 1.158389,2.386561 1.758464,3.569127 1.108631,1.640259 4.157538,0.465128 3.89799,-1.495859 -0.192325,-0.904303 -0.717854,-1.698026 -1.068629,-2.548967 -0.238908,-0.512658 -0.477817,-1.025315 -0.716725,-1.537973 1.755859,0 3.511719,0 5.267578,0 C 34.777352,9.738932 30.31641,5.0970051 25.855469,0.45507812 c 0,2.08138018 0,4.16276048 0,6.24414068 -2,-2.0813802 -4,-4.1627605 -6,-6.24414068 z m 1.5,3.72656248 c 2,2.0813801 4,4.1627603 6,6.2441404 0,-2.0813801 0,-4.1627603 0,-6.2441404 2.786458,2.8997395 5.572917,5.7994789 8.359375,8.6992184 -1.366537,0 -2.733073,0 -4.09961,0 0.883468,1.903435 1.781983,3.800273 2.656081,5.707817 0.0065,0.622781 -1.227555,0.980575 -1.325116,0.207118 -0.80433,-1.640251 -1.608661,-3.280501 -2.412991,-4.920752 -1.020182,0.995443 -2.040365,1.990885 -3.060547,2.986328 0.263642,0.608048 0.596803,1.192457 0.814693,1.816134 -0.182662,0.601037 -1.26833,0.8373 -1.365856,0.06795 -0.796094,-1.623456 -1.592189,-3.246912 -2.388284,-4.870368 -1.059245,1.033854 -2.118489,2.067708 -3.177734,3.101562 -4e-6,-4.265002 -7e-6,-8.5300036 -1.1e-5,-12.7950054 z" - id="path5565" /> - </g> - <g - id="id2" - transform="translate(-25,-0.75)" /> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/pointer-drag-symbolic.svg b/src/assets/gnome-shell/source-assets/pointer-drag-symbolic.svg deleted file mode 100644 index be37e6f..0000000 --- a/src/assets/gnome-shell/source-assets/pointer-drag-symbolic.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="20" - id="svg2"> - <g - id="g835"> - <path - style="color:#000000;shape-padding:0;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;opacity:1;solid-color:#000000;solid-opacity:1;fill:#464646;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - d="M 10.705078 1.671875 C 9.8685536 1.7465699 8.886927 1.5353073 8.2578125 2.2480469 C 8.0785627 2.7511513 7.8667422 2.9777446 7.3125 2.8652344 C 6.5186841 2.8141575 5.6105879 2.9190179 5.125 3.6386719 C 4.5700923 4.4696324 4.8113194 5.4949043 4.7578125 6.4316406 L 4.7578125 7.9335938 C 4.2480917 7.6156216 3.6258927 7.8015358 3.0585938 7.7519531 C 2.6157606 7.7312277 2.1774807 7.7771069 1.7402344 7.84375 C 1.7971654 10.529678 1.813967 13.217089 1.8613281 15.902344 C 1.9550191 17.204635 3.0933719 18.307155 4.40625 18.326172 C 5.0391993 18.341272 5.8885801 18.332951 6.6308594 18.337891 C 9.8526764 18.325821 13.076973 18.38774 16.296875 18.28125 C 17.459088 18.161027 18.510143 17.092798 18.367188 15.884766 L 18.367188 6.4042969 C 17.660379 5.4636119 16.551912 4.623434 15.308594 4.8339844 C 15.009045 4.3804158 14.822476 3.3608651 14.082031 3.0351562 C 13.727176 2.744118 13.242443 2.9253873 12.822266 2.8730469 C 12.524824 2.8003648 11.966366 3.0655864 11.953125 2.6210938 C 11.795774 2.0995736 11.23789 1.7125276 10.705078 1.671875 z M 10.599609 3.1757812 C 10.764131 3.4472414 10.782382 3.9294982 10.818359 4.3007812 C 10.824915 4.3076775 10.838155 4.3066925 10.845703 4.3125 C 10.836598 4.3123268 10.827465 4.3126732 10.818359 4.3125 L 11.3125 10.212891 L 11.976562 4.3710938 L 13.322266 4.375 C 13.858345 4.7645492 13.735252 5.5154752 13.876953 6.0976562 C 13.865826 6.1651282 13.88335 6.1937019 13.892578 6.234375 C 13.891928 6.2343667 13.891276 6.2343833 13.890625 6.234375 L 13.902344 6.3203125 L 14.384766 10.185547 L 15.048828 6.265625 C 15.622863 6.228498 16.206517 6.3041365 16.607422 6.7675781 C 17.017062 6.9844433 16.823063 7.4565491 16.867188 7.8261719 L 16.867188 16.167969 C 16.530129 17.131654 15.267211 16.71624 14.492188 16.828125 C 11.121671 16.841205 7.7500508 16.861953 4.3808594 16.814453 C 3.4051926 16.786173 3.2389196 15.744474 3.3398438 14.972656 C 3.3282027 13.065594 3.2950998 11.158732 3.2617188 9.2519531 C 3.5880829 9.2584131 3.9376766 9.2391948 4.25 9.2617188 C 4.7438842 10.17694 4.7346154 11.262903 4.7578125 12.277344 C 5.2504494 12.270544 5.8011939 12.317174 6.2578125 12.277344 C 6.2669593 9.7577406 6.2393741 7.2373172 6.2714844 4.71875 C 6.3763823 4.198849 7.0022289 4.409587 7.3828125 4.3652344 L 8.0585938 4.3652344 L 8.546875 10.212891 L 9.2167969 4.3359375 L 9.2128906 4.3359375 C 9.2438386 3.9531035 9.0622615 3.4401006 9.4609375 3.2167969 L 10.599609 3.1757812 z " - id="path5630" /> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/pointer-primary-click-symbolic.svg b/src/assets/gnome-shell/source-assets/pointer-primary-click-symbolic.svg deleted file mode 100644 index f447991..0000000 --- a/src/assets/gnome-shell/source-assets/pointer-primary-click-symbolic.svg +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="20" - id="svg2" - version="1.1"> - <g - id="layer1" - style="display:inline"> - <g - id="id1" - transform="translate(-22.25,-0.75)"> - <path - style="color:#000000;shape-padding:0;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;opacity:1;solid-color:#000000;solid-opacity:1;fill:#464646;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - d="m 25.855469,0.45507812 c 0,6.69466128 0,13.38932288 0,20.08398388 1.414713,-1.380859 2.829427,-2.761719 4.24414,-4.142578 0.612408,1.215372 1.173049,2.460221 1.819709,3.656095 1.141947,1.476279 3.975266,0.389006 3.846009,-1.473608 -0.09413,-0.822519 -0.594755,-1.521423 -0.899969,-2.277599 -0.298869,-0.640171 -0.597739,-1.280342 -0.896608,-1.920513 1.75651,0 3.513021,0 5.269531,0 C 34.777344,9.738932 30.316406,5.0970051 25.855469,0.45507812 Z m 1.5,3.72656248 c 2.786458,2.8997395 5.572917,5.7994789 8.359375,8.6992184 -1.367188,0 -2.734375,0 -4.101563,0 0.885072,1.903196 1.781799,3.80152 2.659622,5.707744 0.0349,0.566084 -1.149057,0.988823 -1.282093,0.297971 -0.818567,-1.671162 -1.637133,-3.342323 -2.455699,-5.013485 -1.059896,1.034505 -2.119791,2.06901 -3.179687,3.103515 1.5e-5,-4.264988 3e-5,-8.5299756 4.5e-5,-12.7949634 z" - id="path5565" /> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/pointer-secondary-click-symbolic.svg b/src/assets/gnome-shell/source-assets/pointer-secondary-click-symbolic.svg deleted file mode 100644 index b72e178..0000000 --- a/src/assets/gnome-shell/source-assets/pointer-secondary-click-symbolic.svg +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="20" - id="svg2"> - <g - id="layer1" - style="display:inline;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke:#000000;stroke-opacity:1"> - <g - transform="matrix(-1,0,0,1,42,-0.75)" - id="g5847" - style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke:#000000;stroke-opacity:1"> - <path - style="color:#000000;shape-padding:0;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;opacity:1;solid-color:#000000;solid-opacity:1;fill:#464646;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - d="m 25.855469,0.45507812 c 0,6.69466128 0,13.38932288 0,20.08398388 1.414713,-1.380859 2.829427,-2.761719 4.24414,-4.142578 0.612408,1.215372 1.173049,2.460221 1.819709,3.656095 1.141947,1.476279 3.975266,0.389006 3.846009,-1.473608 -0.09413,-0.822519 -0.594755,-1.521423 -0.899969,-2.277599 -0.298869,-0.640171 -0.597739,-1.280342 -0.896608,-1.920513 1.75651,0 3.513021,0 5.269531,0 C 34.777344,9.738932 30.316406,5.0970051 25.855469,0.45507812 Z m 1.5,3.72656248 c 2.786458,2.8997395 5.572917,5.7994789 8.359375,8.6992184 -1.367188,0 -2.734375,0 -4.101563,0 0.885072,1.903196 1.781799,3.80152 2.659622,5.707744 0.0349,0.566084 -1.149057,0.988823 -1.282093,0.297971 -0.818567,-1.671162 -1.637133,-3.342323 -2.455699,-5.013485 -1.059896,1.034505 -2.119791,2.06901 -3.179687,3.103515 1.5e-5,-4.264988 3e-5,-8.5299756 4.5e-5,-12.7949634 z" - id="path5851" /> - </g> - </g> -</svg> diff --git a/src/assets/gnome-shell/source-assets/process-working.svg b/src/assets/gnome-shell/source-assets/process-working.svg deleted file mode 100644 index 920a67d..0000000 --- a/src/assets/gnome-shell/source-assets/process-working.svg +++ /dev/null @@ -1,3084 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - id="svg5369" - version="1.1" - inkscape:version="0.91 r13725" - width="512" - height="32" - sodipodi:docname="process-working.svg" - style="display:inline"> - <metadata - id="metadata5375"> - <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="defs5373"> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient35326" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient8231-1-4-4-1"> - <stop - id="stop8233-28-5-27-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop8235-7-3-94-3" /> - <stop - id="stop8237-7-8-20-2" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop8239-2-9-1-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient35230" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient5767-6"> - <stop - id="stop5769-0" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop5771-1" /> - <stop - id="stop5773-7" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop5775-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10255" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10257"> - <stop - id="stop10259" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10261" /> - <stop - id="stop10263" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10265" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10267" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10269"> - <stop - id="stop10271" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10273" /> - <stop - id="stop10275" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10277" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10279" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10281"> - <stop - id="stop10283" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10285" /> - <stop - id="stop10287" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10289" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10291" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10293"> - <stop - id="stop10295" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10297" /> - <stop - id="stop10299" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10301" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10303" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10305"> - <stop - id="stop10307" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10309" /> - <stop - id="stop10311" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10313" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10315" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10317"> - <stop - id="stop10319" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10321" /> - <stop - id="stop10323" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10325" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10329"> - <stop - id="stop10331" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10333" /> - <stop - id="stop10335" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10337" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10339" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10341"> - <stop - id="stop10343" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10345" /> - <stop - id="stop10347" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10349" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10351" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10353"> - <stop - id="stop10355" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10357" /> - <stop - id="stop10359" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10361" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10363" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10365"> - <stop - id="stop10367" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10369" /> - <stop - id="stop10371" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10373" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10375" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10377"> - <stop - id="stop10379" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10381" /> - <stop - id="stop10383" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10385" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10387" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10389"> - <stop - id="stop10391" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10393" /> - <stop - id="stop10395" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10397" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10399" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10401"> - <stop - id="stop10403" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10405" /> - <stop - id="stop10407" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10409" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10411" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10413"> - <stop - id="stop10415" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10417" /> - <stop - id="stop10419" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10421" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10423" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10425"> - <stop - id="stop10427" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10429" /> - <stop - id="stop10431" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10433" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10435" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10437"> - <stop - id="stop10439" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10441" /> - <stop - id="stop10443" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10445" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10709" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10711" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient11663" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient11665" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14128" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14140" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14152" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14164" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14176" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14188" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14200" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14212" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14224" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14236" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14248" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14260" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14272" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14284" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14296" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14308" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14320" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14332" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14344" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14356" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14368" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14380" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14392" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14404" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14416" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14428" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14440" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14452" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14464" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14476" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14488" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14500" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14512" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14524" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14536" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14548" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14560" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14572" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14584" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14596" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14608" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14620" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14632" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14644" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14656" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14668" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14680" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14692" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14704" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14716" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14728" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14740" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14752" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14764" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14776" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14788" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14800" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14812" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14824" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14836" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14848" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14860" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14872" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14884" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14896" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14908" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14920" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14932" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14944" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14956" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14968" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient14980" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient14992" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15004" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15016" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15028" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15040" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15052" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15064" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15076" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15088" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15100" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15112" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15124" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15136" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15148" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15160" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15172" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15184" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15196" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15208" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15220" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15232" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15244" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15256" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15268" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15280" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15292" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15304" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15316" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15328" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15340" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15352" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15364" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15376" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15388" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15400" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15412" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15424" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15436" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15448" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15460" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15472" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15484" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15496" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15508" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient15520" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient15532" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient18026" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient18028" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - </defs> - <sodipodi:namedview - pagecolor="#808080" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1975" - inkscape:window-height="1098" - id="namedview5371" - showgrid="false" - borderlayer="true" - inkscape:showpageshadow="false" - inkscape:zoom="1" - inkscape:cx="346.23664" - inkscape:cy="-6.4057938" - inkscape:window-x="139" - inkscape:window-y="73" - inkscape:window-maximized="0" - inkscape:current-layer="layer2" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false"> - <inkscape:grid - type="xygrid" - id="grid11933" - empspacing="16" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - empcolor="#0000ff" - empopacity="0.47843137" /> - </sodipodi:namedview> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="tiles" - style="display:none" - transform="translate(0,-16)"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect12451" - width="24" - height="24" - x="0" - y="0" /> - <rect - y="24" - x="0" - height="24" - width="24" - id="rect12453" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" /> - <rect - y="0" - x="24" - height="24" - width="24" - id="rect12455" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" /> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect12457" - width="24" - height="24" - x="24" - y="24" /> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect12459" - width="24" - height="24" - x="48" - y="0" /> - <rect - y="24" - x="48" - height="24" - width="24" - id="rect12461" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" /> - <rect - y="0" - x="72" - height="24" - width="24" - id="rect12463" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" /> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect12465" - width="24" - height="24" - x="72" - y="24" /> - </g> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="spinner" - transform="translate(0,-16)"> - <g - style="display:inline" - id="g12246" - transform="matrix(0.29521872,0,0,0.2952381,149.03971,-388.51498)"> - <path - transform="matrix(-0.16397381,0.61157081,-0.61162275,-0.16377992,-372.32298,1442.5061)" - d="m -3.4436513,184.72075 a 22.98097,22.98097 0 0 1 -25.9046347,17.42496 22.98097,22.98097 0 0 1 -19.37345,-24.4816 22.98097,22.98097 0 0 1 22.91234,-21.20622" - sodipodi:ry="22.98097" - sodipodi:rx="22.98097" - sodipodi:cy="179.43886" - sodipodi:cx="-25.809397" - id="path12248" - style="display:inline;fill:none;stroke:url(#radialGradient11663);stroke-width:17.83196449;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - sodipodi:type="arc" - sodipodi:start="0.23191105" - sodipodi:end="4.712389" - sodipodi:open="true" - inkscape:export-filename="/home/hbons/Moblin/git/carrick-ng/data/icons/network-connecting.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/hbons/Moblin/git/carrick-ng/data/icons/network-connecting.png" - sodipodi:open="true" - sodipodi:end="4.712389" - sodipodi:start="0.23191105" - sodipodi:type="arc" - style="display:inline;fill:none;stroke:url(#radialGradient11665);stroke-width:17.83196449;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path12250" - sodipodi:cx="-25.809397" - sodipodi:cy="179.43886" - sodipodi:rx="22.98097" - sodipodi:ry="22.98097" - d="m -3.4436513,184.72075 a 22.98097,22.98097 0 0 1 -25.9046347,17.42496 22.98097,22.98097 0 0 1 -19.37345,-24.4816 22.98097,22.98097 0 0 1 22.91234,-21.20622" - transform="matrix(-0.63300818,0.01438356,-0.01458424,-0.63300359,-491.4014,1510.996)" /> - </g> - <use - height="100%" - width="100%" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,48.943073,-180.55304)" - id="use12258" - xlink:href="#g10450-5" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.97814761,0.20791169,-0.20791169,0.97814761,70.553652,-185.80321)" - id="use12260" - xlink:href="#use12000" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.95105653,0.30901699,-0.30901699,0.95105653,146.76602,-177.21804)" - id="use12266" - xlink:href="#g10450-5" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.91354547,0.40673664,-0.40673664,0.91354547,169.60833,-183.68101)" - id="use12270" - xlink:href="#use12000" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.86602542,0.5,-0.5,0.86602542,194.48539,-193.2587)" - id="use12272" - xlink:href="#use12002" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.80901701,0.58778525,-0.58778525,0.80901701,289.93475,-156.19404)" - id="use12278" - xlink:href="#g10450-5" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.74314484,0.66913061,-0.66913061,0.74314484,315.02774,-163.93338)" - id="use12282" - xlink:href="#use12000" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.66913062,0.74314483,-0.74314483,0.66913062,343.01848,-174.00634)" - id="use12284" - xlink:href="#use12002" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.58778527,0.809017,-0.809017,0.58778527,374.34035,-185.86931)" - id="use12290" - xlink:href="#use12008" - y="0" - x="0" /> - <use - x="0" - y="0" - xlink:href="#use12290" - id="use12494" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,31.624213,-28.945572)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12494" - id="use12498" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,31.778114,-31.872282)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12498" - id="use12502" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,31.931711,-34.799662)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12502" - id="use12506" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,32.085178,-37.729332)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12506" - id="use12510" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,32.238466,-40.661342)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12510" - id="use12514" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,32.390823,-43.585942)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12514" - id="use12518" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,32.543439,-46.510902)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12518" - id="use12522" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,32.696338,-49.437422)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12522" - id="use12526" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,32.849272,-52.363942)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12526" - id="use12530" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.002239,-55.290422)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12530" - id="use12534" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.155242,-58.216862)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12534" - id="use12538" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.308287,-61.143262)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12538" - id="use12542" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.461378,-64.069632)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12542" - id="use12546" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.614517,-66.995962)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12546" - id="use12550" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.767708,-69.922282)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12550" - id="use12554" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,33.920952,-72.848572)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12554" - id="use12558" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.074252,-75.774862)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12558" - id="use12562" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.228224,-78.701442)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12562" - id="use12566" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.384481,-81.628162)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12566" - id="use12570" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.543085,-84.555062)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12570" - id="use12574" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.694273,-87.482889)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12574" - id="use12578" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.845821,-90.410449)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12578" - id="use12582" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,34.998931,-93.337739)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12582" - id="use12586" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,35.152046,-96.264989)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12586" - id="use12590" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,35.305116,-99.192209)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12590" - id="use12594" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,35.458143,-102.11938)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12594" - id="use12598" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,35.611131,-105.04652)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12598" - id="use12602" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,35.764086,-107.97361)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12602" - id="use12606" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,35.917013,-110.90066)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12606" - id="use12610" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.069915,-113.82765)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12610" - id="use12614" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.2228,-116.75459)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12614" - id="use12618" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.375673,-119.68147)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12618" - id="use12622" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.52885,-122.60769)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12622" - id="use12626" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.682157,-125.53161)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12626" - id="use12630" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.835642,-128.45319)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12630" - id="use12634" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,36.990059,-131.38219)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12634" - id="use12638" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,37.144216,-134.31083)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12638" - id="use12642" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,37.298091,-137.2379)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12642" - id="use12646" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,37.45193,-140.16497)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12646" - id="use12650" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,37.605737,-143.09209)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12650" - id="use12654" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,37.759507,-146.01924)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12654" - id="use12658" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,37.913236,-148.94644)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12658" - id="use12662" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.066918,-151.87367)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12662" - id="use12666" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.220552,-154.80093)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12666" - id="use12670" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.374134,-157.72821)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12670" - id="use12674" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.527663,-160.65551)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12674" - id="use12678" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.681136,-163.58282)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12678" - id="use12682" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.833937,-166.50983)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12682" - id="use12686" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,38.984453,-169.4367)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use12686" - id="use12690" - transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,39.132623,-172.3634)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#g12246" - id="use17640" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.463174,-0.6860274)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17640" - id="use17642" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.545526,-2.3041175)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17642" - id="use17644" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.627869,-3.9222415)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17644" - id="use17646" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.710256,-5.5403957)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17646" - id="use17648" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.792682,-7.1585849)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17648" - id="use17650" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.875146,-8.776813)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17650" - id="use17652" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,18.957642,-10.395084)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17652" - id="use17654" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.040166,-12.0134)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17654" - id="use17656" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.122713,-13.631765)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17656" - id="use17658" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.205279,-15.250181)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17658" - id="use17660" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.287857,-16.868648)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17660" - id="use17662" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.370295,-18.487328)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17662" - id="use17664" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.452449,-20.10785)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17664" - id="use17666" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.534518,-21.730599)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17666" - id="use17668" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,19.616047,-23.351029)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#g12246" - id="use17670" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,288.32996,17.191525)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17640" - id="use17672" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,305.13809,1.2121247)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17642" - id="use17674" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,321.94624,-14.767309)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17644" - id="use17676" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,338.75439,-30.746723)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17646" - id="use17678" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,355.56257,-46.726112)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17648" - id="use17680" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,372.37079,-62.705487)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17650" - id="use17682" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,389.179,-78.684846)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17652" - id="use17684" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,405.98726,-94.664188)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17654" - id="use17686" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,422.79551,-110.64352)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17656" - id="use17688" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,439.60382,-126.62284)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17658" - id="use17690" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,456.41215,-142.60217)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17660" - id="use17692" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,473.22049,-158.58145)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17662" - id="use17694" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,490.02954,-174.56102)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17664" - id="use17696" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,506.83972,-190.54059)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17666" - id="use17698" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,523.65101,-206.52033)" - width="100%" - height="100%" /> - <use - x="0" - y="0" - xlink:href="#use17668" - id="use17700" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,540.45771,-222.50042)" - width="100%" - height="100%" /> - <g - transform="matrix(-0.29521867,7.2137245e-5,-7.2124844e-5,-0.29523807,-132.95323,452.47763)" - id="g17702" - style="display:inline"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/hbons/Moblin/git/carrick-ng/data/icons/network-connecting.png" - sodipodi:open="true" - sodipodi:end="4.712389" - sodipodi:start="0.23191105" - sodipodi:type="arc" - style="display:inline;fill:none;stroke:url(#radialGradient18026);stroke-width:17.83196449;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path17704" - sodipodi:cx="-25.809397" - sodipodi:cy="179.43886" - sodipodi:rx="22.98097" - sodipodi:ry="22.98097" - d="m -3.4436513,184.72075 a 22.98097,22.98097 0 0 1 -25.9046347,17.42496 22.98097,22.98097 0 0 1 -19.37345,-24.4816 22.98097,22.98097 0 0 1 22.91234,-21.20622" - transform="matrix(-0.16397381,0.61157081,-0.61162275,-0.16377992,-372.32298,1442.5061)" /> - <path - transform="matrix(-0.63300818,0.01438356,-0.01458424,-0.63300359,-491.4014,1510.996)" - d="m -3.4436513,184.72075 a 22.98097,22.98097 0 0 1 -25.9046347,17.42496 22.98097,22.98097 0 0 1 -19.37345,-24.4816 22.98097,22.98097 0 0 1 22.91234,-21.20622" - sodipodi:ry="22.98097" - sodipodi:rx="22.98097" - sodipodi:cy="179.43886" - sodipodi:cx="-25.809397" - id="path17706" - style="display:inline;fill:none;stroke:url(#radialGradient18028);stroke-width:17.83196449;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - sodipodi:type="arc" - sodipodi:start="0.23191105" - sodipodi:end="4.712389" - sodipodi:open="true" - inkscape:export-filename="/home/hbons/Moblin/git/carrick-ng/data/icons/network-connecting.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - </g> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.081742,-0.6039496)" - id="use17708" - xlink:href="#g17702" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.164094,-2.2220396)" - id="use17710" - xlink:href="#use17708" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.246437,-3.8401636)" - id="use17712" - xlink:href="#use17710" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.328824,-5.4583176)" - id="use17714" - xlink:href="#use17712" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.41125,-7.0765066)" - id="use17716" - xlink:href="#use17714" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.493714,-8.6947346)" - id="use17718" - xlink:href="#use17716" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.57621,-10.313006)" - id="use17720" - xlink:href="#use17718" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.658734,-11.931322)" - id="use17722" - xlink:href="#use17720" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.741281,-13.549687)" - id="use17724" - xlink:href="#use17722" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.823847,-15.168103)" - id="use17726" - xlink:href="#use17724" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.906425,-16.78657)" - id="use17728" - xlink:href="#use17726" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,20.988863,-18.40525)" - id="use17730" - xlink:href="#use17728" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,21.071017,-20.025772)" - id="use17732" - xlink:href="#use17730" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,21.153086,-21.648521)" - id="use17734" - xlink:href="#use17732" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(0.99487012,0.10116048,-0.10116048,0.99487012,21.234615,-23.268951)" - id="use17736" - xlink:href="#use17734" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,304.30952,33.999897)" - id="use17738" - xlink:href="#g17702" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,321.11765,18.020497)" - id="use17740" - xlink:href="#use17708" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,337.9258,2.0410622)" - id="use17742" - xlink:href="#use17710" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,354.73395,-13.938351)" - id="use17744" - xlink:href="#use17712" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,371.54213,-29.91774)" - id="use17746" - xlink:href="#use17714" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,388.35035,-45.897115)" - id="use17748" - xlink:href="#use17716" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,405.15856,-61.876474)" - id="use17750" - xlink:href="#use17718" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,421.96682,-77.855816)" - id="use17752" - xlink:href="#use17720" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,438.77507,-93.835152)" - id="use17754" - xlink:href="#use17722" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,455.58338,-109.81448)" - id="use17756" - xlink:href="#use17724" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,472.39171,-125.79381)" - id="use17758" - xlink:href="#use17726" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,489.20005,-141.77309)" - id="use17760" - xlink:href="#use17728" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,506.0091,-157.75266)" - id="use17762" - xlink:href="#use17730" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,522.81928,-173.73223)" - id="use17764" - xlink:href="#use17732" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,539.63057,-189.71197)" - id="use17766" - xlink:href="#use17734" - y="0" - x="0" /> - <use - height="100%" - width="100%" - transform="matrix(-0.0505232,0.99872288,-0.99872288,-0.0505232,556.43727,-205.69206)" - id="use17768" - xlink:href="#use17736" - y="0" - x="0" /> - </g> -</svg> diff --git a/src/main/gnome-shell/gnome-shell-dark-alt.css b/src/main/gnome-shell/gnome-shell-dark-alt.css index 9bf435f..d0dbc53 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; + color: #afafaf; background-color: #555555; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #dedede; + background-color: #6f6f6f; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #dedede; + background-color: #3c3c3c; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { +.keyboard-key.default-key { background-color: #242424; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #dedede; - background-color: #555555; + background-color: #3e3e3e; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #dedede; - background-color: #464646; + background-color: #0b0b0b; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt.css index c6f65cd..fa41ab9 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; + color: #afafaf; background-color: #555555; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #dedede; + background-color: #6f6f6f; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #dedede; + background-color: #3c3c3c; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { +.keyboard-key.default-key { background-color: #242424; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #dedede; - background-color: #555555; + background-color: #3e3e3e; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #dedede; - background-color: #464646; + background-color: #0b0b0b; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid.css b/src/main/gnome-shell/gnome-shell-dark-solid.css index c6f65cd..fa41ab9 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; + color: #afafaf; background-color: #555555; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #dedede; + background-color: #6f6f6f; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #dedede; + background-color: #3c3c3c; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { +.keyboard-key.default-key { background-color: #242424; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #dedede; - background-color: #555555; + background-color: #3e3e3e; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #dedede; - background-color: #464646; + background-color: #0b0b0b; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-dark.css b/src/main/gnome-shell/gnome-shell-dark.css index 9bf435f..d0dbc53 100644 --- a/src/main/gnome-shell/gnome-shell-dark.css +++ b/src/main/gnome-shell/gnome-shell-dark.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; + color: #afafaf; background-color: #555555; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #dedede; + background-color: #6f6f6f; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #dedede; + background-color: #3c3c3c; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { +.keyboard-key.default-key { background-color: #242424; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #dedede; - background-color: #555555; + background-color: #3e3e3e; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #dedede; - background-color: #464646; + background-color: #0b0b0b; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt.css b/src/main/gnome-shell/gnome-shell-light-alt.css index 7676b98..27a1a5f 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt.css +++ b/src/main/gnome-shell/gnome-shell-light-alt.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; - background-color: #FAFAFA; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + color: #424242; + background-color: #eeeeee; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #242424; + background-color: white; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #242424; + background-color: #d5d5d5; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { - background-color: #E0E0E0; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); +.keyboard-key.default-key { + background-color: #c0c0c0; + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #242424; - background-color: #FAFAFA; + background-color: #dadada; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #242424; - background-color: #ebebeb; + background-color: #a7a7a7; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt.css b/src/main/gnome-shell/gnome-shell-light-solid-alt.css index 4578247..6008d55 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; - background-color: #FAFAFA; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + color: #424242; + background-color: #eeeeee; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #242424; + background-color: white; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #242424; + background-color: #d5d5d5; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { - background-color: #E0E0E0; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); +.keyboard-key.default-key { + background-color: #c0c0c0; + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #242424; - background-color: #FAFAFA; + background-color: #dadada; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #242424; - background-color: #ebebeb; + background-color: #a7a7a7; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid.css b/src/main/gnome-shell/gnome-shell-light-solid.css index 4578247..6008d55 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid.css +++ b/src/main/gnome-shell/gnome-shell-light-solid.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; - background-color: #FAFAFA; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + color: #424242; + background-color: #eeeeee; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #242424; + background-color: white; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #242424; + background-color: #d5d5d5; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { - background-color: #E0E0E0; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); +.keyboard-key.default-key { + background-color: #c0c0c0; + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #242424; - background-color: #FAFAFA; + background-color: #dadada; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #242424; - background-color: #ebebeb; + background-color: #a7a7a7; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-light.css b/src/main/gnome-shell/gnome-shell-light.css index 626dd60..86e564c 100644 --- a/src/main/gnome-shell/gnome-shell-light.css +++ b/src/main/gnome-shell/gnome-shell-light.css @@ -3066,25 +3066,25 @@ StWidget.focused .app-well-app-running-dot { } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: 6px; + font-size: 16pt; + border-radius: 10px; border: none; - color: inherit; - background-color: #FAFAFA; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + color: #424242; + background-color: #eeeeee; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); } .keyboard-key:focus, .keyboard-key:hover { - color: white; - background-color: #0860f2; + color: #242424; + background-color: white; } .keyboard-key:checked, .keyboard-key:active { - color: white; - background-color: #0754d4; + color: #242424; + background-color: #d5d5d5; } .keyboard-key:grayed { @@ -3093,25 +3093,25 @@ StWidget.focused .app-well-app-running-dot { border-color: rgba(0, 0, 0, 0.3); } -.keyboard-key.default-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { - background-color: #E0E0E0; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); +.keyboard-key.default-key { + background-color: #c0c0c0; + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } -.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { color: #242424; - background-color: #FAFAFA; + background-color: #dadada; } -.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { color: #242424; - background-color: #ebebeb; + background-color: #a7a7a7; } .keyboard-key.enter-key { color: white; background-color: #0860f2; - box-shadow: 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); } .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { @@ -3124,6 +3124,10 @@ StWidget.focused .app-well-app-running-dot { background-color: #064cc1; } +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #0860f2; +} + .keyboard-key StIcon { icon-size: 1.125em; } diff --git a/src/main/gnome-shell/gnome-shell-theme.gresource.xml b/src/main/gnome-shell/gnome-shell-theme.gresource.xml index b4d0caa..7ffd3d5 100644 --- a/src/main/gnome-shell/gnome-shell-theme.gresource.xml +++ b/src/main/gnome-shell/gnome-shell-theme.gresource.xml @@ -16,19 +16,23 @@ <file>assets/window-close-hover.svg</file> <file>assets/window-close-active.svg</file> <file>assets/activities.svg</file> - <file>assets/startup.svg</file> - <file>assets/startup@2.svg</file> <file>assets/background.jpg</file> - <file>message-indicator-symbolic.svg</file> - <file>eye-not-looking-symbolic.svg</file> - <file>eye-open-negative-filled-symbolic.svg</file> - <file>pointer-double-click-symbolic.svg</file> - <file>pointer-drag-symbolic.svg</file> - <file>pointer-primary-click-symbolic.svg</file> - <file>pointer-secondary-click-symbolic.svg</file> - <file>no-events.svg</file> - <file>no-notifications.svg</file> - <file>process-working.svg</file> + <file>icons/color-pick.svg</file> + <file>icons/eye-not-looking-symbolic.svg</file> + <file>icons/eye-open-negative-filled-symbolic.svg</file> + <file>icons/keyboard-caps-lock-filled-symbolic.svg</file> + <file>icons/keyboard-enter-symbolic.svg</file> + <file>icons/keyboard-hide-symbolic.svg</file> + <file>icons/keyboard-layout-filled-symbolic.svg</file> + <file>icons/keyboard-shift-filled-symbolic.svg</file> + <file>icons/message-indicator-symbolic.svg</file> + <file>icons/pointer-double-click-symbolic.svg</file> + <file>icons/pointer-drag-symbolic.svg</file> + <file>icons/pointer-primary-click-symbolic.svg</file> + <file>icons/pointer-secondary-click-symbolic.svg</file> <file>gnome-shell.css</file> + <file alias="assets/no-events.svg">no-events.svg</file> + <file alias="assets/no-notifications.svg">no-notifications.svg</file> + <file alias="assets/process-working.svg">process-working.svg</file> </gresource> </gresources> diff --git a/src/main/gtk-3.0/gtk-dark-solid.css b/src/main/gtk-3.0/gtk-dark-solid.css index fa477ee..4df4c77 100644 --- a/src/main/gtk-3.0/gtk-dark-solid.css +++ b/src/main/gtk-3.0/gtk-dark-solid.css @@ -6569,7 +6569,7 @@ window.background.csd evview.view.content-view { background-color: transparent; } -box.vertical > box.vertical > box.vertical > paned.horizontal { +.background.csd > box.vertical > box.vertical > box.vertical > paned.horizontal > separator { background-image: none; background-color: #0e0e0e; } diff --git a/src/main/gtk-3.0/gtk-dark.css b/src/main/gtk-3.0/gtk-dark.css index 3d0c086..d5a5669 100644 --- a/src/main/gtk-3.0/gtk-dark.css +++ b/src/main/gtk-3.0/gtk-dark.css @@ -6565,7 +6565,7 @@ window.background.csd evview.view.content-view { background-color: transparent; } -box.vertical > box.vertical > box.vertical > paned.horizontal { +.background.csd > box.vertical > box.vertical > box.vertical > paned.horizontal > separator { background-image: none; background-color: #0e0e0e; } diff --git a/src/main/gtk-3.0/gtk-light-solid.css b/src/main/gtk-3.0/gtk-light-solid.css index 5d80b90..508f324 100644 --- a/src/main/gtk-3.0/gtk-light-solid.css +++ b/src/main/gtk-3.0/gtk-light-solid.css @@ -6586,7 +6586,7 @@ window.background.csd evview.view.content-view { background-color: transparent; } -box.vertical > box.vertical > box.vertical > paned.horizontal { +.background.csd > box.vertical > box.vertical > box.vertical > paned.horizontal > separator { background-image: none; background-color: #e0e0e0; } diff --git a/src/main/gtk-3.0/gtk-light.css b/src/main/gtk-3.0/gtk-light.css index 90659e2..76d2efe 100644 --- a/src/main/gtk-3.0/gtk-light.css +++ b/src/main/gtk-3.0/gtk-light.css @@ -6582,7 +6582,7 @@ window.background.csd evview.view.content-view { background-color: transparent; } -box.vertical > box.vertical > box.vertical > paned.horizontal { +.background.csd > box.vertical > box.vertical > box.vertical > paned.horizontal > separator { background-image: none; background-color: #e0e0e0; } diff --git a/src/sass/_colors.scss b/src/sass/_colors.scss index 61a4263..0a7928b 100644 --- a/src/sass/_colors.scss +++ b/src/sass/_colors.scss @@ -40,8 +40,8 @@ $highlight_color: if($variant == 'light', rgba(white, 0.65), r // Background colors $dark_bg_color: rgba(black, 0.6); $alt_dark_bg_color: rgba(black, 0.3); -$solid_bg_color: if($variant == 'light', #FAFAFA, #555555); // for gnome-shell keyboard -$alt_solid_bg_color: if($variant == 'light', #E0E0E0, #242424); // for gnome-shell keyboard +$solid_bg_color: if($variant == 'light', #eeeeee, #555555); // for gnome-shell keyboard +$alt_solid_bg_color: if($variant == 'light', #c0c0c0, #242424); // for gnome-shell keyboard // Link colors $link_color: #3484e2; diff --git a/src/sass/gnome-shell/_common.scss b/src/sass/gnome-shell/_common.scss index c788a56..5447eec 100644 --- a/src/sass/gnome-shell/_common.scss +++ b/src/sass/gnome-shell/_common.scss @@ -2663,57 +2663,46 @@ StWidget.focused .app-well-app-running-dot { // .keyboard-row { spacing: 15px; } .keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; + min-height: 1.2em; + min-width: 1.2em; font-weight: bold; - border-radius: $bt_radius; + font-size: round(16) + pt; + border-radius: $mn_radius; border: none; - color: inherit; + color: $alt_fg_color; background-color: $solid_bg_color; - box-shadow: 0 1px rgba(black, 0.2); - &:focus, &:hover { color: $light_fg_color; background-color: $primary_color; } - &:checked, &:active { color: $light_fg_color; background-color: darken($primary_color, 6%); } + box-shadow: 0 1px 3px rgba(black, 0.15); + + &:focus, &:hover { color: $fg_color; background-color: if($variant == 'light', white, lighten($solid_bg_color, 10%)); } + &:checked, &:active { color: $fg_color; background-color: darken($solid_bg_color, 10%); } &:grayed { //FIXME background-color: $alt_dark_bg_color; color: $light_alt_fg_color; border-color: $alt_dark_bg_color; } - // &.default-key { background-size: 20px; } // backspace button - &.default-key, - &.shift-key-lowercase, - &.shift-key-uppercase, - &.hide-key, - &.layout-key { + &.default-key { // non-character keys background-color: $alt_solid_bg_color; - box-shadow: 0 1px rgba(black, 0.2); - &:focus, &:hover { color: $fg_color; background-color: $solid_bg_color; } - &:checked, &:active { color: $fg_color; background-color: darken($solid_bg_color, 6%); } + box-shadow: 0 2px 3px rgba(black, 0.15); + + &:focus, &:hover { color: $fg_color; background-color: lighten($alt_solid_bg_color, 10%); } + &:checked, &:active { color: $fg_color; background-color: darken($alt_solid_bg_color, 10%); } } - &.enter-key { + + &.enter-key { // enter key is suggested-action color: $light_fg_color; background-color: $primary_color; - box-shadow: 0 1px rgba(black, 0.2); - // background-image: url("assets/key-enter.svg"); + box-shadow: 0 2px 3px rgba(black, 0.15); + &:focus, &:hover { color: $light_fg_color; background-color: lighten($primary_color, 5%); } &:checked, &:active { color: $light_fg_color; background-color: darken($primary_color, 10%); } } - // &.shift-key-lowercase { - // background-image: url("assets/key-shift.svg"); - // } - // &.shift-key-uppercase { - // background-image: url("assets/key-shift-uppercase.svg"); - // } - // &.shift-key-uppercase:latched { - // background-image: url("assets/key-shift-latched-uppercase.svg"); - // } - // &.hide-key { - // background-image: url("assets/key-hide.svg"); - // } - // &.layout-key { - // background-image: url("assets/key-layout.svg"); - // } + + &.shift-key-uppercase { + &, &:focus, &:hover, &:checked, &:active { + color: $primary_color; + } + } StIcon { icon-size: 1.125em; } } diff --git a/src/sass/gtk/_applications.scss b/src/sass/gtk/_applications.scss index f84df4f..5129198 100644 --- a/src/sass/gtk/_applications.scss +++ b/src/sass/gtk/_applications.scss @@ -2180,10 +2180,14 @@ window.background.csd { // // Eye of GNOME Image Viewer // -box.vertical > box.vertical > box.vertical{ - > paned.horizontal { - background-image: none; - background-color: $header_border; +.background.csd { + > box.vertical > box.vertical > box.vertical{ + > paned.horizontal { + > separator { + background-image: none; + background-color: $header_border; + } + } } }