Update
|
@ -0,0 +1 @@
|
||||||
|
*.tar.*
|
|
@ -1,2 +1,11 @@
|
||||||
# skel-liveuser
|
# skel-liveuser
|
||||||
Liveuser specific skel setup for Melawy Linux
|
Liveuser specific skel setup for Melawy Linux
|
||||||
|
|
||||||
|
### Donate
|
||||||
|
[Tinkoff](https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066)
|
||||||
|
|
||||||
|
[YooMoney](https://yoomoney.ru/to/4100115921160758)
|
||||||
|
|
||||||
|
[Qiwi](https://qiwi.com/n/VALERIAFADEEVA)
|
||||||
|
|
||||||
|
Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
Xft.dpi: 96
|
||||||
|
Xft.antialias: true
|
||||||
|
Xft.hinting: true
|
||||||
|
Xft.autohint: false
|
||||||
|
Xft.hintstyle: hintslight
|
||||||
|
Xft.lcdfilter: lcddefault
|
||||||
|
Xft.rgba: rgb
|
|
@ -0,0 +1,3 @@
|
||||||
|
#
|
||||||
|
# ~/.bash_logout
|
||||||
|
#
|
|
@ -0,0 +1,5 @@
|
||||||
|
#
|
||||||
|
# ~/.bash_profile
|
||||||
|
#
|
||||||
|
|
||||||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
@ -0,0 +1,111 @@
|
||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
if [[ "$(whoami)" == "liveuser" ]]; then
|
||||||
|
sddm_service_status=$(ls /var/run/sddm)
|
||||||
|
if [[ -z "$sddm_service_status" ]]; then
|
||||||
|
setfacl -m u:sddm:x ~/
|
||||||
|
setfacl -m u:sddm:r ~/.face
|
||||||
|
setfacl -m u:sddm:r ~/.face.icon
|
||||||
|
|
||||||
|
# Init & Populate keys
|
||||||
|
sudo haveged -w 1024
|
||||||
|
sudo pacman-key --init
|
||||||
|
sudo pkill haveged
|
||||||
|
|
||||||
|
sudo pacman-key --recv-keys 95F48000540A4DB146583A47C49B5E77FD80302D --keyserver hkps://keys.openpgp.org
|
||||||
|
sudo pacman-key --lsign-key 95F48000540A4DB146583A47C49B5E77FD80302D
|
||||||
|
|
||||||
|
sudo pacman-key --populate archlinux melawy-linux arcolinux
|
||||||
|
|
||||||
|
sudo pacman-key --updatedb
|
||||||
|
|
||||||
|
sudo pacman -Syy
|
||||||
|
|
||||||
|
sudo systemctl start sddm
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! shopt -oq posix; then
|
||||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
|
. /usr/share/bash-completion/bash_completion
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
. /etc/bash_completion
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Advanced command-not-found hook
|
||||||
|
source /usr/share/doc/find-the-command/ftc.bash
|
||||||
|
|
||||||
|
|
||||||
|
xhost +local:root > /dev/null 2>&1
|
||||||
|
|
||||||
|
complete -cf sudo
|
||||||
|
|
||||||
|
shopt -s cdspell
|
||||||
|
shopt -s checkwinsize
|
||||||
|
shopt -s cmdhist
|
||||||
|
shopt -s dotglob
|
||||||
|
shopt -s expand_aliases
|
||||||
|
shopt -s extglob
|
||||||
|
shopt -s histappend
|
||||||
|
shopt -s hostcomplete
|
||||||
|
shopt -s nocaseglob
|
||||||
|
|
||||||
|
export HISTSIZE=10000
|
||||||
|
export HISTFILESIZE=${HISTSIZE}
|
||||||
|
export HISTCONTROL=ignoreboth
|
||||||
|
|
||||||
|
alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
||||||
|
alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
||||||
|
alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
||||||
|
alias grep='grep --color=tty -d skip'
|
||||||
|
alias cp="cp -i" # confirm before overwriting something
|
||||||
|
alias df='df -h' # human-readable sizes
|
||||||
|
alias vp='vim PKGBUILD'
|
||||||
|
alias vs='vim SPLITBUILD'
|
||||||
|
alias upd='mirror-check --fast && sudo pacman -Syu'
|
||||||
|
alias dvdburn='growisofs -Z /dev/sr0 -R -J'
|
||||||
|
alias :pf='pkgfile -vri'
|
||||||
|
|
||||||
|
# ex - archive extractor
|
||||||
|
# usage: ex <file>
|
||||||
|
ex ()
|
||||||
|
{
|
||||||
|
if [ -f $1 ] ; then
|
||||||
|
case $1 in
|
||||||
|
*.tar.bz2) tar xjf $1 ;;
|
||||||
|
*.tar.gz) tar xzf $1 ;;
|
||||||
|
*.bz2) bunzip2 $1 ;;
|
||||||
|
*.rar) unrar x $1 ;;
|
||||||
|
*.gz) gunzip $1 ;;
|
||||||
|
*.tar) tar xf $1 ;;
|
||||||
|
*.tbz2) tar xjf $1 ;;
|
||||||
|
*.tgz) tar xzf $1 ;;
|
||||||
|
*.zip) unzip $1 ;;
|
||||||
|
*.Z) uncompress $1;;
|
||||||
|
*.7z) 7z x $1 ;;
|
||||||
|
*) echo "'$1' cannot be extracted via ex()" ;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
echo "'$1' is not a valid file"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# default editor
|
||||||
|
export EDITOR=micro
|
||||||
|
export VISUAL=micro
|
||||||
|
alias vi=vim
|
||||||
|
|
||||||
|
|
||||||
|
# prompt
|
||||||
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
|
powerline-daemon -q
|
||||||
|
POWERLINE_BASH_CONTINUATION=1
|
||||||
|
POWERLINE_BASH_SELECT=1
|
||||||
|
. /usr/share/powerline/bindings/bash/powerline.sh
|
|
@ -0,0 +1,17 @@
|
||||||
|
[qt]
|
||||||
|
GUIEffects=none
|
||||||
|
KDE\contrast=4
|
||||||
|
KWinPalette\activeBackground=#3d3d3e
|
||||||
|
KWinPalette\activeBlend=#3e3e3e
|
||||||
|
KWinPalette\activeForeground=#969696
|
||||||
|
KWinPalette\activeTitleBtnBg=#414141
|
||||||
|
KWinPalette\frame=#414141
|
||||||
|
KWinPalette\inactiveBackground=#3d3d3e
|
||||||
|
KWinPalette\inactiveBlend=#3e3e3e
|
||||||
|
KWinPalette\inactiveForeground=#9b9b9b
|
||||||
|
KWinPalette\inactiveFrame=#424242
|
||||||
|
KWinPalette\inactiveTitleBtnBg=#424242
|
||||||
|
Palette\active=#aaaaaa, #505050, #565656, #4c4c4c, #262626, #393939, #aaaaaa, #ffffff, #50b4ce, #464646, #414141, #1b1b1b, #a75d8e, #ffffff, #d168ad, #ce80ff, #4b4b4b, #000000, #1d6c8b, #c8c8c8, #aaaaaa
|
||||||
|
Palette\disabled=#616161, #4c4c4c, #535353, #494949, #242424, #363636, #646464, #ffffff, #4c6e76, #434343, #3e3e3e, #1a1a1a, #3e3e3e, #616161, #714e65, #705680, #474747, #000000, #1d6c8b, #c8c8c8, #aaaaaa
|
||||||
|
Palette\inactive=#a8a8a8, #515151, #575757, #4d4d4d, #272727, #3a3a3a, #a8a8a8, #ffffff, #5fb1c6, #474747, #424242, #1c1c1c, #67415a, #aea6ab, #c271a6, #b691d0, #4c4c4c, #000000, #1d6c8b, #c8c8c8, #aaaaaa
|
||||||
|
font="Noto Sans,10,-1,0,50,0,0,0,0,0"
|
|
@ -0,0 +1,2 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=fonts_akregator.upd:Plasma_Fonts_Akregator
|
|
@ -0,0 +1,21 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=dolphin_detailsmodesettings.upd:rename-leading-padding
|
||||||
|
|
||||||
|
[DetailsMode]
|
||||||
|
PreviewSize=22
|
||||||
|
|
||||||
|
[General]
|
||||||
|
Version=202
|
||||||
|
ViewPropsTimestamp=2023,5,13,11,41,57.437
|
||||||
|
|
||||||
|
[KFileDialog Settings]
|
||||||
|
Places Icons Auto-resize=false
|
||||||
|
Places Icons Static Size=22
|
||||||
|
|
||||||
|
[KPropertiesDialog]
|
||||||
|
1920x1080 screen: Height=634
|
||||||
|
1920x1080 screen: Width=511
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
MenuBar=Disabled
|
||||||
|
ToolBarsMovable=Disabled
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fd5f51" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,247.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="-71.0507" cy="1088.81" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,247.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="-71.0507" cy="1088.81" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,247.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M-74.5859,1084.78 C-74.7137,1084.78 -74.8414,1084.83 -74.9393,1084.93 C-75.1351,1085.12 -75.1351,1085.44 -74.9393,1085.63 L-71.7577,1088.81 L-74.9393,1092 C-75.1351,1092.19 -75.1351,1092.51 -74.9393,1092.7 C-74.7435,1092.9 -74.4281,1092.9 -74.2323,1092.7 L-71.0507,1089.52 L-67.8691,1092.7 C-67.6733,1092.9 -67.3579,1092.9 -67.162,1092.7 C-66.9662,1092.51 -66.9662,1092.19 -67.162,1092 L-70.3436,1088.81 L-67.162,1085.63 C-66.9662,1085.44 -66.9662,1085.12 -67.162,1084.93 C-67.3578,1084.73 -67.6732,1084.73 -67.8691,1084.93 L-71.0507,1088.11 L-74.2323,1084.93 C-74.3302,1084.83 -74.4579,1084.78 -74.5857,1084.78 L-74.5859,1084.78"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fd5f51" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,247.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="-71.0507" cy="1088.81" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,247.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="-71.0507" cy="1088.81" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,247.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M-74.5859,1084.78 C-74.7137,1084.78 -74.8414,1084.83 -74.9393,1084.93 C-75.1351,1085.12 -75.1351,1085.44 -74.9393,1085.63 L-71.7577,1088.81 L-74.9393,1092 C-75.1351,1092.19 -75.1351,1092.51 -74.9393,1092.7 C-74.7435,1092.9 -74.4281,1092.9 -74.2323,1092.7 L-71.0507,1089.52 L-67.8691,1092.7 C-67.6733,1092.9 -67.3579,1092.9 -67.162,1092.7 C-66.9662,1092.51 -66.9662,1092.19 -67.162,1092 L-70.3436,1088.81 L-67.162,1085.63 C-66.9662,1085.44 -66.9662,1085.12 -67.162,1084.93 C-67.3578,1084.73 -67.6732,1084.73 -67.8691,1084.93 L-71.0507,1088.11 L-74.2323,1084.93 C-74.3302,1084.83 -74.4579,1084.78 -74.5857,1084.78 L-74.5859,1084.78"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fd5f51" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,372.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="-111.051" cy="1088.81" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,372.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M-114.586,1084.78 C-114.714,1084.78 -114.841,1084.83 -114.939,1084.93 C-115.135,1085.12 -115.135,1085.44 -114.939,1085.63 L-111.758,1088.81 L-114.939,1092 C-115.135,1092.19 -115.135,1092.51 -114.939,1092.7 C-114.744,1092.9 -114.428,1092.9 -114.232,1092.7 L-111.051,1089.52 L-107.869,1092.7 C-107.673,1092.9 -107.358,1092.9 -107.162,1092.7 C-106.966,1092.51 -106.966,1092.19 -107.162,1092 L-110.344,1088.81 L-107.162,1085.63 C-106.966,1085.44 -106.966,1085.12 -107.162,1084.93 C-107.358,1084.73 -107.673,1084.73 -107.869,1084.93 L-111.051,1088.11 L-114.232,1084.93 C-114.33,1084.83 -114.458,1084.78 -114.586,1084.78 L-114.586,1084.78"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#e0e0e0" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-263.333,-3449.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.3" >
|
||||||
|
<circle cx="92.2667" cy="1111.85" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 879 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fd5f51" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,372.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="-111.051" cy="1088.81" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,372.033,-3377.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M-114.586,1084.78 C-114.714,1084.78 -114.841,1084.83 -114.939,1084.93 C-115.135,1085.12 -115.135,1085.44 -114.939,1085.63 L-111.758,1088.81 L-114.939,1092 C-115.135,1092.19 -115.135,1092.51 -114.939,1092.7 C-114.744,1092.9 -114.428,1092.9 -114.232,1092.7 L-111.051,1089.52 L-107.869,1092.7 C-107.673,1092.9 -107.358,1092.9 -107.162,1092.7 C-106.966,1092.51 -106.966,1092.19 -107.162,1092 L-110.344,1088.81 L-107.162,1085.63 C-106.966,1085.44 -106.966,1085.12 -107.162,1084.93 C-107.358,1084.73 -107.673,1084.73 -107.869,1084.93 L-111.051,1088.11 L-114.232,1084.93 C-114.33,1084.83 -114.458,1084.78 -114.586,1084.78 L-114.586,1084.78"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fd5f51" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,111.667,-3449.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="-27.7333" cy="1111.85" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 865 B |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="117" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="117" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M115,639.362 C113.892,639.362 113,640.254 113,641.362 L113,645.362 C113,646.47 113.892,647.362 115,647.362 L119,647.362 C120.108,647.362 121,646.47 121,645.362 L121,641.362 C121,640.254 120.108,639.362 119,639.362 L115,639.362 M115,640.362 L119,640.362 C119.554,640.362 120,640.808 120,641.362 L120,645.362 C120,645.916 119.554,646.362 119,646.362 L115,646.362 C114.446,646.362 114,645.916 114,645.362 L114,641.362 C114,640.808 114.446,640.362 115,640.362 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="117" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="117" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M115,639.362 C113.892,639.362 113,640.254 113,641.362 L113,645.362 C113,646.47 113.892,647.362 115,647.362 L119,647.362 C120.108,647.362 121,646.47 121,645.362 L121,641.362 C121,640.254 120.108,639.362 119,639.362 L115,639.362 M115,640.362 L119,640.362 C119.554,640.362 120,640.808 120,641.362 L120,645.362 C120,645.916 119.554,646.362 119,646.362 L115,646.362 C114.446,646.362 114,645.916 114,645.362 L114,641.362 C114,640.808 114.446,640.362 115,640.362 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="77" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M75,639.362 C73.892,639.362 73,640.254 73,641.362 L73,645.362 C73,646.47 73.892,647.362 75,647.362 L79,647.362 C80.108,647.362 81,646.47 81,645.362 L81,641.362 C81,640.254 80.108,639.362 79,639.362 L75,639.362 M75,640.362 L79,640.362 C79.554,640.362 80,640.808 80,641.362 L80,645.362 C80,645.916 79.554,646.362 79,646.362 L75,646.362 C74.446,646.362 74,645.916 74,645.362 L74,641.362 C74,640.808 74.446,640.362 75,640.362 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#e0e0e0" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-263.333,-3449.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.3" >
|
||||||
|
<circle cx="92.2667" cy="1111.85" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 879 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="77" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M75,639.362 C73.892,639.362 73,640.254 73,641.362 L73,645.362 C73,646.47 73.892,647.362 75,647.362 L79,647.362 C80.108,647.362 81,646.47 81,645.362 L81,641.362 C81,640.254 80.108,639.362 79,639.362 L75,639.362 M75,640.362 L79,640.362 C79.554,640.362 80,640.808 80,641.362 L80,645.362 C80,645.916 79.554,646.362 79,646.362 L75,646.362 C74.446,646.362 74,645.916 74,645.362 L74,641.362 C74,640.808 74.446,640.362 75,640.362 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-90.625,-1985.51)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="37" cy="643.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 859 B |
|
@ -0,0 +1,39 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="117" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="117" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M6,6 C4.892,6 4,6.892 4,8 L4,10 C4,11.108 4.892,12 6,12 L8,12 C9.108,12 10,11.108 10,10 L10,8 C10,6.892 9.108,6 8,6 L6,6 M6,7 L8,7 C8.554,7 9,7.446 9,8 L9,10 C9,10.554 8.554,11 8,11 L6,11 C5.446,11 5,10.554 5,10 L5,8 C5,7.446 5.446,7 6,7 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.35" >
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M8,4 C6.892,4 6,4.892 6,6 L7,6 C7,5.446 7.446,5 8,5 L10,5 C10.554,5 11,5.446 11,6 L11,8 C11,8.554 10.554,9 10,9 L10,10 C11.108,10 12,9.108 12,8 L12,6 C12,4.892 11.108,4 10,4 L8,4"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,39 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="117" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="117" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M6,6 C4.892,6 4,6.892 4,8 L4,10 C4,11.108 4.892,12 6,12 L8,12 C9.108,12 10,11.108 10,10 L10,8 C10,6.892 9.108,6 8,6 L6,6 M6,7 L8,7 C8.554,7 9,7.446 9,8 L9,10 C9,10.554 8.554,11 8,11 L6,11 C5.446,11 5,10.554 5,10 L5,8 C5,7.446 5.446,7 6,7 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.35" >
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M8,4 C6.892,4 6,4.892 6,6 L7,6 C7,5.446 7.446,5 8,5 L10,5 C10.554,5 11,5.446 11,6 L11,8 C11,8.554 10.554,9 10,9 L10,10 C11.108,10 12,9.108 12,8 L12,6 C12,4.892 11.108,4 10,4 L8,4"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="77" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M6,6 C4.892,6 4,6.892 4,8 L4,10 C4,11.108 4.892,12 6,12 L8,12 C9.108,12 10,11.108 10,10 L10,8 C10,6.892 9.108,6 8,6 L6,6 M6,7 L8,7 C8.554,7 9,7.446 9,8 L9,10 C9,10.554 8.554,11 8,11 L6,11 C5.446,11 5,10.554 5,10 L5,8 C5,7.446 5.446,7 6,7 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.35" >
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M8,4 C6.892,4 6,4.892 6,6 L7,6 C7,5.446 7.446,5 8,5 L10,5 C10.554,5 11,5.446 11,6 L11,8 C11,8.554 10.554,9 10,9 L10,10 C11.108,10 12,9.108 12,8 L12,6 C12,4.892 11.108,4 10,4 L8,4"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#e0e0e0" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-263.333,-3449.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.3" >
|
||||||
|
<circle cx="92.2667" cy="1111.85" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 879 B |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="77" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M6,6 C4.892,6 4,6.892 4,8 L4,10 C4,11.108 4.892,12 6,12 L8,12 C9.108,12 10,11.108 10,10 L10,8 C10,6.892 9.108,6 8,6 L6,6 M6,7 L8,7 C8.554,7 9,7.446 9,8 L9,10 C9,10.554 8.554,11 8,11 L6,11 C5.446,11 5,10.554 5,10 L5,8 C5,7.446 5.446,7 6,7 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.35" >
|
||||||
|
<path vector-effect="none" fill-rule="nonzero" d="M8,4 C6.892,4 6,4.892 6,6 L7,6 C7,5.446 7.446,5 8,5 L10,5 C10.554,5 11,5.446 11,6 L11,8 C11,8.554 10.554,9 10,9 L10,10 C11.108,10 12,9.108 12,8 L12,6 C12,4.892 11.108,4 10,4 L8,4"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#38c76a" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-90.625,-2241.76)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="37" cy="725.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 859 B |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fdbe04" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="117" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="117" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M113,684.862 C113,684.586 113.215,684.362 113.48,684.362 L120.52,684.362 C120.785,684.362 121,684.586 121,684.862 C121,685.138 120.785,685.362 120.52,685.362 L113.48,685.362 C113.215,685.362 113,685.138 113,684.862 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fdbe04" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="117" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.25" >
|
||||||
|
<circle cx="117" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-340.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M113,684.862 C113,684.586 113.215,684.362 113.48,684.362 L120.52,684.362 C120.785,684.362 121,684.586 121,684.862 C121,685.138 120.785,685.362 120.52,685.362 L113.48,685.362 C113.215,685.362 113,685.138 113,684.862 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fdbe04" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="77" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M73,684.862 C73,684.586 73.2149,684.362 73.48,684.362 L80.52,684.362 C80.7851,684.362 81,684.586 81,684.862 C81,685.138 80.7851,685.362 80.52,685.362 L73.48,685.362 C73.2149,685.362 73,685.138 73,684.862 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#e0e0e0" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-263.333,-3449.54)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
opacity="0.3" >
|
||||||
|
<circle cx="92.2667" cy="1111.85" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 879 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fdbe04" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="77" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-215.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M73,684.862 C73,684.586 73.2149,684.362 73.48,684.362 L80.52,684.362 C80.7851,684.362 81,684.586 81,684.862 C81,685.138 80.7851,685.362 80.52,685.362 L73.48,685.362 C73.2149,685.362 73,685.138 73,684.862 "/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fdbe04" fill-opacity="1" stroke="none" transform="matrix(3.125,0,0,3.125,-90.625,-2113.63)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="37" cy="684.362" r="8"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 859 B |
|
@ -0,0 +1,84 @@
|
||||||
|
@define-color borders_breeze #5b5b5b;
|
||||||
|
@define-color content_view_bg_breeze #464646;
|
||||||
|
@define-color error_color_backdrop_breeze #cb505d;
|
||||||
|
@define-color error_color_breeze #da4453;
|
||||||
|
@define-color error_color_insensitive_backdrop_breeze #744247;
|
||||||
|
@define-color error_color_insensitive_breeze #744247;
|
||||||
|
@define-color insensitive_base_color_breeze #434343;
|
||||||
|
@define-color insensitive_base_fg_color_breeze #646464;
|
||||||
|
@define-color insensitive_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_borders_breeze #474747;
|
||||||
|
@define-color insensitive_fg_color_breeze #616161;
|
||||||
|
@define-color insensitive_selected_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_selected_fg_color_breeze #616161;
|
||||||
|
@define-color insensitive_unfocused_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_unfocused_fg_color_breeze #616161;
|
||||||
|
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
|
||||||
|
@define-color link_color_breeze #d168ad;
|
||||||
|
@define-color link_visited_color_breeze #ce80ff;
|
||||||
|
@define-color success_color_backdrop_breeze #318654;
|
||||||
|
@define-color success_color_breeze #1e884a;
|
||||||
|
@define-color success_color_insensitive_backdrop_breeze #355944;
|
||||||
|
@define-color success_color_insensitive_breeze #355944;
|
||||||
|
@define-color theme_base_color_breeze #464646;
|
||||||
|
@define-color theme_bg_color_breeze #414141;
|
||||||
|
@define-color theme_button_background_backdrop_breeze #515151;
|
||||||
|
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
|
||||||
|
@define-color theme_button_background_insensitive_breeze #4c4c4c;
|
||||||
|
@define-color theme_button_background_normal_breeze #505050;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_breeze #c171a5;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_decoration_focus_breeze #d168ad;
|
||||||
|
@define-color theme_button_decoration_focus_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_breeze #c171a5;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_decoration_hover_breeze #d168ad;
|
||||||
|
@define-color theme_button_decoration_hover_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_breeze #aea6ab;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161;
|
||||||
|
@define-color theme_button_foreground_active_breeze #ffffff;
|
||||||
|
@define-color theme_button_foreground_active_insensitive_breeze #616161;
|
||||||
|
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
|
||||||
|
@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
|
||||||
|
@define-color theme_button_foreground_insensitive_breeze #4c6e76;
|
||||||
|
@define-color theme_button_foreground_normal_breeze #50b4ce;
|
||||||
|
@define-color theme_fg_color_breeze #aaaaaa;
|
||||||
|
@define-color theme_header_background_backdrop_breeze #2c3034;
|
||||||
|
@define-color theme_header_background_breeze #3c3c3c;
|
||||||
|
@define-color theme_header_background_light_breeze #414141;
|
||||||
|
@define-color theme_header_foreground_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_header_foreground_breeze #c8c8c8;
|
||||||
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
|
||||||
|
@define-color theme_hovering_selected_bg_color_breeze #d168ad;
|
||||||
|
@define-color theme_selected_bg_color_breeze #a75d8e;
|
||||||
|
@define-color theme_selected_fg_color_breeze #ffffff;
|
||||||
|
@define-color theme_text_color_breeze #aaaaaa;
|
||||||
|
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
|
||||||
|
@define-color theme_titlebar_background_breeze #3c3c3c;
|
||||||
|
@define-color theme_titlebar_background_light_breeze #414141;
|
||||||
|
@define-color theme_titlebar_foreground_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_titlebar_foreground_breeze #c8c8c8;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_breeze #f7f7f7;
|
||||||
|
@define-color theme_unfocused_base_color_breeze #474747;
|
||||||
|
@define-color theme_unfocused_bg_color_breeze #424242;
|
||||||
|
@define-color theme_unfocused_fg_color_breeze #a8a8a8;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_alt_breeze #67415a;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_breeze #67415a;
|
||||||
|
@define-color theme_unfocused_selected_fg_color_breeze #aea6ab;
|
||||||
|
@define-color theme_unfocused_text_color_breeze #a8a8a8;
|
||||||
|
@define-color theme_unfocused_view_bg_color_breeze #434343;
|
||||||
|
@define-color theme_unfocused_view_text_color_breeze #646464;
|
||||||
|
@define-color theme_view_active_decoration_color_breeze #d168ad;
|
||||||
|
@define-color theme_view_hover_decoration_color_breeze #d168ad;
|
||||||
|
@define-color tooltip_background_breeze #1d6c8b;
|
||||||
|
@define-color tooltip_border_breeze #48839a;
|
||||||
|
@define-color tooltip_text_breeze #c8c8c8;
|
||||||
|
@define-color unfocused_borders_breeze #5c5c5c;
|
||||||
|
@define-color unfocused_insensitive_borders_breeze #474747;
|
||||||
|
@define-color warning_color_backdrop_breeze #e77b1a;
|
||||||
|
@define-color warning_color_breeze #f67400;
|
||||||
|
@define-color warning_color_insensitive_backdrop_breeze #7d522b;
|
||||||
|
@define-color warning_color_insensitive_breeze #7d522b;
|
|
@ -0,0 +1 @@
|
||||||
|
@import 'colors.css';
|
|
@ -0,0 +1,15 @@
|
||||||
|
[Settings]
|
||||||
|
gtk-application-prefer-dark-theme=true
|
||||||
|
gtk-button-images=true
|
||||||
|
gtk-cursor-theme-name=Qogir-dark
|
||||||
|
gtk-cursor-theme-size=24
|
||||||
|
gtk-decoration-layout=icon:minimize,maximize,close
|
||||||
|
gtk-enable-animations=true
|
||||||
|
gtk-font-name=Noto Sans, 10
|
||||||
|
gtk-icon-theme-name=Colloid-dark
|
||||||
|
gtk-menu-images=true
|
||||||
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
|
gtk-primary-button-warps-slider=false
|
||||||
|
gtk-theme-name=Colloid-Dark
|
||||||
|
gtk-toolbar-style=3
|
||||||
|
gtk-xft-dpi=98304
|
|
@ -0,0 +1,84 @@
|
||||||
|
@define-color borders_breeze #5b5b5b;
|
||||||
|
@define-color content_view_bg_breeze #464646;
|
||||||
|
@define-color error_color_backdrop_breeze #cb505d;
|
||||||
|
@define-color error_color_breeze #da4453;
|
||||||
|
@define-color error_color_insensitive_backdrop_breeze #744247;
|
||||||
|
@define-color error_color_insensitive_breeze #744247;
|
||||||
|
@define-color insensitive_base_color_breeze #434343;
|
||||||
|
@define-color insensitive_base_fg_color_breeze #646464;
|
||||||
|
@define-color insensitive_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_borders_breeze #474747;
|
||||||
|
@define-color insensitive_fg_color_breeze #616161;
|
||||||
|
@define-color insensitive_selected_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_selected_fg_color_breeze #616161;
|
||||||
|
@define-color insensitive_unfocused_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_unfocused_fg_color_breeze #616161;
|
||||||
|
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
|
||||||
|
@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
|
||||||
|
@define-color link_color_breeze #d168ad;
|
||||||
|
@define-color link_visited_color_breeze #ce80ff;
|
||||||
|
@define-color success_color_backdrop_breeze #318654;
|
||||||
|
@define-color success_color_breeze #1e884a;
|
||||||
|
@define-color success_color_insensitive_backdrop_breeze #355944;
|
||||||
|
@define-color success_color_insensitive_breeze #355944;
|
||||||
|
@define-color theme_base_color_breeze #464646;
|
||||||
|
@define-color theme_bg_color_breeze #414141;
|
||||||
|
@define-color theme_button_background_backdrop_breeze #515151;
|
||||||
|
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
|
||||||
|
@define-color theme_button_background_insensitive_breeze #4c4c4c;
|
||||||
|
@define-color theme_button_background_normal_breeze #505050;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_breeze #c171a5;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_decoration_focus_breeze #d168ad;
|
||||||
|
@define-color theme_button_decoration_focus_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_breeze #c171a5;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_decoration_hover_breeze #d168ad;
|
||||||
|
@define-color theme_button_decoration_hover_insensitive_breeze #77546b;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_breeze #aea6ab;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161;
|
||||||
|
@define-color theme_button_foreground_active_breeze #ffffff;
|
||||||
|
@define-color theme_button_foreground_active_insensitive_breeze #616161;
|
||||||
|
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
|
||||||
|
@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
|
||||||
|
@define-color theme_button_foreground_insensitive_breeze #4c6e76;
|
||||||
|
@define-color theme_button_foreground_normal_breeze #50b4ce;
|
||||||
|
@define-color theme_fg_color_breeze #aaaaaa;
|
||||||
|
@define-color theme_header_background_backdrop_breeze #2c3034;
|
||||||
|
@define-color theme_header_background_breeze #3c3c3c;
|
||||||
|
@define-color theme_header_background_light_breeze #414141;
|
||||||
|
@define-color theme_header_foreground_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_header_foreground_breeze #c8c8c8;
|
||||||
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
|
||||||
|
@define-color theme_hovering_selected_bg_color_breeze #d168ad;
|
||||||
|
@define-color theme_selected_bg_color_breeze #a75d8e;
|
||||||
|
@define-color theme_selected_fg_color_breeze #ffffff;
|
||||||
|
@define-color theme_text_color_breeze #aaaaaa;
|
||||||
|
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
|
||||||
|
@define-color theme_titlebar_background_breeze #3c3c3c;
|
||||||
|
@define-color theme_titlebar_background_light_breeze #414141;
|
||||||
|
@define-color theme_titlebar_foreground_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_titlebar_foreground_breeze #c8c8c8;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #f7f7f7;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_breeze #f7f7f7;
|
||||||
|
@define-color theme_unfocused_base_color_breeze #474747;
|
||||||
|
@define-color theme_unfocused_bg_color_breeze #424242;
|
||||||
|
@define-color theme_unfocused_fg_color_breeze #a8a8a8;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_alt_breeze #67415a;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_breeze #67415a;
|
||||||
|
@define-color theme_unfocused_selected_fg_color_breeze #aea6ab;
|
||||||
|
@define-color theme_unfocused_text_color_breeze #a8a8a8;
|
||||||
|
@define-color theme_unfocused_view_bg_color_breeze #434343;
|
||||||
|
@define-color theme_unfocused_view_text_color_breeze #646464;
|
||||||
|
@define-color theme_view_active_decoration_color_breeze #d168ad;
|
||||||
|
@define-color theme_view_hover_decoration_color_breeze #d168ad;
|
||||||
|
@define-color tooltip_background_breeze #1d6c8b;
|
||||||
|
@define-color tooltip_border_breeze #48839a;
|
||||||
|
@define-color tooltip_text_breeze #c8c8c8;
|
||||||
|
@define-color unfocused_borders_breeze #5c5c5c;
|
||||||
|
@define-color unfocused_insensitive_borders_breeze #474747;
|
||||||
|
@define-color warning_color_backdrop_breeze #e77b1a;
|
||||||
|
@define-color warning_color_breeze #f67400;
|
||||||
|
@define-color warning_color_insensitive_backdrop_breeze #7d522b;
|
||||||
|
@define-color warning_color_insensitive_breeze #7d522b;
|
|
@ -0,0 +1 @@
|
||||||
|
@import 'colors.css';
|
|
@ -0,0 +1,12 @@
|
||||||
|
[Settings]
|
||||||
|
gtk-application-prefer-dark-theme=true
|
||||||
|
gtk-cursor-theme-name=Qogir-dark
|
||||||
|
gtk-cursor-theme-size=24
|
||||||
|
gtk-decoration-layout=icon:minimize,maximize,close
|
||||||
|
gtk-enable-animations=true
|
||||||
|
gtk-font-name=Noto Sans, 10
|
||||||
|
gtk-icon-theme-name=Colloid-dark
|
||||||
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
|
gtk-primary-button-warps-slider=false
|
||||||
|
gtk-theme-name=Colloid-Dark
|
||||||
|
gtk-xft-dpi=98304
|
|
@ -0,0 +1,2 @@
|
||||||
|
# created by KDE Plasma, вс мая 14 16:06:00 2023
|
||||||
|
#
|
|
@ -0,0 +1,5 @@
|
||||||
|
# created by KDE Plasma, вс мая 14 16:06:00 2023
|
||||||
|
#
|
||||||
|
|
||||||
|
gtk-alternative-button-order = 1
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
[Favorites-org.kde.plasma.kicker.favorites.instance-102-44b5729f-2230-4c77-9c28-9878adb9914e]
|
||||||
|
ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kate.desktop,applications:org.kde.kcalc.desktop,applications:gparted.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:google-chrome.desktop,applications:brave-browser.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kicker.favorites.instance-102-45f6fb07-97f3-42a3-a81d-d1a06505cd3f]
|
||||||
|
ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:org.kde.kate.desktop,applications:org.kde.konsole.desktop,applications:firefox.desktop,applications:firefoxdeveloperedition.desktop,applications:google-chrome.desktop,preferred://browser,applications:gparted.desktop,applications:org.kde.kcalc.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kicker.favorites.instance-102-global]
|
||||||
|
ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kate.desktop,applications:org.kde.kcalc.desktop,applications:gparted.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:google-chrome.desktop,applications:brave-browser.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kickoff.favorites.instance-3-45f6fb07-97f3-42a3-a81d-d1a06505cd3f]
|
||||||
|
ordering=preferred://browser,org.kde.kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,ktp-contactlist.desktop,org.kde.discover.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kickoff.favorites.instance-3-global]
|
||||||
|
ordering=preferred://browser,org.kde.kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,ktp-contactlist.desktop,org.kde.discover.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kickoff.favorites.instance-78-45f6fb07-97f3-42a3-a81d-d1a06505cd3f]
|
||||||
|
ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,preferred://browser,applications:org.kde.kate.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kickoff.favorites.instance-78-global]
|
||||||
|
ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,preferred://browser,applications:org.kde.kate.desktop
|
|
@ -0,0 +1,5 @@
|
||||||
|
[activities]
|
||||||
|
44b5729f-2230-4c77-9c28-9878adb9914e=Начальная комната
|
||||||
|
|
||||||
|
[main]
|
||||||
|
currentActivity=44b5729f-2230-4c77-9c28-9878adb9914e
|
|
@ -0,0 +1,12 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0,kcminputrc_repeat.upd:kcminputrc_migrate_key_repeat
|
||||||
|
|
||||||
|
[Keyboard]
|
||||||
|
NumLock=0
|
||||||
|
|
||||||
|
[Mouse]
|
||||||
|
X11LibInputXAccelProfileFlat=true
|
||||||
|
cursorTheme=Qogir-dark
|
||||||
|
|
||||||
|
[Tmp]
|
||||||
|
update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize
|
|
@ -0,0 +1,198 @@
|
||||||
|
updateInfoAdded=true
|
||||||
|
|
||||||
|
[ark.upd]
|
||||||
|
ctime=1683828336
|
||||||
|
done=add-hamburgermenu-to-toolbar
|
||||||
|
mtime=1683716422
|
||||||
|
|
||||||
|
[breezehighcontrasttobreezedark.upd]
|
||||||
|
ctime=1683662119
|
||||||
|
done=BreezeHighContrastToBreezeDark
|
||||||
|
mtime=1683644707
|
||||||
|
|
||||||
|
[breezetobreezeclassic.upd]
|
||||||
|
ctime=1683662119
|
||||||
|
done=BreezeToBreezeClassic
|
||||||
|
mtime=1683644707
|
||||||
|
|
||||||
|
[breezetobreezelight.upd]
|
||||||
|
ctime=1683662119
|
||||||
|
done=BreezeToBreezeLight
|
||||||
|
mtime=1683644707
|
||||||
|
|
||||||
|
[delete_cursor_old_default_size.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=DeleteCursorOldDefaultSize
|
||||||
|
mtime=1683645394
|
||||||
|
|
||||||
|
[disable_kmix.upd]
|
||||||
|
ctime=1683662125
|
||||||
|
done=PlasmaVolume_DisableKMixAutostart
|
||||||
|
mtime=1683647360
|
||||||
|
|
||||||
|
[dolphin_detailsmodesettings.upd]
|
||||||
|
ctime=1683828337
|
||||||
|
done=rename-leading-padding
|
||||||
|
mtime=1683704909
|
||||||
|
|
||||||
|
[filepicker.upd]
|
||||||
|
ctime=1681131412
|
||||||
|
done=filepicker-remove-old-previews-entry
|
||||||
|
mtime=1680361602
|
||||||
|
|
||||||
|
[fonts_akregator.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=Plasma_Fonts_Akregator
|
||||||
|
mtime=1683645307
|
||||||
|
|
||||||
|
[fonts_global.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=Fonts_Global
|
||||||
|
mtime=1683645307
|
||||||
|
|
||||||
|
[fonts_global_toolbar.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=Fonts_Global_Toolbar
|
||||||
|
mtime=1683645307
|
||||||
|
|
||||||
|
[fonts_kate.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=Plasma_Fonts_Kate
|
||||||
|
mtime=1683645307
|
||||||
|
|
||||||
|
[gtkconfig.upd]
|
||||||
|
ctime=1683662121
|
||||||
|
done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
|
||||||
|
mtime=1683646568
|
||||||
|
|
||||||
|
[gwenview.upd]
|
||||||
|
ctime=1683828337
|
||||||
|
done=SideBar_StatusBar_Rename,ImageView_AlphaBackgroundMode_Update,DeleteThumbnailSetting_Rename
|
||||||
|
mtime=1683708529
|
||||||
|
|
||||||
|
[icons_remove_effects.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=IconsRemoveEffects
|
||||||
|
mtime=1683645394
|
||||||
|
|
||||||
|
[katesession_migration.upd]
|
||||||
|
ctime=1683828337
|
||||||
|
done=migrate_kate_sessions_applet_to_kdeplasma-addons
|
||||||
|
mtime=1683716555
|
||||||
|
|
||||||
|
[kcalcrc.upd]
|
||||||
|
ctime=1683828337
|
||||||
|
mtime=1683716740
|
||||||
|
|
||||||
|
[kcm_rename_plasma_desktop.upd]
|
||||||
|
ctime=1683662124
|
||||||
|
done=5.24PlasmaDesktopKCMRename
|
||||||
|
mtime=1683646941
|
||||||
|
|
||||||
|
[kcminputrc_fix_botched_5_21_0.upd]
|
||||||
|
ctime=1683662124
|
||||||
|
done=kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0
|
||||||
|
mtime=1683646941
|
||||||
|
|
||||||
|
[kcminputrc_repeat.upd]
|
||||||
|
ctime=1683662124
|
||||||
|
done=kcminputrc_migrate_key_repeat
|
||||||
|
mtime=1683646941
|
||||||
|
|
||||||
|
[kde4lightly.upd]
|
||||||
|
ctime=1679834445
|
||||||
|
done=5.0KDE4Lightly_2
|
||||||
|
mtime=1679823631
|
||||||
|
|
||||||
|
[kleopatra.upd]
|
||||||
|
ctime=1683828338
|
||||||
|
done=kleopatra-15.08-kickoff
|
||||||
|
mtime=1683714697
|
||||||
|
|
||||||
|
[konsole.upd]
|
||||||
|
ctime=1683828338
|
||||||
|
done=konsole_globalaccel,add-hamburgermenu-to-toolbar
|
||||||
|
mtime=1683717201
|
||||||
|
|
||||||
|
[krunnerglobalshortcuts2.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=5.22KRunnerGlobalShortcuts
|
||||||
|
mtime=1683645394
|
||||||
|
|
||||||
|
[krunnerhistory.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=5.21KRunnerHistory
|
||||||
|
mtime=1683645394
|
||||||
|
|
||||||
|
[kscreenlocker.upd]
|
||||||
|
ctime=1683662121
|
||||||
|
done=0.1-autolock
|
||||||
|
mtime=1683644520
|
||||||
|
|
||||||
|
[ksmserver_update_loginMode_value.upd]
|
||||||
|
ctime=1683662124
|
||||||
|
done=ksmserver_update_loginMode_value_default_enum
|
||||||
|
mtime=1683646941
|
||||||
|
|
||||||
|
[kwin.upd]
|
||||||
|
ctime=1683741499
|
||||||
|
done=replace-scalein-with-scale,port-minimizeanimation-effect-to-js,port-scale-effect-to-js,port-dimscreen-effect-to-js,auto-bordersize,animation-speed,desktop-grid-click-behavior,no-swap-encourage,make-translucency-effect-disabled-by-default,remove-flip-switch-effect,remove-cover-switch-effect,remove-cubeslide-effect,remove-xrender-backend,enable-scale-effect-by-default,overview-group-plugin-id,animation-speed-cleanup,replace-cascaded-zerocornered
|
||||||
|
mtime=1683720625
|
||||||
|
|
||||||
|
[kwinrules.upd]
|
||||||
|
ctime=1683741499
|
||||||
|
done=replace-placement-string-to-enum,use-virtual-desktop-ids
|
||||||
|
mtime=1683720625
|
||||||
|
|
||||||
|
[kxkb.upd]
|
||||||
|
ctime=1683662124
|
||||||
|
done=remove-empty-lists,add-back-resetoptions
|
||||||
|
mtime=1683646941
|
||||||
|
|
||||||
|
[kxkb_variants.upd]
|
||||||
|
ctime=1683662124
|
||||||
|
done=split-variants
|
||||||
|
mtime=1683646941
|
||||||
|
|
||||||
|
[okular.upd]
|
||||||
|
ctime=1683828339
|
||||||
|
done=annotation-toolbar,builtin-annotations
|
||||||
|
mtime=1683708878
|
||||||
|
|
||||||
|
[plasmashell-5.27-use-panel-thickness-in-default-group.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=plasmashell-5.27-use-panel-thickness-in-default-group
|
||||||
|
mtime=1683645394
|
||||||
|
|
||||||
|
[smb4k_3_0_0.upd]
|
||||||
|
ctime=1681014034
|
||||||
|
done=Smb4K_3.0.0
|
||||||
|
mtime=1680993817
|
||||||
|
|
||||||
|
[smb4ksettings.upd]
|
||||||
|
ctime=1681014034
|
||||||
|
mtime=1680993817
|
||||||
|
|
||||||
|
[spectacle_clipboard.upd]
|
||||||
|
ctime=1683828342
|
||||||
|
done=clipboard-settings-change
|
||||||
|
mtime=1683709048
|
||||||
|
|
||||||
|
[spectacle_newConfig.upd]
|
||||||
|
ctime=1683828342
|
||||||
|
mtime=1683709048
|
||||||
|
|
||||||
|
[spectacle_rememberregion.upd]
|
||||||
|
ctime=1683828342
|
||||||
|
done=spectacle-migrate-rememberregion
|
||||||
|
mtime=1683709048
|
||||||
|
|
||||||
|
[spectacle_shortcuts.upd]
|
||||||
|
ctime=1683828342
|
||||||
|
done=spectacle-migrate-shortcuts
|
||||||
|
mtime=1683709048
|
||||||
|
|
||||||
|
[style_widgetstyle_default_breeze.upd]
|
||||||
|
ctime=1683662122
|
||||||
|
done=StyleWidgetStyleDefaultBreeze
|
||||||
|
mtime=1683645394
|
|
@ -0,0 +1,2 @@
|
||||||
|
[Mouse]
|
||||||
|
cursorTheme=Colloid-cursors
|
|
@ -0,0 +1,8 @@
|
||||||
|
[General]
|
||||||
|
ColorScheme=Melawy
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Theme=Colloid-dark
|
||||||
|
|
||||||
|
[KDE]
|
||||||
|
widgetStyle=Breeze
|
|
@ -0,0 +1,2 @@
|
||||||
|
[Greeter]
|
||||||
|
Theme=org.kde.breeze.desktop
|
|
@ -0,0 +1,3 @@
|
||||||
|
[KSplash]
|
||||||
|
Engine=KSplashQML
|
||||||
|
Theme=com.github.vinceliuice.Colloid-dark
|
|
@ -0,0 +1,12 @@
|
||||||
|
[TabBox]
|
||||||
|
DesktopLayout=org.kde.breeze.desktop
|
||||||
|
DesktopListLayout=org.kde.breeze.desktop
|
||||||
|
LayoutName=org.kde.breeze.desktop
|
||||||
|
|
||||||
|
[Windows]
|
||||||
|
Placement=Centered
|
||||||
|
|
||||||
|
[org.kde.kdecoration2]
|
||||||
|
NoPlugin=false
|
||||||
|
library=org.kde.kwin.aurorae
|
||||||
|
theme=__aurorae__svg__Colloid-dark
|
|
@ -0,0 +1 @@
|
||||||
|
com.github.vinceliuice.Colloid-dark
|
|
@ -0,0 +1,2 @@
|
||||||
|
[Theme]
|
||||||
|
name=Colloid-dark
|
|
@ -0,0 +1,160 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=filepicker.upd:filepicker-remove-old-previews-entry,fonts_global.upd:Fonts_Global,fonts_global_toolbar.upd:Fonts_Global_Toolbar,icons_remove_effects.upd:IconsRemoveEffects,kwin.upd:animation-speed,style_widgetstyle_default_breeze.upd:StyleWidgetStyleDefaultBreeze
|
||||||
|
|
||||||
|
[ColorEffects:Disabled]
|
||||||
|
ChangeSelectionColor=
|
||||||
|
Color=112,111,110
|
||||||
|
ColorAmount=0
|
||||||
|
ColorEffect=0
|
||||||
|
ContrastAmount=0.65
|
||||||
|
ContrastEffect=1
|
||||||
|
Enable=
|
||||||
|
IntensityAmount=0.1
|
||||||
|
IntensityEffect=2
|
||||||
|
|
||||||
|
[ColorEffects:Inactive]
|
||||||
|
ChangeSelectionColor=true
|
||||||
|
Color=112,111,110
|
||||||
|
ColorAmount=0.025
|
||||||
|
ColorEffect=2
|
||||||
|
ContrastAmount=0.1
|
||||||
|
ContrastEffect=2
|
||||||
|
Enable=true
|
||||||
|
IntensityAmount=0
|
||||||
|
IntensityEffect=0
|
||||||
|
|
||||||
|
[Colors:Button]
|
||||||
|
BackgroundAlternate=170,96,145
|
||||||
|
BackgroundNormal=80,80,80
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=170,170,170
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=80,180,206
|
||||||
|
ForegroundPositive=30,136,74
|
||||||
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
|
[Colors:Complementary]
|
||||||
|
BackgroundAlternate=30,87,116
|
||||||
|
BackgroundNormal=60,60,60
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=170,170,170
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=252,252,252
|
||||||
|
ForegroundPositive=39,174,96
|
||||||
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
|
[Colors:Header]
|
||||||
|
BackgroundAlternate=90,90,90
|
||||||
|
BackgroundNormal=60,60,60
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=170,170,170
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=200,200,200
|
||||||
|
ForegroundPositive=39,174,96
|
||||||
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
|
[Colors:Header][Inactive]
|
||||||
|
BackgroundAlternate=49,54,59
|
||||||
|
BackgroundNormal=42,46,50
|
||||||
|
DecorationFocus=61,174,233
|
||||||
|
DecorationHover=61,174,233
|
||||||
|
ForegroundActive=61,174,233
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=29,153,243
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=252,252,252
|
||||||
|
ForegroundPositive=39,174,96
|
||||||
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
|
[Colors:Selection]
|
||||||
|
BackgroundAlternate=167,93,142
|
||||||
|
BackgroundNormal=167,93,142
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=255,255,255
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=255,255,255
|
||||||
|
ForegroundPositive=30,136,74
|
||||||
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
|
[Colors:Tooltip]
|
||||||
|
BackgroundAlternate=60,60,60
|
||||||
|
BackgroundNormal=29,108,139
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=170,170,170
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=200,200,200
|
||||||
|
ForegroundPositive=30,136,74
|
||||||
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
|
[Colors:View]
|
||||||
|
BackgroundAlternate=75,75,75
|
||||||
|
BackgroundNormal=70,70,70
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=170,170,170
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=170,170,170
|
||||||
|
ForegroundPositive=30,136,74
|
||||||
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
|
[Colors:Window]
|
||||||
|
BackgroundAlternate=60,60,60
|
||||||
|
BackgroundNormal=65,65,65
|
||||||
|
DecorationFocus=209,104,173
|
||||||
|
DecorationHover=209,104,173
|
||||||
|
ForegroundActive=209,104,173
|
||||||
|
ForegroundInactive=170,170,170
|
||||||
|
ForegroundLink=209,104,173
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=170,170,170
|
||||||
|
ForegroundPositive=30,136,74
|
||||||
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
|
[General]
|
||||||
|
AccentColor=209,104,173
|
||||||
|
ColorSchemeHash=a0b6db6b94022a92715b668c12281ffe0e4e01b3
|
||||||
|
Name[ru_RU]=Breeze, светлый вариант
|
||||||
|
Name=Breeze Light
|
||||||
|
accentColorFromWallpaper=true
|
||||||
|
shadeSortColumn=true
|
||||||
|
widgetStyle=Breeze
|
||||||
|
|
||||||
|
[KDE]
|
||||||
|
ColorScheme=BreezeLight
|
||||||
|
LookAndFeelPackage=com.github.vinceliuice.Colloid-dark
|
||||||
|
SingleClick=false
|
||||||
|
contrast=4
|
||||||
|
widgetStyle=Lightly
|
||||||
|
|
||||||
|
[WM]
|
||||||
|
activeBackground=61,61,62
|
||||||
|
activeBlend=62,62,62
|
||||||
|
activeForeground=150,150,150
|
||||||
|
inactiveBackground=61,61,62
|
||||||
|
inactiveBlend=62,62,62
|
||||||
|
inactiveForeground=155,155,155
|
|
@ -0,0 +1,291 @@
|
||||||
|
[ActivityManager]
|
||||||
|
_k_friendly_name=Диспетчер комнат
|
||||||
|
switch-to-activity-44b5729f-2230-4c77-9c28-9878adb9914e=none,none,Переключиться на комнату «Начальная комната»
|
||||||
|
switch-to-activity-45f6fb07-97f3-42a3-a81d-d1a06505cd3f=none,none,Переключиться на комнату «Начальная комната»
|
||||||
|
|
||||||
|
[KDE Keyboard Layout Switcher]
|
||||||
|
Switch to Next Keyboard Layout=Meta+Alt+K,none,Выбрать следующую раскладку клавиатуры
|
||||||
|
_k_friendly_name=Переключение раскладки клавиатуры
|
||||||
|
|
||||||
|
[kaccess]
|
||||||
|
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Включить/выключить зачитывание с экрана
|
||||||
|
_k_friendly_name=Специальные возможности
|
||||||
|
|
||||||
|
[kcm_touchpad]
|
||||||
|
Disable Touchpad=Touchpad Off,Touchpad Off,Выключить сенсорную панель
|
||||||
|
Enable Touchpad=Touchpad On,Touchpad On,Включить сенсорную панель
|
||||||
|
Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Включить или выключить сенсорную панель
|
||||||
|
_k_friendly_name=Сенсорная панель
|
||||||
|
|
||||||
|
[kded5]
|
||||||
|
Show System Activity=Ctrl+Esc,Ctrl+Esc,Показать активность системы
|
||||||
|
_k_friendly_name=KDE Daemon
|
||||||
|
display=Display\tMeta+P,Display\tMeta+P,Сменить экран
|
||||||
|
|
||||||
|
[khotkeys]
|
||||||
|
_k_friendly_name=Служба пользовательских комбинаций клавиш
|
||||||
|
{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Поиск
|
||||||
|
|
||||||
|
[kmix]
|
||||||
|
_k_friendly_name=Громкость
|
||||||
|
decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Уменьшить громкость микрофона
|
||||||
|
decrease_volume=Volume Down,Volume Down,Уменьшить громкость
|
||||||
|
increase_microphone_volume=Microphone Volume Up,Microphone Volume Up,Увеличить громкость микрофона
|
||||||
|
increase_volume=Volume Up,Volume Up,Увеличить громкость
|
||||||
|
mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Выключить микрофон
|
||||||
|
mute=Volume Mute,Volume Mute,Выключить звук
|
||||||
|
|
||||||
|
[ksmserver]
|
||||||
|
Halt Without Confirmation=none,,Выключить компьютер без подтверждения
|
||||||
|
Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Заблокировать сеанс
|
||||||
|
Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Завершить сеанс
|
||||||
|
Log Out Without Confirmation=none,,Завершить сеанс без подтверждения
|
||||||
|
Reboot Without Confirmation=none,,Перезагрузить компьютер без подтверждения
|
||||||
|
_k_friendly_name=Управление сеансами
|
||||||
|
|
||||||
|
[kwin]
|
||||||
|
Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Активировать окно\\, требующее внимания
|
||||||
|
Decrease Opacity=none,,Уменьшить непрозрачность окна на 5%
|
||||||
|
Edit Tiles=Meta+T,Meta+T,Изменить раскладку мозаики окон
|
||||||
|
Expose=Ctrl+F9,Ctrl+F9,Показать все окна с текущего рабочего стола
|
||||||
|
ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Показать все окна со всех рабочих столов
|
||||||
|
ExposeClass=Ctrl+F7,Ctrl+F7,Показать окна одного класса
|
||||||
|
ExposeClassCurrentDesktop=none,none,Показать все окна одного класса с текущего рабочего стола
|
||||||
|
Increase Opacity=none,,Увеличить непрозрачность окна на 5%
|
||||||
|
Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Принудительно закрыть окно
|
||||||
|
MoveMouseToCenter=Meta+F6,Meta+F6,Переместить мышь в центр
|
||||||
|
MoveMouseToFocus=Meta+F5,Meta+F5,Переместить мышь в фокус ввода
|
||||||
|
MoveZoomDown=none,none,Переместить увеличенную область вниз
|
||||||
|
MoveZoomLeft=none,none,Переместить увеличенную область влево
|
||||||
|
MoveZoomRight=none,none,Переместить увеличенную область вправо
|
||||||
|
MoveZoomUp=none,none,Переместить увеличенную область вверх
|
||||||
|
Overview=Meta+W,Meta+W,Включить или отключить режим обзора
|
||||||
|
Setup Window Shortcut=none,,Задать комбинацию клавиш для переключения в это окно
|
||||||
|
Show Desktop=Meta+D,Meta+D,Взглянуть на рабочий стол
|
||||||
|
ShowDesktopGrid=Meta+F8,Meta+F8,Показать все рабочие столы
|
||||||
|
Suspend Compositing=Alt+Shift+F12,Alt+Shift+F12,Приостановить композитное расширение
|
||||||
|
Switch One Desktop Down=none,Meta+Ctrl+Down,Переключиться на один рабочий стол вниз
|
||||||
|
Switch One Desktop Up=none,Meta+Ctrl+Up,Переключиться на один рабочий стол вверх
|
||||||
|
Switch One Desktop to the Left=none,Meta+Ctrl+Left,Переключиться на один рабочий стол влево
|
||||||
|
Switch One Desktop to the Right=none,Meta+Ctrl+Right,Переключиться на один рабочий стол вправо
|
||||||
|
Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Переключиться на окно снизу
|
||||||
|
Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Переключиться на окно слева
|
||||||
|
Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Переключиться на окно справа
|
||||||
|
Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Переключиться на окно сверху
|
||||||
|
Switch to Desktop 1=Ctrl+F1,Ctrl+F1,Переключиться на рабочий стол 1
|
||||||
|
Switch to Desktop 10=none,,Переключиться на рабочий стол 10
|
||||||
|
Switch to Desktop 11=none,,Переключиться на рабочий стол 11
|
||||||
|
Switch to Desktop 12=none,,Переключиться на рабочий стол 12
|
||||||
|
Switch to Desktop 13=none,,Переключиться на рабочий стол 13
|
||||||
|
Switch to Desktop 14=none,,Переключиться на рабочий стол 14
|
||||||
|
Switch to Desktop 15=none,,Переключиться на рабочий стол 15
|
||||||
|
Switch to Desktop 16=none,,Переключиться на рабочий стол 16
|
||||||
|
Switch to Desktop 17=none,,Переключиться на рабочий стол 17
|
||||||
|
Switch to Desktop 18=none,,Переключиться на рабочий стол 18
|
||||||
|
Switch to Desktop 19=none,,Переключиться на рабочий стол 19
|
||||||
|
Switch to Desktop 2=Ctrl+F2,Ctrl+F2,Переключиться на рабочий стол 2
|
||||||
|
Switch to Desktop 20=none,,Переключиться на рабочий стол 20
|
||||||
|
Switch to Desktop 3=Ctrl+F3,Ctrl+F3,Переключиться на рабочий стол 3
|
||||||
|
Switch to Desktop 4=Ctrl+F4,Ctrl+F4,Переключиться на рабочий стол 4
|
||||||
|
Switch to Desktop 5=none,,Переключиться на рабочий стол 5
|
||||||
|
Switch to Desktop 6=none,,Переключиться на рабочий стол 6
|
||||||
|
Switch to Desktop 7=none,,Переключиться на рабочий стол 7
|
||||||
|
Switch to Desktop 8=none,,Переключиться на рабочий стол 8
|
||||||
|
Switch to Desktop 9=none,,Переключиться на рабочий стол 9
|
||||||
|
Switch to Next Desktop=none,,Переключиться на следующий рабочий стол
|
||||||
|
Switch to Next Screen=none,,Переключиться на следующий экран
|
||||||
|
Switch to Previous Desktop=none,,Переключиться на предыдущий рабочий стол
|
||||||
|
Switch to Previous Screen=none,,Переключиться на предыдущий экран
|
||||||
|
Switch to Screen 0=none,,Переключиться на экран 0
|
||||||
|
Switch to Screen 1=none,,Переключиться на экран 1
|
||||||
|
Switch to Screen 2=none,,Переключиться на экран 2
|
||||||
|
Switch to Screen 3=none,,Переключиться на экран 3
|
||||||
|
Switch to Screen 4=none,,Переключиться на экран 4
|
||||||
|
Switch to Screen 5=none,,Переключиться на экран 5
|
||||||
|
Switch to Screen 6=none,,Переключиться на экран 6
|
||||||
|
Switch to Screen 7=none,,Переключиться на экран 7
|
||||||
|
Switch to Screen Above=none,,Переключиться на экран выше
|
||||||
|
Switch to Screen Below=none,,Переключиться на экран ниже
|
||||||
|
Switch to Screen to the Left=none,,Переключиться на экран слева
|
||||||
|
Switch to Screen to the Right=none,,Переключиться на экран справа
|
||||||
|
Toggle Night Color=none,none,Включить или отключить ночную цветовую схему
|
||||||
|
Toggle Window Raise/Lower=none,,Переключить передний/задний план
|
||||||
|
Walk Through Desktop List=none,,По списку рабочих столов вперёд
|
||||||
|
Walk Through Desktop List (Reverse)=none,,По списку рабочих столов назад
|
||||||
|
Walk Through Desktops=none,,На один рабочий стол вперёд
|
||||||
|
Walk Through Desktops (Reverse)=none,,На один рабочий стол назад
|
||||||
|
Walk Through Windows=Alt+Tab,Alt+Tab,На одно окно вперёд
|
||||||
|
Walk Through Windows (Reverse)=Alt+Shift+Backtab,Alt+Shift+Backtab,На одно окно назад
|
||||||
|
Walk Through Windows Alternative=none,,На одно окно вперёд (альтернативный режим)
|
||||||
|
Walk Through Windows Alternative (Reverse)=none,,На одно окно назад (альтернативный режим)
|
||||||
|
Walk Through Windows of Current Application=Alt+`,Alt+`,На одно окно вперёд текущего приложения
|
||||||
|
Walk Through Windows of Current Application (Reverse)=Alt+~,Alt+~,На одно окно назад текущего приложения
|
||||||
|
Walk Through Windows of Current Application Alternative=none,,На одно окно вперёд текущего приложения (альтернативный режим)
|
||||||
|
Walk Through Windows of Current Application Alternative (Reverse)=none,,На одно окно назад текущего приложения (альтернативный режим)
|
||||||
|
Window Above Other Windows=none,,Поместить окно на передний план
|
||||||
|
Window Below Other Windows=none,,Поместить окно на задний план
|
||||||
|
Window Close=Alt+F4,Alt+F4,Закрыть окно
|
||||||
|
Window Fullscreen=none,,Распахнуть окно на весь экран
|
||||||
|
Window Grow Horizontal=none,,Распахнуть окно по горизонтали
|
||||||
|
Window Grow Vertical=none,,Распахнуть окно по вертикали
|
||||||
|
Window Lower=none,,Опустить окно
|
||||||
|
Window Maximize=Meta+PgUp,Meta+PgUp,Распахнуть окно
|
||||||
|
Window Maximize Horizontal=none,,Распахнуть окно по горизонтали
|
||||||
|
Window Maximize Vertical=none,,Распахнуть окно по вертикали
|
||||||
|
Window Minimize=Meta+PgDown,Meta+PgDown,Свернуть окно
|
||||||
|
Window Move=none,,Переместить окно
|
||||||
|
Window Move Center=none,,Переместить окно в центр
|
||||||
|
Window No Border=none,,Скрыть или показать заголовок и границы окна
|
||||||
|
Window On All Desktops=none,,Поддерживать окно на всех рабочих столах
|
||||||
|
Window One Desktop Down=Meta+Ctrl+Shift+Down,Meta+Ctrl+Shift+Down,Окно на один рабочий стол вниз
|
||||||
|
Window One Desktop Up=Meta+Ctrl+Shift+Up,Meta+Ctrl+Shift+Up,Окно на один рабочий стол вверх
|
||||||
|
Window One Desktop to the Left=Meta+Ctrl+Shift+Left,Meta+Ctrl+Shift+Left,Окно на один рабочий стол влево
|
||||||
|
Window One Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Окно на один рабочий стол вправо
|
||||||
|
Window One Screen Down=none,,Window One Screen Down
|
||||||
|
Window One Screen Up=none,,Window One Screen Up
|
||||||
|
Window One Screen to the Left=none,,Window One Screen to the Left
|
||||||
|
Window One Screen to the Right=none,,Window One Screen to the Right
|
||||||
|
Window Operations Menu=Alt+F3,Alt+F3,Меню действий с окном
|
||||||
|
Window Pack Down=none,,Переместить окно вниз
|
||||||
|
Window Pack Left=none,,Переместить окно влево
|
||||||
|
Window Pack Right=none,,Переместить окно вправо
|
||||||
|
Window Pack Up=none,,Переместить окно вверх
|
||||||
|
Window Quick Tile Bottom=Meta+Down,Meta+Down,Распахнуть окно на нижнюю половину экрана
|
||||||
|
Window Quick Tile Bottom Left=none,,Распахнуть окно на левую нижнюю четверть экрана
|
||||||
|
Window Quick Tile Bottom Right=none,,Распахнуть окно на правую нижнюю четверть экрана
|
||||||
|
Window Quick Tile Left=Meta+Left,Meta+Left,Распахнуть окно на левую половину экрана
|
||||||
|
Window Quick Tile Right=Meta+Right,Meta+Right,Распахнуть окно на правую половину экрана
|
||||||
|
Window Quick Tile Top=Meta+Up,Meta+Up,Распахнуть окно на верхнюю половину экрана
|
||||||
|
Window Quick Tile Top Left=none,,Распахнуть окно на левую верхнюю четверть экрана
|
||||||
|
Window Quick Tile Top Right=none,,Распахнуть окно на правую верхнюю четверть экрана
|
||||||
|
Window Raise=none,,Поднять окно
|
||||||
|
Window Resize=none,,Изменить размер окна
|
||||||
|
Window Shade=none,,Свернуть окно в заголовок
|
||||||
|
Window Shrink Horizontal=none,,Сжать окно по горизонтали
|
||||||
|
Window Shrink Vertical=none,,Сжать окно по вертикали
|
||||||
|
Window to Desktop 1=none,,Переместить окно на рабочий стол 1
|
||||||
|
Window to Desktop 10=none,,Переместить окно на рабочий стол 10
|
||||||
|
Window to Desktop 11=none,,Переместить окно на рабочий стол 11
|
||||||
|
Window to Desktop 12=none,,Переместить окно на рабочий стол 12
|
||||||
|
Window to Desktop 13=none,,Переместить окно на рабочий стол 13
|
||||||
|
Window to Desktop 14=none,,Переместить окно на рабочий стол 14
|
||||||
|
Window to Desktop 15=none,,Переместить окно на рабочий стол 15
|
||||||
|
Window to Desktop 16=none,,Переместить окно на рабочий стол 16
|
||||||
|
Window to Desktop 17=none,,Переместить окно на рабочий стол 17
|
||||||
|
Window to Desktop 18=none,,Переместить окно на рабочий стол 18
|
||||||
|
Window to Desktop 19=none,,Переместить окно на рабочий стол 19
|
||||||
|
Window to Desktop 2=none,,Переместить окно на рабочий стол 2
|
||||||
|
Window to Desktop 20=none,,Переместить окно на рабочий стол 20
|
||||||
|
Window to Desktop 3=none,,Переместить окно на рабочий стол 3
|
||||||
|
Window to Desktop 4=none,,Переместить окно на рабочий стол 4
|
||||||
|
Window to Desktop 5=none,,Переместить окно на рабочий стол 5
|
||||||
|
Window to Desktop 6=none,,Переместить окно на рабочий стол 6
|
||||||
|
Window to Desktop 7=none,,Переместить окно на рабочий стол 7
|
||||||
|
Window to Desktop 8=none,,Переместить окно на рабочий стол 8
|
||||||
|
Window to Desktop 9=none,,Переместить окно на рабочий стол 9
|
||||||
|
Window to Next Desktop=none,,Переместить окно на следующий рабочий стол
|
||||||
|
Window to Next Screen=Meta+Shift+Right,Meta+Shift+Right,Переместить окно на следующий экран
|
||||||
|
Window to Previous Desktop=none,,Переместить окно на предыдущий рабочий стол
|
||||||
|
Window to Previous Screen=Meta+Shift+Left,Meta+Shift+Left,Переместить окно на предыдущий экран
|
||||||
|
Window to Screen 0=none,,Переместить окно на экран 0
|
||||||
|
Window to Screen 1=none,,Переместить окно на экран 1
|
||||||
|
Window to Screen 2=none,,Переместить окно на экран 2
|
||||||
|
Window to Screen 3=none,,Переместить окно на экран 3
|
||||||
|
Window to Screen 4=none,,Переместить окно на экран 4
|
||||||
|
Window to Screen 5=none,,Переместить окно на экран 5
|
||||||
|
Window to Screen 6=none,,Переместить окно на экран 6
|
||||||
|
Window to Screen 7=none,,Переместить окно на экран 7
|
||||||
|
_k_friendly_name=KWin
|
||||||
|
view_actual_size=Meta+0,Meta+0,Фактический размер
|
||||||
|
view_zoom_in=Meta++\tMeta+=,Meta++,Увеличить
|
||||||
|
view_zoom_out=Meta+-,Meta+-,Уменьшить
|
||||||
|
|
||||||
|
[org.kde.dolphin.desktop]
|
||||||
|
_k_friendly_name=Dolphin
|
||||||
|
_launch=Meta+E,Meta+E,Dolphin
|
||||||
|
|
||||||
|
[org.kde.kcalc.desktop]
|
||||||
|
_k_friendly_name=KCalc
|
||||||
|
_launch=Launch (1),Launch (1),KCalc
|
||||||
|
|
||||||
|
[org.kde.konsole.desktop]
|
||||||
|
NewTab=none,none,Открыть новую вкладку
|
||||||
|
NewWindow=none,none,Открыть новое окно
|
||||||
|
_k_friendly_name=Konsole
|
||||||
|
_launch=Ctrl+Alt+T,Ctrl+Alt+T,Konsole
|
||||||
|
|
||||||
|
[org.kde.krunner.desktop]
|
||||||
|
RunClipboard=Alt+Shift+F2,Alt+Shift+F2,Запустить команду из буфера обмена
|
||||||
|
_k_friendly_name=Открыть строку поиска и запуска KRunner
|
||||||
|
_launch=Alt+Space\tAlt+F2\tSearch,Alt+Space\tAlt+F2\tSearch,Открыть строку поиска и запуска KRunner
|
||||||
|
|
||||||
|
[org.kde.plasma.emojier.desktop]
|
||||||
|
_k_friendly_name=Панель выбора эмодзи
|
||||||
|
_launch=Meta+.\tMeta+Ctrl+Alt+Shift+Space,Meta+.\tMeta+Ctrl+Alt+Shift+Space,Панель выбора эмодзи
|
||||||
|
|
||||||
|
[org.kde.spectacle.desktop]
|
||||||
|
ActiveWindowScreenShot=Meta+Print,Meta+Print,Сделать снимок активного окна
|
||||||
|
CurrentMonitorScreenShot=none,none,Сделать снимок текущего экрана
|
||||||
|
FullScreenScreenShot=Shift+Print,Shift+Print,Сделать снимок всех экранов
|
||||||
|
OpenWithoutScreenshot=none,none,Запустить без создания снимка экрана
|
||||||
|
RectangularRegionScreenShot=Meta+Shift+Print,Meta+Shift+Print,Сделать снимок прямоугольной области экрана
|
||||||
|
WindowUnderCursorScreenShot=Meta+Ctrl+Print,Meta+Ctrl+Print,Создать снимок окна под курсором мыши
|
||||||
|
_k_friendly_name=Spectacle
|
||||||
|
_launch=Print,Print,Spectacle
|
||||||
|
|
||||||
|
[org_kde_powerdevil]
|
||||||
|
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Уменьшить яркость подсветки клавиатуры
|
||||||
|
Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Уменьшить яркость экрана
|
||||||
|
Hibernate=Hibernate,Hibernate,Перейти в спящий режим
|
||||||
|
Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Увеличить яркость подсветки клавиатуры
|
||||||
|
Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Увеличить яркость экрана
|
||||||
|
PowerDown=Power Down,Power Down,Отключить питание
|
||||||
|
PowerOff=Power Off,Power Off,Выключить
|
||||||
|
Sleep=Sleep,Sleep,Перейти в ждущий режим
|
||||||
|
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Сменить состояние подсветки клавиатуры
|
||||||
|
Turn Off Screen=none,none,Выключить монитор
|
||||||
|
_k_friendly_name=Управление питанием
|
||||||
|
|
||||||
|
[plasmashell]
|
||||||
|
_k_friendly_name=Plasma
|
||||||
|
activate task manager entry 1=Meta+1,Meta+1,Открыть 1-ю кнопку на панели задач
|
||||||
|
activate task manager entry 10=none,Meta+0,Открыть 10-ю кнопку на панели задач
|
||||||
|
activate task manager entry 2=Meta+2,Meta+2,Открыть 2-ю кнопку на панели задач
|
||||||
|
activate task manager entry 3=Meta+3,Meta+3,Открыть 3-ю кнопку на панели задач
|
||||||
|
activate task manager entry 4=Meta+4,Meta+4,Открыть 4-ю кнопку на панели задач
|
||||||
|
activate task manager entry 5=Meta+5,Meta+5,Открыть 5-ю кнопку на панели задач
|
||||||
|
activate task manager entry 6=Meta+6,Meta+6,Открыть 6-ю кнопку на панели задач
|
||||||
|
activate task manager entry 7=Meta+7,Meta+7,Открыть 7-ю кнопку на панели задач
|
||||||
|
activate task manager entry 8=Meta+8,Meta+8,Открыть 8-ю кнопку на панели задач
|
||||||
|
activate task manager entry 9=Meta+9,Meta+9,Открыть 9-ю кнопку на панели задач
|
||||||
|
activate widget 102=none,none,Сделать виджет «Menu11» активным
|
||||||
|
activate widget 28=none,none,Сделать виджет «Меню запуска приложений» активным
|
||||||
|
activate widget 29=none,none,Сделать виджет «Меню запуска приложений» активным
|
||||||
|
activate widget 3=Alt+F1,none,Сделать виджет «Меню запуска приложений» активным
|
||||||
|
activate widget 53=none,none,Сделать виджет «Меню запуска приложений» активным
|
||||||
|
clear-history=none,,Очистить журнал буфера обмена
|
||||||
|
clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Всплывающее меню автоматических действий
|
||||||
|
cycle-panels=Meta+Alt+P,Meta+Alt+P,Перемещение фокуса ввода с клавиатуры между панелями
|
||||||
|
cycleNextAction=none,,Следующая запись журнала
|
||||||
|
cyclePrevAction=none,,Предыдущая запись журнала
|
||||||
|
edit_clipboard=none,,Редактирование буфера обмена…
|
||||||
|
manage activities=Meta+Q,Meta+Q,Показать переключатель комнат
|
||||||
|
next activity=Meta+Tab,none,На одну комнату вперёд
|
||||||
|
previous activity=Meta+Shift+Tab,none,На одну комнату назад
|
||||||
|
repeat_action=Meta+Ctrl+R,Meta+Ctrl+R,Ручной выбор действия с буфером обмена
|
||||||
|
show dashboard=Ctrl+F12,Ctrl+F12,Показать рабочий стол
|
||||||
|
show-barcode=none,,Показать штрихкод…
|
||||||
|
show-on-mouse-pos=Meta+V,Meta+V,Показать записи на позиции указателя мыши
|
||||||
|
stop current activity=Meta+S,Meta+S,Прекратить выполнение текущей комнаты
|
||||||
|
switch to next activity=none,,Переключиться в следующую комнату
|
||||||
|
switch to previous activity=none,,Переключиться в предыдущую комнату
|
||||||
|
toggle do not disturb=none,,Включение и отключение режима «Не беспокоить»
|
||||||
|
|
||||||
|
[systemsettings.desktop]
|
||||||
|
_k_friendly_name=Параметры системы
|
||||||
|
_launch=Tools,Tools,Параметры системы
|
||||||
|
kcm-kscreen=none,none,Настройка экранов
|
||||||
|
kcm-lookandfeel=none,none,Оформление рабочей среды
|
||||||
|
kcm-users=none,none,Пользователи
|
||||||
|
powerdevilprofilesconfig=none,none,Энергосбережение
|
||||||
|
screenlocker=none,none,Блокировка экрана
|
|
@ -0,0 +1,23 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
DefaultProfile=Melawy.profile
|
||||||
|
|
||||||
|
[General]
|
||||||
|
ConfigVersion=1
|
||||||
|
|
||||||
|
[KonsoleWindow]
|
||||||
|
ShowWindowTitleOnTitleBar=true
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
1920x1080 screen: Height=716
|
||||||
|
1920x1080 screen: Width=1408
|
||||||
|
1920x1080 screen: XPosition=154
|
||||||
|
1920x1080 screen: YPosition=218
|
||||||
|
HDMI-0=HDMI-0
|
||||||
|
State=AAAA/wAAAAD9AAAAAQAAAAAAAAAAAAAAAPwCAAAAAvsAAAAiAFEAdQBpAGMAawBDAG8AbQBtAGEAbgBkAHMARABvAGMAawAAAAAA/////wAAAbcBAAAJ+wAAABwAUwBTAEgATQBhAG4AYQBnAGUAcgBEAG8AYwBrAAAAAAD/////AAABQQEAAAkAAAWAAAACogAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABwAcwBlAHMAcwBpAG8AbgBUAG8AbwBsAGIAYQByAQAAASP/////AAAAAAAAAAA=
|
||||||
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
|
[TabBar]
|
||||||
|
TabBarPosition=Bottom
|
||||||
|
|
||||||
|
[UiSettings]
|
||||||
|
ColorScheme=
|
|
@ -0,0 +1,2 @@
|
||||||
|
[Global plugin config]
|
||||||
|
manageProfile=false
|
|
@ -0,0 +1,6 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=kscreenlocker.upd:0.1-autolock
|
||||||
|
|
||||||
|
[Greeter][Wallpaper][org.kde.image][General]
|
||||||
|
Image=/usr/share/wallpapers/Melawy Lera Sugar/
|
||||||
|
PreviewImage=/usr/share/wallpapers/Melawy Lera Sugar/
|
|
@ -0,0 +1,2 @@
|
||||||
|
[KSplash]
|
||||||
|
Theme=com.github.Melawy.Lera-Sugar.desktop
|
|
@ -0,0 +1,36 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=kwin.upd:replace-scalein-with-scale,kwin.upd:port-minimizeanimation-effect-to-js,kwin.upd:port-scale-effect-to-js,kwin.upd:port-dimscreen-effect-to-js,kwin.upd:auto-bordersize,kwin.upd:animation-speed,kwin.upd:desktop-grid-click-behavior,kwin.upd:no-swap-encourage,kwin.upd:make-translucency-effect-disabled-by-default,kwin.upd:remove-flip-switch-effect,kwin.upd:remove-cover-switch-effect,kwin.upd:remove-cubeslide-effect,kwin.upd:remove-xrender-backend,kwin.upd:enable-scale-effect-by-default,kwin.upd:overview-group-plugin-id,kwin.upd:animation-speed-cleanup,kwin.upd:replace-cascaded-zerocornered
|
||||||
|
|
||||||
|
[Desktops]
|
||||||
|
Id_1=0c6b8f7f-20a2-4047-bd96-f6d1ca05887d
|
||||||
|
Id_2=2b2552f1-c19a-43f3-982b-ad324f9a7d65
|
||||||
|
Id_3=a6cf643f-f1fc-46d8-a425-eec4dee35dab
|
||||||
|
Id_4=8416d7ab-9c0a-4f28-a59e-54d0b1a08b1a
|
||||||
|
Number=4
|
||||||
|
Rows=2
|
||||||
|
|
||||||
|
[Effect-slide]
|
||||||
|
SlideBackground=false
|
||||||
|
|
||||||
|
[Plugins]
|
||||||
|
desktopchangeosdEnabled=true
|
||||||
|
kwin4_effect_fadedesktopEnabled=true
|
||||||
|
slideEnabled=false
|
||||||
|
|
||||||
|
[Script-desktopchangeosd]
|
||||||
|
TextOnly=true
|
||||||
|
|
||||||
|
[TabBox]
|
||||||
|
LayoutName=coverswitch
|
||||||
|
|
||||||
|
[Tiling]
|
||||||
|
padding=4
|
||||||
|
|
||||||
|
[Tiling][018d7cd5-b348-59b5-8b4e-b3739df928e6]
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
|
[Windows]
|
||||||
|
RollOverDesktops=true
|
||||||
|
|
||||||
|
[org.kde.kdecoration2]
|
||||||
|
theme=__aurorae__svg__Colloid-dark-round
|
|
@ -0,0 +1,2 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=kwinrules.upd:replace-placement-string-to-enum,kwinrules.upd:use-virtual-desktop-ids
|
|
@ -0,0 +1,6 @@
|
||||||
|
[$Version]
|
||||||
|
update_info=kxkb.upd:remove-empty-lists,kxkb.upd:add-back-resetoptions,kxkb_variants.upd:split-variants
|
||||||
|
|
||||||
|
[Layout]
|
||||||
|
Options=grp:alt_shift_toggle,terminate:ctrl_alt_bksp
|
||||||
|
ResetOldOptions=true
|
|
@ -0,0 +1,6 @@
|
||||||
|
[Style]
|
||||||
|
DolphinSidebarOpacity=80
|
||||||
|
ScrollBarAddLineButtons=1
|
||||||
|
ScrollBarSubLineButtons=1
|
||||||
|
ToolBarDrawItemSeparator=true
|
||||||
|
renderThinSeperatorBetweenTheScrollBar=true
|
|
@ -0,0 +1,153 @@
|
||||||
|
[Midnight-Commander]
|
||||||
|
verbose=true
|
||||||
|
shell_patterns=true
|
||||||
|
auto_save_setup=true
|
||||||
|
preallocate_space=false
|
||||||
|
auto_menu=false
|
||||||
|
use_internal_view=true
|
||||||
|
use_internal_edit=true
|
||||||
|
clear_before_exec=true
|
||||||
|
confirm_delete=true
|
||||||
|
confirm_overwrite=true
|
||||||
|
confirm_execute=false
|
||||||
|
confirm_history_cleanup=true
|
||||||
|
confirm_exit=false
|
||||||
|
confirm_directory_hotlist_delete=false
|
||||||
|
confirm_view_dir=false
|
||||||
|
safe_delete=false
|
||||||
|
safe_overwrite=false
|
||||||
|
use_8th_bit_as_meta=false
|
||||||
|
mouse_move_pages_viewer=true
|
||||||
|
mouse_close_dialog=false
|
||||||
|
fast_refresh=false
|
||||||
|
drop_menus=false
|
||||||
|
wrap_mode=true
|
||||||
|
old_esc_mode=true
|
||||||
|
cd_symlinks=true
|
||||||
|
show_all_if_ambiguous=false
|
||||||
|
use_file_to_guess_type=true
|
||||||
|
alternate_plus_minus=false
|
||||||
|
only_leading_plus_minus=true
|
||||||
|
show_output_starts_shell=false
|
||||||
|
xtree_mode=false
|
||||||
|
file_op_compute_totals=true
|
||||||
|
classic_progressbar=true
|
||||||
|
use_netrc=true
|
||||||
|
ftpfs_always_use_proxy=false
|
||||||
|
ftpfs_use_passive_connections=true
|
||||||
|
ftpfs_use_passive_connections_over_proxy=false
|
||||||
|
ftpfs_use_unix_list_options=true
|
||||||
|
ftpfs_first_cd_then_ls=true
|
||||||
|
ignore_ftp_chattr_errors=true
|
||||||
|
editor_fill_tabs_with_spaces=false
|
||||||
|
editor_return_does_auto_indent=true
|
||||||
|
editor_backspace_through_tabs=false
|
||||||
|
editor_fake_half_tabs=true
|
||||||
|
editor_option_save_position=true
|
||||||
|
editor_option_auto_para_formatting=false
|
||||||
|
editor_option_typewriter_wrap=false
|
||||||
|
editor_edit_confirm_save=true
|
||||||
|
editor_syntax_highlighting=true
|
||||||
|
editor_persistent_selections=true
|
||||||
|
editor_drop_selection_on_copy=true
|
||||||
|
editor_cursor_beyond_eol=false
|
||||||
|
editor_cursor_after_inserted_block=false
|
||||||
|
editor_visible_tabs=true
|
||||||
|
editor_visible_spaces=true
|
||||||
|
editor_line_state=false
|
||||||
|
editor_simple_statusbar=false
|
||||||
|
editor_check_new_line=false
|
||||||
|
editor_show_right_margin=false
|
||||||
|
editor_group_undo=false
|
||||||
|
editor_state_full_filename=false
|
||||||
|
editor_ask_filename_before_edit=false
|
||||||
|
nice_rotating_dash=true
|
||||||
|
shadows=true
|
||||||
|
mcview_remember_file_position=false
|
||||||
|
auto_fill_mkdir_name=true
|
||||||
|
copymove_persistent_attr=true
|
||||||
|
pause_after_run=1
|
||||||
|
mouse_repeat_rate=100
|
||||||
|
double_click_speed=250
|
||||||
|
old_esc_mode_timeout=1000000
|
||||||
|
max_dirt_limit=10
|
||||||
|
num_history_items_recorded=60
|
||||||
|
vfs_timeout=60
|
||||||
|
ftpfs_directory_timeout=900
|
||||||
|
ftpfs_retry_seconds=30
|
||||||
|
editor_tab_spacing=8
|
||||||
|
editor_word_wrap_line_length=72
|
||||||
|
editor_option_save_mode=0
|
||||||
|
editor_backup_extension=~
|
||||||
|
editor_filesize_threshold=64M
|
||||||
|
editor_stop_format_chars=-+*\\,.;:&>
|
||||||
|
mcview_eof=
|
||||||
|
skin=modarin256-defbg
|
||||||
|
filepos_max_saved_entries=1024
|
||||||
|
|
||||||
|
fish_directory_timeout=900
|
||||||
|
|
||||||
|
[Layout]
|
||||||
|
output_lines=0
|
||||||
|
left_panel_size=120
|
||||||
|
top_panel_size=0
|
||||||
|
message_visible=true
|
||||||
|
keybar_visible=true
|
||||||
|
xterm_title=true
|
||||||
|
command_prompt=true
|
||||||
|
menubar_visible=true
|
||||||
|
free_space=true
|
||||||
|
horizontal_split=false
|
||||||
|
vertical_equal=true
|
||||||
|
horizontal_equal=true
|
||||||
|
|
||||||
|
[Misc]
|
||||||
|
timeformat_recent=%b %e %H:%M
|
||||||
|
timeformat_old=%b %e %Y
|
||||||
|
ftp_proxy_host=gate
|
||||||
|
ftpfs_password=anonymous@
|
||||||
|
display_codepage=UTF-8
|
||||||
|
source_codepage=Other_8_bit
|
||||||
|
autodetect_codeset=
|
||||||
|
clipboard_store=
|
||||||
|
clipboard_paste=
|
||||||
|
|
||||||
|
spell_language=en
|
||||||
|
|
||||||
|
[Colors]
|
||||||
|
base_color=
|
||||||
|
xterm-256color=
|
||||||
|
color_terminals=
|
||||||
|
|
||||||
|
linux=
|
||||||
|
|
||||||
|
alacritty=
|
||||||
|
|
||||||
|
[Panels]
|
||||||
|
show_mini_info=true
|
||||||
|
kilobyte_si=false
|
||||||
|
mix_all_files=false
|
||||||
|
show_backups=true
|
||||||
|
show_dot_files=true
|
||||||
|
fast_reload=false
|
||||||
|
fast_reload_msg_shown=false
|
||||||
|
mark_moves_down=true
|
||||||
|
reverse_files_only=true
|
||||||
|
auto_save_setup_panels=true
|
||||||
|
navigate_with_arrows=false
|
||||||
|
panel_scroll_pages=true
|
||||||
|
panel_scroll_center=false
|
||||||
|
mouse_move_pages=true
|
||||||
|
filetype_mode=true
|
||||||
|
permission_mode=false
|
||||||
|
torben_fj_mode=false
|
||||||
|
quick_search_mode=2
|
||||||
|
select_flags=6
|
||||||
|
|
||||||
|
simple_swap=false
|
||||||
|
|
||||||
|
[Panelize]
|
||||||
|
Изменённые файлы под контролем git=git ls-files --modified
|
||||||
|
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print
|
||||||
|
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print
|
||||||
|
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print
|
|
@ -0,0 +1,41 @@
|
||||||
|
[New Left Panel]
|
||||||
|
display=listing
|
||||||
|
reverse=false
|
||||||
|
case_sensitive=true
|
||||||
|
exec_first=false
|
||||||
|
sort_order=name
|
||||||
|
list_mode=full
|
||||||
|
brief_cols=2
|
||||||
|
user_format=half type name | size | mtime | mode | perm | owner | group
|
||||||
|
user_status0=half type name | size | perm
|
||||||
|
user_status1=half type name | size | mtime
|
||||||
|
user_mini_status=true
|
||||||
|
list_format=user
|
||||||
|
|
||||||
|
user_status2=half type name | size | perm
|
||||||
|
user_status3=half type name | size | perm
|
||||||
|
|
||||||
|
filter_flags=7
|
||||||
|
|
||||||
|
[New Right Panel]
|
||||||
|
display=listing
|
||||||
|
reverse=false
|
||||||
|
case_sensitive=true
|
||||||
|
exec_first=false
|
||||||
|
sort_order=name
|
||||||
|
list_mode=full
|
||||||
|
brief_cols=2
|
||||||
|
user_format=half type name | size | mtime | mode | perm | owner | group
|
||||||
|
user_status0=half type name | size | perm
|
||||||
|
user_status1=half type name | size | mtime
|
||||||
|
user_mini_status=true
|
||||||
|
list_format=user
|
||||||
|
|
||||||
|
user_status2=half type name | size | perm
|
||||||
|
user_status3=half type name | size | perm
|
||||||
|
|
||||||
|
filter_flags=7
|
||||||
|
|
||||||
|
[Dirs]
|
||||||
|
current_is_left=false
|
||||||
|
other_dir=/home/lera
|
|
@ -0,0 +1,38 @@
|
||||||
|
[General]
|
||||||
|
Aur_Builddir=/var/tmp
|
||||||
|
Aur_No_Confirm_Param=true
|
||||||
|
Aur_No_Edit_Param=true
|
||||||
|
Aur_Tool_Name=paru
|
||||||
|
Backend=alpm
|
||||||
|
CheckUpdatesHour=-1
|
||||||
|
CheckUpdatesInterval=-2
|
||||||
|
Current_Tab_Index=4
|
||||||
|
Distro_RSS_Url=https://archlinux.org/feeds/news/
|
||||||
|
Instant_Search=true
|
||||||
|
LastCheckUpdatesTime=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x89\x80\x3\xc7\t\xa9\0)
|
||||||
|
OptionalDeps_Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5\0\0\0\0\0\0\0\0\a\x80\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5)
|
||||||
|
PackageList_Ordered_Col=1
|
||||||
|
PackageList_Sort_Order=0
|
||||||
|
Package_Build_Date_Column_Width=120
|
||||||
|
Package_Download_Size_Column_Width=795
|
||||||
|
Package_Icon_Column_Width=49
|
||||||
|
Package_Install_Date_Column_Width=140
|
||||||
|
Package_Install_Reason_Column_Width=120
|
||||||
|
Package_Installed_Size_Column_Width=120
|
||||||
|
Package_Licenses_Column_Width=250
|
||||||
|
Package_Name_Column_Width=400
|
||||||
|
Package_Repository_Column_Width=150
|
||||||
|
Package_Version_Column_Width=260
|
||||||
|
Panel_Organizing=30
|
||||||
|
Search_Outdated_Aur_Packages=true
|
||||||
|
Show_Groups_Panel=false
|
||||||
|
Show_Package_Build_Date_Column=true
|
||||||
|
Show_Package_Install_Date_Column=true
|
||||||
|
Show_Package_Install_Reason_Column=true
|
||||||
|
Show_Package_Installed_Size_Column=true
|
||||||
|
Show_Package_Licenses_Column=true
|
||||||
|
Splitter_Horizontal_State=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc8\0\0\0\xeb\x1\xff\xff\xff\xff\x1\0\0\0\x2\0)
|
||||||
|
Transaction_Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l\0\0\0\0\0\0\0\0\a\x80\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l)
|
||||||
|
Use_Alternate_Row_Color=true
|
||||||
|
Use_Default_App_Icon=true
|
||||||
|
Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a\0\0\0\0\0\0\0\0\a\x80\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a)
|
|
@ -0,0 +1,2 @@
|
||||||
|
[Formats]
|
||||||
|
LANG=ru_RU.UTF-8
|
|
@ -0,0 +1,195 @@
|
||||||
|
[ActionPlugins][0]
|
||||||
|
MiddleButton;NoModifier=org.kde.paste
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
wheel:Vertical;NoModifier=org.kde.switchdesktop
|
||||||
|
|
||||||
|
[ActionPlugins][1]
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[Containments][103]
|
||||||
|
ItemGeometries-1920x1080=
|
||||||
|
ItemGeometriesHorizontal=
|
||||||
|
activityId=44b5729f-2230-4c77-9c28-9878adb9914e
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.plasma.folder
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][103][ConfigDialog]
|
||||||
|
DialogHeight=540
|
||||||
|
DialogWidth=720
|
||||||
|
|
||||||
|
[Containments][103][Wallpaper][org.kde.image][General]
|
||||||
|
Image=/usr/share/wallpapers/Melawy Lera Sugar/
|
||||||
|
SlidePaths=/home/melawy/.local/share/wallpapers/,/usr/share/wallpapers/
|
||||||
|
|
||||||
|
[Containments][77]
|
||||||
|
activityId=
|
||||||
|
formfactor=2
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=4
|
||||||
|
plugin=org.kde.panel
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][77][Applets][102]
|
||||||
|
immutability=1
|
||||||
|
plugin=com.github.adhec.Menu11
|
||||||
|
|
||||||
|
[Containments][77][Applets][102][Configuration]
|
||||||
|
PreloadWeight=100
|
||||||
|
popupHeight=510
|
||||||
|
popupWidth=673
|
||||||
|
|
||||||
|
[Containments][77][Applets][102][Configuration][ConfigDialog]
|
||||||
|
DialogHeight=540
|
||||||
|
DialogWidth=720
|
||||||
|
|
||||||
|
[Containments][77][Applets][102][Configuration][General]
|
||||||
|
appNameFormat=2
|
||||||
|
downIconsLock=true
|
||||||
|
favoritesPortedToKAstats=true
|
||||||
|
menuPosition=1
|
||||||
|
numberColumns=7
|
||||||
|
recentGridModel=1
|
||||||
|
reduceIconSizeFooter=true
|
||||||
|
reduceIconSizeUserProfile=false
|
||||||
|
showDescription=true
|
||||||
|
|
||||||
|
[Containments][77][Applets][102][Configuration][Shortcuts]
|
||||||
|
global=Alt+F1
|
||||||
|
|
||||||
|
[Containments][77][Applets][80]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.icontasks
|
||||||
|
|
||||||
|
[Containments][77][Applets][80][Configuration][General]
|
||||||
|
launchers=preferred://filemanager,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kate.desktop,applications:org.kde.kcalc.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:google-chrome.desktop,applications:brave-browser.desktop
|
||||||
|
|
||||||
|
[Containments][77][Applets][81]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.marginsseparator
|
||||||
|
|
||||||
|
[Containments][77][Applets][82]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.systemtray
|
||||||
|
|
||||||
|
[Containments][77][Applets][82][Configuration]
|
||||||
|
PreloadWeight=90
|
||||||
|
SystrayContainmentId=83
|
||||||
|
|
||||||
|
[Containments][77][Applets][96]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.digitalclock
|
||||||
|
|
||||||
|
[Containments][77][Applets][97]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.showdesktop
|
||||||
|
|
||||||
|
[Containments][77][ConfigDialog]
|
||||||
|
DialogHeight=74
|
||||||
|
DialogWidth=1920
|
||||||
|
|
||||||
|
[Containments][77][General]
|
||||||
|
AppletOrder=102;80;81;82;96;97
|
||||||
|
|
||||||
|
[Containments][83]
|
||||||
|
activityId=
|
||||||
|
formfactor=2
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=4
|
||||||
|
plugin=org.kde.plasma.private.systemtray
|
||||||
|
popupHeight=432
|
||||||
|
popupWidth=432
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][83][Applets][100]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
|
[Containments][83][Applets][100][Configuration]
|
||||||
|
PreloadWeight=60
|
||||||
|
|
||||||
|
[Containments][83][Applets][101]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.bluetooth
|
||||||
|
|
||||||
|
[Containments][83][Applets][84]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.clipboard
|
||||||
|
|
||||||
|
[Containments][83][Applets][85]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.devicenotifier
|
||||||
|
|
||||||
|
[Containments][83][Applets][85][Configuration]
|
||||||
|
PreloadWeight=65
|
||||||
|
|
||||||
|
[Containments][83][Applets][86]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.manage-inputmethod
|
||||||
|
|
||||||
|
[Containments][83][Applets][87]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.notifications
|
||||||
|
|
||||||
|
[Containments][83][Applets][88]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.kdeconnect
|
||||||
|
|
||||||
|
[Containments][83][Applets][89]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.kscreen
|
||||||
|
|
||||||
|
[Containments][83][Applets][90]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardlayout
|
||||||
|
|
||||||
|
[Containments][83][Applets][90][Configuration][ConfigDialog]
|
||||||
|
DialogHeight=540
|
||||||
|
DialogWidth=720
|
||||||
|
|
||||||
|
[Containments][83][Applets][91]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
|
[Containments][83][Applets][91][Configuration][General]
|
||||||
|
migrated=true
|
||||||
|
|
||||||
|
[Containments][83][Applets][92]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.printmanager
|
||||||
|
|
||||||
|
[Containments][83][Applets][93]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardindicator
|
||||||
|
|
||||||
|
[Containments][83][Applets][94]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.pass
|
||||||
|
|
||||||
|
[Containments][83][Applets][95]
|
||||||
|
immutability=1
|
||||||
|
plugin=com.github.Melawy.ArchUpdate
|
||||||
|
|
||||||
|
[Containments][83][Applets][95][Configuration]
|
||||||
|
PreloadWeight=60
|
||||||
|
|
||||||
|
[Containments][83][Applets][98]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.nightcolorcontrol
|
||||||
|
|
||||||
|
[Containments][83][Applets][99]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
|
[Containments][83][General]
|
||||||
|
extraItems=org.kde.plasma.bluetooth,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.kdeconnect,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol,org.kde.plasma.pass,com.github.Melawy.ArchUpdate
|
||||||
|
knownItems=org.kde.plasma.bluetooth,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.kdeconnect,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol,org.kde.plasma.pass,com.github.Melawy.ArchUpdate
|
||||||
|
|
||||||
|
[ScreenMapping]
|
||||||
|
itemsOnDisabledScreens=
|
||||||
|
screenMapping=desktop:/calamares.desktop,0,45f6fb07-97f3-42a3-a81d-d1a06505cd3f
|
|
@ -0,0 +1,5 @@
|
||||||
|
[Theme]
|
||||||
|
name=Melawy
|
||||||
|
|
||||||
|
[Wallpapers]
|
||||||
|
usersWallpapers=
|
|
@ -0,0 +1,60 @@
|
||||||
|
[PlasmaTransientsConfig]
|
||||||
|
PreloadWeight=0
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][22]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.nightcolorcontrol
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][22][Configuration]
|
||||||
|
PreloadWeight=42
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][23]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][23][Configuration]
|
||||||
|
PreloadWeight=42
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][24]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][24][Configuration]
|
||||||
|
PreloadWeight=42
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][25]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.bluetooth
|
||||||
|
|
||||||
|
[PlasmaTransientsConfig][Applets][25][Configuration]
|
||||||
|
PreloadWeight=42
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 2][Defaults]
|
||||||
|
offset=0
|
||||||
|
thickness=32
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 27][Defaults]
|
||||||
|
offset=0
|
||||||
|
thickness=32
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 28][Defaults]
|
||||||
|
offset=0
|
||||||
|
thickness=32
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 52]
|
||||||
|
alignment=132
|
||||||
|
floating=1
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 52][Defaults]
|
||||||
|
offset=0
|
||||||
|
thickness=32
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 77]
|
||||||
|
alignment=132
|
||||||
|
floating=1
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 77][Defaults]
|
||||||
|
thickness=36
|
||||||
|
|
||||||
|
[Updates]
|
||||||
|
performed=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js
|
|
@ -0,0 +1,2 @@
|
||||||
|
[BatteryManagement]
|
||||||
|
BatteryCriticalAction=1
|
|
@ -0,0 +1,59 @@
|
||||||
|
[AC]
|
||||||
|
icon=battery-charging
|
||||||
|
|
||||||
|
[AC][DPMSControl]
|
||||||
|
idleTime=600
|
||||||
|
lockBeforeTurnOff=0
|
||||||
|
|
||||||
|
[AC][DimDisplay]
|
||||||
|
idleTime=300000
|
||||||
|
|
||||||
|
[AC][HandleButtonEvents]
|
||||||
|
lidAction=1
|
||||||
|
powerButtonAction=16
|
||||||
|
powerDownAction=16
|
||||||
|
|
||||||
|
[AC][SuspendSession]
|
||||||
|
idleTime=900000
|
||||||
|
suspendType=1
|
||||||
|
|
||||||
|
[Battery]
|
||||||
|
icon=battery-060
|
||||||
|
|
||||||
|
[Battery][DPMSControl]
|
||||||
|
idleTime=300
|
||||||
|
lockBeforeTurnOff=0
|
||||||
|
|
||||||
|
[Battery][DimDisplay]
|
||||||
|
idleTime=120000
|
||||||
|
|
||||||
|
[Battery][HandleButtonEvents]
|
||||||
|
lidAction=1
|
||||||
|
powerButtonAction=16
|
||||||
|
powerDownAction=16
|
||||||
|
|
||||||
|
[Battery][SuspendSession]
|
||||||
|
idleTime=600000
|
||||||
|
suspendType=1
|
||||||
|
|
||||||
|
[LowBattery]
|
||||||
|
icon=battery-low
|
||||||
|
|
||||||
|
[LowBattery][BrightnessControl]
|
||||||
|
value=30
|
||||||
|
|
||||||
|
[LowBattery][DPMSControl]
|
||||||
|
idleTime=120
|
||||||
|
lockBeforeTurnOff=0
|
||||||
|
|
||||||
|
[LowBattery][DimDisplay]
|
||||||
|
idleTime=60000
|
||||||
|
|
||||||
|
[LowBattery][HandleButtonEvents]
|
||||||
|
lidAction=1
|
||||||
|
powerButtonAction=16
|
||||||
|
powerDownAction=16
|
||||||
|
|
||||||
|
[LowBattery][SuspendSession]
|
||||||
|
idleTime=300000
|
||||||
|
suspendType=1
|
|
@ -0,0 +1,9 @@
|
||||||
|
[MainWindow]
|
||||||
|
1920x1080 screen: Height=704
|
||||||
|
1920x1080 screen: Width=1343
|
||||||
|
1920x1080 screen: XPosition=183
|
||||||
|
1920x1080 screen: YPosition=138
|
||||||
|
HDMI-0=HDMI-0
|
||||||
|
MenuBar=Disabled
|
||||||
|
State=AAAA/wAAAAD9AAAAAAAABT8AAALAAAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
|
||||||
|
ToolBarsMovable=Disabled
|
|
@ -0,0 +1,15 @@
|
||||||
|
# This file is written by xdg-user-dirs-update
|
||||||
|
# If you want to change or add directories, just edit the line you're
|
||||||
|
# interested in. All local changes will be retained on the next run.
|
||||||
|
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
|
||||||
|
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
|
||||||
|
# absolute path. No other format is supported.
|
||||||
|
#
|
||||||
|
XDG_DESKTOP_DIR="$HOME/Рабочий стол"
|
||||||
|
XDG_DOWNLOAD_DIR="$HOME/Загрузки"
|
||||||
|
XDG_TEMPLATES_DIR="$HOME/Шаблоны"
|
||||||
|
XDG_PUBLICSHARE_DIR="$HOME/Общедоступные"
|
||||||
|
XDG_DOCUMENTS_DIR="$HOME/Документы"
|
||||||
|
XDG_MUSIC_DIR="$HOME/Музыка"
|
||||||
|
XDG_PICTURES_DIR="$HOME/Изображения"
|
||||||
|
XDG_VIDEOS_DIR="$HOME/Видео"
|
|
@ -0,0 +1 @@
|
||||||
|
ru_RU
|
|
@ -0,0 +1,14 @@
|
||||||
|
Net/ThemeName "Colloid-Dark"
|
||||||
|
Gdk/UnscaledDPI 98304
|
||||||
|
Gdk/WindowScalingFactor 1
|
||||||
|
Gtk/EnableAnimations 1
|
||||||
|
Gtk/DecorationLayout "icon:minimize,maximize,close"
|
||||||
|
Gtk/PrimaryButtonWarpsSlider 0
|
||||||
|
Gtk/ToolbarStyle 3
|
||||||
|
Gtk/MenuImages 1
|
||||||
|
Gtk/ButtonImages 1
|
||||||
|
Gtk/CursorThemeSize 24
|
||||||
|
Gtk/CursorThemeName "Qogir-dark"
|
||||||
|
Net/IconThemeName "Colloid-dark"
|
||||||
|
Gtk/FontName "Noto Sans, 10"
|
||||||
|
|
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 9.8 KiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
|
<fontconfig>
|
||||||
|
<dir>~/.fonts</dir>
|
||||||
|
</fontconfig>
|
|
@ -0,0 +1,11 @@
|
||||||
|
gtk-theme-name="Colloid-Dark"
|
||||||
|
gtk-enable-animations=1
|
||||||
|
gtk-primary-button-warps-slider=0
|
||||||
|
gtk-toolbar-style=3
|
||||||
|
gtk-menu-images=1
|
||||||
|
gtk-button-images=1
|
||||||
|
gtk-cursor-theme-size=24
|
||||||
|
gtk-cursor-theme-name="Qogir-dark"
|
||||||
|
gtk-icon-theme-name="Colloid-dark"
|
||||||
|
gtk-font-name="Noto Sans, 10"
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Comment[ru_RU]=
|
||||||
|
Comment=
|
||||||
|
Exec=/usr/bin/bash -e %U
|
||||||
|
GenericName[ru_RU]=
|
||||||
|
GenericName=
|
||||||
|
MimeType=application/x-shellscript;
|
||||||
|
Name[ru_RU]=bash
|
||||||
|
Name=bash
|
||||||
|
NoDisplay=true
|
||||||
|
Path=
|
||||||
|
StartupNotify=true
|
||||||
|
Terminal=false
|
||||||
|
TerminalOptions=
|
||||||
|
Type=Application
|
||||||
|
X-DBUS-ServiceName=
|
||||||
|
X-DBUS-StartupType=none
|
||||||
|
X-KDE-SubstituteUID=false
|
||||||
|
X-KDE-Username=
|
|
@ -0,0 +1,19 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Comment[ru_RU]=
|
||||||
|
Comment=
|
||||||
|
Exec=/usr/bin/konsole -e %U
|
||||||
|
GenericName[ru_RU]=
|
||||||
|
GenericName=
|
||||||
|
MimeType=application/x-shellscript;
|
||||||
|
Name[ru_RU]=konsole
|
||||||
|
Name=konsole
|
||||||
|
NoDisplay=true
|
||||||
|
Path=
|
||||||
|
StartupNotify=true
|
||||||
|
Terminal=false
|
||||||
|
TerminalOptions=
|
||||||
|
Type=Application
|
||||||
|
X-DBUS-ServiceName=
|
||||||
|
X-DBUS-StartupType=none
|
||||||
|
X-KDE-SubstituteUID=false
|
||||||
|
X-KDE-Username=
|
|
@ -0,0 +1,44 @@
|
||||||
|
[General]
|
||||||
|
ActiveFocusedTabColor=78,78,78
|
||||||
|
ActiveTextColor=225,225,225
|
||||||
|
ActiveUnfocusedTabColor=120,120,120
|
||||||
|
TitleAlignment=Center
|
||||||
|
TitleVerticalAlignment=Center
|
||||||
|
UseTextShadow=false
|
||||||
|
InactiveFocusedTabColor=120,120,120
|
||||||
|
InactiveTextColor=120,120,120
|
||||||
|
ActiveTextShadowColor=255,255,255
|
||||||
|
InactiveTextShadowColor=255,255,255
|
||||||
|
InactiveUnfocusedTabColor=120,120,120
|
||||||
|
TextShadowOffsetX=0
|
||||||
|
TextShadowOffsetY=1
|
||||||
|
LeftButtons=XIA
|
||||||
|
Shadow=false
|
||||||
|
Animation=1
|
||||||
|
|
||||||
|
[Layout]
|
||||||
|
BorderLeft=0
|
||||||
|
BorderRight=0
|
||||||
|
BorderBottom=0
|
||||||
|
TitleEdgeTop=8
|
||||||
|
TitleEdgeBottom=8
|
||||||
|
TitleEdgeLeft=16
|
||||||
|
TitleEdgeRight=16
|
||||||
|
TitleBorderLeft=50
|
||||||
|
TitleBorderRight=50
|
||||||
|
TitleHeight=16
|
||||||
|
ButtonWidth=16
|
||||||
|
ButtonHeight=16
|
||||||
|
ButtonSpacing=12
|
||||||
|
ButtonMarginTop=2
|
||||||
|
ButtonMarginLeft=4
|
||||||
|
ButtonMarginRight=4
|
||||||
|
ExplicitButtonSpacer=0
|
||||||
|
PaddingTop=22
|
||||||
|
PaddingBottom=65
|
||||||
|
PaddingRight=42
|
||||||
|
PaddingLeft=42
|
||||||
|
TitleEdgeTopMaximized=8
|
||||||
|
TitleEdgeBottomMaximized=8
|
||||||
|
TitleEdgeLeftMaximized=16
|
||||||
|
TitleEdgeRightMaximized=16
|
|
@ -0,0 +1,528 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="119.46667"
|
||||||
|
height="29.866667"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||||
|
sodipodi:docname="alldesktops.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3913">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3915" />
|
||||||
|
<stop
|
||||||
|
id="stop3921"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3917" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3868">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#5a5a5a;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3870" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#646464;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3872" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3813">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#666666;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3815" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#636363;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3817" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e5e5df;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3806-3-5-6">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#303030;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3808-6-9-1" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#232323;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3810-4-6-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3793"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3828"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-6.5,-80.335554)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-4"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-8">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-3" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6e0;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3807"
|
||||||
|
x1="11"
|
||||||
|
y1="15.75"
|
||||||
|
x2="11"
|
||||||
|
y2="8.25"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3813"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="29.5"
|
||||||
|
y1="15.2"
|
||||||
|
x2="29.5"
|
||||||
|
y2="8.8000002"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231"
|
||||||
|
id="linearGradient3807-1"
|
||||||
|
x1="10"
|
||||||
|
y1="7.0000038"
|
||||||
|
x2="10"
|
||||||
|
y2="15.888954"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231">
|
||||||
|
<stop
|
||||||
|
id="stop4233"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e7e7e1;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-1"
|
||||||
|
id="linearGradient3807-1-1"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-1">
|
||||||
|
<stop
|
||||||
|
id="stop4233-6"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-7"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#979791;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ef;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367-8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient4361"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-41.25,0)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3127"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3154"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3159"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-249.25,-54.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-9"
|
||||||
|
id="linearGradient3159-0"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-9">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-9"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-5">
|
||||||
|
<stop
|
||||||
|
id="stop4233-41"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-73"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-7"
|
||||||
|
id="linearGradient3159-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-7"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-2"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-73"
|
||||||
|
id="linearGradient3807-1-7"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-73">
|
||||||
|
<stop
|
||||||
|
id="stop4233-1"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-85"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8.7123932"
|
||||||
|
inkscape:cx="36.961458"
|
||||||
|
inkscape:cy="12.146974"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="706"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="false"
|
||||||
|
inkscape:snap-nodes="false"
|
||||||
|
inkscape:snap-others="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1"
|
||||||
|
spacingy="1" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4433">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1092.653)">
|
||||||
|
<g
|
||||||
|
id="4"
|
||||||
|
inkscape:label="#g3842"
|
||||||
|
transform="translate(86.4,-3.2)" />
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="matrix(0.01754682,0,0,-0.01754674,2.8814742,1117.5909)"
|
||||||
|
style="stroke-width:1.26053345">
|
||||||
|
<path
|
||||||
|
id="path899"
|
||||||
|
style="fill:#70c4bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new;opacity:0"
|
||||||
|
d="m 519.66906,-52.931017 c 251.79998,0 455.92005,204.124137 455.92005,455.928407 0,251.7946 -204.12007,455.92004 -455.92005,455.92004 -251.79888,0 -455.923844,-204.12544 -455.923844,-455.92004 0,-251.80427 204.124964,-455.928407 455.923844,-455.928407"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 519.66882,4.0574116 c 220.32614,0 398.93214,178.6095584 398.93214,398.9394584 0,220.32143 -178.606,398.93213 -398.93214,398.93213 -220.32518,0 -398.93546,-178.6107 -398.93546,-398.93213 0,-220.3299 178.61028,-398.9394584 398.93546,-398.9394584"
|
||||||
|
style="fill:#70c4bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path14-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 519.66714,32.559364 c 204.58568,0 370.4375,165.849266 370.4375,370.437756 0,204.58088 -165.85182,370.42993 -370.4375,370.42993 -204.58465,0 -370.43746,-165.84905 -370.43746,-370.42993 0,-204.58849 165.85281,-370.437756 370.43746,-370.437756"
|
||||||
|
style="fill:#7dd1c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456909;enable-background:new"
|
||||||
|
id="path16-6" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754674,24.895818,1118.601)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path901"
|
||||||
|
style="opacity:0;fill:#8cd6d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
d="m 461.86451,4.6374457 c 251.80184,0 455.92334,204.1245143 455.92334,455.9292243 0,251.79508 -204.1215,455.92086 -455.92334,455.92086 -251.8007,0 -455.927123,-204.12578 -455.927123,-455.92086 0,-251.80471 204.126423,-455.9292243 455.927123,-455.9292243"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86427,61.630094 c 220.3255,0 398.9309,178.608046 398.9309,398.936056 0,220.31958 -178.6054,398.92873 -398.9309,398.92873 -220.32449,0 -398.934211,-178.60915 -398.934211,-398.92873 0,-220.32801 178.609721,-398.936056 398.934211,-398.936056"
|
||||||
|
style="fill:#70c4bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path14-3-7" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86261,90.128947 c 204.58657,0 370.43918,165.849133 370.43918,370.437453 0,204.58074 -165.85261,370.42963 -370.43918,370.42963 -204.58563,0 -370.439171,-165.84889 -370.439171,-370.42963 0,-204.58832 165.853541,-370.437453 370.439171,-370.437453"
|
||||||
|
style="fill:#8cd6d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path16-5" />
|
||||||
|
<ellipse
|
||||||
|
cy="-460.5625"
|
||||||
|
cx="461.86261"
|
||||||
|
id="path4179"
|
||||||
|
style="opacity:1;fill:#3d9388;fill-opacity:1;stroke:none;stroke-width:121.58003998;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new"
|
||||||
|
rx="144.67691"
|
||||||
|
ry="144.67685"
|
||||||
|
transform="scale(1,-1)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754682,47.895819,1118.7002)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86449,10.287447 c 251.80179,0 455.92339,204.123583 455.92339,455.927123 0,251.79395 -204.1216,455.91881 -455.92339,455.91881 -251.80072,0 -455.927139,-204.12486 -455.927139,-455.91881 0,-251.80354 204.126419,-455.927123 455.927139,-455.927123"
|
||||||
|
style="fill:#58b4aa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;opacity:0"
|
||||||
|
id="path903" />
|
||||||
|
<path
|
||||||
|
id="path14-2"
|
||||||
|
style="fill:#58b4aa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933"
|
||||||
|
d="m 461.86425,67.278048 c 220.32644,0 398.93274,178.608032 398.93274,398.936002 0,220.31958 -178.6063,398.92872 -398.93274,398.92872 -220.3255,0 -398.93601,-178.60914 -398.93601,-398.92872 0,-220.32797 178.61051,-398.936002 398.93601,-398.936002"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path16-9"
|
||||||
|
style="fill:#58b4aa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921"
|
||||||
|
d="m 461.86262,95.778579 c 204.58658,0 370.43917,165.848391 370.43917,370.435761 0,204.57979 -165.85259,370.4279 -370.43917,370.4279 -204.58561,0 -370.439175,-165.84811 -370.439175,-370.4279 0,-204.58737 165.853565,-370.435761 370.439175,-370.435761"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<ellipse
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
ry="144.67619"
|
||||||
|
rx="144.67691"
|
||||||
|
style="opacity:1;fill:#3d9388;fill-opacity:1;stroke:none;stroke-width:121.57977295;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new"
|
||||||
|
id="path4179-6"
|
||||||
|
cx="461.86261"
|
||||||
|
cy="-466.21042" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-223,1371.1575)"
|
||||||
|
style="display:inline"
|
||||||
|
id="inactive-center"
|
||||||
|
inkscape:label="#inactive-center">
|
||||||
|
<rect
|
||||||
|
ry="1.6930764e-05"
|
||||||
|
y="-268.63782"
|
||||||
|
x="293"
|
||||||
|
height="16"
|
||||||
|
width="16"
|
||||||
|
id="rect1561-02-6"
|
||||||
|
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47432083;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
|
||||||
|
<g
|
||||||
|
inkscape:label="#g965"
|
||||||
|
transform="translate(294,-267.63782)"
|
||||||
|
id="titlebutton-close-backdrop-1-3-4"
|
||||||
|
style="enable-background:new">
|
||||||
|
<g
|
||||||
|
transform="translate(-4.9999997,-1033.3622)"
|
||||||
|
id="g6-97-7-3">
|
||||||
|
<path
|
||||||
|
style="fill:#5d5d5d;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 12.000061,1047.3622 c 3.865929,0 6.999939,-3.134 6.999939,-7 0,-3.866 -3.13401,-7 -6.999939,-7 -3.8660427,0 -7.0000616,3.134 -7.0000616,7 0,3.866 3.1340189,7 7.0000616,7"
|
||||||
|
id="path2-361-5-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(29.429759,0.66259998)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,159 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="close.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-Background {
|
||||||
|
color:#2c2c2c;
|
||||||
|
stop-color:#2c2c2c;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#949494"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4.327261"
|
||||||
|
inkscape:cx="18.834085"
|
||||||
|
inkscape:cy="-5.3151405"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:snap-nodes="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="false"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1.0666667"
|
||||||
|
spacingy="1.0666667" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1098.5197)">
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(-0.21336753,-26.948412)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
height="100%"
|
||||||
|
width="100%"
|
||||||
|
transform="translate(28.709753,-26.948412)"
|
||||||
|
id="deactivated-inactive-center"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
y="0"
|
||||||
|
x="0" />
|
||||||
|
<circle
|
||||||
|
style="fill:#bf616a;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="active-center"
|
||||||
|
cx="-27.733339"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
id="inactive-center"
|
||||||
|
cx="92.266663"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="translate(123.31733,23.039191)">
|
||||||
|
<circle
|
||||||
|
style="fill:#bf616a"
|
||||||
|
id="circle2545"
|
||||||
|
cx="-111.05067"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8" />
|
||||||
|
<path
|
||||||
|
d="m -114.58592,1084.7787 c -0.12775,0 -0.2555,0.049 -0.35339,0.1465 -0.19578,0.1959 -0.19578,0.5112 0,0.707 l 3.1816,3.1816 -3.1816,3.1816 c -0.19578,0.1959 -0.19578,0.5112 0,0.7071 0.19578,0.1958 0.51118,0.1958 0.70704,0 l 3.1816,-3.1816 3.1816,3.1816 c 0.19578,0.1958 0.51114,0.1958 0.70704,0 0.19578,-0.1959 0.19578,-0.5112 0,-0.7071 l -3.1816,-3.1816 3.1816,-3.1816 c 0.19578,-0.1958 0.19578,-0.5111 0,-0.707 -0.19578,-0.1959 -0.51118,-0.1959 -0.70704,0 l -3.1816,3.1816 -3.1816,-3.1816 c -0.0979,-0.098 -0.22564,-0.1465 -0.35339,-0.1465 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2869" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="translate(123.31733,23.039191)">
|
||||||
|
<circle
|
||||||
|
style="fill:#bf616a;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2547"
|
||||||
|
cx="-71.050667"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2807"
|
||||||
|
cx="-71.050667"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8" />
|
||||||
|
<path
|
||||||
|
d="m -74.58593,1084.7787 c -0.12775,0 -0.2555,0.049 -0.35339,0.1465 -0.19578,0.1959 -0.19578,0.5112 0,0.707 l 3.1816,3.1816 -3.1816,3.1816 c -0.19578,0.1959 -0.19578,0.5112 0,0.7071 0.19578,0.1958 0.51118,0.1958 0.70704,0 l 3.18161,-3.1816 3.1816,3.1816 c 0.19578,0.1958 0.51114,0.1958 0.70704,0 0.19578,-0.1959 0.19578,-0.5112 0,-0.7071 l -3.1816,-3.1816 3.1816,-3.1816 c 0.19578,-0.1958 0.19578,-0.5111 0,-0.707 -0.19578,-0.1959 -0.51117,-0.1959 -0.70704,0 l -3.1816,3.1816 -3.18161,-3.1816 c -0.0979,-0.098 -0.22564,-0.1465 -0.35339,-0.1465 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2928" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-inactive-center"
|
||||||
|
transform="translate(123.31733,54.817039)">
|
||||||
|
<circle
|
||||||
|
id="circle1291"
|
||||||
|
cx="-111.05067"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<path
|
||||||
|
d="m -114.58592,1084.7787 c -0.12775,0 -0.2555,0.049 -0.35339,0.1465 -0.19578,0.1959 -0.19578,0.5112 0,0.707 l 3.1816,3.1816 -3.1816,3.1816 c -0.19578,0.1959 -0.19578,0.5112 0,0.7071 0.19578,0.1958 0.51118,0.1958 0.70704,0 l 3.1816,-3.1816 3.1816,3.1816 c 0.19578,0.1958 0.51114,0.1958 0.70704,0 0.19578,-0.1959 0.19578,-0.5112 0,-0.7071 l -3.1816,-3.1816 3.1816,-3.1816 c 0.19578,-0.1958 0.19578,-0.5111 0,-0.707 -0.19578,-0.1959 -0.51118,-0.1959 -0.70704,0 l -3.1816,3.1816 -3.1816,-3.1816 c -0.0979,-0.098 -0.22564,-0.1465 -0.35339,-0.1465 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path1293" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,790 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="355"
|
||||||
|
height="310"
|
||||||
|
id="svg3642"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="decoration.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
version="1.0"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#585858"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1"
|
||||||
|
inkscape:cx="422"
|
||||||
|
inkscape:cy="95"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1440"
|
||||||
|
inkscape:window-height="748"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="28"
|
||||||
|
width="48px"
|
||||||
|
height="48px"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
objecttolerance="9"
|
||||||
|
gridtolerance="13"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"
|
||||||
|
inkscape:snap-midpoints="true"
|
||||||
|
inkscape:snap-smooth-nodes="true"
|
||||||
|
inkscape:snap-intersection-paths="true"
|
||||||
|
inkscape:object-paths="true"
|
||||||
|
inkscape:snap-nodes="true"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2555"
|
||||||
|
enabled="true"
|
||||||
|
visible="true"
|
||||||
|
empspacing="5"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
color="#e51aa1"
|
||||||
|
opacity="0.14901961"
|
||||||
|
empcolor="#0065ff"
|
||||||
|
empopacity="0.25098039" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground-Inactive {
|
||||||
|
color:#2C2C2C;
|
||||||
|
stop-color:#2C2C2C;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
</defs>
|
||||||
|
<defs
|
||||||
|
id="defs3644">
|
||||||
|
<linearGradient
|
||||||
|
id="shadow_active">
|
||||||
|
<stop
|
||||||
|
id="stop7028"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.92168677;" />
|
||||||
|
<stop
|
||||||
|
id="stop7026"
|
||||||
|
offset="0.125"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.74096388;" />
|
||||||
|
<stop
|
||||||
|
id="stop6834"
|
||||||
|
offset="0.25"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.60240966;" />
|
||||||
|
<stop
|
||||||
|
id="stop6832"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.33132529;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.10843374;"
|
||||||
|
offset="0.75"
|
||||||
|
id="stop6836" />
|
||||||
|
<stop
|
||||||
|
id="stop6894"
|
||||||
|
offset="0.875"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.03921569;" />
|
||||||
|
<stop
|
||||||
|
id="stop6721"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="linearGradient5688"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0117647,0,137.2353)"
|
||||||
|
x1="398"
|
||||||
|
y1="150"
|
||||||
|
x2="398"
|
||||||
|
y2="213.25581" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="linearGradient6612"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0285694,-215,50.00005)"
|
||||||
|
x1="396"
|
||||||
|
y1="64.166748"
|
||||||
|
x2="396"
|
||||||
|
y2="14.583314" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="linearGradient5688-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0117647,0,137.15731)"
|
||||||
|
x1="395"
|
||||||
|
y1="150"
|
||||||
|
x2="395"
|
||||||
|
y2="168.77907" />
|
||||||
|
<linearGradient
|
||||||
|
id="shadow_inactive">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop6719-25" />
|
||||||
|
<stop
|
||||||
|
id="stop6834-1"
|
||||||
|
offset="0.25"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.63855422;" />
|
||||||
|
<stop
|
||||||
|
id="stop6832-0"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.33734939;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.10843374;"
|
||||||
|
offset="0.75"
|
||||||
|
id="stop6836-0" />
|
||||||
|
<stop
|
||||||
|
id="stop6894-7"
|
||||||
|
offset="0.875"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.03921569;" />
|
||||||
|
<stop
|
||||||
|
id="stop6721-4"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="linearGradient6612-5"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(200,5)"
|
||||||
|
x1="396"
|
||||||
|
y1="66"
|
||||||
|
x2="396"
|
||||||
|
y2="30" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="linearGradient1126"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0133333,0,0,1,-3.2650058,140)"
|
||||||
|
x1="348.49344"
|
||||||
|
y1="99"
|
||||||
|
x2="279.41449"
|
||||||
|
y2="99" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="radialGradient1306"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(9.4919759e-7,-2.9142759,4.0000007,1.1504403e-6,-211.66707,980.01628)"
|
||||||
|
cx="296.47726"
|
||||||
|
cy="80.416679"
|
||||||
|
fx="296.47726"
|
||||||
|
fy="80.416679"
|
||||||
|
r="17.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="linearGradient1389"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0133333,0,0,1,-3.2650058,140)"
|
||||||
|
x1="348.49344"
|
||||||
|
y1="99.01548"
|
||||||
|
x2="304.08554"
|
||||||
|
y2="99.01548" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="radialGradient965"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-4.0000019,2.6056779e-6,1.2558695e-6,-3.6571413,688.08325,943.61563)"
|
||||||
|
cx="48.27084"
|
||||||
|
cy="178.72313"
|
||||||
|
fx="48.27084"
|
||||||
|
fy="178.72313"
|
||||||
|
r="17.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="radialGradient969"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-3.7607938e-7,-2.0571166,2.5714318,-5.1233137e-7,263.21413,725.83432)"
|
||||||
|
cx="296.45123"
|
||||||
|
cy="80.416672"
|
||||||
|
fx="296.45123"
|
||||||
|
fy="80.416672"
|
||||||
|
r="17.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="radialGradient5807"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-2.5714306,-9.995112e-7,1.4225711e-6,-1.0857141,619.12488,484.04228)"
|
||||||
|
cx="48.27084"
|
||||||
|
cy="178.72313"
|
||||||
|
fx="48.27084"
|
||||||
|
fy="178.72313"
|
||||||
|
r="17.5" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,-90)">
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-center">
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 470,200 v 86 h 145 v -86 z"
|
||||||
|
id="path40329" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-25,-4.000015)"
|
||||||
|
id="decoration-inactive-bottomleft">
|
||||||
|
<path
|
||||||
|
id="path5801"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient5807);fill-opacity:1;stroke:none"
|
||||||
|
d="M 424,290.00001 V 355 h 71 v -65 z" />
|
||||||
|
<path
|
||||||
|
id="path5803"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.0171"
|
||||||
|
d="m 80,196 c 0,0.55401 0.445992,1 1,1 l 29,0 v -1 z"
|
||||||
|
transform="translate(385,94.000015)"
|
||||||
|
sodipodi:nodetypes="csccc" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-left"
|
||||||
|
id="decoration-right"
|
||||||
|
transform="matrix(-1,0,0,1,365,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-topleft"
|
||||||
|
transform="translate(140,-31.063)">
|
||||||
|
<path
|
||||||
|
id="rect6520-3-2-6"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient969);fill-opacity:1;stroke:none"
|
||||||
|
d="m 399,64 v 52 h 42 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="translate(-140,115.063)"
|
||||||
|
sodipodi:nodetypes="cccssccc" />
|
||||||
|
<path
|
||||||
|
id="rect5073-4-9-6"
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 313,201.063 c -6.648,0 -12,5.352 -12,12 v 17.93555 0.0644 h 29 v -30 z" />
|
||||||
|
<path
|
||||||
|
id="path955"
|
||||||
|
style="opacity:0.05;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
|
||||||
|
d="m 313,201.063 c -6.648,0 -12,5.352 -12,12 v 1 c 0,-6.648 5.352,-12 12,-12 h 17 v -1 z" />
|
||||||
|
<path
|
||||||
|
id="path202"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="M 453 79 C 445.798 79 440 84.798 440 92 L 440 110 L 441 110 L 441 92 C 441 85.352 446.352 80 453 80 L 470 80 L 470 79 L 453 79 z "
|
||||||
|
transform="translate(-140,121.063)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-1453.4451,-465.21909)"
|
||||||
|
inkscape:label="layer1"
|
||||||
|
style="display:none"
|
||||||
|
id="g4418" />
|
||||||
|
<g
|
||||||
|
transform="translate(-1453.4451,-465.21909)"
|
||||||
|
inkscape:label="glow"
|
||||||
|
style="display:inline"
|
||||||
|
id="layer2" />
|
||||||
|
<g
|
||||||
|
inkscape:label="layer1"
|
||||||
|
style="display:none"
|
||||||
|
id="g2424"
|
||||||
|
transform="translate(975.61592,-1945.0985)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="glow"
|
||||||
|
style="display:inline"
|
||||||
|
id="g2426"
|
||||||
|
transform="translate(975.61592,-1945.0985)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g3429"
|
||||||
|
transform="translate(1021.5937,-976.23581)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g19758"
|
||||||
|
transform="translate(2807.8842,-592.77773)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g3935"
|
||||||
|
transform="translate(3912.7094,-1471.0471)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g8459"
|
||||||
|
transform="translate(1514.8397,-1486.3943)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g28391"
|
||||||
|
transform="translate(164.02222,-157.78265)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g28393"
|
||||||
|
transform="translate(1268.8474,-1036.052)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g28395"
|
||||||
|
transform="translate(-1129.0223,-1051.3992)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g6598"
|
||||||
|
transform="translate(2310.5222,-165.78265)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g6640"
|
||||||
|
transform="translate(3415.3474,-1044.052)" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g6716"
|
||||||
|
transform="translate(1017.4777,-1059.3992)" />
|
||||||
|
<g
|
||||||
|
id="g6850"
|
||||||
|
transform="matrix(1,0,0,-1,-153.44508,295.17435)"
|
||||||
|
style="opacity:0.45945943" />
|
||||||
|
<g
|
||||||
|
id="g4240"
|
||||||
|
style="display:none"
|
||||||
|
inkscape:label="layer1"
|
||||||
|
transform="translate(-1919.565,-153.36219)" />
|
||||||
|
<g
|
||||||
|
id="g4242"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="glow"
|
||||||
|
transform="translate(-1919.565,-153.36219)" />
|
||||||
|
<g
|
||||||
|
transform="translate(509.49601,-1633.2416)"
|
||||||
|
id="g4244"
|
||||||
|
style="display:none"
|
||||||
|
inkscape:label="layer1" />
|
||||||
|
<g
|
||||||
|
transform="translate(509.49601,-1633.2416)"
|
||||||
|
id="g4246"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="glow" />
|
||||||
|
<g
|
||||||
|
transform="translate(555.47381,-664.37887)"
|
||||||
|
id="g4248"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(2341.7643,-280.92083)"
|
||||||
|
id="g4250"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(3446.5895,-1159.1902)"
|
||||||
|
id="g4252"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(1048.7198,-1174.5374)"
|
||||||
|
id="g4254"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-302.09768,154.07425)"
|
||||||
|
id="g4256"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(802.72751,-724.19507)"
|
||||||
|
id="g4258"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-1595.1422,-739.54227)"
|
||||||
|
id="g4260"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(1844.4023,146.07425)"
|
||||||
|
id="g4262"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(2949.2275,-732.19507)"
|
||||||
|
id="g4264"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(551.35781,-747.54227)"
|
||||||
|
id="g4266"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
style="opacity:0.45945943"
|
||||||
|
transform="matrix(1,0,0,-1,-619.56498,607.03125)"
|
||||||
|
id="g4268" />
|
||||||
|
<g
|
||||||
|
id="decoration-bottom"
|
||||||
|
transform="translate(-215,-3)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient5688);fill-opacity:1;stroke:none;stroke-width:1.00587"
|
||||||
|
d="m 325,289 v 65 h 145 v -65 z"
|
||||||
|
id="path6217-8"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
id="path6214-7"
|
||||||
|
d="M 470,289 H 325 v 1 h 145 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.413845"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 110,200 v 86 h 145 v -86 z"
|
||||||
|
id="decoration-center" />
|
||||||
|
<g
|
||||||
|
id="decoration-top"
|
||||||
|
transform="translate(-215,-5.99995)">
|
||||||
|
<path
|
||||||
|
id="path6055-5"
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient6612);fill-opacity:1;stroke:none;stroke-width:1.01418"
|
||||||
|
d="M 110,64 V 86 H 255 V 64 Z"
|
||||||
|
transform="translate(215,89.99995)"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
id="path6098-4"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 110,85 v 1 h 145 v -1 z"
|
||||||
|
transform="translate(215,89.99995)" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 325,175.99994 v 30.00002 h 145 v -30.00002 z"
|
||||||
|
id="path6092-3" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path966"
|
||||||
|
d="m 325,175.99994 v 1.00001 h 145 v -1.00001 z"
|
||||||
|
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.182575" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-left"
|
||||||
|
transform="translate(-239.875,3)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient1126);fill-opacity:1;stroke:none;stroke-width:1.00664"
|
||||||
|
d="m 278.875,197 v 86 h 42 v -86 z"
|
||||||
|
id="path6345-1" />
|
||||||
|
<path
|
||||||
|
id="path6342-6"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 80,116 v 86 h 1 v -86 z"
|
||||||
|
transform="translate(239.875,81)" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 576,121 v 86 h 29 v -86 z"
|
||||||
|
id="path6339-9"
|
||||||
|
transform="translate(-255.125,76)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-bottom"
|
||||||
|
transform="translate(145,-2.92202)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient5688-2);fill-opacity:1;stroke:none;stroke-width:1.00587"
|
||||||
|
d="m 325,288.92202 v 64.99999 h 145 v -64.99999 z"
|
||||||
|
id="path6217-8-2"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
id="path6214-7-4"
|
||||||
|
d="M 470,288.92202 H 325 v 1 h 145 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.392425"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-top"
|
||||||
|
transform="translate(145,-6)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient6612-5);fill-opacity:1;stroke:none"
|
||||||
|
d="M 525,19 V 41 H 670 V 19 Z"
|
||||||
|
transform="translate(-200,135)"
|
||||||
|
id="path6055-5-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
transform="translate(-145,90)"
|
||||||
|
d="m 470,85 v 1 h 145 v -1 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
id="path6098-4-8" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 325,176 v 30 h 145 v -30 z"
|
||||||
|
id="path6092-3-3" />
|
||||||
|
<path
|
||||||
|
style="opacity:0.05;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.182574"
|
||||||
|
d="m 325,176 v 1 h 145 v -1 z"
|
||||||
|
id="path996"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-left"
|
||||||
|
transform="translate(120.125,2.98452)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient1389);fill-opacity:1;stroke:none;stroke-width:1.00664"
|
||||||
|
d="m 278.875,197.01548 v 86 l 42,-0.0155 v -85.98452 z"
|
||||||
|
id="path6345-1-1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
id="path6342-6-6"
|
||||||
|
d="m 319.875,197.01548 v 86 h 1 v -86 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.447214"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 320.875,197.01548 v 86 h 29 v -86 z"
|
||||||
|
id="path6339-9-9" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-385,-4.000015)"
|
||||||
|
id="decoration-bottomleft">
|
||||||
|
<path
|
||||||
|
id="rect5099-9-5"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient965);fill-opacity:1;stroke:none"
|
||||||
|
d="M 424,290.00001 V 355 h 71 v -65 z" />
|
||||||
|
<path
|
||||||
|
id="rect7023-1"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.0171"
|
||||||
|
d="m 80,196 c 0,0.55401 0.445992,1 1,1 h 29 v -1 z"
|
||||||
|
transform="translate(385,94.000015)"
|
||||||
|
sodipodi:nodetypes="csccc" />
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.341565"
|
||||||
|
id="shadow-hint-top-margin"
|
||||||
|
width="4"
|
||||||
|
height="21"
|
||||||
|
x="174"
|
||||||
|
y="148" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.02071"
|
||||||
|
id="shadow-hint-bottom-margin"
|
||||||
|
width="4"
|
||||||
|
height="64"
|
||||||
|
x="175"
|
||||||
|
y="287" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.698638"
|
||||||
|
id="shadow-hint-right-margin"
|
||||||
|
width="41"
|
||||||
|
height="4"
|
||||||
|
x="285"
|
||||||
|
y="230" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.519361"
|
||||||
|
id="shadow-hint-left-margin"
|
||||||
|
width="41"
|
||||||
|
height="4"
|
||||||
|
x="39"
|
||||||
|
y="224" />
|
||||||
|
<rect
|
||||||
|
id="hint-top-margin"
|
||||||
|
width="4"
|
||||||
|
height="52"
|
||||||
|
x="186"
|
||||||
|
y="148"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:0.962763" />
|
||||||
|
<rect
|
||||||
|
id="hint-bottom-margin"
|
||||||
|
width="4"
|
||||||
|
height="65"
|
||||||
|
x="187"
|
||||||
|
y="286"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:0.911701" />
|
||||||
|
<rect
|
||||||
|
id="hint-right-margin"
|
||||||
|
width="4"
|
||||||
|
height="71"
|
||||||
|
x="219"
|
||||||
|
y="-326"
|
||||||
|
transform="rotate(90)"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:1.08465" />
|
||||||
|
<rect
|
||||||
|
id="hint-left-margin"
|
||||||
|
width="4"
|
||||||
|
height="71"
|
||||||
|
x="216"
|
||||||
|
y="-110"
|
||||||
|
transform="rotate(90)"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:0.892451" />
|
||||||
|
<g
|
||||||
|
transform="matrix(-1,0,0,1,535,-31.0625)"
|
||||||
|
id="decoration-topleft">
|
||||||
|
<path
|
||||||
|
id="path1019"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient1306);fill-opacity:1;stroke:none"
|
||||||
|
d="m 39,64 v 52 H 81 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)" />
|
||||||
|
<path
|
||||||
|
id="path1023"
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 18 h -29 v -30 z" />
|
||||||
|
<path
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 0.59961 c 0,-6.4264 -5.352,-11.59961 -12,-11.59961 h -17 v -1 z"
|
||||||
|
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
|
||||||
|
id="path961" />
|
||||||
|
<path
|
||||||
|
id="path187"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 93,85 c -7.202,0 -13,5.798 -13,13 v 18 h 1 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 v -1 z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-topleft"
|
||||||
|
id="decoration-topright"
|
||||||
|
transform="matrix(-1,0,0,1,365,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-inactive-topleft"
|
||||||
|
id="decoration-inactive-topright"
|
||||||
|
transform="matrix(-1,0,0,1,1085,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-bottomleft"
|
||||||
|
id="decoration-bottomright"
|
||||||
|
transform="matrix(-1,0,0,1,365,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-inactive-bottomleft"
|
||||||
|
id="decoration-inactive-bottomright"
|
||||||
|
transform="matrix(-1,0,0,1,1085,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-inactive-left"
|
||||||
|
id="decoration-inactive-right"
|
||||||
|
transform="matrix(-1,0,0,1,1085,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<g
|
||||||
|
id="mask-right"
|
||||||
|
transform="matrix(-1,0,0,1,1314.875,3)">
|
||||||
|
<path
|
||||||
|
d="m 278.875,197 v 86 h 42 v -86 z"
|
||||||
|
id="path2127"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
d="m 576,121 v 86 h 29 v -86 z"
|
||||||
|
id="path2131"
|
||||||
|
transform="translate(-255.125,76)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="mask-bottom"
|
||||||
|
transform="translate(495,-3)">
|
||||||
|
<path
|
||||||
|
d="m 325,289 v 65 h 145 v -65 z"
|
||||||
|
id="path1407"
|
||||||
|
style="fill:none" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 820,200 v 86 h 145 v -86 z"
|
||||||
|
id="mask-center" />
|
||||||
|
<g
|
||||||
|
id="mask-top"
|
||||||
|
transform="translate(495,-5.99995)">
|
||||||
|
<path
|
||||||
|
id="path1415"
|
||||||
|
d="M 110,64 V 86 H 255 V 64 Z"
|
||||||
|
transform="translate(215,89.99995)"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
d="m 325,175.99994 v 30.00002 h 145 v -30.00002 z"
|
||||||
|
id="path1419" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="mask-left"
|
||||||
|
transform="translate(470.125,3)">
|
||||||
|
<path
|
||||||
|
d="m 278.875,197 v 86 h 42 v -86 z"
|
||||||
|
id="path1425"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
d="m 576,121 v 86 h 29 v -86 z"
|
||||||
|
id="path1429"
|
||||||
|
transform="translate(-255.125,76)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(325,-4.000015)"
|
||||||
|
id="mask-bottomleft">
|
||||||
|
<path
|
||||||
|
id="path1433"
|
||||||
|
d="M 424,290.00001 V 355 h 71 v -65 z"
|
||||||
|
style="fill:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-1,0,0,1,1245,-31.0625)"
|
||||||
|
id="mask-topleft">
|
||||||
|
<path
|
||||||
|
id="path1439"
|
||||||
|
d="m 39,64 v 52 H 81 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
id="path1441"
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 18 h -29 v -30 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(540,-31.0625)"
|
||||||
|
id="mask-topright">
|
||||||
|
<path
|
||||||
|
id="path2121"
|
||||||
|
d="m 39,64 v 52 H 81 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
id="path2123"
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 18 h -29 v -30 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-1,0,0,1,1460,-4.000015)"
|
||||||
|
id="mask-bottomright">
|
||||||
|
<path
|
||||||
|
id="path2015"
|
||||||
|
d="M 424,290.00001 V 355 h 71 v -65 z"
|
||||||
|
style="fill:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 24 KiB |
|
@ -0,0 +1,523 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="119.46667"
|
||||||
|
height="29.866667"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||||
|
sodipodi:docname="keepabove.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3913">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3915" />
|
||||||
|
<stop
|
||||||
|
id="stop3921"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3917" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3868">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#5a5a5a;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3870" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#646464;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3872" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3813">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#666666;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3815" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#636363;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3817" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e5e5df;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3806-3-5-6">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#303030;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3808-6-9-1" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#232323;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3810-4-6-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3793"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3828"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-6.5,-80.335554)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-4"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-8">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-3" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6e0;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3807"
|
||||||
|
x1="11"
|
||||||
|
y1="15.75"
|
||||||
|
x2="11"
|
||||||
|
y2="8.25"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3813"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="29.5"
|
||||||
|
y1="15.2"
|
||||||
|
x2="29.5"
|
||||||
|
y2="8.8000002"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231"
|
||||||
|
id="linearGradient3807-1"
|
||||||
|
x1="10"
|
||||||
|
y1="7.0000038"
|
||||||
|
x2="10"
|
||||||
|
y2="15.888954"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231">
|
||||||
|
<stop
|
||||||
|
id="stop4233"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e7e7e1;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-1"
|
||||||
|
id="linearGradient3807-1-1"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-1">
|
||||||
|
<stop
|
||||||
|
id="stop4233-6"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-7"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#979791;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ef;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367-8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient4361"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-41.25,0)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3127"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3154"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3159"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-249.25,-54.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-9"
|
||||||
|
id="linearGradient3159-0"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-9">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-9"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-5">
|
||||||
|
<stop
|
||||||
|
id="stop4233-41"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-73"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-7"
|
||||||
|
id="linearGradient3159-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-7"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-2"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-73"
|
||||||
|
id="linearGradient3807-1-7"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-73">
|
||||||
|
<stop
|
||||||
|
id="stop4233-1"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-85"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.5401481"
|
||||||
|
inkscape:cx="-15.089557"
|
||||||
|
inkscape:cy="43.762057"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="706"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:snap-nodes="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-others="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1"
|
||||||
|
spacingy="1" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4433">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1092.653)">
|
||||||
|
<g
|
||||||
|
id="4"
|
||||||
|
inkscape:label="#g3842"
|
||||||
|
transform="translate(86.4,-3.2)" />
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="matrix(0.01754682,0,0,-0.01754674,2.9481648,1117.6576)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path900"
|
||||||
|
style="fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new;opacity:0"
|
||||||
|
d="m 458.87896,7.858312 c 251.8005,0 455.9211,204.124598 455.9211,455.929418 0,251.79519 -204.1206,455.92109 -455.9211,455.92109 C 207.07951,919.70882 2.9541065,715.58292 2.9541065,463.78773 2.9541065,211.98291 207.07951,7.858312 458.87896,7.858312"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 458.87873,64.846581 c 220.32675,0 398.93335,178.610089 398.93335,398.940629 0,220.32211 -178.6066,398.93334 -398.93335,398.93334 -220.32584,0 -398.936639,-178.61123 -398.936639,-398.93334 0,-220.33054 178.610799,-398.940629 398.936639,-398.940629"
|
||||||
|
style="fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
id="path14" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 458.87706,93.349705 c 204.58563,0 370.43752,165.849295 370.43752,370.437775 0,204.58091 -165.85189,370.42995 -370.43752,370.42995 -204.58467,0 -370.437464,-165.84904 -370.437464,-370.42995 0,-204.58848 165.852794,-370.437774 370.437464,-370.437774"
|
||||||
|
style="fill:#ccb0d5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
id="path16" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754674,24.895819,1117.601)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path902"
|
||||||
|
style="fill:#d1b6da;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new;opacity:0"
|
||||||
|
d="m 461.8607,916.48751 c -251.80178,0 -455.92333,-204.1245 -455.92333,-455.9291 0,-251.79517 204.12155,-455.92095 455.92333,-455.92095 251.80066,0 455.92716,204.12578 455.92716,455.92095 0,251.8046 -204.1265,455.9291 -455.92716,455.9291"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86094,859.49667 c -220.32644,0 -398.932701,-178.60885 -398.932701,-398.93775 0,-220.32066 178.606261,-398.930619 398.932701,-398.930619 220.32546,0 398.93605,178.609959 398.93605,398.930619 0,220.3289 -178.61059,398.93775 -398.93605,398.93775"
|
||||||
|
style="fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path14-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86259,830.99598 c -204.58656,0 -370.43915,-165.84906 -370.43915,-370.43736 0,-204.58074 165.85259,-370.429629 370.43915,-370.429629 204.58561,0 370.4392,165.848889 370.4392,370.429629 0,204.5883 -165.85359,370.43736 -370.4392,370.43736"
|
||||||
|
style="fill:#d1b6da;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path16-5" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 210.73721,382.46225 202.32908,202.32896 c 26.83838,26.8384 70.74931,26.8383 97.58706,6e-4 l 202.33081,-202.33078 -502.24695,0.001"
|
||||||
|
style="fill:#ab90b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path18-6"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754682,47.895819,1117.7002)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path904"
|
||||||
|
style="fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new;opacity:0"
|
||||||
|
d="m 461.86074,922.13339 c -251.8018,0 -455.9233,-204.1236 -455.9233,-455.9271 0,-251.79399 204.1215,-455.91885 455.9233,-455.91885 251.80066,0 455.92706,204.12486 455.92706,455.91885 0,251.8035 -204.1264,455.9271 -455.92706,455.9271"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86098,865.14441 c -220.32735,0 -398.934283,-178.60877 -398.934283,-398.9376 0,-220.32051 178.606933,-398.930389 398.934283,-398.930389 220.32634,0 398.93756,178.609879 398.93756,398.930389 0,220.32883 -178.61122,398.9376 -398.93756,398.9376"
|
||||||
|
style="fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path14-2-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86264,836.64229 c -204.58665,0 -370.439202,-165.84838 -370.439202,-370.43573 0,-204.57983 165.852552,-370.428015 370.439202,-370.428015 204.58563,0 370.43916,165.848185 370.43916,370.428015 0,204.58735 -165.85353,370.43573 -370.43916,370.43573"
|
||||||
|
style="fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path16-9-6" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 210.73724,387.97912 202.3291,202.32797 c 26.8383,26.8383 70.7492,26.8382 97.58706,6e-4 l 202.3308,-202.32987 -502.24696,10e-4"
|
||||||
|
style="fill:#9e83a7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path18-6-3"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-221,1370.1575)"
|
||||||
|
style="display:inline"
|
||||||
|
id="inactive-center"
|
||||||
|
inkscape:label="#inactive-center">
|
||||||
|
<rect
|
||||||
|
ry="1.6930764e-05"
|
||||||
|
y="-268.63782"
|
||||||
|
x="293"
|
||||||
|
height="16"
|
||||||
|
width="16"
|
||||||
|
id="rect1561-02-6"
|
||||||
|
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47432083;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
|
||||||
|
<g
|
||||||
|
inkscape:label="#g965"
|
||||||
|
transform="translate(294,-267.63782)"
|
||||||
|
id="titlebutton-close-backdrop-1-3-4"
|
||||||
|
style="enable-background:new">
|
||||||
|
<g
|
||||||
|
transform="translate(-4.9999997,-1033.3622)"
|
||||||
|
id="g6-97-7-3">
|
||||||
|
<path
|
||||||
|
style="fill:#5d5d5d;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 12.000061,1047.3622 c 3.865929,0 6.999939,-3.134 6.999939,-7 0,-3.866 -3.13401,-7 -6.999939,-7 -3.8660427,0 -7.0000616,3.134 -7.0000616,7 0,3.866 3.1340189,7 7.0000616,7"
|
||||||
|
id="path2-361-5-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(29.429759,0.6626)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,524 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="119.46667"
|
||||||
|
height="29.866667"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||||
|
sodipodi:docname="keepbelow.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3913">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3915" />
|
||||||
|
<stop
|
||||||
|
id="stop3921"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3917" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3868">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#5a5a5a;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3870" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#646464;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3872" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3813">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#666666;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3815" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#636363;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3817" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e5e5df;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3806-3-5-6">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#303030;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3808-6-9-1" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#232323;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3810-4-6-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3793"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3828"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-6.5,-80.335554)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-4"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-8">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-3" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6e0;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3807"
|
||||||
|
x1="11"
|
||||||
|
y1="15.75"
|
||||||
|
x2="11"
|
||||||
|
y2="8.25"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3813"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="29.5"
|
||||||
|
y1="15.2"
|
||||||
|
x2="29.5"
|
||||||
|
y2="8.8000002"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231"
|
||||||
|
id="linearGradient3807-1"
|
||||||
|
x1="10"
|
||||||
|
y1="7.0000038"
|
||||||
|
x2="10"
|
||||||
|
y2="15.888954"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231">
|
||||||
|
<stop
|
||||||
|
id="stop4233"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e7e7e1;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-1"
|
||||||
|
id="linearGradient3807-1-1"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-1">
|
||||||
|
<stop
|
||||||
|
id="stop4233-6"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-7"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#979791;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ef;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367-8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient4361"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-41.25,0)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3127"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3154"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3159"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-249.25,-54.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-9"
|
||||||
|
id="linearGradient3159-0"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-9">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-9"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-5">
|
||||||
|
<stop
|
||||||
|
id="stop4233-41"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-73"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-7"
|
||||||
|
id="linearGradient3159-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-7"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-2"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-73"
|
||||||
|
id="linearGradient3807-1-7"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-73">
|
||||||
|
<stop
|
||||||
|
id="stop4233-1"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-85"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4.3561966"
|
||||||
|
inkscape:cx="26.256267"
|
||||||
|
inkscape:cy="37.073332"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="706"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:showpageshadow="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1.0666667"
|
||||||
|
spacingy="1.0666667" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4433">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1092.653)">
|
||||||
|
<g
|
||||||
|
id="4"
|
||||||
|
inkscape:label="#g3842"
|
||||||
|
transform="translate(86.4,-3.2)" />
|
||||||
|
<g
|
||||||
|
transform="translate(87.049288,-67.479533)"
|
||||||
|
inkscape:label="#g3842"
|
||||||
|
id="g899" />
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="matrix(0.01754682,0,0,-0.01754674,2.9481648,1117.6576)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path900"
|
||||||
|
style="opacity:0;fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
d="m 458.87896,7.858312 c 251.8005,0 455.9211,204.124598 455.9211,455.929418 0,251.79519 -204.1206,455.92109 -455.9211,455.92109 C 207.07951,919.70882 2.9541065,715.58292 2.9541065,463.78773 2.9541065,211.98291 207.07951,7.858312 458.87896,7.858312"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 458.87873,64.846581 c 220.32675,0 398.93335,178.610089 398.93335,398.940629 0,220.32211 -178.6066,398.93334 -398.93335,398.93334 -220.32584,0 -398.936639,-178.61123 -398.936639,-398.93334 0,-220.33054 178.610799,-398.940629 398.936639,-398.940629"
|
||||||
|
style="fill:#97b1d5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
id="path14" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 458.87706,93.349705 c 204.58563,0 370.43752,165.849295 370.43752,370.437775 0,204.58091 -165.85189,370.42995 -370.43752,370.42995 -204.58467,0 -370.437464,-165.84904 -370.437464,-370.42995 0,-204.58848 165.852794,-370.437774 370.437464,-370.437774"
|
||||||
|
style="fill:#a1bbde;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
id="path16" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754674,24.895819,1117.601)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path902"
|
||||||
|
style="opacity:0;fill:#d1b6da;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
d="m 461.8607,916.48751 c -251.80178,0 -455.92333,-204.1245 -455.92333,-455.9291 0,-251.79517 204.12155,-455.92095 455.92333,-455.92095 251.80066,0 455.92716,204.12578 455.92716,455.92095 0,251.8046 -204.1265,455.9291 -455.92716,455.9291"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86094,859.49667 c -220.32644,0 -398.932701,-178.60885 -398.932701,-398.93775 0,-220.32066 178.606261,-398.930619 398.932701,-398.930619 220.32546,0 398.93605,178.609959 398.93605,398.930619 0,220.3289 -178.61059,398.93775 -398.93605,398.93775"
|
||||||
|
style="fill:#97b1d5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path14-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86259,830.99598 c -204.58656,0 -370.43915,-165.84906 -370.43915,-370.43736 0,-204.58074 165.85259,-370.429629 370.43915,-370.429629 204.58561,0 370.4392,165.848889 370.4392,370.429629 0,204.5883 -165.85359,370.43736 -370.4392,370.43736"
|
||||||
|
style="fill:#a1bbde;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path16-5" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 210.73721,382.46225 202.32908,202.32896 c 26.83838,26.8384 70.74931,26.8383 97.58706,6e-4 l 202.33081,-202.33078 -502.24695,0.001"
|
||||||
|
style="fill:#7d96b7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path18-6"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754682,47.895819,1117.7002)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path904"
|
||||||
|
style="opacity:0;fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
d="m 461.86074,922.13339 c -251.8018,0 -455.9233,-204.1236 -455.9233,-455.9271 0,-251.79399 204.1215,-455.91885 455.9233,-455.91885 251.80066,0 455.92706,204.12486 455.92706,455.91885 0,251.8035 -204.1264,455.9271 -455.92706,455.9271"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86098,865.14441 c -220.32735,0 -398.934283,-178.60877 -398.934283,-398.9376 0,-220.32051 178.606933,-398.930389 398.934283,-398.930389 220.32634,0 398.93756,178.609879 398.93756,398.930389 0,220.32883 -178.61122,398.9376 -398.93756,398.9376"
|
||||||
|
style="fill:#8da7cb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path14-2-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86264,836.64229 c -204.58665,0 -370.439202,-165.84838 -370.439202,-370.43573 0,-204.57983 165.852552,-370.428015 370.439202,-370.428015 204.58563,0 370.43916,165.848185 370.43916,370.428015 0,204.58735 -165.85353,370.43573 -370.43916,370.43573"
|
||||||
|
style="fill:#8da7cb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path16-9-6" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 210.73724,387.97912 202.3291,202.32797 c 26.8383,26.8383 70.7492,26.8382 97.58706,6e-4 l 202.3308,-202.32987 -502.24696,10e-4"
|
||||||
|
style="fill:#6881a2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path18-6-3"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-221,1370.1575)"
|
||||||
|
style="display:inline"
|
||||||
|
id="inactive-center"
|
||||||
|
inkscape:label="#inactive-center">
|
||||||
|
<rect
|
||||||
|
ry="1.6930764e-05"
|
||||||
|
y="-268.63782"
|
||||||
|
x="293"
|
||||||
|
height="16"
|
||||||
|
width="16"
|
||||||
|
id="rect1561-02-6"
|
||||||
|
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47432083;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
|
||||||
|
<g
|
||||||
|
inkscape:label="#g965"
|
||||||
|
transform="translate(294,-267.63782)"
|
||||||
|
id="titlebutton-close-backdrop-1-3-4"
|
||||||
|
style="enable-background:new">
|
||||||
|
<g
|
||||||
|
transform="translate(-4.9999997,-1033.3622)"
|
||||||
|
id="g6-97-7-3">
|
||||||
|
<path
|
||||||
|
style="fill:#5d5d5d;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 12.000061,1047.3622 c 3.865929,0 6.999939,-3.134 6.999939,-7 0,-3.866 -3.13401,-7 -6.999939,-7 -3.8660427,0 -7.0000616,3.134 -7.0000616,7 0,3.866 3.1340189,7 7.0000616,7"
|
||||||
|
id="path2-361-5-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(29.429759,0.66260005)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,171 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="maximize.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-Background {
|
||||||
|
color:#2c2c2c;
|
||||||
|
stop-color:#2c2c2c;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.3143028"
|
||||||
|
inkscape:cx="25.277591"
|
||||||
|
inkscape:cy="44.505844"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1.0666667"
|
||||||
|
spacingy="1.0666667" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1098.5197)">
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="matrix(1,0,0,0.99999607,-64.975606,467.10862)">
|
||||||
|
<g
|
||||||
|
id="use1849"
|
||||||
|
transform="translate(0,41.000028)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#a3be8c;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2551"
|
||||||
|
cx="37"
|
||||||
|
cy="643.36212"
|
||||||
|
r="8" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="matrix(1,0,0,0.99999607,-64.975606,467.10862)">
|
||||||
|
<g
|
||||||
|
id="use1851"
|
||||||
|
transform="translate(40,41.000028)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#a3be8c;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2553"
|
||||||
|
cx="77"
|
||||||
|
cy="643.36212"
|
||||||
|
r="8" />
|
||||||
|
<path
|
||||||
|
d="m 75,639.36212 c -1.108,0 -2,0.892 -2,2 v 4 c 0,1.108 0.89201,2 2,2 h 4 c 1.108,0 2,-0.892 2,-2 v -4 c 0,-1.108 -0.89201,-2 -2,-2 z m 0,1 h 4 c 0.554,0 1,0.44602 1,1 v 4 c 0,0.55398 -0.44602,1 -1,1 h -4 c -0.55397,0 -0.99999,-0.44602 -0.99999,-1 v -4 c 0,-0.55398 0.44602,-1 0.99999,-1 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2878" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="matrix(1,0,0,0.99999607,-64.975606,467.10862)">
|
||||||
|
<g
|
||||||
|
id="use1853"
|
||||||
|
transform="translate(80,41.000028)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#a3be8c;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2555"
|
||||||
|
cx="117"
|
||||||
|
cy="643.36212"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2809"
|
||||||
|
cx="117"
|
||||||
|
cy="643.36212"
|
||||||
|
r="8" />
|
||||||
|
<path
|
||||||
|
d="m 115,639.36212 c -1.108,0 -2,0.892 -2,2 v 4 c 0,1.108 0.89201,2 2,2 h 4 c 1.10801,0 2,-0.892 2,-2 v -4 c 0,-1.108 -0.89201,-2 -2,-2 z m 0,1 h 4 c 0.554,0 1,0.44602 1,1 v 4 c 0,0.55398 -0.44602,1 -1,1 h -4 c -0.55397,0 -0.99999,-0.44602 -0.99999,-1 v -4 c 0,-0.55398 0.44603,-1 0.99999,-1 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2930" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-inactive-center"
|
||||||
|
transform="matrix(1,0,0,0.99999607,-64.975606,499.54977)">
|
||||||
|
<g
|
||||||
|
id="g1666"
|
||||||
|
transform="translate(40,41.000028)" />
|
||||||
|
<circle
|
||||||
|
id="circle1668"
|
||||||
|
cx="77"
|
||||||
|
cy="643.36212"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<path
|
||||||
|
d="m 75,639.36212 c -1.108,0 -2,0.892 -2,2 v 4 c 0,1.108 0.89201,2 2,2 h 4 c 1.108,0 2,-0.892 2,-2 v -4 c 0,-1.108 -0.89201,-2 -2,-2 z m 0,1 h 4 c 0.554,0 1,0.44602 1,1 v 4 c 0,0.55398 -0.44602,1 -1,1 h -4 c -0.55397,0 -0.99999,-0.44602 -0.99999,-1 v -4 c 0,-0.55398 0.44602,-1 0.99999,-1 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path1670" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(-0.21336753,-26.948412)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
height="100%"
|
||||||
|
width="100%"
|
||||||
|
transform="translate(28.709753,-26.948412)"
|
||||||
|
id="deactivated-inactive-center"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
y="0"
|
||||||
|
x="0" />
|
||||||
|
<circle
|
||||||
|
id="inactive-center"
|
||||||
|
cx="92.266663"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
|
@ -0,0 +1,11 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=Colloid-dark-nord
|
||||||
|
X-KDE-PluginInfo-Author=vince liuice
|
||||||
|
X-KDE-PluginInfo-Email=vinceliuice@hotmail.com
|
||||||
|
X-KDE-PluginInfo-Name=Colloid-dark-nord
|
||||||
|
X-KDE-PluginInfo-Version=0.3
|
||||||
|
X-KDE-PluginInfo-Category=
|
||||||
|
X-KDE-PluginInfo-Depends=
|
||||||
|
X-KDE-PluginInfo-License=GPL_V3
|
||||||
|
X-KDE-PluginInfo-EnabledByDefault=true
|
||||||
|
X-KDE-PluginInfo-blur=false
|
|
@ -0,0 +1,188 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="minimize.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.0351563"
|
||||||
|
inkscape:cx="27.270633"
|
||||||
|
inkscape:cy="0"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1.0666667"
|
||||||
|
spacingy="1.0666667" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-Background {
|
||||||
|
color:#2c2c2c;
|
||||||
|
stop-color:#2c2c2c;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1098.5197)">
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="translate(-64.792145,426.49091)">
|
||||||
|
<g
|
||||||
|
id="use1857"
|
||||||
|
transform="translate(0,82.000059)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#ebcb8b;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2559"
|
||||||
|
cx="37"
|
||||||
|
cy="684.36212"
|
||||||
|
r="8" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="translate(-64.792145,426.49091)">
|
||||||
|
<g
|
||||||
|
id="use1859"
|
||||||
|
transform="translate(40,82.000059)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#ebcb8b;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2561"
|
||||||
|
cx="77"
|
||||||
|
cy="684.36212"
|
||||||
|
r="8" />
|
||||||
|
<rect
|
||||||
|
x="73"
|
||||||
|
y="684.36212"
|
||||||
|
width="8"
|
||||||
|
height="1"
|
||||||
|
rx="0.5"
|
||||||
|
ry="0.5"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="rect2887" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="translate(-64.792145,426.49091)">
|
||||||
|
<g
|
||||||
|
id="use1861"
|
||||||
|
transform="translate(80,82.000059)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#ebcb8b;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2563"
|
||||||
|
cx="117"
|
||||||
|
cy="684.36212"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2811"
|
||||||
|
cx="117"
|
||||||
|
cy="684.36212"
|
||||||
|
r="8" />
|
||||||
|
<rect
|
||||||
|
x="113"
|
||||||
|
y="684.36212"
|
||||||
|
width="8"
|
||||||
|
height="1"
|
||||||
|
rx="0.5"
|
||||||
|
ry="0.5"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="rect2932" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-inactive-center"
|
||||||
|
transform="translate(-64.792145,457.15823)">
|
||||||
|
<g
|
||||||
|
id="g1426"
|
||||||
|
transform="translate(40,82.000059)" />
|
||||||
|
<circle
|
||||||
|
id="circle1428"
|
||||||
|
cx="77"
|
||||||
|
cy="684.36212"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<rect
|
||||||
|
x="73"
|
||||||
|
y="684.36212"
|
||||||
|
width="8"
|
||||||
|
height="1"
|
||||||
|
rx="0.5"
|
||||||
|
ry="0.5"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="rect1430" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(-0.21336753,-26.948412)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
height="100%"
|
||||||
|
width="100%"
|
||||||
|
transform="translate(28.709753,-26.948412)"
|
||||||
|
id="deactivated-inactive-center"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
y="0"
|
||||||
|
x="0" />
|
||||||
|
<circle
|
||||||
|
id="inactive-center"
|
||||||
|
cx="92.266663"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
|
@ -0,0 +1,203 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="restore.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.8781455"
|
||||||
|
inkscape:cx="58.197197"
|
||||||
|
inkscape:cy="34.744595"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1.0666667"
|
||||||
|
spacingy="1.0666667" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-Background {
|
||||||
|
color:#2c2c2c;
|
||||||
|
stop-color:#2c2c2c;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1098.5197)">
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="translate(-64.696994,384.86914)">
|
||||||
|
<g
|
||||||
|
id="use1865"
|
||||||
|
transform="translate(0,123.00003)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#a3be8c;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2567"
|
||||||
|
cx="37"
|
||||||
|
cy="725.36212"
|
||||||
|
r="8" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="translate(-64.696994,384.86914)">
|
||||||
|
<g
|
||||||
|
id="use1867"
|
||||||
|
transform="translate(40,123.00003)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#a3be8c;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2569"
|
||||||
|
cx="77"
|
||||||
|
cy="725.36212"
|
||||||
|
r="8" />
|
||||||
|
<g
|
||||||
|
id="g2908"
|
||||||
|
transform="translate(69,717.36212)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
d="M 6,6 C 4.892,6 4,6.892 4,8 v 2 c 0,1.108 0.892,2 2,2 h 2 c 1.108,0 2,-0.892 2,-2 V 8 C 10,6.892 9.108,6 8,6 Z m 0,1 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 H 6 C 5.446,11 5,10.554 5,10 V 8 C 5,7.446 5.446,7 6,7 Z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2896" />
|
||||||
|
<path
|
||||||
|
d="M 8,4 C 6.892,4 6,4.892 6,6 H 7 C 7,5.446 7.446,5 8,5 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 v 1 c 1.108,0 2,-0.892 2,-2 V 6 C 12,4.892 11.108,4 10,4 Z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2898"
|
||||||
|
opacity="0.35" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="translate(-64.696994,384.86914)">
|
||||||
|
<g
|
||||||
|
id="use1869"
|
||||||
|
transform="translate(80,123.00003)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#a3be8c;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2571"
|
||||||
|
cx="117"
|
||||||
|
cy="725.36212"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2813"
|
||||||
|
cx="117"
|
||||||
|
cy="725.36212"
|
||||||
|
r="8" />
|
||||||
|
<g
|
||||||
|
id="g2938"
|
||||||
|
transform="translate(109,717.36212)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
d="M 6,6 C 4.892,6 4,6.892 4,8 v 2 c 0,1.108 0.892,2 2,2 h 2 c 1.108,0 2,-0.892 2,-2 V 8 C 10,6.892 9.108,6 8,6 Z m 0,1 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 H 6 C 5.446,11 5,10.554 5,10 V 8 C 5,7.446 5.446,7 6,7 Z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2934" />
|
||||||
|
<path
|
||||||
|
d="M 8,4 C 6.892,4 6,4.892 6,6 H 7 C 7,5.446 7.446,5 8,5 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 v 1 c 1.108,0 2,-0.892 2,-2 V 6 C 12,4.892 11.108,4 10,4 Z"
|
||||||
|
opacity="0.35"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2936" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-inactive-center"
|
||||||
|
transform="translate(-64.696994,419.68175)">
|
||||||
|
<g
|
||||||
|
id="g1841"
|
||||||
|
transform="translate(40,123.00003)" />
|
||||||
|
<circle
|
||||||
|
id="circle1843"
|
||||||
|
cx="77"
|
||||||
|
cy="725.36212"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<g
|
||||||
|
id="g1849"
|
||||||
|
transform="translate(69,717.36212)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
d="M 6,6 C 4.892,6 4,6.892 4,8 v 2 c 0,1.108 0.892,2 2,2 h 2 c 1.108,0 2,-0.892 2,-2 V 8 C 10,6.892 9.108,6 8,6 Z m 0,1 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 H 6 C 5.446,11 5,10.554 5,10 V 8 C 5,7.446 5.446,7 6,7 Z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path1845" />
|
||||||
|
<path
|
||||||
|
d="M 8,4 C 6.892,4 6,4.892 6,6 H 7 C 7,5.446 7.446,5 8,5 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 v 1 c 1.108,0 2,-0.892 2,-2 V 6 C 12,4.892 11.108,4 10,4 Z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path1847"
|
||||||
|
opacity="0.35" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(-0.21336753,-26.948412)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
height="100%"
|
||||||
|
width="100%"
|
||||||
|
transform="translate(28.709753,-26.948412)"
|
||||||
|
id="deactivated-inactive-center"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
y="0"
|
||||||
|
x="0" />
|
||||||
|
<circle
|
||||||
|
id="inactive-center"
|
||||||
|
cx="92.266663"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
|
@ -0,0 +1,44 @@
|
||||||
|
[General]
|
||||||
|
ActiveFocusedTabColor=78,78,78
|
||||||
|
ActiveTextColor=225,225,225
|
||||||
|
ActiveUnfocusedTabColor=120,120,120
|
||||||
|
TitleAlignment=Center
|
||||||
|
TitleVerticalAlignment=Center
|
||||||
|
UseTextShadow=false
|
||||||
|
InactiveFocusedTabColor=120,120,120
|
||||||
|
InactiveTextColor=120,120,120
|
||||||
|
ActiveTextShadowColor=255,255,255
|
||||||
|
InactiveTextShadowColor=255,255,255
|
||||||
|
InactiveUnfocusedTabColor=120,120,120
|
||||||
|
TextShadowOffsetX=0
|
||||||
|
TextShadowOffsetY=1
|
||||||
|
LeftButtons=XIA
|
||||||
|
Shadow=false
|
||||||
|
Animation=1
|
||||||
|
|
||||||
|
[Layout]
|
||||||
|
BorderLeft=0
|
||||||
|
BorderRight=0
|
||||||
|
BorderBottom=0
|
||||||
|
TitleEdgeTop=8
|
||||||
|
TitleEdgeBottom=8
|
||||||
|
TitleEdgeLeft=16
|
||||||
|
TitleEdgeRight=16
|
||||||
|
TitleBorderLeft=50
|
||||||
|
TitleBorderRight=50
|
||||||
|
TitleHeight=16
|
||||||
|
ButtonWidth=16
|
||||||
|
ButtonHeight=16
|
||||||
|
ButtonSpacing=12
|
||||||
|
ButtonMarginTop=2
|
||||||
|
ButtonMarginLeft=4
|
||||||
|
ButtonMarginRight=4
|
||||||
|
ExplicitButtonSpacer=0
|
||||||
|
PaddingTop=22
|
||||||
|
PaddingBottom=85
|
||||||
|
PaddingRight=42
|
||||||
|
PaddingLeft=42
|
||||||
|
TitleEdgeTopMaximized=8
|
||||||
|
TitleEdgeBottomMaximized=8
|
||||||
|
TitleEdgeLeftMaximized=16
|
||||||
|
TitleEdgeRightMaximized=16
|
|
@ -0,0 +1,528 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="119.46667"
|
||||||
|
height="29.866667"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||||
|
sodipodi:docname="alldesktops.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3913">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3915" />
|
||||||
|
<stop
|
||||||
|
id="stop3921"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3917" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3868">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#5a5a5a;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3870" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#646464;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3872" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3813">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#666666;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3815" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#636363;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3817" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e5e5df;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3806-3-5-6">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#303030;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3808-6-9-1" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#232323;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3810-4-6-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3793"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3828"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-6.5,-80.335554)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-4"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-8">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-3" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6e0;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3807"
|
||||||
|
x1="11"
|
||||||
|
y1="15.75"
|
||||||
|
x2="11"
|
||||||
|
y2="8.25"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3813"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="29.5"
|
||||||
|
y1="15.2"
|
||||||
|
x2="29.5"
|
||||||
|
y2="8.8000002"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231"
|
||||||
|
id="linearGradient3807-1"
|
||||||
|
x1="10"
|
||||||
|
y1="7.0000038"
|
||||||
|
x2="10"
|
||||||
|
y2="15.888954"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231">
|
||||||
|
<stop
|
||||||
|
id="stop4233"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e7e7e1;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-1"
|
||||||
|
id="linearGradient3807-1-1"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-1">
|
||||||
|
<stop
|
||||||
|
id="stop4233-6"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-7"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#979791;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ef;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367-8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient4361"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-41.25,0)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3127"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3154"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3159"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-249.25,-54.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-9"
|
||||||
|
id="linearGradient3159-0"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-9">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-9"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-5">
|
||||||
|
<stop
|
||||||
|
id="stop4233-41"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-73"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-7"
|
||||||
|
id="linearGradient3159-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-7"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-2"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-73"
|
||||||
|
id="linearGradient3807-1-7"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-73">
|
||||||
|
<stop
|
||||||
|
id="stop4233-1"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-85"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8.7123932"
|
||||||
|
inkscape:cx="36.961458"
|
||||||
|
inkscape:cy="12.146974"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="706"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="false"
|
||||||
|
inkscape:snap-nodes="false"
|
||||||
|
inkscape:snap-others="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1"
|
||||||
|
spacingy="1" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4433">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1092.653)">
|
||||||
|
<g
|
||||||
|
id="4"
|
||||||
|
inkscape:label="#g3842"
|
||||||
|
transform="translate(86.4,-3.2)" />
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="matrix(0.01754682,0,0,-0.01754674,2.8814742,1117.5909)"
|
||||||
|
style="stroke-width:1.26053345">
|
||||||
|
<path
|
||||||
|
id="path899"
|
||||||
|
style="fill:#70c4bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new;opacity:0"
|
||||||
|
d="m 519.66906,-52.931017 c 251.79998,0 455.92005,204.124137 455.92005,455.928407 0,251.7946 -204.12007,455.92004 -455.92005,455.92004 -251.79888,0 -455.923844,-204.12544 -455.923844,-455.92004 0,-251.80427 204.124964,-455.928407 455.923844,-455.928407"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 519.66882,4.0574116 c 220.32614,0 398.93214,178.6095584 398.93214,398.9394584 0,220.32143 -178.606,398.93213 -398.93214,398.93213 -220.32518,0 -398.93546,-178.6107 -398.93546,-398.93213 0,-220.3299 178.61028,-398.9394584 398.93546,-398.9394584"
|
||||||
|
style="fill:#70c4bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path14-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 519.66714,32.559364 c 204.58568,0 370.4375,165.849266 370.4375,370.437756 0,204.58088 -165.85182,370.42993 -370.4375,370.42993 -204.58465,0 -370.43746,-165.84905 -370.43746,-370.42993 0,-204.58849 165.85281,-370.437756 370.43746,-370.437756"
|
||||||
|
style="fill:#7dd1c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456909;enable-background:new"
|
||||||
|
id="path16-6" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754674,24.895818,1118.601)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path901"
|
||||||
|
style="opacity:0;fill:#8cd6d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
d="m 461.86451,4.6374457 c 251.80184,0 455.92334,204.1245143 455.92334,455.9292243 0,251.79508 -204.1215,455.92086 -455.92334,455.92086 -251.8007,0 -455.927123,-204.12578 -455.927123,-455.92086 0,-251.80471 204.126423,-455.9292243 455.927123,-455.9292243"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86427,61.630094 c 220.3255,0 398.9309,178.608046 398.9309,398.936056 0,220.31958 -178.6054,398.92873 -398.9309,398.92873 -220.32449,0 -398.934211,-178.60915 -398.934211,-398.92873 0,-220.32801 178.609721,-398.936056 398.934211,-398.936056"
|
||||||
|
style="fill:#70c4bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path14-3-7" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86261,90.128947 c 204.58657,0 370.43918,165.849133 370.43918,370.437453 0,204.58074 -165.85261,370.42963 -370.43918,370.42963 -204.58563,0 -370.439171,-165.84889 -370.439171,-370.42963 0,-204.58832 165.853541,-370.437453 370.439171,-370.437453"
|
||||||
|
style="fill:#8cd6d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path16-5" />
|
||||||
|
<ellipse
|
||||||
|
cy="-460.5625"
|
||||||
|
cx="461.86261"
|
||||||
|
id="path4179"
|
||||||
|
style="opacity:1;fill:#3d9388;fill-opacity:1;stroke:none;stroke-width:121.58003998;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new"
|
||||||
|
rx="144.67691"
|
||||||
|
ry="144.67685"
|
||||||
|
transform="scale(1,-1)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754682,47.895819,1118.7002)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86449,10.287447 c 251.80179,0 455.92339,204.123583 455.92339,455.927123 0,251.79395 -204.1216,455.91881 -455.92339,455.91881 -251.80072,0 -455.927139,-204.12486 -455.927139,-455.91881 0,-251.80354 204.126419,-455.927123 455.927139,-455.927123"
|
||||||
|
style="fill:#58b4aa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;opacity:0"
|
||||||
|
id="path903" />
|
||||||
|
<path
|
||||||
|
id="path14-2"
|
||||||
|
style="fill:#58b4aa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933"
|
||||||
|
d="m 461.86425,67.278048 c 220.32644,0 398.93274,178.608032 398.93274,398.936002 0,220.31958 -178.6063,398.92872 -398.93274,398.92872 -220.3255,0 -398.93601,-178.60914 -398.93601,-398.92872 0,-220.32797 178.61051,-398.936002 398.93601,-398.936002"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path16-9"
|
||||||
|
style="fill:#58b4aa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921"
|
||||||
|
d="m 461.86262,95.778579 c 204.58658,0 370.43917,165.848391 370.43917,370.435761 0,204.57979 -165.85259,370.4279 -370.43917,370.4279 -204.58561,0 -370.439175,-165.84811 -370.439175,-370.4279 0,-204.58737 165.853565,-370.435761 370.439175,-370.435761"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<ellipse
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
ry="144.67619"
|
||||||
|
rx="144.67691"
|
||||||
|
style="opacity:1;fill:#3d9388;fill-opacity:1;stroke:none;stroke-width:121.57977295;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new"
|
||||||
|
id="path4179-6"
|
||||||
|
cx="461.86261"
|
||||||
|
cy="-466.21042" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-223,1371.1575)"
|
||||||
|
style="display:inline"
|
||||||
|
id="inactive-center"
|
||||||
|
inkscape:label="#inactive-center">
|
||||||
|
<rect
|
||||||
|
ry="1.6930764e-05"
|
||||||
|
y="-268.63782"
|
||||||
|
x="293"
|
||||||
|
height="16"
|
||||||
|
width="16"
|
||||||
|
id="rect1561-02-6"
|
||||||
|
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47432083;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
|
||||||
|
<g
|
||||||
|
inkscape:label="#g965"
|
||||||
|
transform="translate(294,-267.63782)"
|
||||||
|
id="titlebutton-close-backdrop-1-3-4"
|
||||||
|
style="enable-background:new">
|
||||||
|
<g
|
||||||
|
transform="translate(-4.9999997,-1033.3622)"
|
||||||
|
id="g6-97-7-3">
|
||||||
|
<path
|
||||||
|
style="fill:#5d5d5d;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 12.000061,1047.3622 c 3.865929,0 6.999939,-3.134 6.999939,-7 0,-3.866 -3.13401,-7 -6.999939,-7 -3.8660427,0 -7.0000616,3.134 -7.0000616,7 0,3.866 3.1340189,7 7.0000616,7"
|
||||||
|
id="path2-361-5-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(29.429759,0.66259998)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,159 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="close.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-Background {
|
||||||
|
color:#2c2c2c;
|
||||||
|
stop-color:#2c2c2c;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#949494"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4.327261"
|
||||||
|
inkscape:cx="18.834085"
|
||||||
|
inkscape:cy="-5.3151405"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:snap-nodes="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="false"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1.0666667"
|
||||||
|
spacingy="1.0666667" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1098.5197)">
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(-0.21336753,-26.948412)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
height="100%"
|
||||||
|
width="100%"
|
||||||
|
transform="translate(28.709753,-26.948412)"
|
||||||
|
id="deactivated-inactive-center"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
y="0"
|
||||||
|
x="0" />
|
||||||
|
<circle
|
||||||
|
style="fill:#bf616a;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="active-center"
|
||||||
|
cx="-27.733339"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
id="inactive-center"
|
||||||
|
cx="92.266663"
|
||||||
|
cy="1111.853"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="translate(123.31733,23.039191)">
|
||||||
|
<circle
|
||||||
|
style="fill:#bf616a"
|
||||||
|
id="circle2545"
|
||||||
|
cx="-111.05067"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8" />
|
||||||
|
<path
|
||||||
|
d="m -114.58592,1084.7787 c -0.12775,0 -0.2555,0.049 -0.35339,0.1465 -0.19578,0.1959 -0.19578,0.5112 0,0.707 l 3.1816,3.1816 -3.1816,3.1816 c -0.19578,0.1959 -0.19578,0.5112 0,0.7071 0.19578,0.1958 0.51118,0.1958 0.70704,0 l 3.1816,-3.1816 3.1816,3.1816 c 0.19578,0.1958 0.51114,0.1958 0.70704,0 0.19578,-0.1959 0.19578,-0.5112 0,-0.7071 l -3.1816,-3.1816 3.1816,-3.1816 c 0.19578,-0.1958 0.19578,-0.5111 0,-0.707 -0.19578,-0.1959 -0.51118,-0.1959 -0.70704,0 l -3.1816,3.1816 -3.1816,-3.1816 c -0.0979,-0.098 -0.22564,-0.1465 -0.35339,-0.1465 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2869" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="translate(123.31733,23.039191)">
|
||||||
|
<circle
|
||||||
|
style="fill:#bf616a;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2547"
|
||||||
|
cx="-71.050667"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8" />
|
||||||
|
<circle
|
||||||
|
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
||||||
|
id="circle2807"
|
||||||
|
cx="-71.050667"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8" />
|
||||||
|
<path
|
||||||
|
d="m -74.58593,1084.7787 c -0.12775,0 -0.2555,0.049 -0.35339,0.1465 -0.19578,0.1959 -0.19578,0.5112 0,0.707 l 3.1816,3.1816 -3.1816,3.1816 c -0.19578,0.1959 -0.19578,0.5112 0,0.7071 0.19578,0.1958 0.51118,0.1958 0.70704,0 l 3.18161,-3.1816 3.1816,3.1816 c 0.19578,0.1958 0.51114,0.1958 0.70704,0 0.19578,-0.1959 0.19578,-0.5112 0,-0.7071 l -3.1816,-3.1816 3.1816,-3.1816 c 0.19578,-0.1958 0.19578,-0.5111 0,-0.707 -0.19578,-0.1959 -0.51117,-0.1959 -0.70704,0 l -3.1816,3.1816 -3.18161,-3.1816 c -0.0979,-0.098 -0.22564,-0.1465 -0.35339,-0.1465 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path2928" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-inactive-center"
|
||||||
|
transform="translate(123.31733,54.817039)">
|
||||||
|
<circle
|
||||||
|
id="circle1291"
|
||||||
|
cx="-111.05067"
|
||||||
|
cy="1088.8138"
|
||||||
|
r="8"
|
||||||
|
class="ColorScheme-Text"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.3" />
|
||||||
|
<path
|
||||||
|
d="m -114.58592,1084.7787 c -0.12775,0 -0.2555,0.049 -0.35339,0.1465 -0.19578,0.1959 -0.19578,0.5112 0,0.707 l 3.1816,3.1816 -3.1816,3.1816 c -0.19578,0.1959 -0.19578,0.5112 0,0.7071 0.19578,0.1958 0.51118,0.1958 0.70704,0 l 3.1816,-3.1816 3.1816,3.1816 c 0.19578,0.1958 0.51114,0.1958 0.70704,0 0.19578,-0.1959 0.19578,-0.5112 0,-0.7071 l -3.1816,-3.1816 3.1816,-3.1816 c 0.19578,-0.1958 0.19578,-0.5111 0,-0.707 -0.19578,-0.1959 -0.51118,-0.1959 -0.70704,0 l -3.1816,3.1816 -3.1816,-3.1816 c -0.0979,-0.098 -0.22564,-0.1465 -0.35339,-0.1465 z"
|
||||||
|
style="fill:#ffffff;paint-order:stroke fill markers"
|
||||||
|
id="path1293" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,697 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="355"
|
||||||
|
height="310"
|
||||||
|
id="svg3642"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||||
|
sodipodi:docname="decoration.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
version="1.0"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#585858"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.5"
|
||||||
|
inkscape:cx="191"
|
||||||
|
inkscape:cy="126"
|
||||||
|
inkscape:current-layer="svg3642"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
width="48px"
|
||||||
|
height="48px"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
objecttolerance="9"
|
||||||
|
gridtolerance="13"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"
|
||||||
|
inkscape:snap-midpoints="true"
|
||||||
|
inkscape:snap-smooth-nodes="true"
|
||||||
|
inkscape:snap-intersection-paths="true"
|
||||||
|
inkscape:object-paths="true"
|
||||||
|
inkscape:snap-nodes="true"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2555"
|
||||||
|
enabled="true"
|
||||||
|
visible="true"
|
||||||
|
empspacing="5"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
color="#e51aa1"
|
||||||
|
opacity="0.14901961"
|
||||||
|
empcolor="#0065ff"
|
||||||
|
empopacity="0.25098039" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<defs
|
||||||
|
id="defs3">
|
||||||
|
<style
|
||||||
|
id="current-color-scheme"
|
||||||
|
type="text/css">.ColorScheme-Text {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}
|
||||||
|
.ColorScheme-Background {
|
||||||
|
color:#2c2c2c;
|
||||||
|
stop-color:#2c2c2c;
|
||||||
|
}
|
||||||
|
.ColorScheme-HeaderBackground {
|
||||||
|
color:#242424;
|
||||||
|
stop-color:#242424;
|
||||||
|
}
|
||||||
|
.ColorScheme-Highlight {
|
||||||
|
color:#e0e0e0;
|
||||||
|
stop-color:#e0e0e0;
|
||||||
|
}</style>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="radialGradient965"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-4.0000019,3.2964352e-6,1.0208917e-6,-4.799999,688.08329,1147.8707)"
|
||||||
|
cx="48.27084"
|
||||||
|
cy="178.72313"
|
||||||
|
fx="48.27084"
|
||||||
|
fy="178.72313"
|
||||||
|
r="17.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="linearGradient5688"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0117647,0,137.2353)"
|
||||||
|
x1="398"
|
||||||
|
y1="138.13953"
|
||||||
|
x2="398"
|
||||||
|
y2="221.16278" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="radialGradient967"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-2.5714291,8.7200345e-7,-2.0148289e-7,-1.9428564,594.12508,638.00067)"
|
||||||
|
cx="48.270844"
|
||||||
|
cy="181.17691"
|
||||||
|
fx="48.270844"
|
||||||
|
fy="181.17691"
|
||||||
|
r="17.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="linearGradient5688-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0117647,0,137.15731)"
|
||||||
|
x1="398"
|
||||||
|
y1="138.13954"
|
||||||
|
x2="398"
|
||||||
|
y2="171.74419" />
|
||||||
|
<linearGradient
|
||||||
|
id="shadow_active">
|
||||||
|
<stop
|
||||||
|
id="stop7028"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.92168677;" />
|
||||||
|
<stop
|
||||||
|
id="stop7026"
|
||||||
|
offset="0.125"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.74096388;" />
|
||||||
|
<stop
|
||||||
|
id="stop6834"
|
||||||
|
offset="0.25"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.60240966;" />
|
||||||
|
<stop
|
||||||
|
id="stop6832"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.33132529;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.10843374;"
|
||||||
|
offset="0.75"
|
||||||
|
id="stop6836" />
|
||||||
|
<stop
|
||||||
|
id="stop6894"
|
||||||
|
offset="0.875"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.03921569;" />
|
||||||
|
<stop
|
||||||
|
id="stop6721"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="linearGradient6612"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0285694,-215,50.00005)"
|
||||||
|
x1="396"
|
||||||
|
y1="64.166748"
|
||||||
|
x2="396"
|
||||||
|
y2="14.583314" />
|
||||||
|
<linearGradient
|
||||||
|
id="shadow_inactive">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop6719-25" />
|
||||||
|
<stop
|
||||||
|
id="stop6834-1"
|
||||||
|
offset="0.25"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.63855422;" />
|
||||||
|
<stop
|
||||||
|
id="stop6832-0"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.33734939;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.10843374;"
|
||||||
|
offset="0.75"
|
||||||
|
id="stop6836-0" />
|
||||||
|
<stop
|
||||||
|
id="stop6894-7"
|
||||||
|
offset="0.875"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.03921569;" />
|
||||||
|
<stop
|
||||||
|
id="stop6721-4"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="linearGradient6612-5"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(200,5)"
|
||||||
|
x1="396"
|
||||||
|
y1="66"
|
||||||
|
x2="396"
|
||||||
|
y2="30" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="linearGradient1126"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0133333,0,0,1,-3.2650058,140)"
|
||||||
|
x1="348.49344"
|
||||||
|
y1="99"
|
||||||
|
x2="279.41449"
|
||||||
|
y2="99" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_active"
|
||||||
|
id="radialGradient1306"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(9.4919759e-7,-2.9142759,4.0000007,1.1504403e-6,-211.66707,980.01628)"
|
||||||
|
cx="296.47726"
|
||||||
|
cy="80.416679"
|
||||||
|
fx="296.47726"
|
||||||
|
fy="80.416679"
|
||||||
|
r="17.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="linearGradient1389"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.0133333,0,0,1,-3.2650058,140)"
|
||||||
|
x1="348.49344"
|
||||||
|
y1="99.01548"
|
||||||
|
x2="304.08554"
|
||||||
|
y2="99.01548" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#shadow_inactive"
|
||||||
|
id="radialGradient969"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-3.7607938e-7,-2.0571166,2.5714318,-5.1233137e-7,263.21413,725.83432)"
|
||||||
|
cx="296.45123"
|
||||||
|
cy="80.416672"
|
||||||
|
fx="296.45123"
|
||||||
|
fy="80.416672"
|
||||||
|
r="17.5" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
id="decoration-bottom"
|
||||||
|
transform="translate(-215,-81)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient5688);fill-opacity:1;stroke:none;stroke-width:1.00587"
|
||||||
|
d="m 325,289 v 73 h 145 v -73 z"
|
||||||
|
id="path6217-8" />
|
||||||
|
<path
|
||||||
|
id="path6214-7"
|
||||||
|
d="M 470,289 H 325 v 1 h 145 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.413845"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path6211-7"
|
||||||
|
d="M 470,277 H 325 v 12 h 145 z"
|
||||||
|
class="ColorScheme-Background"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.9" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-bottom"
|
||||||
|
transform="translate(145,-80.92202)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient5688-2);fill-opacity:1;stroke:none;stroke-width:1.00587"
|
||||||
|
d="m 325,288.92202 v 73 h 145 v -73 z"
|
||||||
|
id="path6217-8-2" />
|
||||||
|
<path
|
||||||
|
id="path6214-7-4"
|
||||||
|
d="M 470,288.92202 H 325 v 1 h 145 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.392425"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path6211-7-5"
|
||||||
|
d="M 470,276.92202 H 325 v 12 h 145 z"
|
||||||
|
class="ColorScheme-Background"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.9" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-385,-94.000015)"
|
||||||
|
id="decoration-bottomleft">
|
||||||
|
<path
|
||||||
|
id="rect7023-1"
|
||||||
|
d="m 81,196 c 0,6.648 5.352,12 12,12 h 17 v -12 z"
|
||||||
|
transform="translate(385,94.000015)"
|
||||||
|
class="ColorScheme-Background"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.9" />
|
||||||
|
<path
|
||||||
|
id="rect5099-9-5"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient965);fill-opacity:1;stroke:none"
|
||||||
|
d="M 424,290.00001 V 375 h 71 v -72.99999 h -17 c -6.648,0 -12,-5.352 -12,-12 z" />
|
||||||
|
<g
|
||||||
|
id="g6659-3-3-0"
|
||||||
|
transform="matrix(1,0,0,0.99932111,145,13.317125)" />
|
||||||
|
<path
|
||||||
|
id="path168"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 465,290.00001 c 0,7.202 5.798,13 13,13 h 17 v -1 h -17 c -6.648,0 -12,-5.352 -12,-12 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-bottomleft"
|
||||||
|
transform="translate(0,-90)">
|
||||||
|
<path
|
||||||
|
id="path4207"
|
||||||
|
d="m 441,196 c 0,6.648 5.352,12 12,12 h 14 3 v -12 z"
|
||||||
|
transform="translate(0,90)"
|
||||||
|
class="ColorScheme-Background"
|
||||||
|
fill="currentColor"
|
||||||
|
style="opacity:0.9" />
|
||||||
|
<path
|
||||||
|
id="rect5099-9-6"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient967);fill-opacity:1;stroke:none"
|
||||||
|
d="m 399,286 v 84.99999 h 71 V 298 h -3 -14 c -6.648,0 -12,-5.35201 -12,-12 z"
|
||||||
|
sodipodi:nodetypes="cccccscc" />
|
||||||
|
<g
|
||||||
|
id="g6659-3-3-4"
|
||||||
|
transform="matrix(1,0,0,0.99932111,120,9.3796146)" />
|
||||||
|
<path
|
||||||
|
id="path188"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 440,286 c 0,7.20199 5.798,13 13,13 h 14 l 3,-2e-5 V 298 h -3 -14 c -6.648,0 -12,-5.35201 -12,-12 z"
|
||||||
|
sodipodi:nodetypes="csccccscc" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-bottomleft"
|
||||||
|
id="decoration-bottomright"
|
||||||
|
transform="matrix(-1,0,0,1,365,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-inactive-bottomleft"
|
||||||
|
id="decoration-inactive-bottomright"
|
||||||
|
transform="matrix(-1,0,0,1,1085,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-center"
|
||||||
|
transform="translate(0,-90)">
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 470,200 v 86 h 145 v -86 z"
|
||||||
|
id="path40329" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-left"
|
||||||
|
id="decoration-right"
|
||||||
|
transform="matrix(-1,0,0,1,365,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-topleft"
|
||||||
|
transform="translate(140,-121.063)">
|
||||||
|
<path
|
||||||
|
id="rect6520-3-2-6"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient969);fill-opacity:1;stroke:none"
|
||||||
|
d="m 399,64 v 52 h 42 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="translate(-140,115.063)"
|
||||||
|
sodipodi:nodetypes="cccssccc" />
|
||||||
|
<path
|
||||||
|
id="rect5073-4-9-6"
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 313,201.063 c -6.648,0 -12,5.352 -12,12 v 17.93555 0.0644 h 29 v -30 z" />
|
||||||
|
<path
|
||||||
|
id="path955"
|
||||||
|
style="opacity:0.05;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
|
||||||
|
d="m 313,201.063 c -6.648,0 -12,5.352 -12,12 v 1 c 0,-6.648 5.352,-12 12,-12 h 17 v -1 z" />
|
||||||
|
<path
|
||||||
|
id="path202"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 453,79 c -7.202,0 -13,5.798 -13,13 v 18 h 1 V 92 c 0,-6.648 5.352,-12 12,-12 h 17 v -1 z"
|
||||||
|
transform="translate(-140,121.063)" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 110,110 v 86 h 145 v -86 z"
|
||||||
|
id="decoration-center" />
|
||||||
|
<g
|
||||||
|
id="decoration-top"
|
||||||
|
transform="translate(-215,-95.99995)">
|
||||||
|
<path
|
||||||
|
id="path6055-5"
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient6612);fill-opacity:1;stroke:none;stroke-width:1.01418"
|
||||||
|
d="M 110,64 V 86 H 255 V 64 Z"
|
||||||
|
transform="translate(215,89.99995)"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
id="path6098-4"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 110,85 v 1 h 145 v -1 z"
|
||||||
|
transform="translate(215,89.99995)" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 325,175.99994 v 30.00002 h 145 v -30.00002 z"
|
||||||
|
id="path6092-3" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path966"
|
||||||
|
d="m 325,175.99994 v 1.00001 h 145 v -1.00001 z"
|
||||||
|
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.182575" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-left"
|
||||||
|
transform="translate(-239.875,-87)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient1126);fill-opacity:1;stroke:none;stroke-width:1.00664"
|
||||||
|
d="m 278.875,197 v 86 h 42 v -86 z"
|
||||||
|
id="path6345-1" />
|
||||||
|
<path
|
||||||
|
id="path6342-6"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 80,116 v 86 h 1 v -86 z"
|
||||||
|
transform="translate(239.875,81)" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 576,121 v 86 h 29 v -86 z"
|
||||||
|
id="path6339-9"
|
||||||
|
transform="translate(-255.125,76)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-top"
|
||||||
|
transform="translate(145,-96)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient6612-5);fill-opacity:1;stroke:none"
|
||||||
|
d="M 525,19 V 41 H 670 V 19 Z"
|
||||||
|
transform="translate(-200,135)"
|
||||||
|
id="path6055-5-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
transform="translate(-145,90)"
|
||||||
|
d="m 470,85 v 1 h 145 v -1 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
id="path6098-4-8" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 325,176 v 30 h 145 v -30 z"
|
||||||
|
id="path6092-3-3" />
|
||||||
|
<path
|
||||||
|
style="opacity:0.05;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.182574"
|
||||||
|
d="m 325,176 v 1 h 145 v -1 z"
|
||||||
|
id="path996"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="decoration-inactive-left"
|
||||||
|
transform="translate(120.125,-87.01548)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.5;fill:url(#linearGradient1389);fill-opacity:1;stroke:none;stroke-width:1.00664"
|
||||||
|
d="m 278.875,197.01548 v 86 l 42,-0.0155 v -85.98452 z"
|
||||||
|
id="path6345-1-1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
id="path6342-6-6"
|
||||||
|
d="m 319.875,197.01548 v 86 h 1 v -86 z"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.447214"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 320.875,197.01548 v 86 h 29 v -86 z"
|
||||||
|
id="path6339-9-9" />
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
style="fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.341565"
|
||||||
|
id="shadow-hint-top-margin"
|
||||||
|
width="4"
|
||||||
|
height="21"
|
||||||
|
x="174"
|
||||||
|
y="58" />
|
||||||
|
<rect
|
||||||
|
style="fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.08263"
|
||||||
|
id="shadow-hint-bottom-margin"
|
||||||
|
width="4"
|
||||||
|
height="72"
|
||||||
|
x="175"
|
||||||
|
y="209" />
|
||||||
|
<rect
|
||||||
|
style="fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.698638"
|
||||||
|
id="shadow-hint-right-margin"
|
||||||
|
width="41"
|
||||||
|
height="4"
|
||||||
|
x="285"
|
||||||
|
y="140" />
|
||||||
|
<rect
|
||||||
|
style="fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.519361"
|
||||||
|
id="shadow-hint-left-margin"
|
||||||
|
width="41"
|
||||||
|
height="4"
|
||||||
|
x="39"
|
||||||
|
y="134" />
|
||||||
|
<rect
|
||||||
|
id="hint-top-margin"
|
||||||
|
width="4"
|
||||||
|
height="52"
|
||||||
|
x="186"
|
||||||
|
y="58"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:0.962763" />
|
||||||
|
<rect
|
||||||
|
id="hint-bottom-margin"
|
||||||
|
width="4"
|
||||||
|
height="85"
|
||||||
|
x="187"
|
||||||
|
y="196"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:1.04257" />
|
||||||
|
<rect
|
||||||
|
id="hint-right-margin"
|
||||||
|
width="4"
|
||||||
|
height="71"
|
||||||
|
x="129"
|
||||||
|
y="-326"
|
||||||
|
transform="rotate(90)"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:1.08465" />
|
||||||
|
<rect
|
||||||
|
id="hint-left-margin"
|
||||||
|
width="4"
|
||||||
|
height="71"
|
||||||
|
x="126"
|
||||||
|
y="-110"
|
||||||
|
transform="rotate(90)"
|
||||||
|
style="fill:#00ff29;fill-opacity:1;stroke:none;stroke-width:0.892451" />
|
||||||
|
<g
|
||||||
|
transform="matrix(-1,0,0,1,535,-121.0625)"
|
||||||
|
id="decoration-topleft">
|
||||||
|
<path
|
||||||
|
id="path1019"
|
||||||
|
style="opacity:0.5;fill:url(#radialGradient1306);fill-opacity:1;stroke:none"
|
||||||
|
d="m 39,64 v 52 H 81 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)" />
|
||||||
|
<path
|
||||||
|
id="path1023"
|
||||||
|
class="ColorScheme-HeaderBackground"
|
||||||
|
fill="currentColor"
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 18 h -29 v -30 z" />
|
||||||
|
<path
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 0.59961 c 0,-6.4264 -5.352,-11.59961 -12,-11.59961 h -17 v -1 z"
|
||||||
|
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
|
||||||
|
id="path961" />
|
||||||
|
<path
|
||||||
|
id="path187"
|
||||||
|
style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 93,85 c -7.202,0 -13,5.798 -13,13 v 18 h 1 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 v -1 z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)" />
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-topleft"
|
||||||
|
id="decoration-topright"
|
||||||
|
transform="matrix(-1,0,0,1,365,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-inactive-topleft"
|
||||||
|
id="decoration-inactive-topright"
|
||||||
|
transform="matrix(-1,0,0,1,1085,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#decoration-inactive-left"
|
||||||
|
id="decoration-inactive-right"
|
||||||
|
transform="matrix(-1,0,0,1,1085,0)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
<g
|
||||||
|
id="mask-right"
|
||||||
|
transform="matrix(-1,0,0,1,1314.875,-87)">
|
||||||
|
<path
|
||||||
|
d="m 278.875,197 v 86 h 42 v -86 z"
|
||||||
|
id="path2127"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
d="m 576,121 v 86 h 29 v -86 z"
|
||||||
|
id="path2131"
|
||||||
|
transform="translate(-255.125,76)" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 820,110 v 86 h 145 v -86 z"
|
||||||
|
id="mask-center" />
|
||||||
|
<g
|
||||||
|
id="mask-top"
|
||||||
|
transform="translate(495,-95.99995)">
|
||||||
|
<path
|
||||||
|
id="path1415"
|
||||||
|
d="M 110,64 V 86 H 255 V 64 Z"
|
||||||
|
transform="translate(215,89.99995)"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
d="m 325,175.99994 v 30.00002 h 145 v -30.00002 z"
|
||||||
|
id="path1419" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="mask-left"
|
||||||
|
transform="translate(470.125,-87)">
|
||||||
|
<path
|
||||||
|
d="m 278.875,197 v 86 h 42 v -86 z"
|
||||||
|
id="path1425"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
d="m 576,121 v 86 h 29 v -86 z"
|
||||||
|
id="path1429"
|
||||||
|
transform="translate(-255.125,76)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-1,0,0,1,1245,-121.0625)"
|
||||||
|
id="mask-topleft">
|
||||||
|
<path
|
||||||
|
id="path1439"
|
||||||
|
d="m 39,64 v 52 H 81 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
id="path1441"
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 18 h -29 v -30 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(540,-121.0625)"
|
||||||
|
id="mask-topright">
|
||||||
|
<path
|
||||||
|
id="path2121"
|
||||||
|
d="m 39,64 v 52 H 81 V 98 c 0,-6.648 5.352,-12 12,-12 h 17 V 64 Z"
|
||||||
|
transform="matrix(-1,0,0,1,535,115.0625)"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
id="path2123"
|
||||||
|
d="m 442,201.0625 c 6.648,0 12,5.352 12,12 v 18 h -29 v -30 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="mask-bottom"
|
||||||
|
transform="translate(495,-80.92202)">
|
||||||
|
<path
|
||||||
|
d="m 325,288.92202 v 73 h 145 v -73 z"
|
||||||
|
id="path2525"
|
||||||
|
style="fill:none" />
|
||||||
|
<path
|
||||||
|
id="path2529"
|
||||||
|
d="M 470,276.92202 H 325 v 12 h 145 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="mask-bottomleft"
|
||||||
|
transform="translate(350,-90)">
|
||||||
|
<path
|
||||||
|
id="path2533"
|
||||||
|
d="m 441,196 c 0,6.648 5.352,12 12,12 h 14 3 v -12 z"
|
||||||
|
transform="translate(0,90)" />
|
||||||
|
<path
|
||||||
|
id="path2535"
|
||||||
|
d="m 399,286 v 84.99999 h 71 V 298 h -3 -14 c -6.648,0 -12,-5.35201 -12,-12 z"
|
||||||
|
style="fill:none" />
|
||||||
|
<g
|
||||||
|
id="g2537"
|
||||||
|
transform="matrix(1,0,0,0.99932111,120,9.3796146)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="mask-bottomright"
|
||||||
|
transform="matrix(-1,0,0,1,1435,-90)">
|
||||||
|
<path
|
||||||
|
id="path2629"
|
||||||
|
d="m 441,196 c 0,6.648 5.352,12 12,12 h 14 3 v -12 z"
|
||||||
|
transform="translate(0,90)" />
|
||||||
|
<path
|
||||||
|
id="path2631"
|
||||||
|
d="m 399,286 v 84.99999 h 71 V 298 h -3 -14 c -6.648,0 -12,-5.35201 -12,-12 z"
|
||||||
|
style="fill:none" />
|
||||||
|
<g
|
||||||
|
id="g2633"
|
||||||
|
transform="matrix(1,0,0,0.99932111,120,9.3796146)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 21 KiB |
|
@ -0,0 +1,523 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="119.46667"
|
||||||
|
height="29.866667"
|
||||||
|
id="svg4428"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||||
|
sodipodi:docname="keepabove.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4430">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3913">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3915" />
|
||||||
|
<stop
|
||||||
|
id="stop3921"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3917" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3868">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#5a5a5a;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3870" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#646464;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3872" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3813">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#666666;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3815" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#636363;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3817" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e5e5df;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3806-3-5-6">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#303030;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3808-6-9-1" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#232323;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3810-4-6-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3793"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3828"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-6.5,-80.335554)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-4"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-8">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787-8"
|
||||||
|
id="linearGradient3835-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1666666,0,0,1.0769231,-35.5,-1105.6978)"
|
||||||
|
x1="40"
|
||||||
|
y1="1044.3622"
|
||||||
|
x2="40"
|
||||||
|
y2="1032.3622" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3787-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ee;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3789-3" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#e6e6e0;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3791-3" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3787"
|
||||||
|
id="linearGradient3807"
|
||||||
|
x1="11"
|
||||||
|
y1="15.75"
|
||||||
|
x2="11"
|
||||||
|
y2="8.25"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3813"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="29.5"
|
||||||
|
y1="15.2"
|
||||||
|
x2="29.5"
|
||||||
|
y2="8.8000002"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231"
|
||||||
|
id="linearGradient3807-1"
|
||||||
|
x1="10"
|
||||||
|
y1="7.0000038"
|
||||||
|
x2="10"
|
||||||
|
y2="15.888954"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231">
|
||||||
|
<stop
|
||||||
|
id="stop4233"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e7e7e1;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-1"
|
||||||
|
id="linearGradient3807-1-1"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-1">
|
||||||
|
<stop
|
||||||
|
id="stop4233-6"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-7"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#979791;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4363-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#f5f5ef;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop4365-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dadad4;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop4367-8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient4361"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-41.25,0)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3127"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3154"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7"
|
||||||
|
id="linearGradient3159"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-249.25,-54.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-9"
|
||||||
|
id="linearGradient3159-0"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-9">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-9"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-5">
|
||||||
|
<stop
|
||||||
|
id="stop4233-41"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-73"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-7-7"
|
||||||
|
id="linearGradient3159-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1.1875,0,0,1,-262.25,-55.99998)"
|
||||||
|
x1="248.63158"
|
||||||
|
y1="79"
|
||||||
|
x2="248.63158"
|
||||||
|
y2="58" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-7-7">
|
||||||
|
<stop
|
||||||
|
id="stop4233-4-7"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e6e6df;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-8-2"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#d1d1ca;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4231-73"
|
||||||
|
id="linearGradient3807-1-7"
|
||||||
|
x1="10"
|
||||||
|
y1="15.888976"
|
||||||
|
x2="10"
|
||||||
|
y2="7.0000262"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4231-73">
|
||||||
|
<stop
|
||||||
|
id="stop4233-1"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#e5e5de;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
id="stop4239-85"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#dadad3;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#eff0f1"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.5401481"
|
||||||
|
inkscape:cx="-15.089557"
|
||||||
|
inkscape:cy="43.762057"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="706"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:snap-nodes="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-others="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4436"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="0"
|
||||||
|
originy="0"
|
||||||
|
spacingx="1"
|
||||||
|
spacingy="1" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4433">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1092.653)">
|
||||||
|
<g
|
||||||
|
id="4"
|
||||||
|
inkscape:label="#g3842"
|
||||||
|
transform="translate(86.4,-3.2)" />
|
||||||
|
<g
|
||||||
|
id="active-center"
|
||||||
|
transform="matrix(0.01754682,0,0,-0.01754674,2.9481648,1117.6576)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path900"
|
||||||
|
style="fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new;opacity:0"
|
||||||
|
d="m 458.87896,7.858312 c 251.8005,0 455.9211,204.124598 455.9211,455.929418 0,251.79519 -204.1206,455.92109 -455.9211,455.92109 C 207.07951,919.70882 2.9541065,715.58292 2.9541065,463.78773 2.9541065,211.98291 207.07951,7.858312 458.87896,7.858312"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 458.87873,64.846581 c 220.32675,0 398.93335,178.610089 398.93335,398.940629 0,220.32211 -178.6066,398.93334 -398.93335,398.93334 -220.32584,0 -398.936639,-178.61123 -398.936639,-398.93334 0,-220.33054 178.610799,-398.940629 398.936639,-398.940629"
|
||||||
|
style="fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
id="path14" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 458.87706,93.349705 c 204.58563,0 370.43752,165.849295 370.43752,370.437775 0,204.58091 -165.85189,370.42995 -370.43752,370.42995 -204.58467,0 -370.437464,-165.84904 -370.437464,-370.42995 0,-204.58848 165.852794,-370.437774 370.437464,-370.437774"
|
||||||
|
style="fill:#ccb0d5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456921;enable-background:new"
|
||||||
|
id="path16" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hover-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754674,24.895819,1117.601)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path902"
|
||||||
|
style="fill:#d1b6da;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new;opacity:0"
|
||||||
|
d="m 461.8607,916.48751 c -251.80178,0 -455.92333,-204.1245 -455.92333,-455.9291 0,-251.79517 204.12155,-455.92095 455.92333,-455.92095 251.80066,0 455.92716,204.12578 455.92716,455.92095 0,251.8046 -204.1265,455.9291 -455.92716,455.9291"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86094,859.49667 c -220.32644,0 -398.932701,-178.60885 -398.932701,-398.93775 0,-220.32066 178.606261,-398.930619 398.932701,-398.930619 220.32546,0 398.93605,178.609959 398.93605,398.930619 0,220.3289 -178.61059,398.93775 -398.93605,398.93775"
|
||||||
|
style="fill:#c5a8ce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path14-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86259,830.99598 c -204.58656,0 -370.43915,-165.84906 -370.43915,-370.43736 0,-204.58074 165.85259,-370.429629 370.43915,-370.429629 204.58561,0 370.4392,165.848889 370.4392,370.429629 0,204.5883 -165.85359,370.43736 -370.4392,370.43736"
|
||||||
|
style="fill:#d1b6da;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path16-5" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 210.73721,382.46225 202.32908,202.32896 c 26.83838,26.8384 70.74931,26.8383 97.58706,6e-4 l 202.33081,-202.33078 -502.24695,0.001"
|
||||||
|
style="fill:#ab90b4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34457219;enable-background:new"
|
||||||
|
id="path18-6"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pressed-center"
|
||||||
|
transform="matrix(0.01754674,0,0,-0.01754682,47.895819,1117.7002)"
|
||||||
|
style="stroke-width:1.26053357">
|
||||||
|
<path
|
||||||
|
id="path904"
|
||||||
|
style="fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new;opacity:0"
|
||||||
|
d="m 461.86074,922.13339 c -251.8018,0 -455.9233,-204.1236 -455.9233,-455.9271 0,-251.79399 204.1215,-455.91885 455.9233,-455.91885 251.80066,0 455.92706,204.12486 455.92706,455.91885 0,251.8035 -204.1264,455.9271 -455.92706,455.9271"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86098,865.14441 c -220.32735,0 -398.934283,-178.60877 -398.934283,-398.9376 0,-220.32051 178.606933,-398.930389 398.934283,-398.930389 220.32634,0 398.93756,178.609879 398.93756,398.930389 0,220.32883 -178.61122,398.9376 -398.93756,398.9376"
|
||||||
|
style="fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path14-2-3" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 461.86264,836.64229 c -204.58665,0 -370.439202,-165.84838 -370.439202,-370.43573 0,-204.57983 165.852552,-370.428015 370.439202,-370.428015 204.58563,0 370.43916,165.848185 370.43916,370.428015 0,204.58735 -165.85353,370.43573 -370.43916,370.43573"
|
||||||
|
style="fill:#bfa2c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path16-9-6" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 210.73724,387.97912 202.3291,202.32797 c 26.8383,26.8383 70.7492,26.8382 97.58706,6e-4 l 202.3308,-202.32987 -502.24696,10e-4"
|
||||||
|
style="fill:#9e83a7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.34456933;enable-background:new"
|
||||||
|
id="path18-6-3"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-221,1370.1575)"
|
||||||
|
style="display:inline"
|
||||||
|
id="inactive-center"
|
||||||
|
inkscape:label="#inactive-center">
|
||||||
|
<rect
|
||||||
|
ry="1.6930764e-05"
|
||||||
|
y="-268.63782"
|
||||||
|
x="293"
|
||||||
|
height="16"
|
||||||
|
width="16"
|
||||||
|
id="rect1561-02-6"
|
||||||
|
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47432083;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
|
||||||
|
<g
|
||||||
|
inkscape:label="#g965"
|
||||||
|
transform="translate(294,-267.63782)"
|
||||||
|
id="titlebutton-close-backdrop-1-3-4"
|
||||||
|
style="enable-background:new">
|
||||||
|
<g
|
||||||
|
transform="translate(-4.9999997,-1033.3622)"
|
||||||
|
id="g6-97-7-3">
|
||||||
|
<path
|
||||||
|
style="fill:#5d5d5d;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 12.000061,1047.3622 c 3.865929,0 6.999939,-3.134 6.999939,-7 0,-3.866 -3.13401,-7 -6.999939,-7 -3.8660427,0 -7.0000616,3.134 -7.0000616,7 0,3.866 3.1340189,7 7.0000616,7"
|
||||||
|
id="path2-361-5-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<use
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
xlink:href="#inactive-center"
|
||||||
|
id="deactivated-center"
|
||||||
|
transform="translate(29.429759,0.6626)"
|
||||||
|
width="100%"
|
||||||
|
height="100%" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |