Add nord color version #520
35
README.md
@ -85,44 +85,47 @@ Usage: `./install.sh [OPTIONS...]`
|
||||
-s, --size [default|180|220|240|260|280]
|
||||
Set Nautilus sidebar minimum width. Default is 200px
|
||||
|
||||
-i, --icon [standard|simple|gnome|ubuntu|arch|manjaro|fedora|debian|void|opensuse|popos|mxlinux|zorin]
|
||||
-i, --icon [standard|simple|gnome|ubuntu|tux|arch|manjaro|fedora|debian|void|opensuse|popos|mxlinux|zorin]
|
||||
Set 'Activities' icon. Default is 'standard'
|
||||
|
||||
-b, --background [default|blank|IMAGE_PATH]
|
||||
Set gnome-shell background image. Default is BigSur-like wallpaper
|
||||
|
||||
-m, --monterey
|
||||
Set to MacOS Monterey style.
|
||||
-m, --monterey
|
||||
Set to MacOS Monterey style.
|
||||
|
||||
-N, --nautilus-style [stable|normal|mojave|glassy]
|
||||
Set Nautilus style. Default is BigSur-like style (stabled sidebar)
|
||||
|
||||
-HD, --highdefinition
|
||||
-HD, --highdefinition
|
||||
Set to High Definition size. Default is laptop size
|
||||
|
||||
--normal, --normalshowapps
|
||||
--normal, --normalshowapps
|
||||
Set gnome-shell show apps button style to normal. Default is bigsur
|
||||
|
||||
--round, --roundedmaxwindow
|
||||
--round, --roundedmaxwindow
|
||||
Set maximized window to rounded. Default is square
|
||||
|
||||
--right, --rightplacement
|
||||
--right, --rightplacement
|
||||
Set Nautilus titlebutton placement to right. Default is left
|
||||
|
||||
--black, --blackfont
|
||||
--black, --blackfont
|
||||
Set panel font color to black. Default is white
|
||||
|
||||
--dialog, --interactive
|
||||
Run this installer interactively, with dialogs.
|
||||
--darker, --darkercolor
|
||||
Install darker 'WhiteSur' dark themes.
|
||||
|
||||
--silent-mode
|
||||
Meant for developers: ignore any confirm prompt and params become more strict.
|
||||
--dialog, --interactive
|
||||
Run this installer interactively, with dialogs.
|
||||
|
||||
-r, --remove, -u, --uninstall
|
||||
Remove all installed WhiteSur themes.
|
||||
--silent-mode
|
||||
Meant for developers: ignore any confirm prompt and params become more strict.
|
||||
|
||||
-h, --help
|
||||
Show this help.
|
||||
-r, --remove, -u, --uninstall
|
||||
Remove all installed WhiteSur themes.
|
||||
|
||||
-h, --help
|
||||
Show this help.
|
||||
```
|
||||
|
||||
</details>
|
||||
|
@ -84,6 +84,8 @@ while [[ $# -gt 0 ]]; do
|
||||
black_font="true"; shift ;;
|
||||
--darker|--darkercolor)
|
||||
darker="true"; shift ;;
|
||||
--nord|--nordcolor)
|
||||
nord="true"; shift ;;
|
||||
-HD|--highdefinition)
|
||||
compact="false"; shift ;;
|
||||
-m|--monterey)
|
||||
|
@ -433,10 +433,12 @@ install_theemy() {
|
||||
mkdir -p "${TMP_DIR_T}"
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/assets" "${TMP_DIR_T}"
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/sidebar-assets/"*".png" "${TMP_DIR_T}/assets"
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/windows-assets/titlebutton${alt}" "${TMP_DIR_T}/windows-assets"
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/scalable" "${TMP_DIR_T}/assets"
|
||||
|
||||
if [[ "${theme}" != '' ]]; then
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/assets${theme}/"*".png" "${TMP_DIR_T}/assets"
|
||||
if [[ "${nord}" == 'true' ]]; then
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/windows-assets/titlebutton${alt}-nord" "${TMP_DIR_T}/windows-assets"
|
||||
else
|
||||
cp -r "${THEME_SRC_DIR}/assets/gtk/windows-assets/titlebutton${alt}" "${TMP_DIR_T}/windows-assets"
|
||||
fi
|
||||
|
||||
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-3.0/gtk${color}.scss" "${TMP_DIR_T}/gtk.css"
|
||||
@ -813,6 +815,12 @@ gtk_base() {
|
||||
customize_theme() {
|
||||
cp -rf "${THEME_SRC_DIR}/sass/_theme-options"{".scss","-temp.scss"}
|
||||
|
||||
# Darker dark colors
|
||||
if [[ "${nord}" == 'true' ]]; then
|
||||
prompt -s "Changing color scheme style to nord style ..."
|
||||
sed $SED_OPT "/\$colorscheme/s/default/nord/" "${THEME_SRC_DIR}/sass/_theme-options-temp.scss"
|
||||
fi
|
||||
|
||||
# Darker dark colors
|
||||
if [[ "${darker}" == 'true' ]]; then
|
||||
prompt -s "Changing dark color style to darker one ..."
|
||||
|
@ -1,194 +0,0 @@
|
||||
<svg width="100" height="100" 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 id="theme_colors">
|
||||
<linearGradient id="dark_shade" osb:paint="gradient">
|
||||
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
|
||||
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_fg_color" osb:paint="solid">
|
||||
<stop stop-color="#ffffff" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_bg_color" osb:paint="solid">
|
||||
<stop stop-color="#2E7CF7" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="v" x1="-8.3622" x2="-8.3622" y1="139" y2="147" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="u" x1="124" x2="124" y1="6.3622" y2="10.362" gradientTransform="matrix(1.5001,0,0,1.5001,-62.011,-4.1838)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="t" x1="-737.8" x2="-737.8" y1="-725.95" y2="-717.95" gradientTransform="translate(0 -.031392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="s" x1="10.5" x2="10.5" y1="1033.4" y2="1035.4" gradientTransform="rotate(45,1243.6,548.31)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="w" x1="484.2" x2="484.2" y1="188.95" y2="204.89" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="bh" x1="25" x2="25" y1="45.36" y2="31.36" gradientTransform="matrix(1 0 0 .92857 0 3.2401)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bd" x1="479.12" x2="479.12" y1="215.25" y2="183.36" gradientTransform="matrix(.93751 0 0 .90625 30.122 19.19)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="ag" x1="466" x2="498" y1="199.36" y2="199.36" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="linearGradient2482" x1="466.89" x2="497.11" y1="199.36" y2="199.36" gradientTransform="matrix(.99279 0 0 .99279 3.4782 1.4392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<filter id="filter1747" x="-.094372" y="-.12623" width="1.1887" height="1.2525" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.32963489"/>
|
||||
</filter>
|
||||
<filter id="filter1765" x="-.0675" y="-.26999" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.22500211"/>
|
||||
</filter>
|
||||
<filter id="filter1868" x="-.0675" y="-.27" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.225"/>
|
||||
</filter>
|
||||
<filter id="filter1754" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.27000675"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<rect transform="scale(1,-1)" x="50.41" y="-97.433" width="51.143" height="95.15" rx="0" ry="0" color="#000000" fill="#333333" stroke-width=".62487"/>
|
||||
<rect transform="scale(1,-1)" x="-.22431" y="-97.433" width="50.635" height="95.15" rx="0" ry="0" color="#000000" fill="#f9fafb" stroke-width=".62175"/>
|
||||
<g id="checkbox-checked-dark" transform="translate(20.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)" fill="#3b3c3e">
|
||||
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed-dark" transform="translate(39.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#bh)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<rect transform="rotate(225)" x="-738.8" y="-725.95" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="121" y="5.36" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="#ffffff" filter="url(#bp)" stroke-width="1.5"/>
|
||||
</g>
|
||||
<g id="radio-mixed-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect transform="rotate(-90)" x="-9.3622" y="139" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode-dark" transform="translate(-407.52 -127.08)">
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="7" ry="7" opacity=".12"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="url(#linearGradient2482)" stroke-width="0"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="467" y="185.36" width="30" height="29" rx="6" ry="6" fill="url(#bd)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode" transform="translate(-457.65 -127.08)">
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="6" ry="6" fill="url(#ag)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="url(#w)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-checked" transform="translate(-29.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m11.69 1028.1c-0.17574 0.1758-0.2845 0.4185-0.2845 0.6878v5.0271h-2.0232c-0.54071 0-0.97645 0.4446-0.97642 0.9986 0 0.554 0.43571 1.0012 0.97639 1.0012h3.0508c0.53865 0 0.97227-0.4337 0.97227-0.9723v-0.028l0.0014-6.0284c0-0.5386-0.43363-0.9723-0.97227-0.9723h-0.05663c-0.26932 0-0.51204 0.1088-0.68778 0.2845z" fill="#000000" filter="url(#filter1747)" opacity=".15"/>
|
||||
<path transform="rotate(-45,1243.6,548.31)" d="m33.277 15.869c-0.24853 0-0.49706 0.09472-0.6875 0.28516l-3.5547 3.5547-1.4316-1.4297c-0.38234-0.38234-1.0048-0.37611-1.3965 0.01563-0.39173 0.39173-0.39992 1.0161-0.01758 1.3984l2.1191 2.1172 0.03911 0.03911c0.38088 0.38088 0.99412 0.38088 1.375 0l0.01953-0.01953 4.2637-4.2617c0.38088-0.38088 0.38088-0.99412 0-1.375l-0.04102-0.03906c-0.19044-0.19044-0.43897-0.28516-0.6875-0.28516z" fill="url(#s)" filter="url(#br)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed" transform="translate(-10.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m8.6664 1035.4c-0.39174-0.3917-0.39174-1.0225 0-1.4142l4.2426-4.2427c0.39174-0.3917 1.0225-0.3917 1.4142 0 0.39174 0.3918 0.39174 1.0225 0 1.4143l-4.2426 4.2426c-0.39174 0.3917-1.0225 0.3917-1.4142 0z" fill="#000000" filter="url(#filter1765)" opacity=".15"/>
|
||||
<path transform="rotate(225)" d="m-737.8-725.98c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#t)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m124 5.7962h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="#000000" filter="url(#filter1754)" opacity=".15" stroke-width="1.5001"/>
|
||||
<path d="m124 5.36h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="url(#u)" filter="url(#bm)" stroke-width="1.5001"/>
|
||||
</g>
|
||||
<g id="radio-mixed" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m139 8.8152c0-0.554 0.446-1 1-1h6c0.554 0 1 0.446 1 1s-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1z" fill="#000000" filter="url(#filter1868)" opacity=".15"/>
|
||||
<path transform="rotate(-90)" d="m-8.3622 139c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#v)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 542 B |
Before Width: | Height: | Size: 980 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 584 B |
Before Width: | Height: | Size: 900 B |
Before Width: | Height: | Size: 432 B |
Before Width: | Height: | Size: 676 B |
Before Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 729 B |
Before Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 487 B |
Before Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 438 B |
Before Width: | Height: | Size: 825 B |
Before Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 706 B |
@ -1,194 +0,0 @@
|
||||
<svg width="100" height="100" 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 id="theme_colors">
|
||||
<linearGradient id="dark_shade" osb:paint="gradient">
|
||||
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
|
||||
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_fg_color" osb:paint="solid">
|
||||
<stop stop-color="#ffffff" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_bg_color" osb:paint="solid">
|
||||
<stop stop-color="#79B757" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="v" x1="-8.3622" x2="-8.3622" y1="139" y2="147" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="u" x1="124" x2="124" y1="6.3622" y2="10.362" gradientTransform="matrix(1.5001,0,0,1.5001,-62.011,-4.1838)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="t" x1="-737.8" x2="-737.8" y1="-725.95" y2="-717.95" gradientTransform="translate(0 -.031392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="s" x1="10.5" x2="10.5" y1="1033.4" y2="1035.4" gradientTransform="rotate(45,1243.6,548.31)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="w" x1="484.2" x2="484.2" y1="188.95" y2="204.89" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="bh" x1="25" x2="25" y1="45.36" y2="31.36" gradientTransform="matrix(1 0 0 .92857 0 3.2401)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bd" x1="479.12" x2="479.12" y1="215.25" y2="183.36" gradientTransform="matrix(.93751 0 0 .90625 30.122 19.19)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="ag" x1="466" x2="498" y1="199.36" y2="199.36" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="linearGradient2482" x1="466.89" x2="497.11" y1="199.36" y2="199.36" gradientTransform="matrix(.99279 0 0 .99279 3.4782 1.4392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<filter id="filter1747" x="-.094372" y="-.12623" width="1.1887" height="1.2525" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.32963489"/>
|
||||
</filter>
|
||||
<filter id="filter1765" x="-.0675" y="-.26999" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.22500211"/>
|
||||
</filter>
|
||||
<filter id="filter1868" x="-.0675" y="-.27" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.225"/>
|
||||
</filter>
|
||||
<filter id="filter1754" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.27000675"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<rect transform="scale(1,-1)" x="50.41" y="-97.433" width="51.143" height="95.15" rx="0" ry="0" color="#000000" fill="#333333" stroke-width=".62487"/>
|
||||
<rect transform="scale(1,-1)" x="-.22431" y="-97.433" width="50.635" height="95.15" rx="0" ry="0" color="#000000" fill="#f9fafb" stroke-width=".62175"/>
|
||||
<g id="checkbox-checked-dark" transform="translate(20.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)" fill="#3b3c3e">
|
||||
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed-dark" transform="translate(39.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#bh)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<rect transform="rotate(225)" x="-738.8" y="-725.95" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="121" y="5.36" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="#ffffff" filter="url(#bp)" stroke-width="1.5"/>
|
||||
</g>
|
||||
<g id="radio-mixed-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect transform="rotate(-90)" x="-9.3622" y="139" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode-dark" transform="translate(-407.52 -127.08)">
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="7" ry="7" opacity=".12"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="url(#linearGradient2482)" stroke-width="0"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="467" y="185.36" width="30" height="29" rx="6" ry="6" fill="url(#bd)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode" transform="translate(-457.65 -127.08)">
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="6" ry="6" fill="url(#ag)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="url(#w)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-checked" transform="translate(-29.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m11.69 1028.1c-0.17574 0.1758-0.2845 0.4185-0.2845 0.6878v5.0271h-2.0232c-0.54071 0-0.97645 0.4446-0.97642 0.9986 0 0.554 0.43571 1.0012 0.97639 1.0012h3.0508c0.53865 0 0.97227-0.4337 0.97227-0.9723v-0.028l0.0014-6.0284c0-0.5386-0.43363-0.9723-0.97227-0.9723h-0.05663c-0.26932 0-0.51204 0.1088-0.68778 0.2845z" fill="#000000" filter="url(#filter1747)" opacity=".15"/>
|
||||
<path transform="rotate(-45,1243.6,548.31)" d="m33.277 15.869c-0.24853 0-0.49706 0.09472-0.6875 0.28516l-3.5547 3.5547-1.4316-1.4297c-0.38234-0.38234-1.0048-0.37611-1.3965 0.01563-0.39173 0.39173-0.39992 1.0161-0.01758 1.3984l2.1191 2.1172 0.03911 0.03911c0.38088 0.38088 0.99412 0.38088 1.375 0l0.01953-0.01953 4.2637-4.2617c0.38088-0.38088 0.38088-0.99412 0-1.375l-0.04102-0.03906c-0.19044-0.19044-0.43897-0.28516-0.6875-0.28516z" fill="url(#s)" filter="url(#br)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed" transform="translate(-10.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m8.6664 1035.4c-0.39174-0.3917-0.39174-1.0225 0-1.4142l4.2426-4.2427c0.39174-0.3917 1.0225-0.3917 1.4142 0 0.39174 0.3918 0.39174 1.0225 0 1.4143l-4.2426 4.2426c-0.39174 0.3917-1.0225 0.3917-1.4142 0z" fill="#000000" filter="url(#filter1765)" opacity=".15"/>
|
||||
<path transform="rotate(225)" d="m-737.8-725.98c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#t)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m124 5.7962h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="#000000" filter="url(#filter1754)" opacity=".15" stroke-width="1.5001"/>
|
||||
<path d="m124 5.36h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="url(#u)" filter="url(#bm)" stroke-width="1.5001"/>
|
||||
</g>
|
||||
<g id="radio-mixed" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m139 8.8152c0-0.554 0.446-1 1-1h6c0.554 0 1 0.446 1 1s-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1z" fill="#000000" filter="url(#filter1868)" opacity=".15"/>
|
||||
<path transform="rotate(-90)" d="m-8.3622 139c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#v)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 532 B |
Before Width: | Height: | Size: 967 B |
Before Width: | Height: | Size: 994 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 576 B |
Before Width: | Height: | Size: 893 B |
Before Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 667 B |
Before Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 727 B |
Before Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 479 B |
Before Width: | Height: | Size: 623 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 436 B |
Before Width: | Height: | Size: 829 B |
Before Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 706 B |
@ -1,194 +0,0 @@
|
||||
<svg width="100" height="100" 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 id="theme_colors">
|
||||
<linearGradient id="dark_shade" osb:paint="gradient">
|
||||
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
|
||||
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_fg_color" osb:paint="solid">
|
||||
<stop stop-color="#ffffff" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_bg_color" osb:paint="solid">
|
||||
<stop stop-color="#8C8C8C" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="v" x1="-8.3622" x2="-8.3622" y1="139" y2="147" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="u" x1="124" x2="124" y1="6.3622" y2="10.362" gradientTransform="matrix(1.5001,0,0,1.5001,-62.011,-4.1838)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="t" x1="-737.8" x2="-737.8" y1="-725.95" y2="-717.95" gradientTransform="translate(0 -.031392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="s" x1="10.5" x2="10.5" y1="1033.4" y2="1035.4" gradientTransform="rotate(45,1243.6,548.31)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="w" x1="484.2" x2="484.2" y1="188.95" y2="204.89" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="bh" x1="25" x2="25" y1="45.36" y2="31.36" gradientTransform="matrix(1 0 0 .92857 0 3.2401)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bd" x1="479.12" x2="479.12" y1="215.25" y2="183.36" gradientTransform="matrix(.93751 0 0 .90625 30.122 19.19)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="ag" x1="466" x2="498" y1="199.36" y2="199.36" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="linearGradient2482" x1="466.89" x2="497.11" y1="199.36" y2="199.36" gradientTransform="matrix(.99279 0 0 .99279 3.4782 1.4392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<filter id="filter1747" x="-.094372" y="-.12623" width="1.1887" height="1.2525" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.32963489"/>
|
||||
</filter>
|
||||
<filter id="filter1765" x="-.0675" y="-.26999" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.22500211"/>
|
||||
</filter>
|
||||
<filter id="filter1868" x="-.0675" y="-.27" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.225"/>
|
||||
</filter>
|
||||
<filter id="filter1754" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.27000675"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<rect transform="scale(1,-1)" x="50.41" y="-97.433" width="51.143" height="95.15" rx="0" ry="0" color="#000000" fill="#333333" stroke-width=".62487"/>
|
||||
<rect transform="scale(1,-1)" x="-.22431" y="-97.433" width="50.635" height="95.15" rx="0" ry="0" color="#000000" fill="#f9fafb" stroke-width=".62175"/>
|
||||
<g id="checkbox-checked-dark" transform="translate(20.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)" fill="#3b3c3e">
|
||||
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed-dark" transform="translate(39.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#bh)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<rect transform="rotate(225)" x="-738.8" y="-725.95" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="121" y="5.36" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="#ffffff" filter="url(#bp)" stroke-width="1.5"/>
|
||||
</g>
|
||||
<g id="radio-mixed-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect transform="rotate(-90)" x="-9.3622" y="139" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode-dark" transform="translate(-407.52 -127.08)">
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="7" ry="7" opacity=".12"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="url(#linearGradient2482)" stroke-width="0"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="467" y="185.36" width="30" height="29" rx="6" ry="6" fill="url(#bd)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode" transform="translate(-457.65 -127.08)">
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="6" ry="6" fill="url(#ag)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="url(#w)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-checked" transform="translate(-29.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m11.69 1028.1c-0.17574 0.1758-0.2845 0.4185-0.2845 0.6878v5.0271h-2.0232c-0.54071 0-0.97645 0.4446-0.97642 0.9986 0 0.554 0.43571 1.0012 0.97639 1.0012h3.0508c0.53865 0 0.97227-0.4337 0.97227-0.9723v-0.028l0.0014-6.0284c0-0.5386-0.43363-0.9723-0.97227-0.9723h-0.05663c-0.26932 0-0.51204 0.1088-0.68778 0.2845z" fill="#000000" filter="url(#filter1747)" opacity=".15"/>
|
||||
<path transform="rotate(-45,1243.6,548.31)" d="m33.277 15.869c-0.24853 0-0.49706 0.09472-0.6875 0.28516l-3.5547 3.5547-1.4316-1.4297c-0.38234-0.38234-1.0048-0.37611-1.3965 0.01563-0.39173 0.39173-0.39992 1.0161-0.01758 1.3984l2.1191 2.1172 0.03911 0.03911c0.38088 0.38088 0.99412 0.38088 1.375 0l0.01953-0.01953 4.2637-4.2617c0.38088-0.38088 0.38088-0.99412 0-1.375l-0.04102-0.03906c-0.19044-0.19044-0.43897-0.28516-0.6875-0.28516z" fill="url(#s)" filter="url(#br)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed" transform="translate(-10.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m8.6664 1035.4c-0.39174-0.3917-0.39174-1.0225 0-1.4142l4.2426-4.2427c0.39174-0.3917 1.0225-0.3917 1.4142 0 0.39174 0.3918 0.39174 1.0225 0 1.4143l-4.2426 4.2426c-0.39174 0.3917-1.0225 0.3917-1.4142 0z" fill="#000000" filter="url(#filter1765)" opacity=".15"/>
|
||||
<path transform="rotate(225)" d="m-737.8-725.98c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#t)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m124 5.7962h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="#000000" filter="url(#filter1754)" opacity=".15" stroke-width="1.5001"/>
|
||||
<path d="m124 5.36h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="url(#u)" filter="url(#bm)" stroke-width="1.5001"/>
|
||||
</g>
|
||||
<g id="radio-mixed" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m139 8.8152c0-0.554 0.446-1 1-1h6c0.554 0 1 0.446 1 1s-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1z" fill="#000000" filter="url(#filter1868)" opacity=".15"/>
|
||||
<path transform="rotate(-90)" d="m-8.3622 139c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#v)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 844 B |
Before Width: | Height: | Size: 862 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 544 B |
Before Width: | Height: | Size: 853 B |
Before Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 607 B |
Before Width: | Height: | Size: 401 B |
Before Width: | Height: | Size: 691 B |
Before Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 416 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 804 B |
Before Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 701 B |
@ -1,194 +0,0 @@
|
||||
<svg width="100" height="100" 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 id="theme_colors">
|
||||
<linearGradient id="dark_shade" osb:paint="gradient">
|
||||
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
|
||||
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_fg_color" osb:paint="solid">
|
||||
<stop stop-color="#ffffff" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_bg_color" osb:paint="solid">
|
||||
<stop stop-color="#E9873A" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="v" x1="-8.3622" x2="-8.3622" y1="139" y2="147" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="u" x1="124" x2="124" y1="6.3622" y2="10.362" gradientTransform="matrix(1.5001,0,0,1.5001,-62.011,-4.1838)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="t" x1="-737.8" x2="-737.8" y1="-725.95" y2="-717.95" gradientTransform="translate(0 -.031392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="s" x1="10.5" x2="10.5" y1="1033.4" y2="1035.4" gradientTransform="rotate(45,1243.6,548.31)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="w" x1="484.2" x2="484.2" y1="188.95" y2="204.89" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="bh" x1="25" x2="25" y1="45.36" y2="31.36" gradientTransform="matrix(1 0 0 .92857 0 3.2401)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bd" x1="479.12" x2="479.12" y1="215.25" y2="183.36" gradientTransform="matrix(.93751 0 0 .90625 30.122 19.19)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="ag" x1="466" x2="498" y1="199.36" y2="199.36" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="linearGradient2482" x1="466.89" x2="497.11" y1="199.36" y2="199.36" gradientTransform="matrix(.99279 0 0 .99279 3.4782 1.4392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<filter id="filter1747" x="-.094372" y="-.12623" width="1.1887" height="1.2525" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.32963489"/>
|
||||
</filter>
|
||||
<filter id="filter1765" x="-.0675" y="-.26999" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.22500211"/>
|
||||
</filter>
|
||||
<filter id="filter1868" x="-.0675" y="-.27" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.225"/>
|
||||
</filter>
|
||||
<filter id="filter1754" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.27000675"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<rect transform="scale(1,-1)" x="50.41" y="-97.433" width="51.143" height="95.15" rx="0" ry="0" color="#000000" fill="#333333" stroke-width=".62487"/>
|
||||
<rect transform="scale(1,-1)" x="-.22431" y="-97.433" width="50.635" height="95.15" rx="0" ry="0" color="#000000" fill="#f9fafb" stroke-width=".62175"/>
|
||||
<g id="checkbox-checked-dark" transform="translate(20.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)" fill="#3b3c3e">
|
||||
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed-dark" transform="translate(39.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#bh)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<rect transform="rotate(225)" x="-738.8" y="-725.95" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="121" y="5.36" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="#ffffff" filter="url(#bp)" stroke-width="1.5"/>
|
||||
</g>
|
||||
<g id="radio-mixed-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect transform="rotate(-90)" x="-9.3622" y="139" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode-dark" transform="translate(-407.52 -127.08)">
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="7" ry="7" opacity=".12"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="url(#linearGradient2482)" stroke-width="0"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="467" y="185.36" width="30" height="29" rx="6" ry="6" fill="url(#bd)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode" transform="translate(-457.65 -127.08)">
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="6" ry="6" fill="url(#ag)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="url(#w)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-checked" transform="translate(-29.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m11.69 1028.1c-0.17574 0.1758-0.2845 0.4185-0.2845 0.6878v5.0271h-2.0232c-0.54071 0-0.97645 0.4446-0.97642 0.9986 0 0.554 0.43571 1.0012 0.97639 1.0012h3.0508c0.53865 0 0.97227-0.4337 0.97227-0.9723v-0.028l0.0014-6.0284c0-0.5386-0.43363-0.9723-0.97227-0.9723h-0.05663c-0.26932 0-0.51204 0.1088-0.68778 0.2845z" fill="#000000" filter="url(#filter1747)" opacity=".15"/>
|
||||
<path transform="rotate(-45,1243.6,548.31)" d="m33.277 15.869c-0.24853 0-0.49706 0.09472-0.6875 0.28516l-3.5547 3.5547-1.4316-1.4297c-0.38234-0.38234-1.0048-0.37611-1.3965 0.01563-0.39173 0.39173-0.39992 1.0161-0.01758 1.3984l2.1191 2.1172 0.03911 0.03911c0.38088 0.38088 0.99412 0.38088 1.375 0l0.01953-0.01953 4.2637-4.2617c0.38088-0.38088 0.38088-0.99412 0-1.375l-0.04102-0.03906c-0.19044-0.19044-0.43897-0.28516-0.6875-0.28516z" fill="url(#s)" filter="url(#br)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed" transform="translate(-10.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m8.6664 1035.4c-0.39174-0.3917-0.39174-1.0225 0-1.4142l4.2426-4.2427c0.39174-0.3917 1.0225-0.3917 1.4142 0 0.39174 0.3918 0.39174 1.0225 0 1.4143l-4.2426 4.2426c-0.39174 0.3917-1.0225 0.3917-1.4142 0z" fill="#000000" filter="url(#filter1765)" opacity=".15"/>
|
||||
<path transform="rotate(225)" d="m-737.8-725.98c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#t)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m124 5.7962h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="#000000" filter="url(#filter1754)" opacity=".15" stroke-width="1.5001"/>
|
||||
<path d="m124 5.36h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="url(#u)" filter="url(#bm)" stroke-width="1.5001"/>
|
||||
</g>
|
||||
<g id="radio-mixed" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m139 8.8152c0-0.554 0.446-1 1-1h6c0.554 0 1 0.446 1 1s-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1z" fill="#000000" filter="url(#filter1868)" opacity=".15"/>
|
||||
<path transform="rotate(-90)" d="m-8.3622 139c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#v)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 547 B |
Before Width: | Height: | Size: 986 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 579 B |
Before Width: | Height: | Size: 896 B |
Before Width: | Height: | Size: 432 B |
Before Width: | Height: | Size: 673 B |
Before Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 727 B |
Before Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 475 B |
Before Width: | Height: | Size: 634 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 440 B |
Before Width: | Height: | Size: 825 B |
Before Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 705 B |
@ -1,194 +0,0 @@
|
||||
<svg width="100" height="100" 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 id="theme_colors">
|
||||
<linearGradient id="dark_shade" osb:paint="gradient">
|
||||
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
|
||||
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_fg_color" osb:paint="solid">
|
||||
<stop stop-color="#ffffff" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="selected_bg_color" osb:paint="solid">
|
||||
<stop stop-color="#E55E9C" offset="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="v" x1="-8.3622" x2="-8.3622" y1="139" y2="147" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="u" x1="124" x2="124" y1="6.3622" y2="10.362" gradientTransform="matrix(1.5001,0,0,1.5001,-62.011,-4.1838)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="t" x1="-737.8" x2="-737.8" y1="-725.95" y2="-717.95" gradientTransform="translate(0 -.031392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="s" x1="10.5" x2="10.5" y1="1033.4" y2="1035.4" gradientTransform="rotate(45,1243.6,548.31)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="w" x1="484.2" x2="484.2" y1="188.95" y2="204.89" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
|
||||
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="bh" x1="25" x2="25" y1="45.36" y2="31.36" gradientTransform="matrix(1 0 0 .92857 0 3.2401)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="bd" x1="479.12" x2="479.12" y1="215.25" y2="183.36" gradientTransform="matrix(.93751 0 0 .90625 30.122 19.19)" gradientUnits="userSpaceOnUse" xlink:href="#dark_shade"/>
|
||||
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="ag" x1="466" x2="498" y1="199.36" y2="199.36" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<linearGradient id="linearGradient2482" x1="466.89" x2="497.11" y1="199.36" y2="199.36" gradientTransform="matrix(.99279 0 0 .99279 3.4782 1.4392)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
|
||||
<filter id="filter1747" x="-.094372" y="-.12623" width="1.1887" height="1.2525" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.32963489"/>
|
||||
</filter>
|
||||
<filter id="filter1765" x="-.0675" y="-.26999" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.22500211"/>
|
||||
</filter>
|
||||
<filter id="filter1868" x="-.0675" y="-.27" width="1.135" height="1.54" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.225"/>
|
||||
</filter>
|
||||
<filter id="filter1754" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="0.27000675"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<rect transform="scale(1,-1)" x="50.41" y="-97.433" width="51.143" height="95.15" rx="0" ry="0" color="#000000" fill="#333333" stroke-width=".62487"/>
|
||||
<rect transform="scale(1,-1)" x="-.22431" y="-97.433" width="50.635" height="95.15" rx="0" ry="0" color="#000000" fill="#f9fafb" stroke-width=".62175"/>
|
||||
<g id="checkbox-checked-dark" transform="translate(20.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)" fill="#3b3c3e">
|
||||
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed-dark" transform="translate(39.811 5.4622)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="17" y="30.362" width="16" height="16" rx="4" ry="4" color="#000000" opacity=".12"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="18" y="32.362" width="14" height="13" rx="3" ry="3" color="#000000" fill="url(#bh)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<rect transform="rotate(225)" x="-738.8" y="-725.95" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="121" y="5.36" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="#ffffff" filter="url(#bp)" stroke-width="1.5"/>
|
||||
</g>
|
||||
<g id="radio-mixed-dark" transform="translate(-59.987 29.388)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect transform="rotate(-90)" x="-9.3622" y="139" width="2" height="8" ry="1" fill="#ffffff"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode-dark" transform="translate(-407.52 -127.08)">
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="7" ry="7" opacity=".12"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="url(#linearGradient2482)" stroke-width="0"/>
|
||||
<rect x="467" y="184.36" width="30" height="30" rx="6" ry="6" fill="#ffffff" opacity=".15" stroke-width="0"/>
|
||||
<rect x="467" y="185.36" width="30" height="29" rx="6" ry="6" fill="url(#bd)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="#ffffff"/>
|
||||
</g>
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
</g>
|
||||
<g id="checkbox-checked-selectionmode" transform="translate(-457.65 -127.08)">
|
||||
<rect x="462" y="179.36" width="40" height="40" rx="2" ry="2" fill="none" stroke-width="0"/>
|
||||
<rect x="466" y="183.36" width="32" height="32" rx="6" ry="6" fill="url(#ag)" stroke-width="0"/>
|
||||
<g transform="translate(-2.2045,1.973)">
|
||||
<path d="m491.36 188.95-9.5312 9.5625-4.7812-4.7812-3.1876 3.1875 4.7813 4.7812 3.1875 3.1875 3.1562-3.1875 9.5626-9.5625z" fill="url(#w)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-checked" transform="translate(-29.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m11.69 1028.1c-0.17574 0.1758-0.2845 0.4185-0.2845 0.6878v5.0271h-2.0232c-0.54071 0-0.97645 0.4446-0.97642 0.9986 0 0.554 0.43571 1.0012 0.97639 1.0012h3.0508c0.53865 0 0.97227-0.4337 0.97227-0.9723v-0.028l0.0014-6.0284c0-0.5386-0.43363-0.9723-0.97227-0.9723h-0.05663c-0.26932 0-0.51204 0.1088-0.68778 0.2845z" fill="#000000" filter="url(#filter1747)" opacity=".15"/>
|
||||
<path transform="rotate(-45,1243.6,548.31)" d="m33.277 15.869c-0.24853 0-0.49706 0.09472-0.6875 0.28516l-3.5547 3.5547-1.4316-1.4297c-0.38234-0.38234-1.0048-0.37611-1.3965 0.01563-0.39173 0.39173-0.39992 1.0161-0.01758 1.3984l2.1191 2.1172 0.03911 0.03911c0.38088 0.38088 0.99412 0.38088 1.375 0l0.01953-0.01953 4.2637-4.2617c0.38088-0.38088 0.38088-0.99412 0-1.375l-0.04102-0.03906c-0.19044-0.19044-0.43897-0.28516-0.6875-0.28516z" fill="url(#s)" filter="url(#br)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="checkbox-mixed" transform="translate(-10.571 7.6473)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(0,-30)">
|
||||
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
|
||||
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#j)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(36,-1036)">
|
||||
<g transform="rotate(45,7.5,1026.4)">
|
||||
<g transform="translate(12.374,11.531)">
|
||||
<g transform="translate(-3,-5)">
|
||||
<path d="m8.6664 1035.4c-0.39174-0.3917-0.39174-1.0225 0-1.4142l4.2426-4.2427c0.39174-0.3917 1.0225-0.3917 1.4142 0 0.39174 0.3918 0.39174 1.0225 0 1.4143l-4.2426 4.2426c-0.39174 0.3917-1.0225 0.3917-1.4142 0z" fill="#000000" filter="url(#filter1765)" opacity=".15"/>
|
||||
<path transform="rotate(225)" d="m-737.8-725.98c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#t)"/>
|
||||
</g>
|
||||
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="radio-checked" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m124 5.7962h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="#000000" filter="url(#filter1754)" opacity=".15" stroke-width="1.5001"/>
|
||||
<path d="m124 5.36h3e-3c1.6612 0 2.9985 1.3381 2.9985 3.0001 0 1.6621-1.3373 3.0002-2.9985 3.0002h-3e-3c-1.6612 0-2.9985-1.3381-2.9985-3.0002s1.3373-3.0001 2.9985-3.0001z" color="#000000" fill="url(#u)" filter="url(#bm)" stroke-width="1.5001"/>
|
||||
</g>
|
||||
<g id="radio-mixed" transform="translate(-109.6 29.228)">
|
||||
<g transform="translate(19)">
|
||||
<g transform="translate(19.004)">
|
||||
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
|
||||
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
|
||||
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
|
||||
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="m139 8.8152c0-0.554 0.446-1 1-1h6c0.554 0 1 0.446 1 1s-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1z" fill="#000000" filter="url(#filter1868)" opacity=".15"/>
|
||||
<path transform="rotate(-90)" d="m-8.3622 139c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1s-1-0.446-1-1v-6c0-0.554 0.446-1 1-1z" fill="url(#v)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 550 B |
Before Width: | Height: | Size: 979 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 584 B |
Before Width: | Height: | Size: 879 B |
Before Width: | Height: | Size: 416 B |
Before Width: | Height: | Size: 675 B |
Before Width: | Height: | Size: 418 B |
Before Width: | Height: | Size: 732 B |
Before Width: | Height: | Size: 319 B |
Before Width: | Height: | Size: 479 B |