commit 065551c4428edfbcc1e17d717c8a20e9db3e8115 Author: AnthonyAxenov Date: Wed Dec 22 21:51:22 2021 +0800 Перезалив репозитория diff --git a/README.md b/README.md new file mode 100644 index 0000000..d79c111 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Окружение рабочего стола + +Установщик софта и визуала. +Используется для развёртывания привычной рабочей среды на Ubuntu. + +Для установки всего софта выполнить команду: + +```shell +sudo ./start.sh +``` + +Команда обработает все `*.sh`-скрипты из [`/install`](/install) по порядку. + +Если весь софт не нужен, то следует обращаться к этим скриптам по отдельности: + +```shell +./install/050-syncthing.sh +``` + +Также можно установить визуальное оформление (**только в среде MATE**): +* тема: [Budgie Desktop Dark Theme](https://www.pling.com/p/1276879) +* икoнки: [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/) +* курсоры: [Bridge](https://www.mate-look.org/s/Mate/p/999983/), [Capitaine Cursors](https://www.gnome-look.org/p/1148692/) diff --git a/dotfiles/.aliases b/dotfiles/.aliases new file mode 100644 index 0000000..ed922a9 --- /dev/null +++ b/dotfiles/.aliases @@ -0,0 +1,51 @@ +# Common +own() { + sudo chmod 0664 -R --preserve-root $@ + sudo chown $USER. -R --preserve-root $@ +} +#alias aliases='source ~/install/aliases && cat ~/install/aliases' +alias aliases='source ~/install/aliases' +alias zshrc='source ~/.zshrc' +alias wine='LANG=ru_RU.utf8 wine' +alias upgrade='sudo apt update && sudo apt upgrade -y' +alias duh='du -ha --max-depth=1' +alias sduh='sudo du -ha --max-depth=1' +alias ports='netstat -tulanp' + +# Navigation +alias projects='cd ~/projects' +alias Downloads='cd ~/Downloads' + +# apache2 +alias a2ls='ls -al /etc/apache2/sites-available/' +alias a2slen='ls -al /etc/apache2/sites-enabled/' +alias a2err='sudo tail /var/log/apache2/error_log' +#alias a2errclr='sudo truncate -s0 "/var/log/apache2/error_log"' +alias a2restart='sudo systemctl restart apache2' +alias a2reload='sudo systemctl reload apache2' + +# nginx +#alias nxls='ls -al /etc/nginx/sites-available/' +#alias nxlsen='ls -al /etc/nginx/sites-enabled/' +#alias nxerr='sudo tail /var/log/nginx/error.log' +#alias nxerrclr='sudo truncate -s0 "/var/log/nginx/error.log"' +#alias nxrest='sudo systemctl restart nginx' +#alias nxreload='sudo systemctl reload nginx' +#alias nxensite='~/Scripts/web/nxensite.sh' + +# mysql +alias mysqlstart='sudo systemctl start mysql' +alias mysqlstop='sudo systemctl stop mysql' +alias mysqlrestart='sudo systemctl restart mysql' +alias mysqlstatus='sudo systemctl status mysql' + +# pgsql +#alias psql='sudo -u postgres psql' + +# php +alias phprestart='sudo systemctl restart php-fpm' + +# Docker +alias dockerstart='sudo systemctl start docker' +alias dockerrestart='sudo systemctl restart docker' +alias dockerstop='sudo systemctl stop docker' diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc new file mode 100644 index 0000000..8f3053b --- /dev/null +++ b/dotfiles/.bashrc @@ -0,0 +1,119 @@ +# ~/.bashrc: executed by bash(1) for non-login shells. +# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) +# for examples + +# If not running interactively, don't do anything +case $- in + *i*) ;; + *) return;; +esac + +# don't put duplicate lines or lines starting with space in the history. +# See bash(1) for more options +HISTCONTROL=ignoreboth + +# append to the history file, don't overwrite it +shopt -s histappend + +# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) +HISTSIZE=1000 +HISTFILESIZE=2000 + +# check the window size after each command and, if necessary, +# update the values of LINES and COLUMNS. +shopt -s checkwinsize + +# If set, the pattern "**" used in a pathname expansion context will +# match all files and zero or more directories and subdirectories. +#shopt -s globstar + +# make less more friendly for non-text input files, see lesspipe(1) +[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" + +# set variable identifying the chroot you work in (used in the prompt below) +if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then + debian_chroot=$(cat /etc/debian_chroot) +fi + +# set a fancy prompt (non-color, unless we know we "want" color) +case "$TERM" in + xterm-color|*-256color) color_prompt=yes;; +esac + +# uncomment for a colored prompt, if the terminal has the capability; turned +# off by default to not distract the user: the focus in a terminal window +# should be on the output of commands, not on the prompt +#force_color_prompt=yes + +if [ -n "$force_color_prompt" ]; then + if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then + # We have color support; assume it's compliant with Ecma-48 + # (ISO/IEC-6429). (Lack of such support is extremely rare, and such + # a case would tend to support setf rather than setaf.) + color_prompt=yes + else + color_prompt= + fi +fi + +if [ "$color_prompt" = yes ]; then + PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' +else + PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' +fi +unset color_prompt force_color_prompt + +# If this is an xterm set the title to user@host:dir +case "$TERM" in +xterm*|rxvt*) + PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" + ;; +*) + ;; +esac + +# enable color support of ls and also add handy aliases +if [ -x /usr/bin/dircolors ]; then + test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" + alias ls='ls --color=auto' + #alias dir='dir --color=auto' + #alias vdir='vdir --color=auto' + + alias grep='grep --color=auto' + alias fgrep='fgrep --color=auto' + alias egrep='egrep --color=auto' +fi + +# colored GCC warnings and errors +#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' + +# some more ls aliases +alias ll='ls -alF' +alias la='ls -A' +alias l='ls -CF' + +# Add an "alert" alias for long running commands. Use like so: +# sleep 10; alert +alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' + +# Alias definitions. +# You may want to put all your additions into a separate file like +# ~/.bash_aliases, instead of adding them here directly. +# See /usr/share/doc/bash-doc/examples in the bash-doc package. + +if [ -f ~/.bash_aliases ]; then + . ~/.bash_aliases +fi + +# enable programmable completion features (you don't need to enable +# this, if it's already enabled in /etc/bash.bashrc and /etc/profile +# sources /etc/bash.bashrc). +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 +if [ $TILIX_ID ] || [ $VTE_VERSION ] ; then source /etc/profile.d/vte.sh; fi # Ubuntu Budgie END + diff --git a/dotfiles/.gitconfig b/dotfiles/.gitconfig new file mode 100644 index 0000000..ef9d7d3 --- /dev/null +++ b/dotfiles/.gitconfig @@ -0,0 +1,86 @@ +[user] + name = AnthonyAxenov + email = anthonyaxenov@gmail.com +[push] + default = current +[pull] + default = current + rebase = false +[core] + editor = nano + autocrlf = input +[alias] + # общее ----------------------------------------------------------------- + st = status # + aliases = config --get-regexp '^alias' # показать список доступных алиасов + diffc = diff --cached # показать дельту staged-файла + co = checkout # + cob = checkout -b # создание новое ветки + cp = cherry-pick # применить коммит поверх текущего HEAD + bheads = branch -vv # показать список веток с последними коммитами + heads = log --graph --decorate --simplify-by-decoration --oneline # лог только по последним коммитам веток + + # управление ветками ---------------------------------------------------- + br = status -sb # показать название текущей ветки + branch = branch --list # показать текущую ветку в общем списке локальных веток + brd = branch -d # удалить слитую ветку локально + brD = branch -D # удалить НЕслитую ветку локально + brod = "!f(){ git branch -d "${1}"; git push origin :"${1}"; };f" # удалить слитую ветку локально и на origin + broD = "!f(){ git branch -D "${1}"; git push origin :"${1}"; };f" # удалить НЕслитую ветку локально и на origin + merged = branch --merged # показать список слитых веток + # удалить все слитые ветки + #bclean = "!f() { DEFAULT=master; git branch --merged ${1-$DEFAULT} | grep -v " ${1-$DEFAULT}$" | xargs git branch -d; }; f" + mn = merge --no-ff # слить ветку с принудительным коммитом слияния + + # переключение между ветками ---------------------------------------------- + master = "!git checkout master && git pull" # переключиться на ветку master и обновление + dev = "!git checkout dev && git pull" # переключиться на ветку dev и обновление + develop = "!git checkout develop && git pull" # переключиться на ветку develop и обновление + + # фиксация изменений ------------------------------------------------------ + c = commit # коммит + ca = commit -a # коммит всех файлов + cm = commit -m # коммит с заданным сообщением + cam = commit -am # коммит всех файлов с заданным сообщением + amend = commit --amend --no-edit # по-тихому прикрепляет все индексированные файлы к последнему коммиту, используя уже существующее сообщение + amendm = commit --amend -m # прикрепляет все индексированные файлы к последнему коммиту, спрашивает новое сообщение к коммиту + + # управление изменениями, сброс состояний, откат -------------------------- + rh = reset --hard # откат коммита с удалением всех изменений на указанный коммит + rhh = reset --hard HEAD # откат коммита с удалением всех изменений на последний коммит + rs = reset --soft # откат коммита с сохранением всех изменений на указанный коммит + rsh = reset --soft HEAD # откат коммита с сохранением всех изменений + unstage = reset HEAD # удаляет файл из staged перед коммитом + clear = checkout -- # удаляет изменения в unstaged-файле + + # штучка чтобы не терять наработки, которые ещё в процессе + # на самом деле, надо исопользовать стеш для таких дел + # save = !git add -A && git commit -m 'SAVEPOINT' + # wip = commit -am "WIP" + # undo = reset HEAD~1 --mixed + + # работа с remote-репами -------------------------------------------------- + p = push # отправить ветку + po = push origin # отправить ветку в origin + pt = push --tags # отправить теги + pl = pull # получить ветку + plo = pull origin # получить ветку из origin + ploh = pull origin HEAD # получить текущую ветку из origin + remotes = remote -v # показать список удалённых репозиториев + #sy = remote update origin --prune # + rso = remote show origin # показать состояние локальных веток относительно удалённых на origin bare + rpo = remote prune origin # удалить все мёртвые ссылки на bare-ветки origin + + # просмотр логов ---------------------------------------------------------- + head = log -1 HEAD # показать последний коммит в текущей ветке + hist = log --pretty=format:\"%h | %an (%ad) %s%d\" --graph --date=relative + logfull = log --graph --decorate --all + grog = log --graph --decorate --all --pretty=format:'%C(bold red)%h%C(reset) %C(bold blue)%an%C(reset) %C(green)%cr%C(reset) [%aD]%d%n%B' + + # подмодули --------------------------------------------------------------- + si = submodule init # инициализация сабмодулей + sdi = submodule deinit -f # удаление сабмодуля + sa = submodule add # добавление сабмодуля + sup = submodule update # обновление сабмодуля + sst = submodule status # статус сабмодулей + ss = submodule summary # список сабмодулей diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc new file mode 100644 index 0000000..6734b9d --- /dev/null +++ b/dotfiles/.zshrc @@ -0,0 +1,106 @@ +# If you come from bash you might have to change your $PATH. +# export PATH=$HOME/bin:/usr/local/bin:$PATH + +# Path to your oh-my-zsh installation. +export ZSH="/home/anthony/.oh-my-zsh" + +# Set name of the theme to load --- if set to "random", it will +# load a random theme each time oh-my-zsh is loaded, in which case, +# to know which specific one was loaded, run: echo $RANDOM_THEME +# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes +ZSH_THEME="powerlevel9k/powerlevel9k" + +#POWERLEVEL9K_MODE='nerdfont-complete' +#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon dir vcs) +POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir vcs) +POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status time) + +# Set list of themes to pick from when loading at random +# Setting this variable when ZSH_THEME=random will cause zsh to load +# a theme from this variable instead of looking in $ZSH/themes/ +# If set to an empty array, this variable will have no effect. +# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) + +# Uncomment the following line to use case-sensitive completion. +# CASE_SENSITIVE="true" + +# Uncomment the following line to use hyphen-insensitive completion. +# Case-sensitive completion must be off. _ and - will be interchangeable. +# HYPHEN_INSENSITIVE="true" + +# Uncomment the following line to disable bi-weekly auto-update checks. +# DISABLE_AUTO_UPDATE="true" + +# Uncomment the following line to automatically update without prompting. +# DISABLE_UPDATE_PROMPT="true" + +# Uncomment the following line to change how often to auto-update (in days). +# export UPDATE_ZSH_DAYS=13 + +# Uncomment the following line if pasting URLs and other text is messed up. +# DISABLE_MAGIC_FUNCTIONS="true" + +# Uncomment the following line to disable colors in ls. +# DISABLE_LS_COLORS="true" + +# Uncomment the following line to disable auto-setting terminal title. +# DISABLE_AUTO_TITLE="true" + +# Uncomment the following line to enable command auto-correction. +# ENABLE_CORRECTION="true" + +# Uncomment the following line to display red dots whilst waiting for completion. +# COMPLETION_WAITING_DOTS="true" + +# Uncomment the following line if you want to disable marking untracked files +# under VCS as dirty. This makes repository status check for large repositories +# much, much faster. +# DISABLE_UNTRACKED_FILES_DIRTY="true" + +# Uncomment the following line if you want to change the command execution time +# stamp shown in the history command output. +# You can set one of the optional three formats: +# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" +# or set a custom format using the strftime function format specifications, +# see 'man strftime' for details. +# HIST_STAMPS="mm/dd/yyyy" + +# Would you like to use another custom folder than $ZSH/custom? +# ZSH_CUSTOM=/path/to/new-custom-folder + +# Which plugins would you like to load? +# Standard plugins can be found in $ZSH/plugins/ +# Custom plugins may be added to $ZSH_CUSTOM/plugins/ +# Example format: plugins=(rails git textmate ruby lighthouse) +# Add wisely, as too many plugins slow down shell startup. +plugins=(git zsh-autosuggestions zsh-syntax-highlighting) + +source $ZSH/oh-my-zsh.sh + +# User configuration + +# export MANPATH="/usr/local/man:$MANPATH" + +# You may need to manually set your language environment +# export LANG=en_US.UTF-8 + +# Preferred editor for local and remote sessions +# if [[ -n $SSH_CONNECTION ]]; then +# export EDITOR='vim' +# else +# export EDITOR='mvim' +# fi + +# Compilation flags +# export ARCHFLAGS="-arch x86_64" + +# Set personal aliases, overriding those provided by oh-my-zsh libs, +# plugins, and themes. Aliases can be placed here, though oh-my-zsh +# users are encouraged to define aliases within the ZSH_CUSTOM folder. +# For a full list of active aliases, run `alias`. +# +# Example aliases +# alias zshconfig="mate ~/.zshrc" +# alias ohmyzsh="mate ~/.oh-my-zsh" + +source ~/.aliases diff --git a/dotfiles/Шаблоны/Empty File b/dotfiles/Шаблоны/Empty File new file mode 100644 index 0000000..e69de29 diff --git a/dotfiles/Шаблоны/LibreOffice Calc.ods b/dotfiles/Шаблоны/LibreOffice Calc.ods new file mode 100644 index 0000000..1961c6c Binary files /dev/null and b/dotfiles/Шаблоны/LibreOffice Calc.ods differ diff --git a/dotfiles/Шаблоны/LibreOffice Draw.odg b/dotfiles/Шаблоны/LibreOffice Draw.odg new file mode 100644 index 0000000..cc25386 Binary files /dev/null and b/dotfiles/Шаблоны/LibreOffice Draw.odg differ diff --git a/dotfiles/Шаблоны/LibreOffice Impress.odp b/dotfiles/Шаблоны/LibreOffice Impress.odp new file mode 100644 index 0000000..e229b6c Binary files /dev/null and b/dotfiles/Шаблоны/LibreOffice Impress.odp differ diff --git a/dotfiles/Шаблоны/LibreOffice Writer.odt b/dotfiles/Шаблоны/LibreOffice Writer.odt new file mode 100644 index 0000000..32a2f76 Binary files /dev/null and b/dotfiles/Шаблоны/LibreOffice Writer.odt differ diff --git a/dotfiles/Шаблоны/MS Excel.xlsx b/dotfiles/Шаблоны/MS Excel.xlsx new file mode 100644 index 0000000..e9faa9a Binary files /dev/null and b/dotfiles/Шаблоны/MS Excel.xlsx differ diff --git a/dotfiles/Шаблоны/MS PowerPoint.pptx b/dotfiles/Шаблоны/MS PowerPoint.pptx new file mode 100644 index 0000000..0e8d0bd Binary files /dev/null and b/dotfiles/Шаблоны/MS PowerPoint.pptx differ diff --git a/dotfiles/Шаблоны/MS Word.docx b/dotfiles/Шаблоны/MS Word.docx new file mode 100644 index 0000000..2a1f213 Binary files /dev/null and b/dotfiles/Шаблоны/MS Word.docx differ diff --git a/dotfiles/Шаблоны/PHP script.php b/dotfiles/Шаблоны/PHP script.php new file mode 100644 index 0000000..4b011ba --- /dev/null +++ b/dotfiles/Шаблоны/PHP script.php @@ -0,0 +1,4 @@ + /dev/null +sudo apt update +apti docker-ce docker-ce-cli containerd.io + +sudo usermod -aG docker anthony + +success "You need to logout and log in again to apply docker group" diff --git a/install/040-ulauncher.sh b/install/040-ulauncher.sh new file mode 100755 index 0000000..c1cae94 --- /dev/null +++ b/install/040-ulauncher.sh @@ -0,0 +1,6 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing ulauncher from apt..." + +sudo add-apt-repository ppa:agornostal/ulauncher +apti ulauncher diff --git a/install/050-syncthing.sh b/install/050-syncthing.sh new file mode 100755 index 0000000..198adf8 --- /dev/null +++ b/install/050-syncthing.sh @@ -0,0 +1,23 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing syncthing..." + +# https://apt.syncthing.net/ + +# Add the release PGP keys: +sudo curl -s -o /usr/share/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg + +# Add the "stable" channel to your APT sources: +echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list + +# Add the "candidate" channel to your APT sources: +echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing candidate" | sudo tee /etc/apt/sources.list.d/syncthing.list + +# Update and install syncthing: +aptu +apti syncthing + +wget "https://raw.githubusercontent.com/syncthing/syncthing/main/etc/linux-desktop/syncthing-start.desktop" -O /home/anthony/.local/share/applications/syncthing-start.desktop +wget "https://raw.githubusercontent.com/syncthing/syncthing/main/etc/linux-desktop/syncthing-ui.desktop" -O /home/anthony/.local/share/applications/syncthing-ui.desktop +ln -s /home/anthony/.local/share/applications/syncthing-start.desktop /home/anthony/.config/autostart/syncthing-start.desktop +# или демоном: https://habr.com/ru/post/350892/ diff --git a/install/100-grub-customizer.sh b/install/100-grub-customizer.sh new file mode 100755 index 0000000..06e578f --- /dev/null +++ b/install/100-grub-customizer.sh @@ -0,0 +1,6 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing grub-customizer..." + +sudo add-apt-repository ppa:danielrichter2007/grub-customizer +apti grub-customizer diff --git a/install/110-wine.sh b/install/110-wine.sh new file mode 100755 index 0000000..d5b74af --- /dev/null +++ b/install/110-wine.sh @@ -0,0 +1,9 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing wine" + +sudo dpkg --add-architecture i386 +wget -qO- https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - +sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' +apti winehq-stable +installed "wine" && success "wine installed!" diff --git a/install/120-chrome.sh b/install/120-chrome.sh new file mode 100755 index 0000000..0579672 --- /dev/null +++ b/install/120-chrome.sh @@ -0,0 +1,10 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing google chrome (latest)..." + +# https://t.me/axenov_blog/251 + +# snapi chromium +wget "https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" -O /tmp/google-chrome-stable_current_amd64.deb +sudo dpkg -i /tmp/google-chrome-stable_current_amd64.deb +rm /tmp/google-chrome-stable_current_amd64.deb diff --git a/install/130-postman.sh b/install/130-postman.sh new file mode 100755 index 0000000..7c70f42 --- /dev/null +++ b/install/130-postman.sh @@ -0,0 +1,24 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing postman (latest)..." + +wget "https://dl.pstmn.io/download/latest/linux64" -O /tmp/postman.tar.gz +# sudo tar -xvzf /tmp/postman.tar.gz -C /usr/local/bin +sudo tar -xzf /tmp/postman.tar.gz -C /usr/local/bin +rm /tmp/postman.tar.gz +sudo ln -s /usr/local/bin/Postman/Postman /usr/local/bin/postman + +echo "#!/usr/bin/env xdg-open + +[Desktop Entry] +Name=Postman +Exec=/usr/local/bin/postman +Icon=/usr/local/bin/Postman/app/icons/icon_128x128.png +Categories=Utility,Network +Terminal=false +Type=Application +Encoding=UTF-8 +" > /home/anthony/.local/share/applications/Postman.desktop +sudo update-desktop-database + +installed "postman" && success "Postman installed!" || warning "Something wrong, Postman was not installed" diff --git a/install/200-golang.sh b/install/200-golang.sh new file mode 100755 index 0000000..7ab7a50 --- /dev/null +++ b/install/200-golang.sh @@ -0,0 +1,27 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing golang" + +# https://golang.org/doc/install +# https://www.vultr.com/docs/install-the-latest-version-of-golang-on-ubuntu + +# if [ "$EUID" -ne 0 ] +# then echo "*** root permissions required ***" +# exit +# fi + +[ $1 ] && VERSION="$1" || VERSION="1.17.5" +FILE="go$VERSION.linux-amd64.tar.gz" + +sudo rm -rf /usr/local/go +wget "https://golang.org/dl/$FILE" -O /tmp/$FILE +sudo tar -xzf $FILE -C /usr/local +rm -rf /tmp/$FILE +sudo chown $USER: -R /usr/local/go + +echo "export PATH=$PATH:/usr/local/go/bin" >> /home/anthony/.profile +echo "export GOPATH=~/.go" >> /home/anthony/.profile +# source ~/.profile + +success "$(go version)" +info "NOTE: now run \`source ~/.profile\` to apply new env vars" diff --git a/install/700-apache.sh b/install/700-apache.sh new file mode 100755 index 0000000..0e21a11 --- /dev/null +++ b/install/700-apache.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing apache2..." + +apti apache2 +sudo service apache2 restart +success "$(apache2 -v)" diff --git a/install/710-php.sh b/install/710-php.sh new file mode 100755 index 0000000..4b524df --- /dev/null +++ b/install/710-php.sh @@ -0,0 +1,28 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +PHPVER="8.1" +title "Installing php${PHPVER}..." + +sudo LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php +apti php${PHPVER} \ + php${PHPVER}-xdebug \ + php${PHPVER}-bcmath \ + php${PHPVER}-bz2 \ + php${PHPVER}-curl \ + php${PHPVER}-gd \ + php${PHPVER}-json \ + php${PHPVER}-mbstring \ + php${PHPVER}-mysql \ + php${PHPVER}-opcache \ + php${PHPVER}-pgsql \ + php${PHPVER}-soap \ + php${PHPVER}-xml \ + php${PHPVER}-xmlrpc \ + php${PHPVER}-xsl \ + php${PHPVER}-zip + # php${PHPVER}-common + # php${PHPVER}-cli + # php${PHPVER}-dba + # php${PHPVER}-ldap + # php${PHPVER}-sqlite3 +php -v diff --git a/install/720-composer.sh b/install/720-composer.sh new file mode 100755 index 0000000..d6655a3 --- /dev/null +++ b/install/720-composer.sh @@ -0,0 +1,47 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing composer..." + +if installed "php"; then + if installed "composer"; then + warning "You already have composer installed - removing to install actual version" + sudo apt remove -y --autoremove composer + sudo rm -f /bin/composer + sudo rm -f /usr/bin/composer + sudo rm -f /usr/local/bin/composer + sudo rm -rf /usr/src/composer + fi + sudo mkdir -m 0777 -p /usr/src/composer + cd /usr/src/composer + # https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md + EXPECTED_CHECKSUM="$(php -r 'copy("https://composer.github.io/installer.sig", "php://stdout");')" + sudo php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" + ACTUAL_CHECKSUM="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" + if [ "$EXPECTED_CHECKSUM" != "$ACTUAL_CHECKSUM" ]; then + >&2 echo 'ERROR: Invalid installer checksum' + rm composer-setup.php + exit 1 + fi + php composer-setup.php --quiet + sudo cp /usr/src/composer/composer.phar /usr/local/bin/composer + cd - >/dev/null + sudo rm -rf /usr/src/composer/ + installed "composer" && success "composer installed!" +else + warning "*** You need to have php installed" +fi + +# title "Installing composer.phar in home dir..." +# cd ~ +# EXPECTED_SIGNATURE="$(wget -q -O - https://composer.github.io/installer.sig)" +# php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" +# ACTUAL_SIGNATURE="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" +# if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ] +# then +# >&2 echo 'ERROR: Invalid installer signature' +# rm composer-setup.php +# exit 1 +# fi +# php composer-setup.php --quiet +# RESULT=$? +# rm composer-setup.php diff --git a/install/730-oci8.sh_ b/install/730-oci8.sh_ new file mode 100644 index 0000000..789d766 --- /dev/null +++ b/install/730-oci8.sh_ @@ -0,0 +1,39 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing oci8..." + +#check for +# wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basic-linuxx64.zip +# wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip -- only libociicus.so +# wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-sqlplus-linuxx64.zip +# wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-tools-linuxx64.zip +# wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip +#unzip + +sudo mkdir /opt/oracle/ +sudo mv ~/Downloads/instant_client/ /opt/oracle/ + +sudo sh -c "echo /opt/oracle/instant_client > /etc/ld.so.conf.d/oracle-instantclient.conf" +sudo ldconfig + +apti php-dev php-pear build-essential libaio1 default-jdk +sudo pecl channel-update pecl.php.net +#sudo pecl install oci8 # php8 +sudo pecl install oci8-2.2.0 # php7 + +#sh -c "echo '; priority=10' > /etc/php/7.4/mods-available/oci8.ini" +sudo sh -c "echo 'extension=oci8.so' >> /etc/php/7.4/mods-available/oci8.ini" +sudo chmod 0644 /etc/php/7.4/mods-available/oci8.ini +sudo phpenmod oci8 +php -i | grep oci8 + +# instantclient,/opt/oracle/instant_client + + + + + + + +# https://pecl.php.net/package/oci8 +sudo pecl install oci8-2.2.0 diff --git a/install/800-mysql.sh b/install/800-mysql.sh new file mode 100755 index 0000000..4551e55 --- /dev/null +++ b/install/800-mysql.sh @@ -0,0 +1,8 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing mariadb..." + +apti mariadb-server mariadb-client +sudo mysql_secure_installation +installed "php" && apti php-mysql phpmyadmin +installed "mysql" && success "mariadb installed!" diff --git a/install/810-pgsql.sh b/install/810-pgsql.sh new file mode 100755 index 0000000..b917073 --- /dev/null +++ b/install/810-pgsql.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing pgsql..." + +apti postgresql postgresql-contrib +sudo service postgresql restart +installed php && apti php-pgsql diff --git a/install/996-zint.sh b/install/996-zint.sh new file mode 100755 index 0000000..2dd3720 --- /dev/null +++ b/install/996-zint.sh @@ -0,0 +1,28 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing zint..." + +apti g++ cmake qtbase5-dev qttools5-dev libpng-dev + +if installed git; then + # 2.9.* =============================================================================== + sudo git clone git://git.code.sf.net/p/zint/code /usr/src/zint + cd /usr/src/zint + sudo cmake . + sudo make + sudo make install + cd - +else + echo "You need git to be installed!" + # 2.4.2 =============================================================================== + # https://wayneoutthere.com/2021/02/17/how-to-install-zint-on-ubuntu/ + # sudo wget https://github.com/downloads/zint/zint/zint-2.4.2.tar.gz -O /usr/src/zint.tar.gz + # sudo tar -C /usr/src/ -xzf /usr/src/zint.tar.gz + # sudo rm -rf /usr/src/zint.tar.gz + # cd /usr/src/zint-2.4.2/build + # sudo cmake .. + # sudo make + # sudo make install + # sudo rm -rf /usr/src/zint* + # cd - +fi diff --git a/install/997-nodejs.sh b/install/997-nodejs.sh new file mode 100755 index 0000000..ce6e357 --- /dev/null +++ b/install/997-nodejs.sh @@ -0,0 +1,20 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing nodejs..." + +# apti nodejs npm + +if !installed "nvm"; then + wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash +fi +if [ $(nvm current) == 'system' ]; then + warning "You already have node installed - removing to install actual version" + sudo apt remove -y --autoremove nodejs npm +else + nvm install-latest-npm +fi +nvm install node +nvm use node +installed "node" && success "nodejs installed! $(nvm current)" +installed "npm" && success "npm installed! $(nvm current)" +nvm ls diff --git a/install/998-phpstorm-url-handler.sh_ b/install/998-phpstorm-url-handler.sh_ new file mode 100644 index 0000000..995aadc --- /dev/null +++ b/install/998-phpstorm-url-handler.sh_ @@ -0,0 +1,35 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing phpstorm-url-handler..." + +# https://github.com/rozwell/phpstorm-url-handler/ +# https://askubuntu.com/a/1023143 +# https://askubuntu.com/a/919825 +# https://medium.com/swlh/custom-protocol-handling-how-to-8ac41ff651eb +# https://www.linuxquestions.org/questions/linux-desktop-74/xdg-open-doesn%27t-recognize-custom-protocol-4175433062/#post4809984 + +sudo rm -rf /usr/bin/phpstorm-url-handler >/dev/null +sudo rm -rf ~/.local/share/applications/phpstorm-url-handler.desktop >/dev/null +sudo rm -rf /usr/share/applications/phpstorm-url-handler.desktop >/dev/null +if installed "git"; then + sudo git clone https://github.com/rozwell/phpstorm-url-handler.git /usr/src/phpstorm-url-handler +else + sudo wget https://github.com/rozwell/phpstorm-url-handler/archive/master.zip -O /usr/src/phpstorm-url-handler.zip + sudo unzip /usr/src/phpstorm-url-handler.zip -d /usr/src/phpstorm-url-handler + sudo rm -f /usr/src/phpstorm-url-handler.zip +fi + +info "Copy .desktop" +sudo cp /usr/src/phpstorm-url-handler/phpstorm-url-handler.desktop /usr/share/local/applications/phpstorm-url-handler.desktop + +info "Symlink bin" +sudo cp /usr/src/phpstorm-url-handler/phpstorm-url-handler /usr/bin/phpstorm-url-handler + +info "desktop-file-install" +sudo desktop-file-install phpstorm-url-handler.desktop + +info "update-desktop-database" +sudo update-desktop-database -v 2>&1 | grep -E "^(.+)\/phpstorm-url-handler.desktop(.+)$" + +info "xdg-mime" +xdg-mime default phpstorm-url-handler.desktop x-scheme-handler/phpstorm diff --git a/install/999-dotfiles.sh b/install/999-dotfiles.sh new file mode 100755 index 0000000..c22fa26 --- /dev/null +++ b/install/999-dotfiles.sh @@ -0,0 +1,10 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Copying dotfiles..." +require_start + +cp $DOTFILESDIR/.aliases $HOME/.aliases +cp $DOTFILESDIR/.bashrc $HOME/.bashrc +cp $DOTFILESDIR/.zshrc $HOME/.zshrc +cp $DOTFILESDIR/.gitconfig $HOME/.gitconfig +cp -R $DOTFILESDIR/Шаблоны $HOME/Шаблоны diff --git a/scripts/db_backup.sh b/scripts/db_backup.sh new file mode 100755 index 0000000..f866f5b --- /dev/null +++ b/scripts/db_backup.sh @@ -0,0 +1,120 @@ +############################################################## +# Скрипт для автоматического резервного копирования +# базы данных. +# +# Автор: Антон Аксенов +# URL: anthonyaxenov.ru +# Email: anthonyaxenov@gmail.com +# +# Подробности о скрипте, подготовка к работе: +# https://anthonyaxenov.blogspot.ru/2017/05/cron-1.html +# +############################################################## +#!/bin/bash + +# Данные для работы с БД +DBHOST= +DBUSER= +DBPASS= +DBNAME= +DBCHARSET="utf8" + +# Даты +FMT_DT_DIR="%d-%m-%Y" # формат даты для директорий | 19-03-2021 +FMT_DT_FILE="%H%M%S-%d%m%y" # формат даты для файлов | 082456-190321 +FMT_DT_LOG="%H:%M:%S" # формат даты для лога | 08:24:15.168149413 + +# Локальное хранилище +LOCALDIR=/backup # полный путь директории для бэкапов +LOCALPATH=$LOCALDIR/$(date +$FMT_DT_DIR) # полный путь директории за сегодня +LOCALFILE=$LOCALPATH/$DBNAME-$(date +$FMT_DT_FILE).sql # полный путь к файлу дампа + +# Облачное хранилище +CLOUDUSE=1 # Копировать ли в облако? Закомментировать строку, если не надо +CLOUDMNT=/mnt/yadisk # Точка монтирования облака относительно корня +CLOUDDIR=db_backup # Папка в облаке, куда будут лететь файлы (внутри папки CLOUDMNT, т.е. без / в начале) +CLOUDPATH=$CLOUDMNT/$CLOUDDIR/$DATE # полный путь к папке текущей даты в облаке относительно корня +CLOUDFILE=$CLOUDPATH/$DBNAME-$DATETIME.sql # полный путь к файлу дампа в облаке +CLOUDFILEGZ=$CLOUDFILE.gz # полный путь к архиву в облаке + +# Путь к бекапу на примонтированном хранилище будет выглядеть так: +# /mnt/yadisk/db_backup/2017-01-01/mybigdatabase-2017-01-01-12-23-34.sql.gz + +log() { + echo "[$(date +$FMT_DT_LOG)] $*" +} + +is_dir() { + [ -d "$1" ] +} + +# Начало процесса +echo "[--------------------------------[$(date +$FMT_DT_LOG)]--------------------------------]" +log $LOCALPATH +if ! is_dir $LOCALPATH; then # Если нет папки за сегодня + sudo mkdir -p $LOCALPATH # создаём её, ошибки игнорируем + [ $? -eq 0 ] && log "New directory: $LOCALPATH" +fi + + + +log "Generate a database dump: '$DBNAME'..." +mysqldump \ + -q \ + --user=$DBUSER \ + --host=$DBHOST \ + --password=$DBPASS \ + --opt \ + --default-character-set=$DBCHARSET $DBNAME \ + > $LOCALFILE +exit + + + +if [[ $? -gt 0 ]]; then + # если дамп сделать не удалось (код завершения предыдущей команды больше нуля) - прерываем весь скрипт + log "Dumping failed! Script aborted." + exit 1 +else # иначе - упаковываем его + log "Dumping successfull! Packing in GZIP..." + gzip $LOCALFILE # Упаковка + if [[ $? -ne 0 ]]; then # Если не удалась + log "GZipping failed! SQL-file will be uploaded." + GZIP_FAILED=1 # Создаём флажок, что упаковка сорвалась + else + log "Result file: $LOCALFILEGZ" + fi + if [[ $CLOUDUSE -eq 1 ]]; then # Если задано копирование в облако - делаем всякое такое + mount | grep "$CLOUDMNT" > /dev/null # Проверяем примонтировано ли уже у нас облако (вывод не важен) + if [[ $? -ne 0 ]]; then # Если нет + mount $CLOUDMNT # значит монтируем + fi + if [[ $? -eq 0 ]]; then # если монтирование успешно - копируем туда файл + log "Cloud: successfully mounted at $CLOUDMNT" + log "Cloud: copying started => $CLOUDFILEGZ" + if ! [[ -d $CLOUDPATH ]]; then # Если в облаке нет папки за сегодня + mkdir $CLOUDPATH 2> /dev/null # создаём её, ошибки игнорируем + fi + if [[ -f $LOCALFILEGZ && GZIP_FAILED -ne 1 ]]; then # Если у нас архивирование выше не сорвалось + cp -R $LOCALFILEGZ $CLOUDFILEGZ # Копируем архив + else + cp -R $LOCALFILE $CLOUDFILE # Иначе - копируем большой тяжёлый дамп + fi + if [[ $? -gt 0 ]]; then # Если не скопировался - просто сообщаем + log "Cloud: copy failed." + else # Если скопировался - сообщаем и размонтируем + log "Cloud: file successfully uploaded!" + umount $CLOUDMNT # Размонтирование облака + if [[ $? -gt 0 ]]; then # Сообщаем результат размонтирования (если необходимо) + log "Cloud: umount - failed!" + fi # Конец проверки успешного РАЗмонтирования + fi # Конец проверки успешного копирования + else # если монтирование НЕуспешно - сообщаем + log "Cloud: failed to mount cloud at $CLOUDMNT" + fi # Конец проверки успешного монтирования + fi # Конец проверки необходимости выгрузки в облако +fi # Конец проверки успешного выполнения mysqldump +log "Stat datadir space (USED): `du -h $LOCALPATH | tail -n1`" # вывод размера папки с бэкапами за текущий день +log "Free HDD space: `df -h /home|tail -n1|awk '{print $4}'`" # вывод свободного места на локальном диске +log "All operations completed!" +exit 0 # Успешное завершение скрипта diff --git a/scripts/second-mon.sh b/scripts/second-mon.sh new file mode 100755 index 0000000..9c31bfc --- /dev/null +++ b/scripts/second-mon.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +# https://gist.github.com/anthonyaxenov/c16e1181d4b8a8644c57ec8a1f6cf21c + +######################################################################### +# # +# Set display resolution # +# # +# Author: Anthony Axenov (Антон Аксенов) # +# Version: 1.0 # +# License: WTFPL # +# # +######################################################################### +# # +# Using this script you can change your display resolution # +# to any one you need. Just adjust some vars below and run script # +# (chmod +x needed). # +# # +######################################################################### + +# Set display name to work with. You can get it via 'xrandr --listactivemonitors' +display="HDMI-2" +# Set width of this display in px +width=1600 +# Set height of this display in px +height=900 + +# Sometimes cvt and gtf generates different modelines. +# You can play around and look which of them gives best result: +modeline=$(cvt ${width} ${height} | grep "Modeline") +# modeline=$(gtf ${width} ${height} 60 | grep "Modeline") + +# Some important data needed to xrandr: +modename="${width}x${height}_my" +params=$(echo "$modeline" | sed "s|^\s*Modeline\s*\"[0-9x_.]*\"\s*||") + +echo "Set resolution ${width}x${height} on display $display:" +echo "$modename $params" + +# Simple logic: +# 1. Switch display to safe mode which always exists (I believe) to avoid errors +xrandr --output $display --mode 640x480 +# 2. If display aready have our mode -- we must delete it to avoid errors +if $(xrandr | grep -q "$modename"); then + # 2.1. Detach mode from display + xrandr --delmode $display $modename + # 2.2. Remove mode itself + xrandr --rmmode $modename +fi +# 3. Create new mode with freshly generated parameters +xrandr --newmode $modename $params +# 4. Attach mode to our display +xrandr --addmode $display $modename +# 5. Switch display to this mode immidiately +xrandr --output $display --mode $modename diff --git a/src/00-io.sh b/src/00-io.sh new file mode 100755 index 0000000..71fcafc --- /dev/null +++ b/src/00-io.sh @@ -0,0 +1,115 @@ +#!/bin/bash +# https://misc.flogisoft.com/bash/tip_colors_and_formatting + +######################################################## +# Иконки +######################################################## + +IINFO="[ i ]" +INOTE="[ * ]" +IWARN="[ # ]" +IERROR="[ ! ]" +IFATAL="[ @ ]" +ISUCCESS="[ ! ]" +IASK="[ ? ]" + +######################################################## +# Атрибуты текста (форматирование) +######################################################## + +BOLD="\e[1m" # жирный +_BOLD="\e[21m" # нежирный +DIM="\e[2m" # приглушённый +_DIM="\e[22m" # неприглушённый + +NORMAL="\e[20m" # сброс всех атрибутов +RESET="\e[0m" # сброс всех атрибутов и цветов (вообще) + +######################################################## +# Цвет текста +######################################################## + +FRESET="\e[39m" +FBLACK="\e[30m" +FWHITE="\e[97m" +FRED="\e[31m" +FGREEN="\e[32m" +FYELLOW="\e[33m" +FBLUE="\e[34m" +FLRED="\e[91m" +FLGREEN="\e[92m" +FLYELLOW="\e[93m" +FLBLUE="\e[94m" + +######################################################## +# Цвет фона текста +######################################################## + +BRESET="\e[49m" +BBLACK="\e[40m" +BWHITE="\e[107m" +BRED="\e[41m" +BGREEN="\e[42m" +BYELLOW="\e[43m" +BBLUE="\e[44m" +BLRED="\e[101m" +BLGREEN="\e[102m" +BLYELLOW="\e[103m" +BLBLUE="\e[104m" + +######################################################## +# Функции для вывода текста +######################################################## + +print() { + echo -e "$*${RESET}" +} + +ask() { + IFS= read -rp "$(print ${BOLD}${BBLUE}${FWHITE}${IASK}${BRESET}\ ${BOLD}$1 ): " $2 +} + +dbg() { + print "${DIM}$*" +} + +info() { + print "${BOLD}${FWHITE}${IINFO}${RESET}${FWHITE} $1 " +} + +note() { + print "${BOLD}${DIM}${FWHITE}${INOTE}${RESET} $1 " +} + +success() { + print "${BOLD}${BGREEN}${FWHITE}${ISUCCESS}${BRESET}$FGREEN $1 " +} + +warn() { + print "${BOLD}${BYELLOW}${FBLACK}${IWARN}${BRESET}${FYELLOW} Warning:${RESET} $1 " >&2 +} + +error() { + print "${BOLD}${BLRED}${FWHITE}${IERROR} Error: ${BRESET}${FLRED} $1 " >&2 +} + +fatal() { + print "${BOLD}${BRED}${FWHITE}${IFATAL} FATAL: $1 " >&2 +} + +######################################################## +# Тестирование +######################################################## + +# print +# print "print test" +# print +# ask "ask test" test +# print $test +# dbg "debug test" +# info "info test" +# note "note test" +# success "success test" +# warn "warn test" +# error "error test" +# fatal "fatal test" diff --git a/src/01-common.sh b/src/01-common.sh new file mode 100755 index 0000000..e5b88e1 --- /dev/null +++ b/src/01-common.sh @@ -0,0 +1,49 @@ +#!/bin/bash +set -e +source "./../src/00-io.sh" + +title() { + info "" + info "===============================================" + info " $1" + info "===============================================" + info "" +} + +apti() { + sudo apt install -y --autoremove $@ +} + +aptu() { + sudo apt update +} + +aptug() { + sudo apt upgrade -y --autoremove +} + +snapi() { + snap install $1 2>/dev/null + [[ $? -ne 0 ]] && snap install $1 --classic +} + +installed() { + command -v "$1" >/dev/null 2>&1 +} + +die() { + error "$1" + exit $2 || 1 +} + +require_root() { + [ $(id -u) > "0" ] && die "You must run this script with sudo!" 1 +} + +require_user() { + [ $(id -u) == "0" ] && die "You must run this script WITHOUT sudo!" 2 +} + +require_start() { + [ -z "$ENVDIR" ] && die "You must run start.sh to execute this script!" 3 +} diff --git a/start.sh b/start.sh new file mode 100755 index 0000000..67fbcf1 --- /dev/null +++ b/start.sh @@ -0,0 +1,19 @@ +#!/bin/bash +set -e +OLDDIR=`pwd` +ENVDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" +ENVSRCDIR="$ENVDIR"/src +INSTALLDIR="$ENVDIR"/install +DOTFILESDIR="$ENVDIR"/dotfiles + +for script in "$ENVSRCDIR"/*.sh +do + . "$script" +done + +for script in "$INSTALLDIR"/*.sh +do + . "$script" +done + +# neofetch diff --git a/theme/Bridge/cursors/.directory b/theme/Bridge/cursors/.directory new file mode 100644 index 0000000..9fea84a --- /dev/null +++ b/theme/Bridge/cursors/.directory @@ -0,0 +1,5 @@ +[Dolphin] +AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails +Timestamp=2011,9,4,15,13,34 +Version=2 +ViewMode=1 diff --git a/theme/Bridge/cursors/00000000000000020006000e7e9ffc3f b/theme/Bridge/cursors/00000000000000020006000e7e9ffc3f new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Bridge/cursors/00000000000000020006000e7e9ffc3f @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Bridge/cursors/00008160000006810000408080010102 b/theme/Bridge/cursors/00008160000006810000408080010102 new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Bridge/cursors/00008160000006810000408080010102 @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Bridge/cursors/03b6e0fcb3499374a867c041f52298f0 b/theme/Bridge/cursors/03b6e0fcb3499374a867c041f52298f0 new file mode 120000 index 0000000..031757c --- /dev/null +++ b/theme/Bridge/cursors/03b6e0fcb3499374a867c041f52298f0 @@ -0,0 +1 @@ +circle \ No newline at end of file diff --git a/theme/Bridge/cursors/08e8e1c95fe2fc01f976f1e063a24ccd b/theme/Bridge/cursors/08e8e1c95fe2fc01f976f1e063a24ccd new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Bridge/cursors/08e8e1c95fe2fc01f976f1e063a24ccd @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Bridge/cursors/1081e37283d90000800003c07f3ef6bf b/theme/Bridge/cursors/1081e37283d90000800003c07f3ef6bf new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Bridge/cursors/1081e37283d90000800003c07f3ef6bf @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Bridge/cursors/3085a0e285430894940527032f8b26df b/theme/Bridge/cursors/3085a0e285430894940527032f8b26df new file mode 120000 index 0000000..c150ede --- /dev/null +++ b/theme/Bridge/cursors/3085a0e285430894940527032f8b26df @@ -0,0 +1 @@ +link \ No newline at end of file diff --git a/theme/Bridge/cursors/3ecb610c1bf2410f44200f48c40d3599 b/theme/Bridge/cursors/3ecb610c1bf2410f44200f48c40d3599 new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Bridge/cursors/3ecb610c1bf2410f44200f48c40d3599 @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Bridge/cursors/4498f0e0c1937ffe01fd06f973665830 b/theme/Bridge/cursors/4498f0e0c1937ffe01fd06f973665830 new file mode 120000 index 0000000..3e94178 --- /dev/null +++ b/theme/Bridge/cursors/4498f0e0c1937ffe01fd06f973665830 @@ -0,0 +1 @@ +closedhand \ No newline at end of file diff --git a/theme/Bridge/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 b/theme/Bridge/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Bridge/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Bridge/cursors/6407b0e94181790501fd1e167b474872 b/theme/Bridge/cursors/6407b0e94181790501fd1e167b474872 new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Bridge/cursors/6407b0e94181790501fd1e167b474872 @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Bridge/cursors/640fb0e74195791501fd1ed57b41487f b/theme/Bridge/cursors/640fb0e74195791501fd1ed57b41487f new file mode 120000 index 0000000..c150ede --- /dev/null +++ b/theme/Bridge/cursors/640fb0e74195791501fd1ed57b41487f @@ -0,0 +1 @@ +link \ No newline at end of file diff --git a/theme/Bridge/cursors/9081237383d90e509aa00f00170e968f b/theme/Bridge/cursors/9081237383d90e509aa00f00170e968f new file mode 120000 index 0000000..3e94178 --- /dev/null +++ b/theme/Bridge/cursors/9081237383d90e509aa00f00170e968f @@ -0,0 +1 @@ +closedhand \ No newline at end of file diff --git a/theme/Bridge/cursors/9d800788f1b08800ae810202380a0822 b/theme/Bridge/cursors/9d800788f1b08800ae810202380a0822 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Bridge/cursors/9d800788f1b08800ae810202380a0822 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Bridge/cursors/a2a266d0498c3104214a47bd64ab0fc8 b/theme/Bridge/cursors/a2a266d0498c3104214a47bd64ab0fc8 new file mode 120000 index 0000000..c150ede --- /dev/null +++ b/theme/Bridge/cursors/a2a266d0498c3104214a47bd64ab0fc8 @@ -0,0 +1 @@ +link \ No newline at end of file diff --git a/theme/Bridge/cursors/alias b/theme/Bridge/cursors/alias new file mode 100755 index 0000000..33be5b2 Binary files /dev/null and b/theme/Bridge/cursors/alias differ diff --git a/theme/Bridge/cursors/all-scroll b/theme/Bridge/cursors/all-scroll new file mode 100755 index 0000000..3281108 Binary files /dev/null and b/theme/Bridge/cursors/all-scroll differ diff --git a/theme/Bridge/cursors/b66166c04f8c3109214a4fbd64a50fc8 b/theme/Bridge/cursors/b66166c04f8c3109214a4fbd64a50fc8 new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Bridge/cursors/b66166c04f8c3109214a4fbd64a50fc8 @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Bridge/cursors/bottom_left_corner b/theme/Bridge/cursors/bottom_left_corner new file mode 120000 index 0000000..e0935e6 --- /dev/null +++ b/theme/Bridge/cursors/bottom_left_corner @@ -0,0 +1 @@ +size_bdiag \ No newline at end of file diff --git a/theme/Bridge/cursors/bottom_right_corner b/theme/Bridge/cursors/bottom_right_corner new file mode 120000 index 0000000..913bbc3 --- /dev/null +++ b/theme/Bridge/cursors/bottom_right_corner @@ -0,0 +1 @@ +size_fdiag \ No newline at end of file diff --git a/theme/Bridge/cursors/bottom_side b/theme/Bridge/cursors/bottom_side new file mode 100755 index 0000000..b806455 Binary files /dev/null and b/theme/Bridge/cursors/bottom_side differ diff --git a/theme/Bridge/cursors/cell b/theme/Bridge/cursors/cell new file mode 100755 index 0000000..170fc27 Binary files /dev/null and b/theme/Bridge/cursors/cell differ diff --git a/theme/Bridge/cursors/center-ptr b/theme/Bridge/cursors/center-ptr new file mode 100755 index 0000000..1404858 Binary files /dev/null and b/theme/Bridge/cursors/center-ptr differ diff --git a/theme/Bridge/cursors/circle b/theme/Bridge/cursors/circle new file mode 120000 index 0000000..23bfed6 --- /dev/null +++ b/theme/Bridge/cursors/circle @@ -0,0 +1 @@ +not-allowed \ No newline at end of file diff --git a/theme/Bridge/cursors/closedhand b/theme/Bridge/cursors/closedhand new file mode 100755 index 0000000..c770397 Binary files /dev/null and b/theme/Bridge/cursors/closedhand differ diff --git a/theme/Bridge/cursors/col-resize b/theme/Bridge/cursors/col-resize new file mode 100755 index 0000000..e0cc54a Binary files /dev/null and b/theme/Bridge/cursors/col-resize differ diff --git a/theme/Bridge/cursors/color-picker b/theme/Bridge/cursors/color-picker new file mode 100755 index 0000000..b8a31af Binary files /dev/null and b/theme/Bridge/cursors/color-picker differ diff --git a/theme/Bridge/cursors/context-menu b/theme/Bridge/cursors/context-menu new file mode 100755 index 0000000..26a0b2e Binary files /dev/null and b/theme/Bridge/cursors/context-menu differ diff --git a/theme/Bridge/cursors/copy b/theme/Bridge/cursors/copy new file mode 100755 index 0000000..69fdafe Binary files /dev/null and b/theme/Bridge/cursors/copy differ diff --git a/theme/Bridge/cursors/cross b/theme/Bridge/cursors/cross new file mode 120000 index 0000000..67580a7 --- /dev/null +++ b/theme/Bridge/cursors/cross @@ -0,0 +1 @@ +crosshair \ No newline at end of file diff --git a/theme/Bridge/cursors/crossed_circle b/theme/Bridge/cursors/crossed_circle new file mode 120000 index 0000000..23bfed6 --- /dev/null +++ b/theme/Bridge/cursors/crossed_circle @@ -0,0 +1 @@ +not-allowed \ No newline at end of file diff --git a/theme/Bridge/cursors/crosshair b/theme/Bridge/cursors/crosshair new file mode 100755 index 0000000..6c0cd51 Binary files /dev/null and b/theme/Bridge/cursors/crosshair differ diff --git a/theme/Bridge/cursors/d9ce0ab605698f320427677b458ad60b b/theme/Bridge/cursors/d9ce0ab605698f320427677b458ad60b new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Bridge/cursors/d9ce0ab605698f320427677b458ad60b @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Bridge/cursors/default b/theme/Bridge/cursors/default new file mode 100755 index 0000000..0160b85 Binary files /dev/null and b/theme/Bridge/cursors/default differ diff --git a/theme/Bridge/cursors/dnd-copy b/theme/Bridge/cursors/dnd-copy new file mode 100755 index 0000000..69fdafe Binary files /dev/null and b/theme/Bridge/cursors/dnd-copy differ diff --git a/theme/Bridge/cursors/dnd-link b/theme/Bridge/cursors/dnd-link new file mode 120000 index 0000000..c4ad821 --- /dev/null +++ b/theme/Bridge/cursors/dnd-link @@ -0,0 +1 @@ +alias \ No newline at end of file diff --git a/theme/Bridge/cursors/dnd-move b/theme/Bridge/cursors/dnd-move new file mode 100755 index 0000000..a0ade7c Binary files /dev/null and b/theme/Bridge/cursors/dnd-move differ diff --git a/theme/Bridge/cursors/dnd-no-drop b/theme/Bridge/cursors/dnd-no-drop new file mode 100755 index 0000000..2bfb3f8 Binary files /dev/null and b/theme/Bridge/cursors/dnd-no-drop differ diff --git a/theme/Bridge/cursors/dnd-none b/theme/Bridge/cursors/dnd-none new file mode 100755 index 0000000..c770397 Binary files /dev/null and b/theme/Bridge/cursors/dnd-none differ diff --git a/theme/Bridge/cursors/down-arrow b/theme/Bridge/cursors/down-arrow new file mode 100755 index 0000000..fe00343 Binary files /dev/null and b/theme/Bridge/cursors/down-arrow differ diff --git a/theme/Bridge/cursors/draft b/theme/Bridge/cursors/draft new file mode 100755 index 0000000..fe7b363 Binary files /dev/null and b/theme/Bridge/cursors/draft differ diff --git a/theme/Bridge/cursors/e-resize b/theme/Bridge/cursors/e-resize new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Bridge/cursors/e-resize @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Bridge/cursors/e29285e634086352946a0e7090d73106 b/theme/Bridge/cursors/e29285e634086352946a0e7090d73106 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Bridge/cursors/e29285e634086352946a0e7090d73106 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Bridge/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff b/theme/Bridge/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff new file mode 120000 index 0000000..3e94178 --- /dev/null +++ b/theme/Bridge/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff @@ -0,0 +1 @@ +closedhand \ No newline at end of file diff --git a/theme/Bridge/cursors/fleur b/theme/Bridge/cursors/fleur new file mode 100755 index 0000000..3281108 Binary files /dev/null and b/theme/Bridge/cursors/fleur differ diff --git a/theme/Bridge/cursors/forbidden b/theme/Bridge/cursors/forbidden new file mode 120000 index 0000000..226af18 --- /dev/null +++ b/theme/Bridge/cursors/forbidden @@ -0,0 +1 @@ +no-drop \ No newline at end of file diff --git a/theme/Bridge/cursors/h_double_arrow b/theme/Bridge/cursors/h_double_arrow new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Bridge/cursors/h_double_arrow @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Bridge/cursors/half-busy b/theme/Bridge/cursors/half-busy new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Bridge/cursors/half-busy @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Bridge/cursors/hand1 b/theme/Bridge/cursors/hand1 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Bridge/cursors/hand1 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Bridge/cursors/hand2 b/theme/Bridge/cursors/hand2 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Bridge/cursors/hand2 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Bridge/cursors/help b/theme/Bridge/cursors/help new file mode 100755 index 0000000..fb899a2 Binary files /dev/null and b/theme/Bridge/cursors/help differ diff --git a/theme/Bridge/cursors/ibeam b/theme/Bridge/cursors/ibeam new file mode 120000 index 0000000..f3a3485 --- /dev/null +++ b/theme/Bridge/cursors/ibeam @@ -0,0 +1 @@ +text \ No newline at end of file diff --git a/theme/Bridge/cursors/left_ptr b/theme/Bridge/cursors/left_ptr new file mode 120000 index 0000000..331d858 --- /dev/null +++ b/theme/Bridge/cursors/left_ptr @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/theme/Bridge/cursors/left_ptr_help b/theme/Bridge/cursors/left_ptr_help new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Bridge/cursors/left_ptr_help @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Bridge/cursors/left_ptr_watch b/theme/Bridge/cursors/left_ptr_watch new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Bridge/cursors/left_ptr_watch @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Bridge/cursors/left_side b/theme/Bridge/cursors/left_side new file mode 100644 index 0000000..36da673 Binary files /dev/null and b/theme/Bridge/cursors/left_side differ diff --git a/theme/Bridge/cursors/link b/theme/Bridge/cursors/link new file mode 120000 index 0000000..c4ad821 --- /dev/null +++ b/theme/Bridge/cursors/link @@ -0,0 +1 @@ +alias \ No newline at end of file diff --git a/theme/Bridge/cursors/move b/theme/Bridge/cursors/move new file mode 100755 index 0000000..c770397 Binary files /dev/null and b/theme/Bridge/cursors/move differ diff --git a/theme/Bridge/cursors/n-resize b/theme/Bridge/cursors/n-resize new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Bridge/cursors/n-resize @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Bridge/cursors/no-drop b/theme/Bridge/cursors/no-drop new file mode 100755 index 0000000..8e3e472 Binary files /dev/null and b/theme/Bridge/cursors/no-drop differ diff --git a/theme/Bridge/cursors/not-allowed b/theme/Bridge/cursors/not-allowed new file mode 100755 index 0000000..2e07f24 Binary files /dev/null and b/theme/Bridge/cursors/not-allowed differ diff --git a/theme/Bridge/cursors/openhand b/theme/Bridge/cursors/openhand new file mode 100755 index 0000000..3600deb Binary files /dev/null and b/theme/Bridge/cursors/openhand differ diff --git a/theme/Bridge/cursors/pencil b/theme/Bridge/cursors/pencil new file mode 100755 index 0000000..1383d73 Binary files /dev/null and b/theme/Bridge/cursors/pencil differ diff --git a/theme/Bridge/cursors/pirate b/theme/Bridge/cursors/pirate new file mode 100755 index 0000000..16b4338 Binary files /dev/null and b/theme/Bridge/cursors/pirate differ diff --git a/theme/Bridge/cursors/plus b/theme/Bridge/cursors/plus new file mode 120000 index 0000000..d1b147b --- /dev/null +++ b/theme/Bridge/cursors/plus @@ -0,0 +1 @@ +cell \ No newline at end of file diff --git a/theme/Bridge/cursors/pointer b/theme/Bridge/cursors/pointer new file mode 100755 index 0000000..141b171 Binary files /dev/null and b/theme/Bridge/cursors/pointer differ diff --git a/theme/Bridge/cursors/pointing_hand b/theme/Bridge/cursors/pointing_hand new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Bridge/cursors/pointing_hand @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Bridge/cursors/progress b/theme/Bridge/cursors/progress new file mode 100755 index 0000000..38e5e0c Binary files /dev/null and b/theme/Bridge/cursors/progress differ diff --git a/theme/Bridge/cursors/question_arrow b/theme/Bridge/cursors/question_arrow new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Bridge/cursors/question_arrow @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Bridge/cursors/right-arrow b/theme/Bridge/cursors/right-arrow new file mode 100755 index 0000000..f61d1c4 Binary files /dev/null and b/theme/Bridge/cursors/right-arrow differ diff --git a/theme/Bridge/cursors/right_ptr b/theme/Bridge/cursors/right_ptr new file mode 100755 index 0000000..2f69ea0 Binary files /dev/null and b/theme/Bridge/cursors/right_ptr differ diff --git a/theme/Bridge/cursors/right_side b/theme/Bridge/cursors/right_side new file mode 100755 index 0000000..6441929 Binary files /dev/null and b/theme/Bridge/cursors/right_side differ diff --git a/theme/Bridge/cursors/row-resize b/theme/Bridge/cursors/row-resize new file mode 100755 index 0000000..cf4e2d6 Binary files /dev/null and b/theme/Bridge/cursors/row-resize differ diff --git a/theme/Bridge/cursors/s-resize b/theme/Bridge/cursors/s-resize new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Bridge/cursors/s-resize @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Bridge/cursors/sb_h_double_arrow b/theme/Bridge/cursors/sb_h_double_arrow new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Bridge/cursors/sb_h_double_arrow @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Bridge/cursors/sb_v_double_arrow b/theme/Bridge/cursors/sb_v_double_arrow new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Bridge/cursors/sb_v_double_arrow @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Bridge/cursors/size_all b/theme/Bridge/cursors/size_all new file mode 120000 index 0000000..147f744 --- /dev/null +++ b/theme/Bridge/cursors/size_all @@ -0,0 +1 @@ +fleur \ No newline at end of file diff --git a/theme/Bridge/cursors/size_bdiag b/theme/Bridge/cursors/size_bdiag new file mode 100755 index 0000000..1d94456 Binary files /dev/null and b/theme/Bridge/cursors/size_bdiag differ diff --git a/theme/Bridge/cursors/size_fdiag b/theme/Bridge/cursors/size_fdiag new file mode 100755 index 0000000..31b2383 Binary files /dev/null and b/theme/Bridge/cursors/size_fdiag differ diff --git a/theme/Bridge/cursors/size_hor b/theme/Bridge/cursors/size_hor new file mode 100755 index 0000000..20d23de Binary files /dev/null and b/theme/Bridge/cursors/size_hor differ diff --git a/theme/Bridge/cursors/size_ver b/theme/Bridge/cursors/size_ver new file mode 100755 index 0000000..47172c2 Binary files /dev/null and b/theme/Bridge/cursors/size_ver differ diff --git a/theme/Bridge/cursors/split_h b/theme/Bridge/cursors/split_h new file mode 120000 index 0000000..93d9c89 --- /dev/null +++ b/theme/Bridge/cursors/split_h @@ -0,0 +1 @@ +row-resize \ No newline at end of file diff --git a/theme/Bridge/cursors/split_v b/theme/Bridge/cursors/split_v new file mode 120000 index 0000000..3ce0e22 --- /dev/null +++ b/theme/Bridge/cursors/split_v @@ -0,0 +1 @@ +col-resize \ No newline at end of file diff --git a/theme/Bridge/cursors/text b/theme/Bridge/cursors/text new file mode 100755 index 0000000..5bf93cb Binary files /dev/null and b/theme/Bridge/cursors/text differ diff --git a/theme/Bridge/cursors/top_left_corner b/theme/Bridge/cursors/top_left_corner new file mode 120000 index 0000000..913bbc3 --- /dev/null +++ b/theme/Bridge/cursors/top_left_corner @@ -0,0 +1 @@ +size_fdiag \ No newline at end of file diff --git a/theme/Bridge/cursors/top_right_corner b/theme/Bridge/cursors/top_right_corner new file mode 120000 index 0000000..e0935e6 --- /dev/null +++ b/theme/Bridge/cursors/top_right_corner @@ -0,0 +1 @@ +size_bdiag \ No newline at end of file diff --git a/theme/Bridge/cursors/top_side b/theme/Bridge/cursors/top_side new file mode 100755 index 0000000..09db4fa Binary files /dev/null and b/theme/Bridge/cursors/top_side differ diff --git a/theme/Bridge/cursors/up-arrow b/theme/Bridge/cursors/up-arrow new file mode 100755 index 0000000..dce3b28 Binary files /dev/null and b/theme/Bridge/cursors/up-arrow differ diff --git a/theme/Bridge/cursors/v_double_arrow b/theme/Bridge/cursors/v_double_arrow new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Bridge/cursors/v_double_arrow @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Bridge/cursors/vertical-text b/theme/Bridge/cursors/vertical-text new file mode 100755 index 0000000..46d618d Binary files /dev/null and b/theme/Bridge/cursors/vertical-text differ diff --git a/theme/Bridge/cursors/w-resize b/theme/Bridge/cursors/w-resize new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Bridge/cursors/w-resize @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Bridge/cursors/wait b/theme/Bridge/cursors/wait new file mode 100755 index 0000000..aaeab1c Binary files /dev/null and b/theme/Bridge/cursors/wait differ diff --git a/theme/Bridge/cursors/watch b/theme/Bridge/cursors/watch new file mode 120000 index 0000000..fd80437 --- /dev/null +++ b/theme/Bridge/cursors/watch @@ -0,0 +1 @@ +wait \ No newline at end of file diff --git a/theme/Bridge/cursors/wayland-cursor b/theme/Bridge/cursors/wayland-cursor new file mode 100755 index 0000000..3bd3b52 Binary files /dev/null and b/theme/Bridge/cursors/wayland-cursor differ diff --git a/theme/Bridge/cursors/whats_this b/theme/Bridge/cursors/whats_this new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Bridge/cursors/whats_this @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Bridge/cursors/x-cursor b/theme/Bridge/cursors/x-cursor new file mode 100755 index 0000000..497f8a2 Binary files /dev/null and b/theme/Bridge/cursors/x-cursor differ diff --git a/theme/Bridge/cursors/xterm b/theme/Bridge/cursors/xterm new file mode 120000 index 0000000..f3a3485 --- /dev/null +++ b/theme/Bridge/cursors/xterm @@ -0,0 +1 @@ +text \ No newline at end of file diff --git a/theme/Bridge/cursors/zoom-in b/theme/Bridge/cursors/zoom-in new file mode 100755 index 0000000..3af334f Binary files /dev/null and b/theme/Bridge/cursors/zoom-in differ diff --git a/theme/Bridge/cursors/zoom-out b/theme/Bridge/cursors/zoom-out new file mode 100755 index 0000000..b6946fc Binary files /dev/null and b/theme/Bridge/cursors/zoom-out differ diff --git a/theme/Bridge/index.theme b/theme/Bridge/index.theme new file mode 100644 index 0000000..22956e4 --- /dev/null +++ b/theme/Bridge/index.theme @@ -0,0 +1,3 @@ +[Icon Theme] +Name = Bridge +Comment = Spanning the gap between history and future diff --git a/theme/Budgie/cinnamon/cinnamon.css b/theme/Budgie/cinnamon/cinnamon.css new file mode 100644 index 0000000..f94f04a --- /dev/null +++ b/theme/Budgie/cinnamon/cinnamon.css @@ -0,0 +1,1442 @@ +stage { + font-family: Futura Bk bt, sans, Sans-Serif; + font-size: 9pt; + color: #D3DAE3; } + +.label-shadow { + color: transparent; } + +.menu #notification .notification-button, .menu #notification .notification-icon-button, +.popup-menu #notification .notification-button, +.popup-menu #notification .notification-icon-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #2b2e39; + box-shadow: inset 0 2px 4px rgba(68, 74, 88, 0.05); } + .menu #notification .notification-button, .menu #notification .notification-icon-button, + .popup-menu #notification .notification-button, + .popup-menu #notification .notification-icon-button, .sound-button, .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, + .popup-menu #notification .notification-button:focus, + .popup-menu #notification .notification-icon-button:focus, .sound-button:focus, .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, + .popup-menu #notification .notification-button:hover, + .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, + .popup-menu #notification .notification-button:hover:focus, + .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, + .popup-menu #notification .notification-button:active, + .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, + .popup-menu #notification .notification-button:active:focus, + .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus, .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, + .popup-menu #notification .notification-button:insensitive, + .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, + .popup-menu #notification .notification-button:focus, + .popup-menu #notification .notification-icon-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px rgba(68, 74, 88, 0.05); } + .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, + .popup-menu #notification .notification-button:hover, + .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #505666; + border: 1px solid #2b2e39; + box-shadow: inset 0 2px 4px rgba(80, 86, 102, 0.05); } + .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, + .popup-menu #notification .notification-button:hover:focus, + .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px rgba(68, 74, 88, 0.05); } + .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, + .popup-menu #notification .notification-button:active, + .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, + .popup-menu #notification .notification-button:active:focus, + .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + background-color: #5294e2; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px #5294e2; } + .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, + .popup-menu #notification .notification-button:insensitive, + .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: rgba(211, 218, 227, 0.45); + border: 1px solid rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); + box-shadow: inset 0 2px 4px rgba(68, 74, 88, 0.05); } + +.notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + border-radius: 2px; + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus { + color: #5294e2; } + .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + border: 1px solid #5294e2; + background-color: #5294e2; } + .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #5d626e; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + +.menu #notification StEntry, +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #5294e2; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3DAE3; + background-color: #404552; + border: 1px solid #2b2e39; + box-shadow: inset 0 2px 4px rgba(64, 69, 82, 0.05); } + .menu #notification StEntry:focus, + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .menu #notification StEntry:hover, + .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #D3DAE3; + background-color: #404552; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px rgba(64, 69, 82, 0.05); } + .menu #notification StEntry:insensitive, + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(211, 218, 227, 0.45); + background-color: #3c414e; + border-color: 1px solid #313440; + box-shadow: inset 0 2px 4px rgba(60, 65, 78, 0.05); } + .menu #notification StEntry StIcon.capslock-warning, .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #BAC3CF; + selection-background-color: #5294e2; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #BAC3CF; + background-color: rgba(102, 109, 132, 0.35); + border: 1px solid rgba(26, 28, 34, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #5294e2; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(186, 195, 207, 0.55); + background-color: rgba(102, 109, 132, 0.2); + border: 1px solid rgba(26, 28, 34, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } + +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 69, 82, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #767b87; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #676b78; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5294e2; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 4px; + -slider-background-color: #2b2e39; + -slider-border-color: transparent; + -slider-active-background-color: #5294e2; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 4px; + height: 18px; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; + color: transparent; } + .popup-menu-item:active .popup-slider-menu-item, .popup-menu-item:active + .slider { + -slider-background-color: rgba(0, 0, 0, 0.2); + -slider-active-background-color: #ffffff; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } + +.check-box StLabel { + font-weight: normal; } + +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } + +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } + +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } + +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } + +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } + +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } + +.radiobutton:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } + +.radiobutton:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } + +.radiobutton:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + .popup-menu-item:active .toggle-switch { + background-image: url("common-assets/switch/switch-off-selected.svg"); } + .popup-menu-item:active .toggle-switch:checked { + background-image: url("common-assets/switch/switch-on-selected.svg"); } + +.cinnamon-link { + color: #a9caf1; + text-decoration: underline; } + .cinnamon-link:hover { + color: #d5e5f8; } + +#Tooltip { + border-radius: 3px; + padding: 5px 12px; + background-color: rgba(53, 57, 69, 0.95); + color: #BAC3CF; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.menu, +.popup-menu, +.popup-combo-menu { + color: #D3DAE3; + border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } + .menu-arrow, + .popup-menu-arrow { + icon-size: 16px; } + .menu .popup-sub-menu, + .popup-menu .popup-sub-menu, + .popup-combo-menu .popup-sub-menu { + background-gradient-direction: none; + box-shadow: none; + border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } + .menu .popup-sub-menu .popup-menu-item:ltr, + .popup-menu .popup-sub-menu .popup-menu-item:ltr, + .popup-combo-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 0em; } + .menu .popup-sub-menu .popup-menu-item:rtl, + .popup-menu .popup-sub-menu .popup-menu-item:rtl, + .popup-combo-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 0em; } + .menu .popup-sub-menu StScrollBar, + .popup-menu .popup-sub-menu StScrollBar, + .popup-combo-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .menu .popup-sub-menu StScrollBar StBin#trough, .menu .popup-sub-menu StScrollBar StBin#vhandle, + .popup-menu .popup-sub-menu StScrollBar StBin#trough, + .popup-menu .popup-sub-menu StScrollBar StBin#vhandle, + .popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, + .popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .menu .popup-menu-content, + .popup-menu .popup-menu-content, + .popup-combo-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .menu .popup-menu-item, + .popup-menu .popup-menu-item, + .popup-combo-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; } + .menu .popup-menu-item:active, + .popup-menu .popup-menu-item:active, + .popup-combo-menu .popup-menu-item:active { + color: #ffffff; + background-color: transparent; + border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } + .menu .popup-menu-item:insensitive, + .popup-menu .popup-menu-item:insensitive, + .popup-combo-menu .popup-menu-item:insensitive { + color: rgba(211, 218, 227, 0.5); + background: none; } + .menu .popup-inactive-menu-item, + .popup-menu .popup-inactive-menu-item, + .popup-combo-menu .popup-inactive-menu-item { + color: #D3DAE3; } + .menu .popup-inactive-menu-item:insensitive, + .popup-menu .popup-inactive-menu-item:insensitive, + .popup-combo-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 218, 227, 0.45); } + .menu .popup-menu-item:active .popup-inactive-menu-item, + .popup-menu .popup-menu-item:active .popup-inactive-menu-item, + .popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { + color: #ffffff; } + .menu-icon, + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: transparent; + -arrow-border-width: 1px; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; } + +.popup-combo-menu { + padding: 10px 1px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; + width: 32px; } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding: 0; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding: 0; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: white; + font-size: 1em; + padding: 0px; } + +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } + +.panel-bottom { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } + +.panel-left { + border-image: url("common-assets/panel/panel-left.svg") 1 1 1 1; } + +.panel-right { + border-image: url("common-assets/panel/panel-right.svg") 1 1 1 1; } + +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } + +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } + +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 57, 69, 0.95); + border: 1px solid rgba(53, 57, 69, 0.95); + color: #BAC3CF; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #5294e2; + color: #ffffff; + border: 1px solid #5294e2; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #BAC3CF; + background-color: rgba(102, 109, 132, 0.35); + border: 1px solid rgba(26, 28, 34, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #5294e2; + background-color: #5294e2; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #5294e2; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #5294e2; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353945; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } + +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } + +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } + +.about-title { + font-size: 2em; + font-weight: bold; } + +.about-uuid { + font-size: 10px; + color: #888; } + +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } + +.about-scrollBox { + border: 1px solid #2b2e39; + border-radius: 2px; + background-color: #404552; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } + +.about-description { + padding-top: 4px; + padding-bottom: 16px; } + +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #D3DAE3; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #D3DAE3; + border-radius: 2px; } + +.calendar-day-base { + font-size: 80%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(211, 218, 227, 0.85); + margin-top: 1em; + font-size: 70%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 218, 227, 0.8); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3DAE3; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #5294e2; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(211, 218, 227, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(211, 218, 227, 0.7); + font-size: 80%; } + +#notification { + border-radius: 3px; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #BAC3CF; } + .menu #notification, + .popup-menu #notification { + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .menu #notification, .menu #notification.multi-line-notification, + .popup-menu #notification, + .popup-menu #notification.multi-line-notification { + color: #D3DAE3; } + .menu #notification .notification-button, .menu #notification .notification-icon-button, + .popup-menu #notification .notification-button, + .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #BAC3CF; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #BAC3CF; } + +.notification-button, .notification-icon-button { + padding: 5px; } + +.notification-icon-button > StIcon { + icon-size: 36px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #BAC3CF; + background: none; + border: none; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5294e2; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #5294e2; + border: 0px solid #5294e2; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #BAC3CF; } + .switcher-arrow:highlighted { + border-color: transparent; + color: white; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + color: #D3DAE3; + background-color: rgba(56, 60, 74, 0); + border: none; + border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; + padding: 0 5px 6px 5px; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + background: none; + border: none; + border-image: url("dark-assets/misc/button-box.svg") 9 9 9 9; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #BAC3CF; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #BAC3CF; + selected-color: #ffffff; + selection-background-color: #5294e2; + color: #BAC3CF; + background-color: rgba(102, 109, 132, 0.35); + border: 1px solid rgba(26, 28, 34, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #ffffff; + background-color: #5294e2; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; + background-gradient-direction: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 57, 69, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + border: 1px solid #5294e2; + background-color: #5294e2; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #5d626e; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + +.keyboard-subkeys { + color: #BAC3CF; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 57, 69, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + padding: 10px; + transition-duration: 300; + background-color: #383C4A; + border: 1px solid #2b2e39; } + +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } + +.menu-places-box { + padding: 10px; + border: 0px solid red; } + +.menu-places-button { + padding: 10px; } + +.menu-categories-box { + padding: 10px 30px 10px 30px; } + +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } + +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } + +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(211, 218, 227, 0.45); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } + +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } + +.menu-selected-app-title { + font-weight: bold; } + +.menu-selected-app-description { + max-width: 150px; } + +.menu-search-box:ltr { + padding-left: 30px; } + +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #D3DAE3; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #D3DAE3; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: white; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: white; + background: none; + border: none; + border-radius: 5px; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #5294e2; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; } + .panel-bottom .window-list-box { + padding-top: 1px; } + .panel-top .window-list-box { + padding-bottom: 1px; } + .window-list-box.vertical { + spacing: 4px; + padding: 10px 0; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } + +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } + +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-top: 0; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box:hover { + color: white; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: white; } + .panel-bottom .window-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus { + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } + .panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus { + border-image: url("common-assets/panel/window-list-active-top.svg") 3 3 3 1; } + .panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus { + border-image: url("common-assets/panel/window-list-active-left.svg") 3 1 3 3; } + .panel-right .window-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus { + border-image: url("common-assets/panel/window-list-active-right.svg") 1 3 3 3; } + .window-list-item-box.right, .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + +.window-list-item-demands-attention { + background-gradient-start: #F27835; + background-gradient-end: #F27835; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } + +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } + +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(42, 45, 55, 0.85); + border: 0px solid rgba(31, 33, 40, 0.95); + border-bottom: 1px; + color: #BAC3CF; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #BAC3CF; + border-radius: 2px; + border: 1px solid rgba(53, 57, 69, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + background-color: #5294e2; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px #5294e2; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #2d303b; + -slider-border-color: transparent; + -slider-active-background-color: #5294e2; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #5294e2; } + .workspace-button:hover { + color: rgba(82, 148, 226, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-gradient-direction: none; + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #5294e2; + background-gradient-direction: none; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(76, 82, 99, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(76, 82, 99, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(87, 93, 113, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 58, 70, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding: 2px 0; } + +.panel-launcher, +.launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover, + .launcher:hover { + background-gradient-direction: none; + border: 0px solid #5294e2; } + .panel-bottom .panel-launcher:hover, .panel-bottom + .launcher:hover { + border-bottom-width: 1px; } + .panel-top .panel-launcher:hover, .panel-top + .launcher:hover { + border-top-width: 1px; } + .panel-left .panel-launcher:hover, .panel-left + .launcher:hover { + border-left-width: 1px; + padding-left: 0; } + .panel-right .panel-launcher:hover, .panel-right + .launcher:hover { + border-right-width: 1px; + padding-right: 0; } + .panel-bottom .panel-launcher, .panel-bottom + .launcher { + margin-top: 0; + margin-bottom: 0; } + .panel-top .panel-launcher, .panel-top + .launcher { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } + +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } + +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: white; + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding: 3px 0; } + .applet-box:hover { + color: #ffffff; + background-color: #5294e2; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.applet-label { + font-weight: bold; + color: white; } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } + +.applet-icon { + color: white; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #D3DAE3; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #BAC3CF; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + color: #BAC3CF; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; + color: #BAC3CF; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; + color: #BAC3CF; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #5294e2; + background-color: rgba(82, 148, 226, 0.3); } + +.photoframe-box { + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + color: #BAC3CF; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview, .tile-preview.snap, +.tile-hud, .tile-hud.snap { + background-color: rgba(82, 148, 226, 0.3); + border: 1px solid #5294e2; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/theme/Budgie/cinnamon/common-assets/menu/menu-hover.svg b/theme/Budgie/cinnamon/common-assets/menu/menu-hover.svg new file mode 100644 index 0000000..4d3f262 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/menu/menu-hover.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/menu/menu-separator.svg b/theme/Budgie/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/add-workspace-active.svg b/theme/Budgie/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..d39784c --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/add-workspace-hover.svg b/theme/Budgie/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..e771e33 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/add-workspace.svg b/theme/Budgie/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..65f5361 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/bg.svg b/theme/Budgie/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..9292ecc --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-left.svg b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..e29be39 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-right.svg b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/close-active.svg b/theme/Budgie/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/cinnamon/common-assets/misc/close-hover.svg b/theme/Budgie/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/cinnamon/common-assets/misc/close.svg b/theme/Budgie/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/cinnamon/common-assets/misc/corner-ripple.svg b/theme/Budgie/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..3f52f68 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/desklet-header.svg b/theme/Budgie/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/desklet.svg b/theme/Budgie/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/osd.svg b/theme/Budgie/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/misc/overview-hover.png b/theme/Budgie/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/theme/Budgie/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/theme/Budgie/cinnamon/common-assets/misc/overview.png b/theme/Budgie/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..75c2295 Binary files /dev/null and b/theme/Budgie/cinnamon/common-assets/misc/overview.png differ diff --git a/theme/Budgie/cinnamon/common-assets/misc/trash-icon.svg b/theme/Budgie/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/activities-active.svg b/theme/Budgie/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..ae5c602 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/activities.svg b/theme/Budgie/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/panel-bottom.svg b/theme/Budgie/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..b5635bc --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/panel-left.svg b/theme/Budgie/cinnamon/common-assets/panel/panel-left.svg new file mode 100644 index 0000000..e5796b2 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/panel-left.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/panel-right.svg b/theme/Budgie/cinnamon/common-assets/panel/panel-right.svg new file mode 100644 index 0000000..09f1889 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/panel-right.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/panel-top.svg b/theme/Budgie/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..c0a64da --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/window-list-active-bottom.svg b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..fbe4599 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/window-list-active-left.svg b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-left.svg new file mode 100644 index 0000000..fecc258 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-left.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/window-list-active-right.svg b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-right.svg new file mode 100644 index 0000000..1f78f1d --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-right.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/panel/window-list-active-top.svg b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..54a9036 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/switch/switch-off-selected.svg b/theme/Budgie/cinnamon/common-assets/switch/switch-off-selected.svg new file mode 100644 index 0000000..c374f22 --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/switch/switch-off-selected.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/common-assets/switch/switch-on-selected.svg b/theme/Budgie/cinnamon/common-assets/switch/switch-on-selected.svg new file mode 100644 index 0000000..a86b37a --- /dev/null +++ b/theme/Budgie/cinnamon/common-assets/switch/switch-on-selected.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..0c2a8ee --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..b17ab7c --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..0c111f0 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..d7c2217 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/menu/menu.svg b/theme/Budgie/cinnamon/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/menu/submenu.svg b/theme/Budgie/cinnamon/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..9369544 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/misc/button-box.svg b/theme/Budgie/cinnamon/dark-assets/misc/button-box.svg new file mode 100644 index 0000000..0342698 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/misc/button-box.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/misc/message.svg b/theme/Budgie/cinnamon/dark-assets/misc/message.svg new file mode 100644 index 0000000..7c8f1b6 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/misc/message.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/misc/modal.svg b/theme/Budgie/cinnamon/dark-assets/misc/modal.svg new file mode 100644 index 0000000..ec0b945 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/switch/switch-off.svg b/theme/Budgie/cinnamon/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..68eed5d --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/dark-assets/switch/switch-on.svg b/theme/Budgie/cinnamon/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..b6a9be9 --- /dev/null +++ b/theme/Budgie/cinnamon/dark-assets/switch/switch-on.svg @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/cinnamon/thumbnail.png b/theme/Budgie/cinnamon/thumbnail.png new file mode 100644 index 0000000..3c583d7 Binary files /dev/null and b/theme/Budgie/cinnamon/thumbnail.png differ diff --git a/theme/Budgie/gnome-shell/common-assets/dash/dash-left.svg b/theme/Budgie/gnome-shell/common-assets/dash/dash-left.svg new file mode 100644 index 0000000..5fb7bf2 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/dash-left.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/dash/dash-placeholder.svg b/theme/Budgie/gnome-shell/common-assets/dash/dash-placeholder.svg new file mode 100644 index 0000000..cbae148 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/dash-placeholder.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/dash/dash-right.svg b/theme/Budgie/gnome-shell/common-assets/dash/dash-right.svg new file mode 100644 index 0000000..64c1e9b --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/dash-right.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/dash/running1.svg b/theme/Budgie/gnome-shell/common-assets/dash/running1.svg new file mode 100644 index 0000000..45036e2 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/running1.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/dash/running2.svg b/theme/Budgie/gnome-shell/common-assets/dash/running2.svg new file mode 100644 index 0000000..365fa90 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/running2.svg @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/dash/running3.svg b/theme/Budgie/gnome-shell/common-assets/dash/running3.svg new file mode 100644 index 0000000..0de3f4b --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/running3.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/dash/running4.svg b/theme/Budgie/gnome-shell/common-assets/dash/running4.svg new file mode 100644 index 0000000..33ec9cf --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/dash/running4.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/menu/menu-hover.svg b/theme/Budgie/gnome-shell/common-assets/menu/menu-hover.svg new file mode 100644 index 0000000..4d3f262 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/menu/menu-hover.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/menu/menu-separator.svg b/theme/Budgie/gnome-shell/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/bg.svg b/theme/Budgie/gnome-shell/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/calendar-today.svg b/theme/Budgie/gnome-shell/common-assets/misc/calendar-today.svg new file mode 100644 index 0000000..b5a41f6 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/calendar-today.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/close-active.svg b/theme/Budgie/gnome-shell/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/gnome-shell/common-assets/misc/close-hover.svg b/theme/Budgie/gnome-shell/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/gnome-shell/common-assets/misc/close.svg b/theme/Budgie/gnome-shell/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/gnome-shell/common-assets/misc/corner-ripple-ltr.svg b/theme/Budgie/gnome-shell/common-assets/misc/corner-ripple-ltr.svg new file mode 100644 index 0000000..357a544 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/corner-ripple-ltr.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/corner-ripple-rtl.svg b/theme/Budgie/gnome-shell/common-assets/misc/corner-ripple-rtl.svg new file mode 100644 index 0000000..57176d2 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/corner-ripple-rtl.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/more-results.svg b/theme/Budgie/gnome-shell/common-assets/misc/more-results.svg new file mode 100644 index 0000000..b5fa6be --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/more-results.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/osd.svg b/theme/Budgie/gnome-shell/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-active.svg b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-active.svg new file mode 100644 index 0000000..00c1556 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-active.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-checked.svg b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-checked.svg new file mode 100644 index 0000000..249100d --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-checked.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-hover.svg b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-hover.svg new file mode 100644 index 0000000..b560780 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-hover.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-inactive.svg b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-inactive.svg new file mode 100644 index 0000000..712573b --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/page-indicator-inactive.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/misc/process-working.svg b/theme/Budgie/gnome-shell/common-assets/misc/process-working.svg new file mode 100644 index 0000000..7ae13c7 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/misc/process-working.svg @@ -0,0 +1,409 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/Budgie/gnome-shell/common-assets/misc/ws-switch-arrow-down.png b/theme/Budgie/gnome-shell/common-assets/misc/ws-switch-arrow-down.png new file mode 100644 index 0000000..dec9975 Binary files /dev/null and b/theme/Budgie/gnome-shell/common-assets/misc/ws-switch-arrow-down.png differ diff --git a/theme/Budgie/gnome-shell/common-assets/misc/ws-switch-arrow-up.png b/theme/Budgie/gnome-shell/common-assets/misc/ws-switch-arrow-up.png new file mode 100644 index 0000000..1cdf519 Binary files /dev/null and b/theme/Budgie/gnome-shell/common-assets/misc/ws-switch-arrow-up.png differ diff --git a/theme/Budgie/gnome-shell/common-assets/panel/activities-active.svg b/theme/Budgie/gnome-shell/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..ae5c602 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/panel/activities-active.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/panel/activities.svg b/theme/Budgie/gnome-shell/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/panel/panel-overview.svg b/theme/Budgie/gnome-shell/common-assets/panel/panel-overview.svg new file mode 100644 index 0000000..c955747 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/panel/panel-overview.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/panel/panel.svg b/theme/Budgie/gnome-shell/common-assets/panel/panel.svg new file mode 100644 index 0000000..c0a64da --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/panel/panel.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/switch/switch-off-selected.svg b/theme/Budgie/gnome-shell/common-assets/switch/switch-off-selected.svg new file mode 100644 index 0000000..937bef9 --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/switch/switch-off-selected.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/common-assets/switch/switch-on-selected.svg b/theme/Budgie/gnome-shell/common-assets/switch/switch-on-selected.svg new file mode 100644 index 0000000..b4de53f --- /dev/null +++ b/theme/Budgie/gnome-shell/common-assets/switch/switch-on-selected.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-checked-focused.svg b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..0c2a8ee --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-checked.svg b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..b17ab7c --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-unchecked-focused.svg b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..0c111f0 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-unchecked.svg b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..d7c2217 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/menu/menu.svg b/theme/Budgie/gnome-shell/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/menu/submenu-open.svg b/theme/Budgie/gnome-shell/dark-assets/menu/submenu-open.svg new file mode 100644 index 0000000..bd817b0 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/menu/submenu-open.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/menu/submenu.svg b/theme/Budgie/gnome-shell/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..ebab963 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/menu/submenu.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-left-hover.svg b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..33f401d --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-left.svg b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..5602eff --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,169 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-right-hover.svg b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..5586d55 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-right.svg b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..734b53b --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,171 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/message-active.svg b/theme/Budgie/gnome-shell/dark-assets/misc/message-active.svg new file mode 100644 index 0000000..26baa11 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/message-active.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/message-close-active.svg b/theme/Budgie/gnome-shell/dark-assets/misc/message-close-active.svg new file mode 100644 index 0000000..d678a90 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/message-close-active.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/message-close-hover.svg b/theme/Budgie/gnome-shell/dark-assets/misc/message-close-hover.svg new file mode 100644 index 0000000..6ed2ec1 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/message-close-hover.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/message-close.svg b/theme/Budgie/gnome-shell/dark-assets/misc/message-close.svg new file mode 100644 index 0000000..66a5203 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/message-close.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/message-hover.svg b/theme/Budgie/gnome-shell/dark-assets/misc/message-hover.svg new file mode 100644 index 0000000..7ab720c --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/message-hover.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/message.svg b/theme/Budgie/gnome-shell/dark-assets/misc/message.svg new file mode 100644 index 0000000..7c8f1b6 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/message.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/misc/modal.svg b/theme/Budgie/gnome-shell/dark-assets/misc/modal.svg new file mode 100644 index 0000000..daf9c93 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/switch/switch-off.svg b/theme/Budgie/gnome-shell/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..68eed5d --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/dark-assets/switch/switch-on.svg b/theme/Budgie/gnome-shell/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..b6a9be9 --- /dev/null +++ b/theme/Budgie/gnome-shell/dark-assets/switch/switch-on.svg @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme/Budgie/gnome-shell/gnome-shell.css b/theme/Budgie/gnome-shell/gnome-shell.css new file mode 100644 index 0000000..6f00f4b --- /dev/null +++ b/theme/Budgie/gnome-shell/gnome-shell.css @@ -0,0 +1,2065 @@ +/* Copyright 2009, 2015 Red Hat, Inc. + * + * Portions adapted from Mx's data/style/default.css + * Copyright 2009 Intel Corporation + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU Lesser General Public License, + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + */ +stage { + font-family: Futura Bk bt, Cantarell, Sans-Serif; + font-size: 9pt; + color: #D3DAE3; } + +.button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + border-radius: 2px; } + +.button, .notification-banner .notification-button, +.notification-banner:hover .notification-button, +.notification-banner:focus .notification-button, .hotplug-notification-item { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(68, 74, 88, 0.05); } + .button:focus, .notification-banner .notification-button:focus, .hotplug-notification-item:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #5294e2; + box-shadow: inset 0 1px rgba(68, 74, 88, 0.05); } + .button:hover, .notification-banner .notification-button:hover, .hotplug-notification-item:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #505666; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(80, 86, 102, 0.05); } + .button:hover:focus, .notification-banner .notification-button:hover:focus, .hotplug-notification-item:hover:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #5294e2; + box-shadow: inset 0 1px rgba(68, 74, 88, 0.05); } + .button:active, .notification-banner .notification-button:active, .hotplug-notification-item:active, .button:active:focus, .notification-banner .notification-button:active:focus, .hotplug-notification-item:active:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + background-color: #5294e2; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(82, 148, 226, 0.05); } + .button:insensitive, .notification-banner .notification-button:insensitive, .hotplug-notification-item:insensitive { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: rgba(211, 218, 227, 0.45); + border: 1px solid rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); + box-shadow: inset 0 1px rgba(68, 74, 88, 0.05); } + +StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #D3DAE3; + selection-background-color: #5294e2; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3DAE3; + background-color: #404552; + border: 1px solid #2b2e39; + box-shadow: inset 0 2px 4px rgba(64, 69, 82, 0.05); } + StEntry:focus, StEntry:hover { + color: #D3DAE3; + background-color: #404552; + border: 1px solid #5294e2; + box-shadow: inset 0 2px 4px rgba(64, 69, 82, 0.05); } + StEntry:insensitive { + color: rgba(211, 218, 227, 0.45); + background-color: #3c414e; + border-color: 1px solid #313440; + box-shadow: inset 0 2px 4px rgba(60, 65, 78, 0.05); } + StEntry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +StScrollView.vfade { + -st-vfade-offset: 0px; } + +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 69, 82, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 4px; + background-color: #767b87; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #676b78; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5294e2; } + +.slider { + -slider-height: 4px; + -slider-background-color: #2b2e39; + -slider-border-color: transparent; + -slider-active-background-color: #5294e2; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0px; + height: 18px; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; + color: transparent; } + .popup-menu-item.selected .slider { + -slider-background-color: rgba(0, 0, 0, 0.2); + -slider-active-background-color: #ffffff; } + +.check-box StBoxLayout { + spacing: .8em; } + +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } + +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } + +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } + +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + .popup-menu-item.selected .toggle-switch { + background-image: url("common-assets/switch/switch-off-selected.svg"); } + .popup-menu-item.selected .toggle-switch:checked { + background-image: url("common-assets/switch/switch-on-selected.svg"); } + +.shell-link { + color: #a9caf1; } + .shell-link:hover { + color: #d5e5f8; } + +.headline { + font-size: 110%; } + +.lightbox { + background-color: black; } + +.flashspot { + background-color: white; } + +.modal-dialog { + color: #D3DAE3; + background-color: rgba(56, 60, 74, 0); + border: none; + border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; + padding: 0 5px 6px 5px; } + .modal-dialog .modal-dialog-content-box { + padding: 20px 10px 10px 10px; } + .modal-dialog-linked-button { + height: 38px; + padding: 0; + box-shadow: inset 0 0 black; + border-top-width: 1px; + border-bottom-width: 0; + color: #BAC3CF; + background-color: rgba(53, 57, 69, 0.95); + border-color: rgba(35, 38, 46, 0.95); } + .modal-dialog-linked-button:hover { + background-color: rgba(64, 69, 83, 0.95); } + .modal-dialog-linked-button:focus { + color: #5294e2; } + .modal-dialog-linked-button:active { + color: #ffffff; + background-color: #5294e2; } + .modal-dialog-linked-button:insensitive { + color: rgba(186, 195, 207, 0.5); + background-color: rgba(49, 52, 63, 0.95); } + .modal-dialog-linked-button:first-child { + border-radius: 0px 0px 0px 2px; } + .modal-dialog-linked-button:last-child { + border-right-width: 0px; + border-radius: 0px 0px 2px 0px; } + .modal-dialog-linked-button:first-child:last-child { + border-right-width: 0px; + border-radius: 0px 0px 2px 2px; } + .modal-dialog .run-dialog-entry { + width: 21em; } + .modal-dialog .run-dialog-error-box { + padding-top: 5px; + spacing: 5px; } + .modal-dialog .run-dialog-label { + font-size: 0; } + +.show-processes-dialog-subject, +.mount-question-dialog-subject, +.end-session-dialog-subject { + font-size: 11pt; + font-weight: bold; + color: #D3DAE3; } + +.end-session-dialog { + spacing: 42px; } + .end-session-dialog-list { + padding-top: 20px; } + .end-session-dialog-layout { + padding-left: 17px; } + .end-session-dialog-layout:rtl { + padding-right: 17px; } + .end-session-dialog-description { + width: 28em; + padding-bottom: 10px; } + .end-session-dialog-description:rtl { + text-align: right; } + .end-session-dialog-warning { + width: 28em; + color: #F27835; + padding-top: 6px; } + .end-session-dialog-warning:rtl { + text-align: right; } + .end-session-dialog-logout-icon { + border: 0px solid transparent; + border-radius: 2px; + width: 48px; + height: 48px; + background-size: contain; } + .end-session-dialog-shutdown-icon { + color: #D3DAE3; + width: 48px; + height: 48px; } + .end-session-dialog-inhibitor-layout { + spacing: 16px; + max-height: 200px; + padding-right: 10px; + padding-left: 10px; } + .end-session-dialog-session-list, .end-session-dialog-app-list { + spacing: 1em; } + .end-session-dialog-list-header { + font-weight: bold; } + .end-session-dialog-list-header:rtl { + text-align: right; } + .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { + spacing: 1em; } + .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { + font-weight: bold; } + .end-session-dialog-app-list-item-description { + color: #e3e7ed; + font-size: 8pt; } + .end-session-dialog .modal-dialog-linked-button:last-child { + color: white; + background-color: #F04A50; } + .end-session-dialog .modal-dialog-linked-button:last-child:hover { + color: white; + background-color: #f47479; } + .end-session-dialog .modal-dialog-linked-button:last-child:active { + color: white; + background-color: #ee3239; } + +.shell-mount-operation-icon { + icon-size: 48px; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + +.show-processes-dialog-subject, +.mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + +.mount-question-dialog-subject { + max-width: 500px; } + +.show-processes-dialog-description, +.mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + font-size: 10pt; + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + +.show-processes-dialog-app-list-item { + color: #b4c0cf; } + .show-processes-dialog-app-list-item:hover { + color: #D3DAE3; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + +.show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + +.show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + +.show-processes-dialog-app-list-item-name { + font-size: 10pt; } + +.prompt-dialog { + width: 500px; } + .prompt-dialog-main-layout { + spacing: 24px; + padding: 10px; } + .prompt-dialog-message-layout { + spacing: 16px; } + .prompt-dialog-headline { + font-size: 12pt; + font-weight: bold; + color: #D3DAE3; } + .prompt-dialog-descritption:rtl { + text-align: right; } + .prompt-dialog-password-box { + spacing: 1em; + padding-bottom: 1em; } + .prompt-dialog-error-label { + font-size: 9pt; + color: #FC4138; + padding-bottom: 8px; } + .prompt-dialog-info-label { + font-size: 9pt; + padding-bottom: 8px; } + .prompt-dialog-null-label { + font-size: 9pt; + padding-bottom: 8px; } + +.hidden { + color: transparent; } + +.polkit-dialog-user-layout { + padding-left: 10px; + spacing: 10px; } + .polkit-dialog-user-layout:rtl { + padding-left: 0px; + padding-right: 10px; } + +.polkit-dialog-user-root-label { + color: #F27835; } + +.polkit-dialog-user-user-icon { + border-radius: 2px; + background-size: contain; + width: 48px; + height: 48px; } + +.audio-device-selection-dialog { + spacing: 30px; } + +.audio-selection-content { + spacing: 20px; + padding: 24px; } + +.audio-selection-title { + font-weight: bold; + text-align: center; } + +.audio-selection-box { + spacing: 20px; } + +.audio-selection-device { + border: 1px solid #2b2e39; + border-radius: 3px; } + .audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { + background-color: #5294e2; + border-color: #5294e2; } + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; } + +.audio-selection-device-icon { + icon-size: 64px; } + +.access-dialog { + spacing: 30px; } + .access-dialog-main-layout { + padding: 12px 20px 0; + spacing: 12px; } + .access-dialog-content { + max-width: 28em; + spacing: 20px; } + .access-dialog-icon { + min-width: 48px; + icon-size: 48px; } + .access-dialog-title { + font-weight: bold; } + .access-dialog-subtitle { + color: #D3DAE3; + font-weight: bold; } + +.geolocation-dialog { + spacing: 30px; } + .geolocation-dialog-main-layout { + spacing: 12px; } + .geolocation-dialog-content { + spacing: 20px; } + .geolocation-dialog-icon { + icon-size: 48px; } + .geolocation-dialog-title { + font-weight: bold; } + .geolocation-dialog-reason { + color: #D3DAE3; + font-weight: bold; } + +.network-dialog-secret-table { + spacing-rows: 15px; + spacing-columns: 1em; } + +.keyring-dialog-control-table { + spacing-rows: 15px; + spacing-columns: 1em; } + +.popup-menu { + min-width: 15em; + color: #D3DAE3; + border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } + .popup-menu .popup-sub-menu { + background: none; + box-shadow: none; + border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + spacing: 12px; } + .popup-menu .popup-menu-item:ltr { + padding: .4em 3em .4em 0em; } + .popup-menu .popup-menu-item:rtl { + padding: .4em 0em .4em 3em; } + .popup-menu .popup-menu-item:checked { + font-weight: normal; + background: none; + box-shadow: none; + border-image: url("dark-assets/menu/submenu-open.svg") 9 9 9 9; } + .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { + color: #ffffff; + background-color: transparent; + border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } + .popup-menu .popup-menu-item:insensitive { + color: rgba(211, 218, 227, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #D3DAE3; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 218, 227, 0.45); } + .popup-menu.panel-menu { + -boxpointer-gap: 0px; + margin-bottom: 1.75em; } + +.popup-menu-ornament { + text-align: right; + margin-left: 10px; + width: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 1px; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; } + +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 57, 69, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 5; + -arrow-rise: 5; } + +.popup-separator-menu-item { + height: 2px; + margin: 0; + background-color: transparent; + border: none; + border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0px; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: white; + background: none; + border: none; + border-radius: 5px; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #5294e2; } + .osd-window .level-bar { + background-color: #5294e2; + border-radius: 2px; } + +.resize-popup { + color: #BAC3CF; + background: none; + border: none; + border-radius: 5px; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; + padding: 12px; } + +.switcher-popup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + background: none; + border: none; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 3px; + padding: 20px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; + border: 1px solid transparent; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5294e2; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #5294e2; + border: 1px solid #5294e2; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .separator { + width: 1px; + background: rgba(211, 218, 227, 0.33); } + +.switcher-arrow { + border-color: transparent; + color: #BAC3CF; } + .switcher-arrow:highlighted { + color: white; } + +.input-source-switcher-symbol { + font-size: 34pt; + width: 96px; + height: 96px; } + +.cycler-highlight { + border: 5px solid #5294e2; } + +.workspace-switcher { + background: transparent; + border: 0px; + border-radius: 0px; + padding: 0px; + spacing: 8px; } + .workspace-switcher-group { + padding: 12px; } + .workspace-switcher-container { + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 3px; + padding: 20px; + padding-bottom: 24px; } + +.ws-switcher-active-up, .ws-switcher-active-down { + height: 30px; + background-color: #5294e2; + background-size: 96px; + border-radius: 2px; + border: 1px solid #5294e2; } + +.ws-switcher-active-up { + background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } + +.ws-switcher-active-down { + background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } + +.ws-switcher-box { + height: 96px; + background-color: rgba(0, 0, 0, 0.33); + border-color: rgba(0, 0, 0, 0.33); + border-radius: 2px; } + +.tile-preview { + background-color: rgba(82, 148, 226, 0.35); + border: 1px solid #5294e2; } + .tile-preview-left.on-primary { + border-radius: 0px 0 0 0; } + .tile-preview-right.on-primary { + border-radius: 0 0px 0 0; } + .tile-preview-left.tile-preview-right.on-primary { + border-radius: 0px 0px 0 0; } + +#panel { + font-weight: bold; + height: 2.1em; + min-height: 27px; + background-gradient-direction: none; + background-color: transparent; + border-bottom-width: 0; + border-image: url("common-assets/panel/panel.svg") 1 1 1 1; } + #panel.dynamic-top-bar-white-btn { + border-image: none; } + #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { + background-color: transparent; + border-image: none; } + #panel:overview { + border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } + #panel #panelLeft, #panel #panelCenter { + spacing: 8px; } + #panel .panel-corner { + -panel-corner-radius: 0px; + -panel-corner-background-color: transparent; + -panel-corner-border-width: 0px; + -panel-corner-border-color: black; } + #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { + -panel-corner-border-color: black; } + #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; } + #panel .panel-button { + -natural-hpadding: 10px; + -minimum-hpadding: 6px; + font-weight: bold; + color: white; + transition-duration: 100ms; + border-bottom-width: 1px; + border-color: transparent; } + #panel .panel-button .app-menu-icon { + width: 0; + height: 0; + margin-left: 0px; + margin-right: 0px; } + #panel .panel-button:hover { + color: white; + background-color: rgba(0, 0, 0, 0.17); + border-bottom-width: 1px; + border-color: transparent; } + #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + color: #ffffff; + background-color: #5294e2; + box-shadow: none; + border-bottom-width: 1px; + border-color: black; } + #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { + icon-shadow: none; } + #panel .panel-button .system-status-icon { + color: #ffffff; + icon-size: 16px; + padding: 0 4px; } + .unlock-screen #panel .panel-button, + .login-screen #panel .panel-button, + .lock-screen #panel .panel-button { + color: #f2f4f7; } + .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, + .login-screen #panel .panel-button:focus, + .login-screen #panel .panel-button:hover, + .login-screen #panel .panel-button:active, + .lock-screen #panel .panel-button:focus, + .lock-screen #panel .panel-button:hover, + .lock-screen #panel .panel-button:active { + color: #f2f4f7; } + #panel .panel-button > * { + color: #ffffff; } + #panel #panelActivities.panel-button { + -natural-hpadding: 12px; } + #panel .panel-status-indicators-box, + #panel .panel-status-menu-box { + spacing: 2px; + color: #ffffff; } + #panel .power-status.panel-status-indicators-box { + spacing: 0; } + #panel .screencast-indicator { + color: #FC4138; } + #panel .clock-display > * > *:last-child { + color: #5294e2; + margin-left: .3em; } + #panel .popup-menu-arrow { + width: 0; } + +#panel #panelActivities.panel-button > * { + background-image: url("common-assets/panel/activities.svg"); + background-position: center top; + width: 24px; + height: 24px; + background-color: transparent !important; + background-gradient-direction: none !important; + border: 0 solid transparent !important; + text-shadow: 0 0 transparent !important; + transition-duration: 0ms !important; + box-shadow: none !important; + color: transparent; } + +#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { + background-color: transparent; + box-shadow: none; + border-bottom-width: 1px; + border-color: transparent; } + #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { + background-image: url("common-assets/panel/activities-active.svg"); } + +.system-switch-user-submenu-icon { + icon-size: 20px; + padding: 0 2px; } + +.system-switch-user-submenu-icon.default-icon { + icon-size: 16px; + padding: 0 4px; } + +#appMenu { + spinner-image: url("common-assets/misc/process-working.svg"); + spacing: 4px; + padding: 0 8px; } + #appMenu .label-shadow { + color: transparent; } + +.aggregate-menu { + min-width: 23.5em; } + .aggregate-menu .popup-menu-icon { + padding: 0 4px; } + +.system-menu-action { + padding: 13px; + color: #D3DAE3; + border-radius: 32px; + /* wish we could do 50% */ + border: 1px solid transparent; } + .system-menu-action:hover, .system-menu-action:focus { + transition-duration: 100ms; + padding: 13px; + color: #D3DAE3; + background-color: transparent; + border: 1px solid #5294e2; } + .system-menu-action:active { + color: #ffffff; + background-color: #5294e2; + border: 1px solid #5294e2; } + .system-menu-action > StIcon { + icon-size: 16px; } + +#calendarArea { + padding: 0.75em 1.0em; } + +.calendar { + margin-bottom: 1em; } + +.calendar, +.datemenu-today-button, +.datemenu-displays-box, +.message-list-sections { + margin: 0 0.4em; } + +.datemenu-calendar-column { + spacing: 0.5em; + border: none; } + +.datemenu-displays-section { + padding-bottom: 3em; } + +.datemenu-today-button, +.world-clocks-button, +.weather-button, +.message-list-section-title, +.events-section-title { + border-radius: 3px; + padding: .4em; } + +.message-list-section-list:ltr { + padding-left: .4em; } + +.message-list-section-list:rtl { + padding-right: .4em; } + +.datemenu-today-button, +.world-clocks-button, +.weather-button, +.message-list-section-title, +.events-section-title { + padding: 7px 10px 7px 10px; + border: 1px solid rgba(64, 69, 82, 0); } + .datemenu-today-button:hover, .datemenu-today-button:focus, + .world-clocks-button:hover, + .world-clocks-button:focus, + .weather-button:hover, + .weather-button:focus, + .message-list-section-title:hover, + .message-list-section-title:focus, + .events-section-title:hover, + .events-section-title:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #505666; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(80, 86, 102, 0.05); } + .datemenu-today-button:active, + .world-clocks-button:active, + .weather-button:active, + .message-list-section-title:active, + .events-section-title:active { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + background-color: #5294e2; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(82, 148, 226, 0.05); } + +.datemenu-today-button .date-label { + font-size: 1.5em; } + +.world-clocks-header, +.weather-header, +.message-list-section-title, +.events-section-title { + color: rgba(211, 218, 227, 0.4); + font-weight: bold; } + +.world-clocks-button:active .world-clocks-header, +.weather-button:active .weather-header { + color: #ffffff; } + +.world-clocks-grid { + spacing-rows: 0.4em; } + +.weather-box { + spacing: 0.4em; } + +.calendar-month-label { + color: #D3DAE3; + font-weight: bold; + padding: 8px 0; } + +.pager-button { + color: transparent; + background-color: transparent; + width: 32px; + border-radius: 2px; } + .pager-button:focus, .pager-button:hover, .pager-button:active { + background-color: transparent; } + +.calendar-change-month-back { + background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } + +.calendar-day-base { + font-size: 80%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + .calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(0, 0, 0, 0.1); } + .calendar-day-base:active, .calendar-day-base:selected { + color: #D3DAE3; + background-color: rgba(0, 0, 0, 0.15); + border-width: 0; } + .calendar-day-base.calendar-day-heading { + color: rgba(211, 218, 227, 0.85); + margin-top: 1em; + font-size: 70%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 218, 227, 0.8); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3DAE3; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:selected, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #5294e2; + border-width: 0; } + +.calendar-day-with-events { + font-weight: bold; + background-image: url("common-assets/misc/calendar-today.svg"); } + +.calendar-today.calendar-day-with-events { + color: #ffffff; } + +.calendar-other-month-day { + color: rgba(211, 218, 227, 0.3); + opacity: 1; } + +.calendar-week-number { + font-size: 70%; + font-weight: bold; + width: 2.3em; + height: 1.8em; + border-radius: 2px; + padding: 0.5em 0 0; + margin: 6px; + background-color: rgba(211, 218, 227, 0.3); + color: #383C4A; } + +.message-list { + width: 31.5em; } + .message-list-sections { + spacing: 1.5em; } + .message-list-section, .message-list-section-list { + spacing: 0.7em; } + .message-list-section-list-title-box { + spacing: 0.4em; } + .message-list-placeholder StIcon { + width: 0; + height: 0; } + .message-list-placeholder StLabel { + color: rgba(211, 218, 227, 0.45); } + .message-list-clear-button.button { + margin: 1.5em 1.5em 0; + padding: 4px 12px; } + .message-list-section-close > StIcon { + icon-size: 18px; + border-radius: 0px; + color: transparent; + background-color: transparent; + background-image: url("dark-assets/misc/message-close.svg"); } + .message-list-section-close:hover > StIcon { + color: transparent; + background-color: transparent; + background-image: url("dark-assets/misc/message-close-hover.svg"); } + .message-list-section-close:active > StIcon { + color: transparent; + background-color: transparent; + background-image: url("dark-assets/misc/message-close-active.svg"); } + +.message { + padding: 4px; + color: #D3DAE3; + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .message:hover, .message:focus { + color: #D3DAE3; + border-image: url("dark-assets/misc/message-hover.svg") 9 9 9 9; } + .message:active { + color: #ffffff; + border-image: url("dark-assets/misc/message-active.svg") 9 9 9 9; } + .message-icon-bin { + padding: 8px 0px 8px 8px; } + .message-icon-bin:rtl { + padding: 8px 8px 8px 0px; } + .message-icon-bin > StIcon { + color: inherit; } + .message-secondary-bin, + .message-secondary-bin > .event-time { + color: rgba(211, 218, 227, 0.6); + font-size: 0.9em; } + .message-secondary-bin:ltr, + .message-secondary-bin > .event-time:ltr { + padding-left: 8px; } + .message-secondary-bin:rtl, + .message-secondary-bin > .event-time:rtl { + padding-right: 8px; } + .message:active .message-secondary-bin, + .message:active .message-secondary-bin > .event-time { + color: rgba(255, 255, 255, 0.6); } + .message-secondary-bin > StIcon { + icon-size: 16px; } + .message-title { + color: inherit; + font-weight: bold; + font-size: 1em; + padding: 2px 0 2px 0; } + .message-content { + color: inherit; + padding: 8px; + font-size: 1em; } + +.message-media-control { + padding: 6px; + color: #D3DAE3; } + .message-media-control:last-child:ltr { + padding-right: 18px; } + .message-media-control:last-child:rtl { + padding-left: 18px; } + .message-media-control:hover { + color: rgba(211, 218, 227, 0.7); } + .message-media-control:active { + color: #5294e2; } + .message-media-control:insensitive { + color: rgba(211, 218, 227, 0.45); } + +.message:active .message-media-control { + color: #ffffff; } + +.media-message-cover-icon { + icon-size: 32px; } + .media-message-cover-icon.fallback { + color: rgba(211, 218, 227, 0.45); + background-color: #383C4A; + border-radius: 2px; + icon-size: 16px; + padding: 8px; + border: 1px solid #2b2e39; } + +.ripple-box { + width: 52px; + height: 52px; + background-image: url("common-assets/misc/corner-ripple-ltr.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } + +.popup-menu-arrow { + width: 16px; + height: 16px; } + +.popup-menu-icon { + icon-size: 16px; } + +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close { + -shell-close-overlap: 11px; } + +.nm-dialog { + max-height: 500px; + min-height: 450px; + min-width: 470px; } + .nm-dialog-content { + spacing: 20px; + padding: 10px; } + .nm-dialog-header-hbox { + spacing: 10px; } + .nm-dialog-airplane-box { + spacing: 12px; } + .nm-dialog-airplane-headline { + font-size: 1.1em; + font-weight: bold; + text-align: center; } + .nm-dialog-airplane-text { + color: #D3DAE3; } + .nm-dialog-header-icon { + icon-size: 32px; } + .nm-dialog-scroll-view { + border: 1px solid #2b2e39; + border-radius: 2px; + background-color: #404552; } + .nm-dialog-header { + font-weight: bold; + font-size: 1.2em; } + .nm-dialog-item { + font-size: 1em; + border-bottom: 0px solid; + padding: 12px; + spacing: 0px; } + .nm-dialog-item:selected { + background-color: #5294e2; + color: #ffffff; } + .nm-dialog-icons { + spacing: .5em; } + .nm-dialog-icon { + icon-size: 16px; } + +.no-networks-label { + color: rgba(211, 218, 227, 0.45); } + +.no-networks-box { + spacing: 12px; } + +#overview { + spacing: 24px; } + +.overview-controls { + padding-bottom: 32px; } + +.window-picker { + -horizontal-spacing: 32px; + -vertical-spacing: 32px; + padding-left: 32px; + padding-right: 32px; + padding-bottom: 48px; } + .window-picker.external-monitor { + padding: 32px; } + +.window-clone-border { + border: 3px solid rgba(82, 148, 226, 0.8); + border-radius: 4px; + box-shadow: inset 0px 0px 0px 1px rgba(82, 148, 226, 0); } + +.window-caption, .window-caption:hover { + spacing: 25px; + color: #BAC3CF; + background-color: rgba(0, 0, 0, 0.7); + border-radius: 2px; + padding: 4px 12px; + -shell-caption-spacing: 12px; } + +.search-entry { + width: 320px; + padding: 7px 9px; + border-radius: 20px; + border: 1px solid rgba(0, 0, 0, 0.25); + background-color: rgba(64, 69, 82, 0.9); } + .search-entry:focus { + padding: 7px 9px; } + .search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 4px; + color: #D3DAE3; } + .search-entry:hover, .search-entry:focus { + color: #ffffff; + caret-color: #ffffff; + background-color: #5294e2; + selection-background-color: #ffffff; + selected-color: #5294e2; } + .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { + color: #ffffff; } + +#searchResultsBin { + max-width: 1000px; } + +#searchResultsContent { + padding-left: 20px; + padding-right: 20px; + spacing: 16px; } + +.search-section { + spacing: 16px; } + +.search-section-content { + spacing: 32px; } + +.list-search-results { + spacing: 3px; } + +.search-section-separator { + background-color: rgba(255, 255, 255, 0.2); + -margin-horizontal: 1.5em; + height: 1px; } + +.list-search-result-content { + spacing: 12px; + padding: 12px; } + +.list-search-result-title { + font-size: 1.5em; + color: white; } + +.list-search-result-description { + color: #cccccc; } + +.search-provider-icon { + padding: 15px; } + +.search-provider-icon-more { + width: 16px; + height: 16px; + background-image: url("common-assets/misc/more-results.svg"); } + +#dash { + font-size: 1em; + color: #BAC3CF; + background-color: rgba(53, 57, 69, 0.95); + border-color: rgba(0, 0, 0, 0.4); + padding: 4px 0; + border-radius: 0 3px 3px 0; } + #dash:rtl { + border-radius: 3px 0 0 3px; } + .right #dash, #dash:rtl { + padding: 4px 0; } + .top #dash, .bottom #dash { + padding: 0; } + #dash .placeholder { + background-image: url("common-assets/dash/dash-placeholder.svg"); + background-size: contain; + height: 24px; } + #dash .empty-dash-drop-target { + width: 24px; + height: 24px; } + +.dash-item-container > StWidget, .dash-item-container > StWidget:rtl, .right .dash-item-container > StWidget { + padding: 4px 8px; } + +.top .dash-item-container > StWidget, .bottom .dash-item-container > StWidget { + padding: 6px; } + +.dash-label { + border-radius: 3px; + padding: 4px 12px; + color: white; + background-color: rgba(0, 0, 0, 0.7); + text-align: center; + -x-offset: 3px; } + .bottom .dash-label, .top .dash-label { + -y-offset: 3px; + -x-offset: 0; } + +#dash .app-well-app:hover .overview-icon, +.right #dash .app-well-app:hover .overview-icon, +.bottom #dash .app-well-app:hover .overview-icon, +.top #dash .app-well-app:hover .overview-icon { + background-color: #5294e2; } + +#dash .app-well-app:active .overview-icon, +.right #dash .app-well-app:active .overview-icon, +.bottom #dash .app-well-app:active .overview-icon, +.top #dash .app-well-app:active .overview-icon { + box-shadow: none; + background-color: #2679db; } + +#dash .app-well-app-running-dot { + width: 11px; + height: 2px; + margin-bottom: 2px; + background-color: #5294e2; } + +#dashtodockContainer .app-well-app-running-dot { + background: none; + width: 28px; + height: 4px; } + +#dashtodockContainer .running1 .app-well-app-running-dot { + background-image: url("common-assets/dash/running1.svg"); } + +#dashtodockContainer .running2 .app-well-app-running-dot { + background-image: url("common-assets/dash/running2.svg"); } + +#dashtodockContainer .running3 .app-well-app-running-dot { + background-image: url("common-assets/dash/running3.svg"); } + +#dashtodockContainer .running4 .app-well-app-running-dot { + background-image: url("common-assets/dash/running4.svg"); } + +.show-apps .overview-icon { + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + border: 0px solid; } + +.show-apps:hover .overview-icon { + background-color: rgba(0, 0, 0, 0.7); + color: #5294e2; } + +.show-apps:active .overview-icon, +.show-apps:active .show-apps-icon, +.show-apps:checked .overview-icon, +.show-apps:checked .show-apps-icon { + color: #ffffff; + background-color: #5294e2; + box-shadow: none; + transition-duration: 0ms; } + +.icon-grid { + spacing: 30px; + -shell-grid-horizontal-item-size: 136px; + -shell-grid-vertical-item-size: 136px; } + .icon-grid .overview-icon { + icon-size: 96px; } + +.app-view-controls { + padding-bottom: 32px; } + +.app-view-control { + padding: 4px 32px; + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); + box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } + .app-view-control:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); + box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } + .app-view-control:checked { + color: #ffffff; + background-color: #5294e2; } + .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { + border-radius: 2px 0 0 2px; + border-right-width: 0; } + .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { + border-radius: 0 2px 2px 0; + border-left-width: 0; } + +.search-provider-icon:active, .search-provider-icon:checked, +.list-search-result:active, +.list-search-result:checked { + background-color: rgba(31, 33, 40, 0.85); } + +.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, +.list-search-result:focus, +.list-search-result:selected, +.list-search-result:hover { + background-color: rgba(186, 195, 207, 0.4); + transition-duration: 200ms; } + +.app-well-app:active .overview-icon, +.app-well-app:checked .overview-icon, +.app-well-app.app-folder:active .overview-icon, +.app-well-app.app-folder:checked .overview-icon, +.grid-search-result:active .overview-icon, +.grid-search-result:checked .overview-icon { + background-color: rgba(31, 33, 40, 0.85); + box-shadow: inset 0 0 #5294e2; } + +.app-well-app:hover .overview-icon, +.app-well-app:focus .overview-icon, +.app-well-app:selected .overview-icon, +.app-well-app.app-folder:hover .overview-icon, +.app-well-app.app-folder:focus .overview-icon, +.app-well-app.app-folder:selected .overview-icon, +.grid-search-result:hover .overview-icon, +.grid-search-result:focus .overview-icon, +.grid-search-result:selected .overview-icon { + background-color: rgba(186, 195, 207, 0.4); + transition-duration: 0ms; + border-image: none; + background-image: none; } + +.app-well-app-running-dot { + width: 20px; + height: 2px; + margin-bottom: 4px; + background-color: #5294e2; } + +.search-provider-icon, +.list-search-result, .app-well-app .overview-icon, +.app-well-app.app-folder .overview-icon, +.grid-search-result .overview-icon { + color: white; + border-radius: 2px; + padding: 6px; + border: 1px solid transparent; + transition-duration: 0ms; + text-align: center; } + +.app-well-app.app-folder > .overview-icon { + background-color: rgba(35, 38, 46, 0.95); + border: 1px solid rgba(0, 0, 0, 0.45); } + +.app-well-app.app-folder:hover > .overview-icon { + background-color: rgba(60, 64, 78, 0.95); } + +.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { + color: #ffffff; + background-color: #5294e2; + box-shadow: none; } + +.app-well-app.app-folder:focus > .overview-icon { + background-color: #5294e2; } + +.app-folder-popup { + -arrow-border-radius: 2px; + -arrow-background-color: rgba(35, 38, 46, 0.95); + -arrow-border-color: rgba(0, 0, 0, 0.45); + -arrow-border-width: 1px; + -arrow-base: 5; + -arrow-rise: 5; } + +.app-folder-popup-bin { + padding: 5px; } + +.app-folder-icon { + padding: 5px; + spacing-rows: 5px; + spacing-columns: 5px; } + +.page-indicator { + padding: 15px 20px; } + .page-indicator .page-indicator-icon { + width: 18px; + height: 18px; + background-image: url(common-assets/misc/page-indicator-inactive.svg); } + .page-indicator:hover .page-indicator-icon { + background-image: url(common-assets/misc/page-indicator-hover.svg); } + .page-indicator:active .page-indicator-icon { + background-image: url(common-assets/misc/page-indicator-active.svg); } + .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { + background-image: url(common-assets/misc/page-indicator-checked.svg); } + +.app-well-app > .overview-icon.overview-icon-with-label, +.grid-search-result .overview-icon.overview-icon-with-label { + padding: 10px 8px 5px 8px; + spacing: 4px; } + +.workspace-thumbnails, .workspace-thumbnails:rtl, +.workspace-thumbnails-left, +.workspace-thumbnails-left:rtl { + visible-width: 40px; + spacing: 11px; + padding: 12px; } + +.workspace-thumbnails, +.workspace-thumbnails-left:rtl { + padding-right: 7px; + border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } + +.workspace-thumbnails:rtl, +.workspace-thumbnails-left { + padding-left: 7px; + border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } + +.workspace-thumbnail-indicator { + border: 4px solid rgba(82, 148, 226, 0.8); + border-radius: 1px; + padding: 1px; } + +.search-display > StBoxLayout, +.all-apps, +.frequent-apps > StBoxLayout { + padding: 0px 88px 10px 88px; } + +.search-statustext, .no-frequent-applications-label { + font-size: 2em; + font-weight: bold; + color: #D3DAE3; } + +.url-highlighter { + link-color: #a9caf1; } + +.notification-banner, +.notification-banner:hover, +.notification-banner:focus { + font-size: 1em; + width: 34em; + margin: 5px; + padding: 10px; + color: #D3DAE3; + background-color: transparent; + border: 1px solid transparent; + border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } + .notification-banner .notification-icon, + .notification-banner:hover .notification-icon, + .notification-banner:focus .notification-icon { + padding: 5px; } + .notification-banner .notification-content, + .notification-banner:hover .notification-content, + .notification-banner:focus .notification-content { + padding: 5px; + spacing: 5px; } + .notification-banner .secondary-icon, + .notification-banner:hover .secondary-icon, + .notification-banner:focus .secondary-icon { + icon-size: 1.09em; } + .notification-banner .notification-actions, + .notification-banner:hover .notification-actions, + .notification-banner:focus .notification-actions { + background-color: transparent; + padding: 2px 2px 0 2px; + spacing: 3px; } + .notification-banner .notification-button, + .notification-banner:hover .notification-button, + .notification-banner:focus .notification-button { + padding: 4px 4px 5px; } + .notification-banner .notification-button:first-child, .notification-banner .notification-button:last-child, + .notification-banner:hover .notification-button:first-child, + .notification-banner:hover .notification-button:last-child, + .notification-banner:focus .notification-button:first-child, + .notification-banner:focus .notification-button:last-child { + border-radius: 2px; } + +.secondary-icon { + icon-size: 1.09em; } + +.chat-body { + spacing: 5px; } + +.chat-response { + margin: 5px; } + +.chat-log-message { + color: #D3DAE3; } + +.chat-new-group { + padding-top: 1em; } + +.chat-received { + padding-left: 4px; } + .chat-received:rtl { + padding-left: 0px; + padding-right: 4px; } + +.chat-sent { + padding-left: 18pt; + color: #5294e2; } + .chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; } + +.chat-meta-message { + padding-left: 4px; + font-size: 9pt; + font-weight: bold; + color: rgba(211, 218, 227, 0.6); } + .chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; } + +.subscription-message { + font-style: italic; } + +.hotplug-transient-box { + spacing: 6px; + padding: 2px 72px 2px 12px; } + +.hotplug-notification-item { + padding: 2px 10px; } + .hotplug-notification-item:focus { + padding: 2px 10px; } + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 2px 5px; } + +.hotplug-resident-box { + spacing: 8px; } + +.hotplug-resident-mount { + spacing: 8px; + border-radius: 4px; } + .hotplug-resident-mount:hover { + background-color: rgba(56, 60, 74, 0.3); } + +.hotplug-resident-mount-label { + color: inherit; + padding-left: 6px; } + +.hotplug-resident-mount-icon { + icon-size: 24px; + padding-left: 6px; } + +.hotplug-resident-eject-icon { + icon-size: 16px; } + +.hotplug-resident-eject-button { + padding: 7px; + border-radius: 5px; + color: pink; } + +.legacy-tray { + background-color: rgba(43, 46, 55, 0.95); } + .legacy-tray:ltr { + border-radius: 0 2px 0 0; + border-left-width: 0; } + .legacy-tray:rtl { + border-radius: 2px 0 0 0; + border-right-width: 0; } + +.legacy-tray-handle, +.legacy-tray-icon { + padding: 6px; } + .legacy-tray-handle StIcon, + .legacy-tray-icon StIcon { + icon-size: 24px; } + .legacy-tray-handle:hover, .legacy-tray-handle:focus, + .legacy-tray-icon:hover, + .legacy-tray-icon:focus { + background-color: rgba(211, 218, 227, 0.1); } + +.legacy-tray-icon-box { + spacing: 12px; } + .legacy-tray-icon-box:ltr { + padding-left: 12px; } + .legacy-tray-icon-box:rtl { + padding-right: 12px; } + .legacy-tray-icon-box StButton { + width: 24px; + height: 24px; } + +.masterslider.smaller .masterlabel, +.masterslider.smaller .slider { + min-width: 155px; } + +.magnifier-zoom-region { + border: 2px solid #5294e2; } + .magnifier-zoom-region.full-screen { + border-width: 0; } + +#keyboard { + background-color: rgba(53, 57, 69, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.2); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); + box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #BAC3CF; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); + box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: #5294e2; + box-shadow: inset 0 1px rgba(82, 148, 226, 0.05); } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #5d626e; + border: 1px solid rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); + box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } + +.keyboard-subkeys { + color: #BAC3CF; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 57, 69, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.candidate-popup-content { + padding: 0.5em; + spacing: 0.3em; + color: #BAC3CF; + font-size: 1.15em; } + +.candidate-index { + padding: 0 0.5em 0 0; + color: #d8dde4; } + +.candidate-box { + padding: 0.3em 0.5em 0.3em 0.5em; + border-radius: 2px; + color: #BAC3CF; } + .candidate-box:selected, .candidate-box:hover { + background-color: #5294e2; + color: #ffffff; } + +.candidate-page-button-box { + height: 2em; } + .vertical .candidate-page-button-box { + padding-top: 0.5em; } + .horizontal .candidate-page-button-box { + padding-left: 0.5em; } + +.candidate-page-button { + padding: 4px; } + +.candidate-page-button-previous { + border-radius: 2px 0px 0px 2px; + border-right-width: 0; } + +.candidate-page-button-next { + border-radius: 0px 2px 2px 0px; } + +.candidate-page-button-icon { + icon-size: 1em; } + +.framed-user-icon { + background-size: contain; + border: 0px solid transparent; + color: #D3DAE3; + border-radius: 2px; } + .framed-user-icon:hover { + border-color: transparent; + color: white; } + +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; } + +.login-dialog { + border: none; + background-color: transparent; } + .login-dialog .modal-dialog-button-box { + spacing: 3px; } + .login-dialog .modal-dialog-button { + padding: 3px 18px; } + .login-dialog .modal-dialog-button:default { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #444a58; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(68, 74, 88, 0.05); } + .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #D3DAE3; + background-color: #505666; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(80, 86, 102, 0.05); } + .login-dialog .modal-dialog-button:default:active { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: #ffffff; + background-color: #5294e2; + border: 1px solid #2b2e39; + box-shadow: inset 0 1px rgba(82, 148, 226, 0.05); } + .login-dialog .modal-dialog-button:default:insensitive { + text-shadow: 0 1px rgba(64, 69, 82, 0); + color: rgba(211, 218, 227, 0.45); + border: 1px solid rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); + box-shadow: inset 0 1px rgba(68, 74, 88, 0.05); } + +.login-dialog-logo-bin { + padding: 24px 0px; } + +.login-dialog-banner { + color: #9ca9ba; } + +.login-dialog-button-box { + spacing: 5px; } + +.login-dialog-message-warning { + color: #F27835; } + +.login-dialog-message-hint { + padding-top: 0; + padding-bottom: 20px; } + +.login-dialog-user-selection-box { + padding: 100px 0px; } + .login-dialog-user-selection-box .login-dialog-not-listed-label { + padding-left: 2px; } + .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, + .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { + color: #BAC3CF; } + +.login-dialog-not-listed-label { + font-size: 90%; + font-weight: bold; + color: #62758e; + padding-top: 1em; } + +.login-dialog-user-list-view { + -st-vfade-offset: 1em; } + +.login-dialog-user-list { + spacing: 12px; + padding: .2em; + width: 23em; } + .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { + background-color: #5294e2; + color: #ffffff; } + .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #5294e2; } + +.login-dialog-user-list-item { + border-radius: 5px; + padding: .2em; + color: #62758e; } + .login-dialog-user-list-item:ltr { + padding-right: 1em; } + .login-dialog-user-list-item:rtl { + padding-left: 1em; } + .login-dialog-user-list-item:hover { + background-color: #5294e2; + color: #ffffff; } + .login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin: 2px 0 0 0; + background-color: #BAC3CF; } + .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { + background-color: #ffffff; } + +.login-dialog-username, +.user-widget-label { + color: #BAC3CF; + font-size: 120%; + font-weight: bold; + text-align: left; + padding-left: 15px; } + +.user-widget-label:ltr { + padding-left: 18px; } + +.user-widget-label:rtl { + padding-right: 18px; } + +.login-dialog-prompt-layout { + padding-top: 24px; + padding-bottom: 12px; + spacing: 8px; + width: 23em; } + +.login-dialog-prompt-label { + color: #7e8fa5; + font-size: 110%; + padding-top: 1em; } + +.login-dialog-session-list-button StIcon { + icon-size: 1.25em; } + +.login-dialog-session-list-button { + color: #62758e; } + .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { + color: #BAC3CF; } + .login-dialog-session-list-button:active { + color: #394351; } + +.screen-shield-arrows { + padding-bottom: 3em; } + +.screen-shield-arrows Gjs_Arrow { + color: white; + width: 80px; + height: 48px; + -arrow-thickness: 12px; + -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } + +.screen-shield-clock { + color: white; + text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); + font-weight: bold; + text-align: center; + padding-bottom: 1.5em; } + +.screen-shield-clock-time { + font-size: 72pt; + text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } + +.screen-shield-clock-date { + font-size: 28pt; } + +.screen-shield-notifications-container { + spacing: 6px; + width: 30em; + background-color: transparent; + max-height: 500px; } + .screen-shield-notifications-container .summary-notification-stack-scrollview { + padding-top: 0; + padding-bottom: 0; } + .screen-shield-notifications-container .notification, + .screen-shield-notifications-container .screen-shield-notification-source { + padding: 12px 6px; + border: 1px solid rgba(186, 195, 207, 0.2); + background-color: rgba(53, 57, 69, 0.45); + color: #BAC3CF; + border-radius: 4px; } + .screen-shield-notifications-container .notification { + margin-right: 15px; } + +.screen-shield-notification-label { + font-weight: bold; + padding: 0px 0px 0px 12px; } + +.screen-shield-notification-count-text { + padding: 0px 0px 0px 12px; } + +#panel.lock-screen { + background-color: rgba(53, 57, 69, 0.5); } + +.screen-shield-background { + background: black; + box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } + +#lockDialogGroup { + background: #2e3436 url(misc/noise-texture.png); + background-repeat: repeat; } + +#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { + background-color: rgba(56, 60, 74, 0.3); } + #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { + background-color: rgba(56, 60, 74, 0.5); } + #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { + background-color: rgba(82, 148, 226, 0.5); } + +#LookingGlassDialog { + spacing: 4px; + padding: 8px 8px 10px 8px; + background-color: rgba(0, 0, 0, 0.7); + border: 1px solid black; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 2px; + color: #BAC3CF; } + #LookingGlassDialog > #Toolbar { + padding: 3px; + border: none; + background-color: transparent; + border-radius: 0px; } + #LookingGlassDialog .labels { + spacing: 4px; } + #LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: #BAC3CF; + transition-duration: 100ms; + padding-left: .3em; + padding-right: .3em; } + #LookingGlassDialog .notebook-tab:hover { + color: white; + text-shadow: black 0px 2px 2px; } + #LookingGlassDialog .notebook-tab:selected { + border-bottom-width: 0px; + color: #5294e2; + text-shadow: black 0px 2px 2px; } + #LookingGlassDialog StBoxLayout#EvalBox { + padding: 4px; + spacing: 4px; } + #LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; } + +.lg-dialog StEntry { + caret-color: #ffffff; + selection-background-color: #5294e2; + selected-color: #ffffff; + color: #BAC3CF; + background-color: rgba(102, 109, 132, 0.35); + border: 1px solid rgba(26, 28, 34, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .lg-dialog StEntry:focus { + color: #ffffff; + background-color: #5294e2; + border: 1px solid rgba(26, 28, 34, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); + selection-background-color: #ffffff; + selected-color: #5294e2; } + +.lg-dialog .shell-link { + color: #a9caf1; } + .lg-dialog .shell-link:hover { + color: #d5e5f8; } + +.lg-completions-text { + font-size: .9em; + font-style: italic; } + +.lg-obj-inspector-title { + spacing: 4px; } + +.lg-obj-inspector-button { + border: 1px solid gray; + padding: 4px; + border-radius: 4px; } + .lg-obj-inspector-button:hover { + border: 1px solid #ffffff; } + +#lookingGlassExtensions { + padding: 4px; } + +.lg-extensions-list { + padding: 4px; + spacing: 6px; } + +.lg-extension { + border: 1px solid rgba(0, 0, 0, 0.7); + border-radius: 2px; + background-color: rgba(53, 57, 69, 0.95); + padding: 4px; } + +.lg-extension-name { + font-weight: bold; } + +.lg-extension-meta { + spacing: 6px; } + +#LookingGlassPropertyInspector { + background: rgba(0, 0, 0, 0.7); + border: 1px solid grey; + border-radius: 2px; + padding: 6px; } diff --git a/theme/Budgie/gtk-2.0/apps.rc b/theme/Budgie/gtk-2.0/apps.rc new file mode 100644 index 0000000..457542f --- /dev/null +++ b/theme/Budgie/gtk-2.0/apps.rc @@ -0,0 +1,157 @@ +# +# Thunar +# +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#BAC3CF" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# +# Workaround for colored entries +# +style "entry_border" { + + xthickness = 7 + ythickness = 5 + + engine "pixmap" { + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/entry-border-bg.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-border-active-bg.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = FLAT_BOX + state = ACTIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/null.png" + } + } +} + +style "combobox_entry_border" = "combobox_entry" { + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-border.png" + border = { 4, 4, 12, 12 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-border-focus.png" + border = { 4, 4, 12, 12 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-border-rtl.png" + border = { 4, 4, 12, 12 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-border-focus-rtl.png" + border = { 4, 4, 12, 12 } + stretch = TRUE + direction = RTL + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/null.png" + } + } +} + + +# Mousepad search entry +widget_class "*MousepadSearchBar*." style "entry_border" + +# Mousepad find and replace +widget_class "*MousepadReplaceDialog*." style "entry_border" + +# Thunar bulk rename +widget_class "*ThunarRenamerDialog*." style "entry_border" + +# Hexchat input box +class "SexySpellEntry" style:highest "entry_border" + +# Geany search entries +widget "*GeanyToolbar.*geany-search-entry-no-match*" style "entry_border" +widget "*GeanyToolbar.*GtkEntry*" style "entry_border" + +widget "GeanyDialogSearch.*GtkComboBoxEntry*.*geany-search-entry-no-match*" style "combobox_entry_border" diff --git a/theme/Budgie/gtk-2.0/assets/arrow-down-insens.png b/theme/Budgie/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..6caad9c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-down-prelight.png b/theme/Budgie/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..836a13c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-down-small-insens.png b/theme/Budgie/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..7dae772 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-down-small-prelight.png b/theme/Budgie/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..9ef31e6 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-down-small.png b/theme/Budgie/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..13c3adb Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-down-small.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-down.png b/theme/Budgie/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..8fc8383 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-down.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-left-insens.png b/theme/Budgie/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..47708e3 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-left-prelight.png b/theme/Budgie/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..750244a Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-left.png b/theme/Budgie/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..c407443 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-left.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-right-insens.png b/theme/Budgie/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..ae35172 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-right-prelight.png b/theme/Budgie/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..0cecf31 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-right.png b/theme/Budgie/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..17ddf15 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-right.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-up-insens.png b/theme/Budgie/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..9508674 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-up-prelight.png b/theme/Budgie/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..398e21c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-up-small-insens.png b/theme/Budgie/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..ddbfaf7 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-up-small-prelight.png b/theme/Budgie/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..68779d2 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-up-small.png b/theme/Budgie/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..83917b9 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-up-small.png differ diff --git a/theme/Budgie/gtk-2.0/assets/arrow-up.png b/theme/Budgie/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f5923b4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/arrow-up.png differ diff --git a/theme/Budgie/gtk-2.0/assets/button-active.png b/theme/Budgie/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..219e43c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/button-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/button-hover.png b/theme/Budgie/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..365f9f1 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/button-hover.png differ diff --git a/theme/Budgie/gtk-2.0/assets/button-insensitive.png b/theme/Budgie/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..829137d Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/button-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/button.png b/theme/Budgie/gtk-2.0/assets/button.png new file mode 100644 index 0000000..108cb1e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/button.png differ diff --git a/theme/Budgie/gtk-2.0/assets/checkbox-checked-insensitive.png b/theme/Budgie/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..d7fec4b Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/checkbox-checked.png b/theme/Budgie/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..496998f Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/checkbox-checked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/theme/Budgie/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..d0861b4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/checkbox-unchecked.png b/theme/Budgie/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..57b1733 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-border-focus-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-border-focus-rtl.png new file mode 100644 index 0000000..b5eaac2 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-border-focus-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-border-focus.png b/theme/Budgie/gtk-2.0/assets/combo-entry-border-focus.png new file mode 100644 index 0000000..5f874ef Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-border-focus.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-border-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-border-rtl.png new file mode 100644 index 0000000..89b0be4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-border-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-border.png b/theme/Budgie/gtk-2.0/assets/combo-entry-border.png new file mode 100644 index 0000000..81afa29 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-border.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-button-active-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..ee16c7d Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-button-active.png b/theme/Budgie/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..326a70e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..deb29b4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-button-insensitive.png b/theme/Budgie/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..ce85422 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-button-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..95d1114 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-button.png b/theme/Budgie/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..162de9c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-button.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..61ea468 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-focus-notebook.png b/theme/Budgie/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..dcf4080 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-focus-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..54ae275 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-focus.png b/theme/Budgie/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..879d44d Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..bdcbb3f Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..ebd0612 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..0befd97 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive.png b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..7133810 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-notebook-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..0841e2e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-notebook.png b/theme/Budgie/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..a35e5b7 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry-rtl.png b/theme/Budgie/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..84686f5 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/combo-entry.png b/theme/Budgie/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..2b97098 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/combo-entry.png differ diff --git a/theme/Budgie/gtk-2.0/assets/down-background-disable-rtl.png b/theme/Budgie/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..7c56a96 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/down-background-disable.png b/theme/Budgie/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..e91ac56 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/down-background-disable.png differ diff --git a/theme/Budgie/gtk-2.0/assets/down-background-rtl.png b/theme/Budgie/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..00209d3 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/down-background-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/down-background.png b/theme/Budgie/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..383f8d0 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/down-background.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-active-bg.png b/theme/Budgie/gtk-2.0/assets/entry-active-bg.png new file mode 100644 index 0000000..086e77b Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-active-bg.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-active-notebook.png b/theme/Budgie/gtk-2.0/assets/entry-active-notebook.png new file mode 100644 index 0000000..b834542 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-active-notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-active-toolbar.png b/theme/Budgie/gtk-2.0/assets/entry-active-toolbar.png new file mode 100644 index 0000000..071c570 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-active-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-background-disabled.png b/theme/Budgie/gtk-2.0/assets/entry-background-disabled.png new file mode 100644 index 0000000..8ef04bb Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-background-disabled.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-background.png b/theme/Budgie/gtk-2.0/assets/entry-background.png new file mode 100644 index 0000000..2e82975 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-background.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-bg.png b/theme/Budgie/gtk-2.0/assets/entry-bg.png new file mode 100644 index 0000000..59832d5 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-bg.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-border-active-bg.png b/theme/Budgie/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..7e29f2f Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-border-bg.png b/theme/Budgie/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..132215e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-border-bg.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-disabled-bg.png b/theme/Budgie/gtk-2.0/assets/entry-disabled-bg.png new file mode 100644 index 0000000..d71f31c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-disabled-bg.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-disabled-notebook.png b/theme/Budgie/gtk-2.0/assets/entry-disabled-notebook.png new file mode 100644 index 0000000..fa67f17 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-disabled-notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-disabled-toolbar.png b/theme/Budgie/gtk-2.0/assets/entry-disabled-toolbar.png new file mode 100644 index 0000000..d55c50e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-disabled-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-notebook.png b/theme/Budgie/gtk-2.0/assets/entry-notebook.png new file mode 100644 index 0000000..90d8b26 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/entry-toolbar.png b/theme/Budgie/gtk-2.0/assets/entry-toolbar.png new file mode 100644 index 0000000..aa9c9e4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/entry-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/focus-line.png b/theme/Budgie/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..55d9425 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/focus-line.png differ diff --git a/theme/Budgie/gtk-2.0/assets/frame-gap-end.png b/theme/Budgie/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..439be97 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/frame-gap-end.png differ diff --git a/theme/Budgie/gtk-2.0/assets/frame-gap-start.png b/theme/Budgie/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..439be97 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/frame-gap-start.png differ diff --git a/theme/Budgie/gtk-2.0/assets/frame.png b/theme/Budgie/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..b041638 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/frame.png differ diff --git a/theme/Budgie/gtk-2.0/assets/handle-h.png b/theme/Budgie/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..0c602e6 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/handle-h.png differ diff --git a/theme/Budgie/gtk-2.0/assets/handle-v.png b/theme/Budgie/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..70bacf7 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/handle-v.png differ diff --git a/theme/Budgie/gtk-2.0/assets/inline-toolbar.png b/theme/Budgie/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6113929 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/inline-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/line-h.png b/theme/Budgie/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..159babd Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/line-h.png differ diff --git a/theme/Budgie/gtk-2.0/assets/line-v.png b/theme/Budgie/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c94593e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/line-v.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-arrow-prelight.png b/theme/Budgie/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..04bff49 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-arrow.png b/theme/Budgie/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..4b27739 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-arrow.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..84578cc Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked-selected.png b/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked-selected.png new file mode 100644 index 0000000..f160c70 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked-selected.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked.png b/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..3846d51 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..42c2fc7 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked-selected.png b/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked-selected.png new file mode 100644 index 0000000..b3921de Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked-selected.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked.png b/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..3375b8a Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-radio-checked-insensitive.png b/theme/Budgie/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..4864ecb Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-radio-checked-selected.png b/theme/Budgie/gtk-2.0/assets/menu-radio-checked-selected.png new file mode 100644 index 0000000..2f0246b Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-radio-checked-selected.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-radio-checked.png b/theme/Budgie/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..84e2b42 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..8d829d8 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked-selected.png b/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked-selected.png new file mode 100644 index 0000000..f0ec43a Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked-selected.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked.png b/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..b5ec817 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menubar.png b/theme/Budgie/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..3c6cb13 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menubar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menubar_button.png b/theme/Budgie/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..897bd97 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menubar_button.png differ diff --git a/theme/Budgie/gtk-2.0/assets/menuitem.png b/theme/Budgie/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..229a8b2 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/menuitem.png differ diff --git a/theme/Budgie/gtk-2.0/assets/minus.png b/theme/Budgie/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..7bd306e Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/minus.png differ diff --git a/theme/Budgie/gtk-2.0/assets/notebook-gap-horiz.png b/theme/Budgie/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..2a1c0f5 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/theme/Budgie/gtk-2.0/assets/notebook-gap-vert.png b/theme/Budgie/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..400af99 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/theme/Budgie/gtk-2.0/assets/notebook.png b/theme/Budgie/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..b041638 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/notebook.png differ diff --git a/theme/Budgie/gtk-2.0/assets/null.png b/theme/Budgie/gtk-2.0/assets/null.png new file mode 100644 index 0000000..dc89326 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/null.png differ diff --git a/theme/Budgie/gtk-2.0/assets/plus.png b/theme/Budgie/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..cc5fef2 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/plus.png differ diff --git a/theme/Budgie/gtk-2.0/assets/progressbar.png b/theme/Budgie/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..8a23a8b Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/progressbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/progressbar_v.png b/theme/Budgie/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..9d02534 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/progressbar_v.png differ diff --git a/theme/Budgie/gtk-2.0/assets/radio-checked-insensitive.png b/theme/Budgie/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..54839ab Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/radio-checked.png b/theme/Budgie/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..a34ce27 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/radio-checked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/radio-unchecked-insensitive.png b/theme/Budgie/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..09dcfed Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/radio-unchecked.png b/theme/Budgie/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..e36362a Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/radio-unchecked.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-horiz-active.png b/theme/Budgie/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..1f3cc17 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-horiz-insens.png b/theme/Budgie/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..4d9c294 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-horiz-prelight.png b/theme/Budgie/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..9d0466b Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-horiz.png b/theme/Budgie/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..eb857f7 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-horiz.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-insensitive.png b/theme/Budgie/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..46674ee Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-prelight.png b/theme/Budgie/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..275be49 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-vert-active.png b/theme/Budgie/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..6624a72 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-vert-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-vert-insens.png b/theme/Budgie/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..c1dfde0 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-vert-prelight.png b/theme/Budgie/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..32cc412 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider-vert.png b/theme/Budgie/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..7806f2c Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider-vert.png differ diff --git a/theme/Budgie/gtk-2.0/assets/slider.png b/theme/Budgie/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..e7ee3fe Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/slider.png differ diff --git a/theme/Budgie/gtk-2.0/assets/tab-bottom-active.png b/theme/Budgie/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..3e30cb2 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/tab-left-active.png b/theme/Budgie/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..4eb75f6 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/tab-left-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/tab-right-active.png b/theme/Budgie/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..bf90eb5 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/tab-right-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/tab-top-active.png b/theme/Budgie/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..79eca7a Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/tab-top-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/toolbar.png b/theme/Budgie/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..8d5875f Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/tree_header.png b/theme/Budgie/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..e13538f Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/tree_header.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-horizontal-active.png b/theme/Budgie/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..cf88fe1 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-horizontal.png b/theme/Budgie/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..049f3f8 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-horizontal.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-progressbar.png b/theme/Budgie/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..6122c80 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-progressbar.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-progressbar_v.png b/theme/Budgie/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..bdcda3f Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-scrollbar-horiz.png b/theme/Budgie/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..0375fcf Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-scrollbar-vert.png b/theme/Budgie/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..45a0e72 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-vertical-active.png b/theme/Budgie/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..8dcf6e4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/theme/Budgie/gtk-2.0/assets/trough-vertical.png b/theme/Budgie/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..29d4519 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/trough-vertical.png differ diff --git a/theme/Budgie/gtk-2.0/assets/up-background-disable-rtl.png b/theme/Budgie/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..d38c702 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/up-background-disable.png b/theme/Budgie/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..247bc7b Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/up-background-disable.png differ diff --git a/theme/Budgie/gtk-2.0/assets/up-background-rtl.png b/theme/Budgie/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..83523cd Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/up-background-rtl.png differ diff --git a/theme/Budgie/gtk-2.0/assets/up-background.png b/theme/Budgie/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..9e97213 Binary files /dev/null and b/theme/Budgie/gtk-2.0/assets/up-background.png differ diff --git a/theme/Budgie/gtk-2.0/gtkrc b/theme/Budgie/gtk-2.0/gtkrc new file mode 100644 index 0000000..9f85145 --- /dev/null +++ b/theme/Budgie/gtk-2.0/gtkrc @@ -0,0 +1,24 @@ +gtk-color-scheme = "base_color: #404552" +gtk-color-scheme = "text_color: #d3dae3" +gtk-color-scheme = "bg_color: #383c4a" +gtk-color-scheme = "fg_color: #d3dae3" +gtk-color-scheme = "tooltip_bg_color: #4B5162" +gtk-color-scheme = "tooltip_fg_color: #ffffff" +gtk-color-scheme = "selected_bg_color: #5294e2" +gtk-color-scheme = "selected_fg_color: #ffffff" +gtk-color-scheme = "insensitive_bg_color: #3e4350" +gtk-color-scheme = "insensitive_fg_color: #7c818c" +gtk-color-scheme = "notebook_bg: #404552" +gtk-color-scheme = "dark_sidebar_bg: #353945" +gtk-color-scheme = "link_color: #5294e2" +gtk-color-scheme = "menu_bg: #383c4a" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "xfce-notify.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/theme/Budgie/gtk-2.0/main.rc b/theme/Budgie/gtk-2.0/main.rc new file mode 100644 index 0000000..8b8f824 --- /dev/null +++ b/theme/Budgie/gtk-2.0/main.rc @@ -0,0 +1,2349 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + GtkTreeView::odd_row_color = shade(0.98, @base_color) + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_framed_box" { + + engine "adwaita" { + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 5 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @selected_fg_color + + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Fix invisible scale trough on selected menuitems + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-selected.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked-selected.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-selected.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked-selected.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/entry-bg.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active-bg.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-disabled-bg.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = FLAT_BOX + state = ACTIVE + detail = "entry_bg" + file = "assets/entry-background.png" + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/entry-background-disabled.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/entry-background.png" + } + } +} + +style "notebook_entry" { + + engine "pixmap" { + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/entry-notebook.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active-notebook.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-disabled-notebook.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" = "default" { + engine "murrine" { textstyle = 0 } +} + +style "menu_text" = "menu_item" { + engine "murrine" { textstyle = 0 } +} + + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_framed_box" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "menu_text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/button-active.png b/theme/Budgie/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..219e43c Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/button-hover.png b/theme/Budgie/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..365f9f1 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/button-insensitive.png b/theme/Budgie/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..829137d Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/button.png b/theme/Budgie/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..108cb1e Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/button.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png new file mode 100644 index 0000000..071c570 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/entry-active-toolbar.png b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-active-toolbar.png new file mode 100644 index 0000000..b7d5c64 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-active-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png new file mode 100644 index 0000000..d55c50e Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png new file mode 100644 index 0000000..d2c5138 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png new file mode 100644 index 0000000..aa9c9e4 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/entry-toolbar.png b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-toolbar.png new file mode 100644 index 0000000..acec7ab Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/entry-toolbar.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-dark.png b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..3c6cb13 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..baf7f44 --- /dev/null +++ b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f343f" + fg[NORMAL] = "#afb8c5" + fg[PRELIGHT] = "#afb8c5" + fg[ACTIVE] = "#afb8c5" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#afb8c5") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f343f" + fg[NORMAL] = "#afb8c5" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#afb8c5") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#afb8c5" + fg[PRELIGHT] = "#afb8c5" + fg[INSENSITIVE] = shade(0.7, "#afb8c5") + fg[ACTIVE] = "#afb8c5" + + text[NORMAL] = "#afb8c5" + text[PRELIGHT] = "#afb8c5" + text[INSENSITIVE] = shade(0.7, "#afb8c5") + text[ACTIVE] = "#afb8c5" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + + base[NORMAL] = "#404552" + base[ACTIVE] = "#404552" + base[INSENSITIVE] = "#39404d" + + text[NORMAL] = "#afb8c5" + + engine "pixmap" { + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "menubar-toolbar/entry-toolbar-dark.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "menubar-toolbar/entry-active-toolbar-dark.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "menubar-toolbar/entry-disabled-toolbar-dark.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = FLAT_BOX + state = ACTIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/null.png" + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f343f" + ChromeGtkFrame::inactive-frame-color = "#2f343f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..4cb89eb --- /dev/null +++ b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,162 @@ +style "menubar" { + + bg[NORMAL] = "#e7e8eb" + fg[NORMAL] = "#70788d" + fg[PRELIGHT] = "#70788d" + fg[ACTIVE] = "#70788d" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#70788d") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#e7e8eb" + fg[NORMAL] = "#70788d" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#70788d") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + + text[NORMAL] = "#70788d" + + engine "pixmap" { + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "menubar-toolbar/entry-toolbar.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "menubar-toolbar/entry-active-toolbar.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "menubar-toolbar/entry-disabled-toolbar.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = FLAT_BOX + state = ACTIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/null.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/null.png" + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#e7e8eb" + ChromeGtkFrame::inactive-frame-color = "#e7e8eb" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/menubar.png b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..80bcfee Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..897bd97 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/theme/Budgie/gtk-2.0/menubar-toolbar/menubar_button.png b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..897bd97 Binary files /dev/null and b/theme/Budgie/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/theme/Budgie/gtk-2.0/panel.rc b/theme/Budgie/gtk-2.0/panel.rc new file mode 100644 index 0000000..d573b7b --- /dev/null +++ b/theme/Budgie/gtk-2.0/panel.rc @@ -0,0 +1,160 @@ +style "theme-panel" { + + xthickness = 2 + ythickness = 0 + + bg[NORMAL] = "#2B2E37" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = "#3f4453" + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + } +} + +style "theme-panel-progressbar" { + bg[ACTIVE] = "#1D1F26" +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*Xfce*Panel*GtkProgressBar" style "theme-panel-progressbar" +widget "*WnckPager*" style "workspace-switcher" +widget "*TopMenu*" style "theme-panel" +widget "*XfceTasklist*" style "panelbuttons" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/theme/Budgie/gtk-2.0/xfce-notify.rc b/theme/Budgie/gtk-2.0/xfce-notify.rc new file mode 100644 index 0000000..7ec55ac --- /dev/null +++ b/theme/Budgie/gtk-2.0/xfce-notify.rc @@ -0,0 +1,74 @@ +gtk-color-scheme = "selected_bg_color:#5294E2\nselected_fg_color:#ffffff" + +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = @selected_fg_color + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = @selected_bg_color + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = @selected_bg_color + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*" style "notify-button" +widget_class "XfceNotifyWindow.*." style "notify-text" +widget_class "XfceNotifyWindow.*." style "notify-progressbar" +widget_class "XfceNotifyWindow.*." style "notify-progressbar" diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..496998f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..39bf7c3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..a468279 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..73a464b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..1646b2f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..47fe899 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..c168021 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..f0c3524 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-selected.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..1eaf128 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-selected@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..ffd6c67 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..b08bfe0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..80d33a6 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..81e44e0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..3e3e214 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..425f206 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-checked@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..d35b084 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..f73c00b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..37390c8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..84d60e8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..f2dba0d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..9dbd046 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..de08de4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..ec44f94 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..7a3a821 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-selected.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..f71983e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed-selected@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..4537034 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..15a8362 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-mixed@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..9ff7247 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..5c3571b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..6ca755c Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode.png b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..a0633d6 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..73eed03 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..cbb0459 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..36ef082 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..b885220 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..e353cbe Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..824c238 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..96b18e8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..3b7a095 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..a24c3d8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-selected.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..3eff15a Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..ee1a5a0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..f43a0fa Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/theme/Budgie/gtk-3.0/assets/checkbox-unchecked@2.png b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..0cbf027 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-dark.png b/theme/Budgie/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..a34ce27 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-dark@2.png b/theme/Budgie/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..debad0b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..27b9990 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..62981a4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..1c429c0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..7c1d97d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive.png b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..8c02642 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..1f32174 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-selected.png b/theme/Budgie/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..18272d7 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked-selected@2.png b/theme/Budgie/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..ece7a2e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked.png b/theme/Budgie/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..38eef2b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-checked@2.png b/theme/Budgie/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..2655ad4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-checked@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-dark.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..8ae0dc3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-dark@2.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..6953c13 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..c7c82e3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..5e781d4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..fa56a87 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..8e5afb3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..2944cc2 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..776641c Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-selected.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..6eb3ba2 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed-selected@2.png b/theme/Budgie/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..00de99e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed.png b/theme/Budgie/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..7c57661 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-mixed@2.png b/theme/Budgie/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..9157438 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-dark.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..3ae3320 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-dark@2.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..b0ca733 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..c9dfe0e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..b71c31d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..8f9324e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..421deb7 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..73c2781 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..c309ca9 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-selected.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..69cd8c6 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked-selected@2.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..d649e79 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..10c380d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked.png differ diff --git a/theme/Budgie/gtk-3.0/assets/radio-unchecked@2.png b/theme/Budgie/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..42b8e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-dark.png b/theme/Budgie/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..3ee116e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..5bab5b9 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-header-dark.png b/theme/Budgie/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..a73d33a Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-header-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..37add51 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-header.png b/theme/Budgie/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..51d7314 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-header.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-header@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..a15feb4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..0234b3e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..9757e08 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..2da56ab Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..60be2af Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..87651d6 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..b12377f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..22b5d94 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..4e2da85 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..87651d6 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..b12377f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-selected.png b/theme/Budgie/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..c1b50f0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active-selected@2.png b/theme/Budgie/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..edd4df8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active.png b/theme/Budgie/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..51d7314 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-active@2.png b/theme/Budgie/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..a15feb4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-active@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-dark.png b/theme/Budgie/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..baee194 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..e87625b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-header-dark.png b/theme/Budgie/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..116f76b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-header-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-header-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..01189b6 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-header.png b/theme/Budgie/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..bd7a2b5 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-header.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-header@2.png b/theme/Budgie/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..010bec5 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-header@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-dark.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..a92d5c5 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..911ab2d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-header-dark.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..bb6ac47 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..eea6f72 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-header.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..fced1ab Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-header@2.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..9459fd7 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-selected.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..9007e6a Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive-selected@2.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..630f40d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..5cf73ca Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-insensitive@2.png b/theme/Budgie/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..fdae8ab Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-selected.png b/theme/Budgie/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..e8eeaa0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-selected.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch-selected@2.png b/theme/Budgie/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..f65eb2b Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch-selected@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch.png b/theme/Budgie/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..f3de1dc Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch.png differ diff --git a/theme/Budgie/gtk-3.0/assets/switch@2.png b/theme/Budgie/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..cbcff5e Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/switch@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/thumbnail-frame.png b/theme/Budgie/gtk-3.0/assets/thumbnail-frame.png new file mode 100644 index 0000000..42ac840 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/thumbnail-frame.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-active-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..a774df0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..dfe5065 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-active.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..a774df0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-active@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..dfe5065 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..8720697 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..abd7089 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..8720697 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..a19c04f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..8720697 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..a19c04f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..73ddf3d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..b114991 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..73ddf3d Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..b114991 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..8720697 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-close@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..a19c04f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active-dark.png new file mode 100644 index 0000000..d12eefc Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active-dark@2.png new file mode 100644 index 0000000..cd233f8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active.png new file mode 100644 index 0000000..d12eefc Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active@2.png new file mode 100644 index 0000000..cd233f8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-active@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop-dark.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop-dark@2.png new file mode 100644 index 0000000..1eaa727 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop@2.png new file mode 100644 index 0000000..20b2e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-backdrop@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-dark.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-dark@2.png new file mode 100644 index 0000000..20b2e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover-dark.png new file mode 100644 index 0000000..5788f7f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover-dark@2.png new file mode 100644 index 0000000..1ffbe78 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover.png new file mode 100644 index 0000000..5788f7f Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover@2.png new file mode 100644 index 0000000..1ffbe78 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize-hover@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-maximize@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize@2.png new file mode 100644 index 0000000..20b2e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-maximize@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active-dark.png new file mode 100644 index 0000000..ffe7d23 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active-dark@2.png new file mode 100644 index 0000000..eb686a3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active.png new file mode 100644 index 0000000..ffe7d23 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active@2.png new file mode 100644 index 0000000..ef7dc25 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-active@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop-dark.png new file mode 100644 index 0000000..f761ade Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop-dark@2.png new file mode 100644 index 0000000..6b2e0c4 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop.png new file mode 100644 index 0000000..f761ade Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop@2.png new file mode 100644 index 0000000..81595c0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-backdrop@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-dark.png new file mode 100644 index 0000000..f761ade Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-dark@2.png new file mode 100644 index 0000000..81595c0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover-dark.png new file mode 100644 index 0000000..74b3d56 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover-dark@2.png new file mode 100644 index 0000000..d7efb51 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover.png new file mode 100644 index 0000000..74b3d56 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover@2.png new file mode 100644 index 0000000..d7efb51 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize-hover@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize.png new file mode 100644 index 0000000..f761ade Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-minimize@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize@2.png new file mode 100644 index 0000000..81595c0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-minimize@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active-dark.png new file mode 100644 index 0000000..5a6e3f8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active-dark@2.png new file mode 100644 index 0000000..4ef16d8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active.png new file mode 100644 index 0000000..5a6e3f8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active@2.png new file mode 100644 index 0000000..4ef16d8 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-active@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop-dark.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop@2.png new file mode 100644 index 0000000..20b2e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-backdrop@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-dark.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-dark@2.png new file mode 100644 index 0000000..20b2e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover-dark.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover-dark.png new file mode 100644 index 0000000..1b2386a Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover-dark.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover-dark@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover-dark@2.png new file mode 100644 index 0000000..f85fe57 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover-dark@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover.png new file mode 100644 index 0000000..1b2386a Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover@2.png new file mode 100644 index 0000000..f85fe57 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore-hover@2.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore.png new file mode 100644 index 0000000..8143ce3 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore.png differ diff --git a/theme/Budgie/gtk-3.0/assets/titlebutton-restore@2.png b/theme/Budgie/gtk-3.0/assets/titlebutton-restore@2.png new file mode 100644 index 0000000..20b2e98 Binary files /dev/null and b/theme/Budgie/gtk-3.0/assets/titlebutton-restore@2.png differ diff --git a/theme/Budgie/gtk-3.0/gtk.css b/theme/Budgie/gtk-3.0/gtk.css new file mode 100644 index 0000000..a7227a8 --- /dev/null +++ b/theme/Budgie/gtk-3.0/gtk.css @@ -0,0 +1,5100 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + outline-color: alpha(currentColor,0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + -gtk-outline-radius: 2px; } + +.background { + color: #D3DAE3; + background-color: rgba(56, 60, 74, 0.999); } + +*:disabled { + -gtk-icon-effect: dim; } + +.gtkstyle-fallback { + background-color: #383C4A; + color: #D3DAE3; } + .gtkstyle-fallback:hover { + background-color: #4e5467; + color: #D3DAE3; } + .gtkstyle-fallback:active { + background-color: #22242d; + color: #D3DAE3; } + .gtkstyle-fallback:disabled { + background-color: #3c4150; + color: rgba(211, 218, 227, 0.45); } + .gtkstyle-fallback:selected { + background-color: #5294e2; + color: #ffffff; } + +.view, iconview, +.view text, +iconview text, +textview text { + color: #D3DAE3; + background-color: #404552; } + .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, + .view text:selected, + iconview text:selected, + textview text:selected, + .view text:selected:focus, + iconview text:selected:focus, + textview text:selected:focus { + border-radius: 2px; } + +textview border { + background-color: #3c414e; } + +rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, +.rubberband { + border: 1px solid #2679db; + background-color: rgba(38, 121, 219, 0.2); } + +flowbox flowboxchild { + padding: 3px; + border-radius: 2px; } + flowbox flowboxchild:selected { + outline-offset: -2px; } + +label.separator, popover label.separator, +popover.background label.separator { + color: #D3DAE3; } + +label selection { + color: #ffffff; + background-color: #5294e2; } + +label:disabled { + color: rgba(211, 218, 227, 0.45); } + +.dim-label, label.separator, popover label.separator, +popover.background label.separator, headerbar .subtitle, +.titlebar:not(headerbar) .subtitle, .budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher-window .notification-body, .budgie-switcher .notification-body { + opacity: 0.55; } + +assistant .sidebar { + background-color: #404552; + border-top: 1px solid #2b2e39; } + +assistant.csd .sidebar { + border-top-style: none; } + +assistant .sidebar label { + padding: 6px 12px; } + +assistant .sidebar label.highlight { + background-color: #5294e2; + color: #ffffff; } + +textview { + background-color: #404552; } + +popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, +popover.background.osd, +popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { + color: #BAC3CF; + border: none; + background-color: rgba(53, 57, 69, 0.95); + background-clip: padding-box; + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } + +spinner { + background: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + spinner:checked { + opacity: 1; + animation: spin 1s linear infinite; } + spinner:checked:disabled { + opacity: 0.5; } + +entry { + min-height: 22px; + border: 1px solid; + padding: 2px 8px; + caret-color: currentColor; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #D3DAE3; + border-color: #2b2e39; + background-color: #404552; } + entry.search { + border-radius: 20px; } + entry image { + color: #b6bcc6; } + entry image.left { + padding-left: 0; + padding-right: 5px; } + entry image.right { + padding-right: 0; + padding-left: 5px; } + entry.flat, entry.flat:focus { + min-height: 0; + padding: 2px; + background-image: none; + border-color: transparent; + border-radius: 0; } + entry:focus { + background-clip: border-box; + color: #D3DAE3; + border-color: #2b2e39; + background-color: #404552; + box-shadow: inset 1px 0 #5294e2, inset -1px 0 #5294e2, inset 0 1px #5294e2, inset 0 -1px #5294e2; } + entry:disabled { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(43, 46, 57, 0.55); + background-color: rgba(64, 69, 82, 0.55); } + entry.warning { + color: white; + border-color: #2b2e39; + background-color: #ab6441; } + entry.warning image { + color: white; } + entry.warning:focus { + color: white; + background-color: #F27835; + box-shadow: none; } + entry.warning selection, entry.warning selection:focus { + background-color: white; + color: #F27835; } + entry.error { + color: white; + border-color: #2b2e39; + background-color: #b14342; } + entry.error image { + color: white; } + entry.error:focus { + color: white; + background-color: #FC4138; + box-shadow: none; } + entry.error selection, entry.error selection:focus { + background-color: white; + color: #FC4138; } + entry.search-missing { + color: white; + border-color: #2b2e39; + background-color: #b14342; } + entry.search-missing image { + color: white; } + entry.search-missing:focus { + color: white; + background-color: #FC4138; + box-shadow: none; } + entry.search-missing selection, entry.search-missing selection:focus { + background-color: white; + color: #FC4138; } + entry:drop(active):focus, entry:drop(active) { + border-color: #F08437; + box-shadow: none; } + .osd entry { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + .osd entry image, .osd entry image:hover { + color: inherit; } + .osd entry:focus { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + .osd entry:disabled { + color: rgba(186, 195, 207, 0.55); + background-color: rgba(102, 109, 132, 0.2); } + .osd entry selection:focus, .osd entry selection { + color: #5294e2; + background-color: #ffffff; } + entry progress { + margin: 0 -6px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294e2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + +treeview entry.flat, treeview entry { + border-radius: 0; + background-image: none; + background-color: #404552; } + treeview entry.flat:focus, treeview entry:focus { + border-color: #5294e2; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294e2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294e2), to(transparent)); } } + +button, .budgie-panel button { + min-height: 22px; + min-width: 20px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 2px 6px; + color: #D3DAE3; + border-color: #2b2e39; + background-color: #444a58; } + button separator, .budgie-panel button separator { + margin: 4px 1px; } + button.flat, button.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + transition: none; } + button.flat:hover, button.sidebar-button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + button.flat:hover:active, button.sidebar-button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + button:hover { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #505666; + -gtk-icon-effect: highlight; } + button:active, button:checked { + color: #ffffff; + border-color: #2b2e39; + background-color: #5294e2; + background-clip: padding-box; + transition-duration: 50ms; } + button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { + color: inherit; + opacity: 0.6; } + button:active { + color: #D3DAE3; } + button:active:hover, button:checked { + color: #ffffff; } + button.flat:disabled, button.sidebar-button:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; } + button:disabled { + border-color: rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); } + button:disabled label, button:disabled { + color: rgba(211, 218, 227, 0.45); } + button:disabled:active, button:disabled:checked { + border-color: rgba(82, 148, 226, 0.75); + background-color: rgba(82, 148, 226, 0.75); + opacity: 0.6; } + button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { + color: rgba(255, 255, 255, 0.8); } + button.image-button { + min-width: 24px; + padding-left: 5px; + padding-right: 5px; } + button.text-button { + padding-left: 12px; + padding-right: 12px; } + button.text-button.image-button { + padding-left: 5px; + padding-right: 5px; } + button.text-button.image-button label:first-child { + padding-left: 8px; + padding-right: 2px; } + button.text-button.image-button label:last-child { + padding-right: 8px; + padding-left: 2px; } + button.text-button.image-button label:only-child { + padding-left: 8px; + padding-right: 8px; } + button.text-button.image-button.popup { + padding-right: 8px; + padding-left: 8px; } + button:drop(active), combobox:drop(active) button.combo, .budgie-panel button:drop(active) { + color: #F08437; + border-color: #F08437; + box-shadow: none; } + button.osd { + color: #BAC3CF; + background-color: rgba(53, 57, 69, 0.95); + border-color: rgba(35, 38, 46, 0.95); } + button.osd.image-button { + padding: 0; + min-height: 36px; + min-width: 36px; } + button.osd:hover { + color: #5294e2; } + button.osd:active, button.osd:checked { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + button.osd:disabled { + color: #5d626e; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + .osd button { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + .osd button:hover { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + .osd button:active, .osd button:checked { + background-clip: padding-box; + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + .osd button:disabled { + color: #5d626e; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + .osd button.flat, .osd button.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd button.flat:hover, .osd button.sidebar-button:hover { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + .osd button.flat:disabled, .osd button.sidebar-button:disabled { + color: #5d626e; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); + background-image: none; } + .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), .osd .budgie-panel .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), + .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active), + .osd .budgie-panel .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { + box-shadow: none; } + button.suggested-action { + background-clip: border-box; + color: white; + background-color: #4DADD4; + border-color: #4DADD4; } + button.suggested-action.flat, button.suggested-action.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #4DADD4; } + button.suggested-action:hover { + background-clip: border-box; + color: white; + background-color: #76c0de; + border-color: #76c0de; } + button.suggested-action:active, button.suggested-action:checked { + background-clip: border-box; + color: white; + background-color: #2e96c0; + border-color: #2e96c0; } + button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(211, 218, 227, 0.45); } + button.suggested-action:disabled { + border-color: rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); } + button.suggested-action:disabled label, button.suggested-action:disabled { + color: rgba(211, 218, 227, 0.45); } + button.destructive-action { + background-clip: border-box; + color: white; + background-color: #F04A50; + border-color: #F04A50; } + button.destructive-action.flat, button.destructive-action.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; } + button.destructive-action:hover { + background-clip: border-box; + color: white; + background-color: #f4797e; + border-color: #f4797e; } + button.destructive-action:active, button.destructive-action:checked { + background-clip: border-box; + color: white; + background-color: #ec1b22; + border-color: #ec1b22; } + button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(211, 218, 227, 0.45); } + button.destructive-action:disabled { + border-color: rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); } + button.destructive-action:disabled label, button.destructive-action:disabled { + color: rgba(211, 218, 227, 0.45); } + .stack-switcher > button, .budgie-panel .stack-switcher > button { + outline-offset: -3px; } + .stack-switcher > button > label, .budgie-panel .stack-switcher > button > label { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > button > image, .budgie-panel .stack-switcher > button > image { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > button.text-button, .budgie-panel .stack-switcher > button.text-button { + padding-left: 10px; + padding-right: 10px; } + .stack-switcher > button.image-button, .budgie-panel .stack-switcher > button.image-button { + padding-left: 2px; + padding-right: 2px; } + .stack-switcher > button.needs-attention:active > label, .budgie-panel .stack-switcher > button.needs-attention:active > label, .stack-switcher > button.needs-attention:active > image, .budgie-panel .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, .budgie-panel .stack-switcher > button.needs-attention:checked > label, .stack-switcher > button.needs-attention:checked > image, .budgie-panel .stack-switcher > button.needs-attention:checked > image { + animation: none; + background-image: none; } + .stack-switcher > button.needs-attention > label, .budgie-panel .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, .budgie-panel .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294e2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > button.needs-attention > label:dir(rtl), .budgie-panel .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), .budgie-panel .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { + background-position: left 3px, left 2px; } + button.font separator, button.file separator { + background-color: transparent; } + .inline-toolbar button, .inline-toolbar button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar toolbutton > button, .inline-toolbar .budgie-panel toolbutton > button { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #444a58; } + .inline-toolbar toolbutton > button:hover, .inline-toolbar .budgie-panel toolbutton > button:hover { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #505666; } + .inline-toolbar toolbutton > button:active, .inline-toolbar .budgie-panel toolbutton > button:active, .inline-toolbar toolbutton > button:checked, .inline-toolbar .budgie-panel toolbutton > button:checked { + color: #ffffff; + border-color: #2b2e39; + background-color: #5294e2; } + .inline-toolbar toolbutton > button:disabled, .inline-toolbar .budgie-panel toolbutton > button:disabled { + border-color: rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); } + .inline-toolbar toolbutton > button:disabled label, .inline-toolbar .budgie-panel toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled, .inline-toolbar .budgie-panel toolbutton > button:disabled { + color: rgba(211, 218, 227, 0.45); } + .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar .budgie-panel toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked, .inline-toolbar .budgie-panel toolbutton > button:disabled:checked { + border-color: rgba(82, 148, 226, 0.75); + background-color: rgba(82, 148, 226, 0.75); + opacity: 0.6; } + .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar .budgie-panel toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar .budgie-panel toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar .budgie-panel toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked, .inline-toolbar .budgie-panel toolbutton > button:disabled:checked { + color: rgba(255, 255, 255, 0.8); } + +.linked:not(.vertical):not(.path-bar) > entry + entry { + border-left-color: rgba(43, 46, 57, 0.3); } + +.linked:not(.vertical):not(.path-bar) > entry.error + entry, +.linked:not(.vertical):not(.path-bar) > entry + entry.error { + border-left-color: rgba(43, 46, 57, 0.3); } + +.linked:not(.vertical):not(.path-bar) > entry.warning + entry, +.linked:not(.vertical):not(.path-bar) > entry + entry.warning { + border-left-color: rgba(43, 46, 57, 0.3); } + +.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, +.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { + border-left-color: rgba(43, 46, 57, 0.3); } + +.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), +.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, +.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, +.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), +.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, +.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, +.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, +.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, +.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, +.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > button:active + entry, .budgie-panel .linked:not(.vertical):not(.path-bar) > button:active + entry, +.linked:not(.vertical):not(.path-bar) > button:checked + entry, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked + entry { + border-left-color: #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > button + button, .budgie-panel .linked:not(.vertical):not(.path-bar) > button + button { + border-left-style: none; } + +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { + box-shadow: inset 1px 0 #2b2e39; } + +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { + box-shadow: inset 1px 0 rgba(43, 46, 57, 0.5); } + +.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, .budgie-panel .linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, +.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +.budgie-panel .linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { + box-shadow: none; } + +.linked:not(.vertical).path-bar > button + button, .budgie-panel .linked:not(.vertical).path-bar > button + button { + border-left-style: none; } + +.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { + box-shadow: inset 1px 0 rgba(43, 46, 57, 0.5), inset -1px 0 rgba(43, 46, 57, 0.5); } + +.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { + box-shadow: inset -1px 0 rgba(43, 46, 57, 0.5); } + +.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { + box-shadow: inset 1px 0 rgba(43, 46, 57, 0.5); } + +.linked.vertical > entry + entry { + border-top-color: rgba(43, 46, 57, 0.3); } + +.linked.vertical > entry.error + entry, +.linked.vertical > entry + entry.error { + border-top-color: rgba(43, 46, 57, 0.3); } + +.linked.vertical > entry.warning + entry, +.linked.vertical > entry + entry.warning { + border-top-color: rgba(43, 46, 57, 0.3); } + +.linked.vertical > entry.error + entry.warning, +.linked.vertical > entry.warning + entry.error { + border-top-color: rgba(43, 46, 57, 0.3); } + +.linked.vertical > entry + entry:focus:not(:last-child), +.linked.vertical > entry + entry:focus:last-child { + border-top-color: #2b2e39; } + +.linked.vertical > entry:focus:not(:only-child) + entry, +.linked.vertical > entry:focus:not(:only-child) + button, +.budgie-panel .linked.vertical > entry:focus:not(:only-child) + button, +.linked.vertical > entry:focus:not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked.vertical > entry:focus:not(:only-child) + combobox > box > button.combo { + border-top-color: #2b2e39; } + +.linked.vertical > entry + entry:drop(active):not(:last-child), +.linked.vertical > entry + entry:drop(active):last-child { + border-top-color: #2b2e39; } + +.linked.vertical > entry:drop(active):not(:only-child) + entry, +.linked.vertical > entry:drop(active):not(:only-child) + button, +.budgie-panel .linked.vertical > entry:drop(active):not(:only-child) + button, +.linked.vertical > entry:drop(active):not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked.vertical > entry:drop(active):not(:only-child) + combobox > box > button.combo { + border-top-color: #2b2e39; } + +.linked.vertical > entry + entry.warning:focus:not(:last-child), +.linked.vertical > entry + entry.warning:focus:last-child { + border-top-color: #2b2e39; } + +.linked.vertical > entry.warning:focus:not(:only-child) + entry, +.linked.vertical > entry.warning:focus:not(:only-child) + button, +.budgie-panel .linked.vertical > entry.warning:focus:not(:only-child) + button, +.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { + border-top-color: #2b2e39; } + +.linked.vertical > entry + entry.error:focus:not(:last-child), +.linked.vertical > entry + entry.error:focus:last-child { + border-top-color: #2b2e39; } + +.linked.vertical > entry.error:focus:not(:only-child) + entry, +.linked.vertical > entry.error:focus:not(:only-child) + button, +.budgie-panel .linked.vertical > entry.error:focus:not(:only-child) + button, +.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo, +.budgie-panel .linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { + border-top-color: #2b2e39; } + +.linked.vertical > button:active + entry, .budgie-panel .linked.vertical > button:active + entry, +.linked.vertical > button:checked + entry, +.budgie-panel .linked.vertical > button:checked + entry { + border-top-color: #2b2e39; } + +.linked.vertical > button + button, .budgie-panel .linked.vertical > button + button { + border-top-style: none; } + +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), +.budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { + box-shadow: inset 0 1px #2b2e39; } + +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), +.budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { + box-shadow: inset 0 1px rgba(43, 46, 57, 0.5); } + +.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, .budgie-panel .linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, +.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.budgie-panel .linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, +.budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, +.budgie-panel .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, +.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.budgie-panel .linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, +.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +.budgie-panel .linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { + box-shadow: none; } + +toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar .budgie-panel toolbutton > button.flat, .budgie-panel .inline-toolbar toolbutton > button.flat, .inline-toolbar .budgie-panel toolbutton > button.sidebar-button, .budgie-panel .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, +.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, .budgie-panel .linked:not(.vertical) > button, +.linked:not(.vertical) > button:hover, +.linked:not(.vertical) > button:active, +.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, +.primary-toolbar .linked:not(.vertical).path-bar > button, +headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button, .budgie-panel .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .budgie-panel .linked:not(.vertical).path-bar > button, .budgie-panel headerbar .linked:not(.vertical).path-bar > button, +.primary-toolbar .linked:not(.vertical).path-bar > button:hover, +headerbar .linked:not(.vertical).path-bar > button:hover, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:hover, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > button:active, +headerbar .linked:not(.vertical).path-bar > button:active, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:active, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:active, +.primary-toolbar .linked:not(.vertical).path-bar > button:checked, +headerbar .linked:not(.vertical).path-bar > button:checked, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:checked, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > button:disabled, +headerbar .linked:not(.vertical).path-bar > button:disabled, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:disabled, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .budgie-panel .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl), .budgie-panel .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, .budgie-panel .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar .budgie-panel toolbutton:first-child > button.flat, .budgie-panel .inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar .budgie-panel toolbutton:first-child > button.sidebar-button, .budgie-panel .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .budgie-panel .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:disabled, +.primary-toolbar .linked:not(.vertical).path-bar > button:first-child, +headerbar .linked:not(.vertical).path-bar > button:first-child, .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:first-child, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:first-child, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:first-child, +headerbar .linked:not(.vertical).path-bar > button:first-child:hover, +headerbar .linked:not(.vertical).path-bar > button:first-child:active, +headerbar .linked:not(.vertical).path-bar > button:first-child:checked, +headerbar .linked:not(.vertical).path-bar > button:first-child:disabled, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:first-child:disabled, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:first-child:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + +.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, .budgie-panel .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar .budgie-panel toolbutton:last-child > button.flat, .budgie-panel .inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar .budgie-panel toolbutton:last-child > button.sidebar-button, .budgie-panel .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .budgie-panel .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:disabled, +.primary-toolbar .linked:not(.vertical).path-bar > button:last-child, +headerbar .linked:not(.vertical).path-bar > button:last-child, .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:last-child, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:last-child, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:last-child, +headerbar .linked:not(.vertical).path-bar > button:last-child:hover, +headerbar .linked:not(.vertical).path-bar > button:last-child:active, +headerbar .linked:not(.vertical).path-bar > button:last-child:checked, +headerbar .linked:not(.vertical).path-bar > button:last-child:disabled, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:last-child:disabled, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:last-child:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } + +.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, .budgie-panel .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar .budgie-panel toolbutton:only-child > button.flat, .budgie-panel .inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar .budgie-panel toolbutton:only-child > button.sidebar-button, .budgie-panel .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .budgie-panel .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child:disabled, +.primary-toolbar .linked:not(.vertical).path-bar > button:only-child, +headerbar .linked:not(.vertical).path-bar > button:only-child, .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:only-child, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:only-child, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:only-child, +headerbar .linked:not(.vertical).path-bar > button:only-child:hover, +headerbar .linked:not(.vertical).path-bar > button:only-child:active, +headerbar .linked:not(.vertical).path-bar > button:only-child:checked, +headerbar .linked:not(.vertical).path-bar > button:only-child:disabled, headerbar .budgie-panel .linked:not(.vertical).path-bar > button:only-child:disabled, .budgie-panel headerbar .linked:not(.vertical).path-bar > button:only-child:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > entry, +.linked.vertical > entry:focus, .linked.vertical > button, .budgie-panel .linked.vertical > button, +.linked.vertical > button:hover, +.linked.vertical > button:active, +.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo, .budgie-panel .linked.vertical > combobox > box > button.combo { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > entry:first-child, .linked.vertical > button:first-child, .budgie-panel .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo, .budgie-panel .linked.vertical > combobox:first-child > box > button.combo { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + +.linked.vertical > entry:last-child, .linked.vertical > button:last-child, .budgie-panel .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo, .budgie-panel .linked.vertical > combobox:last-child > box > button.combo { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } + +.linked.vertical > entry:only-child, .linked.vertical > button:only-child, .budgie-panel .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo, .budgie-panel .linked.vertical > combobox:only-child > box > button.combo { + border-radius: 3px; + border-style: solid; } + +menuitem.button.flat, +modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, .budgie-panel notebook > header > tabs > tab button.flat:hover, .budgie-panel notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, .budgie-panel notebook > header > tabs > tab button.flat:active, .budgie-panel notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +menuitem.button.flat, +modelbutton.flat { + transition: none; + min-height: 24px; + padding-left: 8px; + padding-right: 8px; + outline-offset: -3px; + border-radius: 2px; } + menuitem.button.flat:hover, + modelbutton.flat:hover { + background-color: #484c59; } + menuitem.button.flat:checked, + modelbutton.flat:checked { + color: #D3DAE3; } + menuitem.button.flat check:last-child, + menuitem.button.flat radio:last-child, + modelbutton.flat check:last-child, + modelbutton.flat radio:last-child { + margin-left: 8px; } + menuitem.button.flat check:first-child, + menuitem.button.flat radio:first-child, + modelbutton.flat check:first-child, + modelbutton.flat radio:first-child { + margin-right: 8px; } + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + +*:link, button:link, button:visited { + color: #a9caf1; } + *:link:visited, button:visited { + color: #7eafe9; } + *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { + color: #bad4f3; } + *:link:hover, button:hover:link, button:hover:visited { + color: #d5e5f8; } + *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { + color: #eef4fc; } + *:link:active, button:active:link, button:active:visited { + color: #a9caf1; } + *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { + color: #dceaf9; } + infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, + .selection-mode.titlebar:not(headerbar) .subtitle:link, + *:selected *:link, + *:selected button:link, + *:selected button:visited { + color: #dceaf9; } + +button:link > label, .budgie-panel button:link > label, button:visited > label, .budgie-panel button:visited > label { + text-decoration-line: underline; } + +spinbutton:drop(active) { + box-shadow: none; } + +spinbutton button:active { + color: #ffffff; } + +spinbutton:disabled { + color: rgba(211, 218, 227, 0.45); } + +spinbutton:not(.vertical) entry { + min-width: 28px; } + +spinbutton:not(.vertical):dir(ltr) entry, +spinbutton:not(.vertical):dir(rtl) button.up { + border-radius: 3px 0 0 3px; } + +spinbutton:not(.vertical) > button + button, .budgie-panel spinbutton:not(.vertical) > button + button { + border-left-style: none; } + +spinbutton:not(.vertical) > button:hover:not(:active), .budgie-panel spinbutton:not(.vertical) > button:hover:not(:active), +spinbutton:not(.vertical) > button:hover + button, +.budgie-panel spinbutton:not(.vertical) > button:hover + button { + box-shadow: inset 1px 0 #2b2e39; } + +spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .budgie-panel spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), +spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, +.budgie-panel spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { + box-shadow: inset 1px 0 rgba(43, 46, 57, 0.5); } + +spinbutton:not(.vertical) > button:first-child:hover:not(:active), .budgie-panel spinbutton:not(.vertical) > button:first-child:hover:not(:active), +spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), +.budgie-panel spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), +spinbutton:not(.vertical) > entry + button:not(:active):hover, +.budgie-panel spinbutton:not(.vertical) > entry + button:not(:active):hover { + box-shadow: none; } + +spinbutton:not(.vertical) > entry:focus + button, .budgie-panel spinbutton:not(.vertical) > entry:focus + button { + border-left-color: #2b2e39; } + +spinbutton:not(.vertical) > entry:drop(active) + button, .budgie-panel spinbutton:not(.vertical) > entry:drop(active) + button { + border-left-color: #F08437; } + +.osd spinbutton:not(.vertical) > button:hover:not(:active), .osd .budgie-panel spinbutton:not(.vertical) > button:hover:not(:active), +.osd spinbutton:not(.vertical) > button:hover + button, +.osd .budgie-panel spinbutton:not(.vertical) > button:hover + button { + box-shadow: inset 1px 0 rgba(26, 28, 34, 0.35); } + +.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), .osd .budgie-panel spinbutton:not(.vertical) > button:first-child:hover:not(:active), +.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), +.osd .budgie-panel spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), +.osd spinbutton:not(.vertical) > entry + button:not(:active):hover, +.osd .budgie-panel spinbutton:not(.vertical) > entry + button:not(:active):hover { + box-shadow: none; } + +.osd spinbutton:not(.vertical) > entry:focus + button, .osd .budgie-panel spinbutton:not(.vertical) > entry:focus + button { + border-left-color: rgba(26, 28, 34, 0.35); } + +spinbutton.vertical button, spinbutton.vertical entry { + padding-left: 4px; + padding-right: 4px; + min-width: 0; } + +spinbutton.vertical button.up { + border-radius: 3px 3px 0 0; } + +spinbutton.vertical > entry:focus + button, .budgie-panel spinbutton.vertical > entry:focus + button { + border-top-color: #2b2e39; } + +spinbutton.vertical > entry:drop(active) + button, .budgie-panel spinbutton.vertical > entry:drop(active) + button { + border-top-color: #F08437; } + +combobox button.combo, combobox .budgie-panel button.combo, .budgie-panel combobox button.combo { + min-width: 0; + padding-left: 8px; + padding-right: 8px; } + +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; } + +toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383C4A; } + toolbar separator, .inline-toolbar separator { + background: none; } + toolbar.horizontal separator, .horizontal.inline-toolbar separator { + margin: 0 6px; } + toolbar.vertical separator, .vertical.inline-toolbar separator { + margin: 6px 0; } + .osd toolbar, .osd .inline-toolbar { + background-color: transparent; } + toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 57, 69, 0.85); } + toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { + border-radius: 0; } + toolbar.osd.top, .osd.top.inline-toolbar { + border-width: 0 0 1px 0; } + toolbar.osd.bottom, .osd.bottom.inline-toolbar { + border-width: 1px 0 0 0; } + toolbar.osd.left, .osd.left.inline-toolbar { + border-width: 0 1px 0 0; } + toolbar.osd.right, .osd.right.inline-toolbar { + border-width: 0 0 0 1px; } + toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, + toolbar:not(.inline-toolbar) scale, + .inline-toolbar:not(.inline-toolbar) scale, + toolbar:not(.inline-toolbar) entry, + .inline-toolbar:not(.inline-toolbar) entry, + toolbar:not(.inline-toolbar) spinbutton, + .inline-toolbar:not(.inline-toolbar) spinbutton, + toolbar:not(.inline-toolbar) button, + .inline-toolbar:not(.inline-toolbar) button { + margin-right: 1px; + margin-bottom: 1px; } + toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, toolbar:not(.inline-toolbar) .budgie-panel .linked > button, .inline-toolbar:not(.inline-toolbar) .budgie-panel .linked > button, + toolbar:not(.inline-toolbar) .linked > entry, + .inline-toolbar:not(.inline-toolbar) .linked > entry { + margin-right: 0; } + +.primary-toolbar:not(.libreoffice-toolbar) { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343f, rgba(32, 35, 43, 0.97)) 1 0 1 0; } + +.inline-toolbar { + background-color: #313541; + border-style: solid; + border-color: #2b2e39; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +searchbar { + background-color: #383C4A; + border-style: solid; + border-color: #2b2e39; + border-width: 0 0 1px; + padding: 3px; } + +actionbar { + padding: 6px; + border-top: 1px solid #2b2e39; + background-color: #313541; } + +headerbar, +.titlebar:not(headerbar) { + min-height: 42px; + padding: 0 7px; + border-width: 0 0 1px; + border-style: solid; + border-color: #262a33; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343f; + box-shadow: inset 0 1px rgba(54, 59, 72, 0.97); } + .csd headerbar, .csd .titlebar:not(headerbar) { + background-color: rgba(47, 52, 63, 0.97); + border-color: rgba(38, 42, 51, 0.97); } + headerbar:backdrop, + .titlebar:backdrop:not(headerbar) { + transition: 200ms ease-out; + color: rgba(207, 218, 231, 0.5); + background-color: #323843; } + .csd headerbar:backdrop, .csd .titlebar:backdrop:not(headerbar) { + background-color: rgba(50, 56, 67, 0.97); } + headerbar .title, + .titlebar:not(headerbar) .title { + padding-left: 12px; + padding-right: 12px; } + headerbar .subtitle, + .titlebar:not(headerbar) .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + headerbar.selection-mode, + .selection-mode.titlebar:not(headerbar) { + color: #ffffff; + background-color: rgba(82, 148, 226, 0.95); + border-color: rgba(65, 137, 223, 0.95); + box-shadow: none; } + headerbar.selection-mode:backdrop, + .selection-mode.titlebar:backdrop:not(headerbar) { + background-color: rgba(82, 148, 226, 0.95); + color: rgba(255, 255, 255, 0.6); } + headerbar.selection-mode .selection-menu, + .selection-mode.titlebar:not(headerbar) .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + headerbar.selection-mode .selection-menu GtkArrow, + .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + headerbar.selection-mode .selection-menu .arrow, + .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized headerbar.selection-mode, .maximized .selection-mode.titlebar:not(headerbar) { + background-color: #5294e2; } + .tiled headerbar, .tiled headerbar:backdrop, + .maximized headerbar, .maximized headerbar:backdrop, .tiled .titlebar:not(headerbar), .tiled .titlebar:backdrop:not(headerbar), + .maximized .titlebar:not(headerbar), .maximized .titlebar:backdrop:not(headerbar) { + border-radius: 0; } + .maximized headerbar, + .maximized .titlebar:not(headerbar) { + background-color: #2f343f; + border-color: #262a33; } + .maximized headerbar:backdrop, .maximized .titlebar:backdrop:not(headerbar) { + background-color: #323843; } + headerbar.default-decoration, + .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, + .csd headerbar.default-decoration:backdrop, + .default-decoration.titlebar:not(headerbar), + .csd .default-decoration.titlebar:not(headerbar), + .default-decoration.titlebar:backdrop:not(headerbar), + .csd .default-decoration.titlebar:backdrop:not(headerbar) { + min-height: 28px; + padding: 0 3px; + background-color: #2f343f; + border-bottom-width: 0; } + .maximized headerbar.default-decoration, .maximized + .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized + .csd headerbar.default-decoration:backdrop, .maximized .default-decoration.titlebar:not(headerbar), .maximized .csd .default-decoration.titlebar:not(headerbar), .maximized .default-decoration.titlebar:backdrop:not(headerbar), .maximized .csd .default-decoration.titlebar:backdrop:not(headerbar) { + background-color: #2f343f; } + +.titlebar { + border-radius: 3px 3px 0 0; } + +headerbar entry, headerbar button, headerbar .budgie-panel button, .budgie-panel headerbar button, headerbar separator { + margin-top: 6px; + margin-bottom: 6px; } + +separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { + border-top-left-radius: 3px; } + .maximized separator:first-child + headerbar, + .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, + .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, + .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, + .tiled headerbar:first-child:backdrop { + border-radius: 0; } + +headerbar:last-child, headerbar:last-child:backdrop { + border-top-right-radius: 3px; } + .maximized headerbar:last-child, + .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, + .tiled headerbar:last-child:backdrop { + border-radius: 0; } + +window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, +window.csd > .titlebar:not(headerbar), +window.csd > .titlebar:not(headerbar):backdrop { + padding: 0; + background: none; + border: none; + box-shadow: none; } + +.titlebar:not(headerbar) > separator { + background-image: linear-gradient(to bottom, rgba(38, 42, 51, 0.97), rgba(38, 42, 51, 0.97)); } + +.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, +.titlebar:not(headerbar) separator.titlebutton { + min-width: 1px; + min-height: 1px; + background: none; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, + .titlebar:not(headerbar) separator.titlebutton:backdrop { + opacity: 0.6; } + +.primary-toolbar entry, headerbar entry { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { + color: inherit; } + .primary-toolbar entry:backdrop, headerbar entry:backdrop { + opacity: 0.85; } + .primary-toolbar entry:focus, headerbar entry:focus { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; + background-clip: padding-box; } + .primary-toolbar entry:focus image, headerbar entry:focus image { + color: #ffffff; } + .primary-toolbar entry:disabled, headerbar entry:disabled { + color: rgba(207, 218, 231, 0.35); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.22); } + .primary-toolbar entry selection:focus, headerbar entry selection:focus { + background-color: #ffffff; + color: #5294e2; } + .primary-toolbar entry progress, headerbar entry progress { + border-color: #5294e2; + background-image: none; + background-color: transparent; } + .primary-toolbar entry.warning, headerbar entry.warning { + color: white; + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(167, 94, 57, 0.988); } + .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { + color: white; + background-color: #F27835; } + .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { + background-color: white; + color: #F27835; } + .primary-toolbar entry.error, headerbar entry.error { + color: white; + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(173, 60, 59, 0.988); } + .primary-toolbar entry.error:focus, headerbar entry.error:focus { + color: white; + background-color: #FC4138; } + .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { + background-color: white; + color: #FC4138; } + +.primary-toolbar button, headerbar button, .primary-toolbar .budgie-panel button, .budgie-panel .primary-toolbar button, headerbar .budgie-panel button, .budgie-panel headerbar button { + color: rgba(207, 218, 231, 0.8); + outline-offset: -3px; + background-color: rgba(47, 52, 63, 0); + border-color: rgba(47, 52, 63, 0); } + .primary-toolbar button:backdrop, headerbar button:backdrop, .primary-toolbar .budgie-panel button:backdrop, .budgie-panel .primary-toolbar button:backdrop, headerbar .budgie-panel button:backdrop, .budgie-panel headerbar button:backdrop { + opacity: 0.7; } + .primary-toolbar button:hover, headerbar button:hover, .primary-toolbar .budgie-panel button:hover, .budgie-panel .primary-toolbar button:hover, headerbar .budgie-panel button:hover, .budgie-panel headerbar button:hover { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + .primary-toolbar button:active, headerbar button:active, .primary-toolbar .budgie-panel button:active, .budgie-panel .primary-toolbar button:active, headerbar .budgie-panel button:active, .budgie-panel headerbar button:active, .primary-toolbar button:checked, headerbar button:checked, .primary-toolbar .budgie-panel button:checked, .budgie-panel .primary-toolbar button:checked, headerbar .budgie-panel button:checked, .budgie-panel headerbar button:checked { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; + background-clip: padding-box; } + .primary-toolbar button:disabled, headerbar button:disabled, .primary-toolbar .budgie-panel button:disabled, .budgie-panel .primary-toolbar button:disabled, headerbar .budgie-panel button:disabled, .budgie-panel headerbar button:disabled { + background-color: rgba(47, 52, 63, 0); + border-color: rgba(47, 52, 63, 0); } + .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar .budgie-panel button:disabled label, .budgie-panel .primary-toolbar button:disabled label, headerbar .budgie-panel button:disabled label, .budgie-panel headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled, .primary-toolbar .budgie-panel button:disabled, .budgie-panel .primary-toolbar button:disabled, headerbar .budgie-panel button:disabled, .budgie-panel headerbar button:disabled { + color: rgba(207, 218, 231, 0.35); } + .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar .budgie-panel button:disabled:active, .budgie-panel .primary-toolbar button:disabled:active, headerbar .budgie-panel button:disabled:active, .budgie-panel headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked, .primary-toolbar .budgie-panel button:disabled:checked, .budgie-panel .primary-toolbar button:disabled:checked, headerbar .budgie-panel button:disabled:checked, .budgie-panel headerbar button:disabled:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } + +.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { + margin-right: 1px; } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button, .budgie-panel .primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:hover, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:active, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:active, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:disabled, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { + border-radius: 3px; + border-style: solid; } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), +headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), +headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { + box-shadow: none; } + +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, +.primary-toolbar .linked:not(.vertical).path-bar > button, +headerbar .linked:not(.vertical).path-bar > button, +.primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button, +.budgie-panel .primary-toolbar .linked:not(.vertical).path-bar > button, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button, +.budgie-panel headerbar .linked:not(.vertical).path-bar > button { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > button:hover, + headerbar .linked:not(.vertical).path-bar > button:hover, + .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:hover, + headerbar .budgie-panel .linked:not(.vertical).path-bar > button:hover, + .budgie-panel headerbar .linked:not(.vertical).path-bar > button:hover { + background-color: rgba(134, 144, 165, 0.37); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > button:active, + headerbar .linked:not(.vertical).path-bar > button:active, + .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:active, + headerbar .budgie-panel .linked:not(.vertical).path-bar > button:active, + .budgie-panel headerbar .linked:not(.vertical).path-bar > button:active, + .primary-toolbar .linked:not(.vertical).path-bar > button:checked, + headerbar .linked:not(.vertical).path-bar > button:checked, + .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:checked, + headerbar .budgie-panel .linked:not(.vertical).path-bar > button:checked, + .budgie-panel headerbar .linked:not(.vertical).path-bar > button:checked { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, + .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, + headerbar .linked:not(.vertical).path-bar > button:disabled, + .primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:disabled, + headerbar .budgie-panel .linked:not(.vertical).path-bar > button:disabled, + .budgie-panel headerbar .linked:not(.vertical).path-bar > button:disabled { + color: rgba(207, 218, 231, 0.4); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, +.primary-toolbar .linked:not(.vertical).path-bar > button + button, +headerbar .linked:not(.vertical).path-bar > button + button, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button + button, +.budgie-panel headerbar .linked:not(.vertical).path-bar > button + button, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button + button, +.budgie-panel headerbar .linked:not(.vertical).path-bar > button + button, +.primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button + button, +.budgie-panel .primary-toolbar .linked:not(.vertical).path-bar > button + button, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button + button, +.budgie-panel headerbar .linked:not(.vertical).path-bar > button + button { + border-left-style: none; } + +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, +.primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, +headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, +.primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { + box-shadow: inset 1px 0 rgba(21, 23, 28, 0.37), inset -1px 0 rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, +.primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, +headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, +.primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { + box-shadow: inset -1px 0 rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, +.primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, +headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, +.primary-toolbar .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, +headerbar .budgie-panel .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { + box-shadow: inset 1px 0 rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { + border-left-color: rgba(21, 23, 28, 0); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, +headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { + border-left-color: rgba(21, 23, 28, 0); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, +headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { + border-left-color: rgba(21, 23, 28, 0); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, +headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { + border-left-color: rgba(21, 23, 28, 0); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, +headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, +headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, +headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, +headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +.budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, +headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, +headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, +headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, +headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, +headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, +headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, +headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:active + entry, .budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, +headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, +.primary-toolbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked + entry, +headerbar .budgie-panel .linked:not(.vertical):not(.path-bar) > button:checked + entry, +.budgie-panel headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar button.suggested-action, headerbar button.suggested-action, .primary-toolbar .budgie-panel button.suggested-action, .budgie-panel .primary-toolbar button.suggested-action, headerbar .budgie-panel button.suggested-action, .budgie-panel headerbar button.suggested-action { + background-clip: border-box; + color: white; + background-color: #4DADD4; + border-color: #4DADD4; } + .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button, .primary-toolbar .budgie-panel button.suggested-action.flat, .budgie-panel .primary-toolbar button.suggested-action.flat, headerbar .budgie-panel button.suggested-action.flat, .budgie-panel headerbar button.suggested-action.flat, .primary-toolbar .budgie-panel button.suggested-action.sidebar-button, .budgie-panel .primary-toolbar button.suggested-action.sidebar-button, headerbar .budgie-panel button.suggested-action.sidebar-button, .budgie-panel headerbar button.suggested-action.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #4DADD4; } + .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover, .primary-toolbar .budgie-panel button.suggested-action:hover, .budgie-panel .primary-toolbar button.suggested-action:hover, headerbar .budgie-panel button.suggested-action:hover, .budgie-panel headerbar button.suggested-action:hover { + background-clip: border-box; + color: white; + background-color: #76c0de; + border-color: #76c0de; } + .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar .budgie-panel button.suggested-action:active, .budgie-panel .primary-toolbar button.suggested-action:active, headerbar .budgie-panel button.suggested-action:active, .budgie-panel headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked, .primary-toolbar .budgie-panel button.suggested-action:checked, .budgie-panel .primary-toolbar button.suggested-action:checked, headerbar .budgie-panel button.suggested-action:checked, .budgie-panel headerbar button.suggested-action:checked { + background-clip: border-box; + color: white; + background-color: #2e96c0; + border-color: #2e96c0; } + .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar .budgie-panel button.suggested-action.flat:disabled, .budgie-panel .primary-toolbar button.suggested-action.flat:disabled, headerbar .budgie-panel button.suggested-action.flat:disabled, .budgie-panel headerbar button.suggested-action.flat:disabled, .primary-toolbar .budgie-panel button.suggested-action.sidebar-button:disabled, .budgie-panel .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar .budgie-panel button.suggested-action.sidebar-button:disabled, .budgie-panel headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled, .primary-toolbar .budgie-panel button.suggested-action:disabled, .budgie-panel .primary-toolbar button.suggested-action:disabled, headerbar .budgie-panel button.suggested-action:disabled, .budgie-panel headerbar button.suggested-action:disabled { + background-color: rgba(47, 52, 63, 0); + border-color: rgba(47, 52, 63, 0); } + .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar .budgie-panel button.suggested-action.flat:disabled label, .budgie-panel .primary-toolbar button.suggested-action.flat:disabled label, headerbar .budgie-panel button.suggested-action.flat:disabled label, .budgie-panel headerbar button.suggested-action.flat:disabled label, .primary-toolbar .budgie-panel button.suggested-action.sidebar-button:disabled label, .budgie-panel .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar .budgie-panel button.suggested-action.sidebar-button:disabled label, .budgie-panel headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar .budgie-panel button.suggested-action.flat:disabled, .budgie-panel .primary-toolbar button.suggested-action.flat:disabled, headerbar .budgie-panel button.suggested-action.flat:disabled, .budgie-panel headerbar button.suggested-action.flat:disabled, .primary-toolbar .budgie-panel button.suggested-action.sidebar-button:disabled, .budgie-panel .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar .budgie-panel button.suggested-action.sidebar-button:disabled, .budgie-panel headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar .budgie-panel button.suggested-action:disabled label, .budgie-panel .primary-toolbar button.suggested-action:disabled label, headerbar .budgie-panel button.suggested-action:disabled label, .budgie-panel headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled, .primary-toolbar .budgie-panel button.suggested-action:disabled, .budgie-panel .primary-toolbar button.suggested-action:disabled, headerbar .budgie-panel button.suggested-action:disabled, .budgie-panel headerbar button.suggested-action:disabled { + color: rgba(207, 218, 231, 0.35); } + +.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar .budgie-panel button.suggested-action:backdrop, .budgie-panel .primary-toolbar button.suggested-action:backdrop, headerbar .budgie-panel button.suggested-action:backdrop, .budgie-panel headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar .budgie-panel button.suggested-action:backdrop, .budgie-panel .primary-toolbar button.suggested-action:backdrop, headerbar .budgie-panel button.suggested-action:backdrop, .budgie-panel headerbar button.suggested-action:backdrop { + opacity: 0.8; } + +.primary-toolbar button.destructive-action, headerbar button.destructive-action, .primary-toolbar .budgie-panel button.destructive-action, .budgie-panel .primary-toolbar button.destructive-action, headerbar .budgie-panel button.destructive-action, .budgie-panel headerbar button.destructive-action { + background-clip: border-box; + color: white; + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button, .primary-toolbar .budgie-panel button.destructive-action.flat, .budgie-panel .primary-toolbar button.destructive-action.flat, headerbar .budgie-panel button.destructive-action.flat, .budgie-panel headerbar button.destructive-action.flat, .primary-toolbar .budgie-panel button.destructive-action.sidebar-button, .budgie-panel .primary-toolbar button.destructive-action.sidebar-button, headerbar .budgie-panel button.destructive-action.sidebar-button, .budgie-panel headerbar button.destructive-action.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; } + .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover, .primary-toolbar .budgie-panel button.destructive-action:hover, .budgie-panel .primary-toolbar button.destructive-action:hover, headerbar .budgie-panel button.destructive-action:hover, .budgie-panel headerbar button.destructive-action:hover { + background-clip: border-box; + color: white; + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar .budgie-panel button.destructive-action:active, .budgie-panel .primary-toolbar button.destructive-action:active, headerbar .budgie-panel button.destructive-action:active, .budgie-panel headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked, .primary-toolbar .budgie-panel button.destructive-action:checked, .budgie-panel .primary-toolbar button.destructive-action:checked, headerbar .budgie-panel button.destructive-action:checked, .budgie-panel headerbar button.destructive-action:checked { + background-clip: border-box; + color: white; + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar .budgie-panel button.destructive-action.flat:disabled, .budgie-panel .primary-toolbar button.destructive-action.flat:disabled, headerbar .budgie-panel button.destructive-action.flat:disabled, .budgie-panel headerbar button.destructive-action.flat:disabled, .primary-toolbar .budgie-panel button.destructive-action.sidebar-button:disabled, .budgie-panel .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar .budgie-panel button.destructive-action.sidebar-button:disabled, .budgie-panel headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled, .primary-toolbar .budgie-panel button.destructive-action:disabled, .budgie-panel .primary-toolbar button.destructive-action:disabled, headerbar .budgie-panel button.destructive-action:disabled, .budgie-panel headerbar button.destructive-action:disabled { + background-color: rgba(47, 52, 63, 0); + border-color: rgba(47, 52, 63, 0); } + .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar .budgie-panel button.destructive-action.flat:disabled label, .budgie-panel .primary-toolbar button.destructive-action.flat:disabled label, headerbar .budgie-panel button.destructive-action.flat:disabled label, .budgie-panel headerbar button.destructive-action.flat:disabled label, .primary-toolbar .budgie-panel button.destructive-action.sidebar-button:disabled label, .budgie-panel .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar .budgie-panel button.destructive-action.sidebar-button:disabled label, .budgie-panel headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar .budgie-panel button.destructive-action.flat:disabled, .budgie-panel .primary-toolbar button.destructive-action.flat:disabled, headerbar .budgie-panel button.destructive-action.flat:disabled, .budgie-panel headerbar button.destructive-action.flat:disabled, .primary-toolbar .budgie-panel button.destructive-action.sidebar-button:disabled, .budgie-panel .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar .budgie-panel button.destructive-action.sidebar-button:disabled, .budgie-panel headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar .budgie-panel button.destructive-action:disabled label, .budgie-panel .primary-toolbar button.destructive-action:disabled label, headerbar .budgie-panel button.destructive-action:disabled label, .budgie-panel headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled, .primary-toolbar .budgie-panel button.destructive-action:disabled, .budgie-panel .primary-toolbar button.destructive-action:disabled, headerbar .budgie-panel button.destructive-action:disabled, .budgie-panel headerbar button.destructive-action:disabled { + color: rgba(207, 218, 231, 0.35); } + +.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar .budgie-panel button.destructive-action:backdrop, .budgie-panel .primary-toolbar button.destructive-action:backdrop, headerbar .budgie-panel button.destructive-action:backdrop, .budgie-panel headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar .budgie-panel button.destructive-action:backdrop, .budgie-panel .primary-toolbar button.destructive-action:backdrop, headerbar .budgie-panel button.destructive-action:backdrop, .budgie-panel headerbar button.destructive-action:backdrop { + opacity: 0.8; } + +.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { + color: #ffffff; + caret-color: #ffffff; } + +.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) .budgie-panel button, .budgie-panel .primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) .budgie-panel button, .budgie-panel headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled, .primary-toolbar spinbutton:not(.vertical) .budgie-panel button:disabled, .budgie-panel .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) .budgie-panel button:disabled, .budgie-panel headerbar spinbutton:not(.vertical) button:disabled { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + +.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover, .primary-toolbar spinbutton:not(.vertical) .budgie-panel button:hover, .budgie-panel .primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) .budgie-panel button:hover, .budgie-panel headerbar spinbutton:not(.vertical) button:hover { + background-color: rgba(134, 144, 165, 0.37); } + +.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) .budgie-panel button:active, .budgie-panel .primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) .budgie-panel button:active, .budgie-panel headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked, .primary-toolbar spinbutton:not(.vertical) .budgie-panel button:checked, .budgie-panel .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) .budgie-panel button:checked, .budgie-panel headerbar spinbutton:not(.vertical) button:checked { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; } + +.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled, .primary-toolbar spinbutton:not(.vertical) .budgie-panel button:disabled, .budgie-panel .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) .budgie-panel button:disabled, .budgie-panel headerbar spinbutton:not(.vertical) button:disabled { + color: rgba(207, 218, 231, 0.4); } + +.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button, .primary-toolbar .budgie-panel spinbutton:not(.vertical) > button + button, .budgie-panel .primary-toolbar spinbutton:not(.vertical) > button + button, headerbar .budgie-panel spinbutton:not(.vertical) > button + button, .budgie-panel headerbar spinbutton:not(.vertical) > button + button, .primary-toolbar .budgie-panel spinbutton:not(.vertical) > button + button, .budgie-panel .primary-toolbar spinbutton:not(.vertical) > button + button, headerbar .budgie-panel spinbutton:not(.vertical) > button + button, .budgie-panel headerbar spinbutton:not(.vertical) > button + button, .primary-toolbar .budgie-panel spinbutton:not(.vertical) > button + button, .budgie-panel .primary-toolbar spinbutton:not(.vertical) > button + button, headerbar .budgie-panel spinbutton:not(.vertical) > button + button, .budgie-panel headerbar spinbutton:not(.vertical) > button + button { + border-left-style: none; } + +.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:hover:not(:active), .budgie-panel .primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar .budgie-panel spinbutton:not(.vertical) > button:hover:not(:active), .budgie-panel headerbar spinbutton:not(.vertical) > button:hover:not(:active), +.primary-toolbar spinbutton:not(.vertical) > button:hover + button, +headerbar spinbutton:not(.vertical) > button:hover + button, +.primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:hover + button, +.budgie-panel .primary-toolbar spinbutton:not(.vertical) > button:hover + button, +headerbar .budgie-panel spinbutton:not(.vertical) > button:hover + button, +.budgie-panel headerbar spinbutton:not(.vertical) > button:hover + button, +.primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:hover + button, +.budgie-panel .primary-toolbar spinbutton:not(.vertical) > button:hover + button, +headerbar .budgie-panel spinbutton:not(.vertical) > button:hover + button, +.budgie-panel headerbar spinbutton:not(.vertical) > button:hover + button, +.primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:hover + button, +.budgie-panel .primary-toolbar spinbutton:not(.vertical) > button:hover + button, +headerbar .budgie-panel spinbutton:not(.vertical) > button:hover + button, +.budgie-panel headerbar spinbutton:not(.vertical) > button:hover + button { + box-shadow: inset 1px 0 rgba(21, 23, 28, 0.37); } + +.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar .budgie-panel spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), +.primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, +headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, +.primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, +headerbar .budgie-panel spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { + box-shadow: inset 1px 0 rgba(21, 23, 28, 0.37); } + +.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar .budgie-panel spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar .budgie-panel spinbutton:not(.vertical) > button:first-child:hover:not(:active), .budgie-panel headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), +.primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, +headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover, +.primary-toolbar .budgie-panel spinbutton:not(.vertical) > entry + button:not(:active):hover, +.budgie-panel .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, +headerbar .budgie-panel spinbutton:not(.vertical) > entry + button:not(:active):hover, +.budgie-panel headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { + box-shadow: none; } + +.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button, .primary-toolbar .budgie-panel spinbutton:not(.vertical) > entry:focus + button, .budgie-panel .primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar .budgie-panel spinbutton:not(.vertical) > entry:focus + button, .budgie-panel headerbar spinbutton:not(.vertical) > entry:focus + button { + border-left-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar combobox:disabled, headerbar combobox:disabled { + color: rgba(207, 218, 231, 0.2); } + +.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo, .primary-toolbar .budgie-panel combobox > .linked > button.combo, .budgie-panel .primary-toolbar combobox > .linked > button.combo, headerbar .budgie-panel combobox > .linked > button.combo, .budgie-panel headerbar combobox > .linked > button.combo { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar .budgie-panel combobox > .linked > button.combo image, .budgie-panel .primary-toolbar combobox > .linked > button.combo image, headerbar .budgie-panel combobox > .linked > button.combo image, .budgie-panel headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover, .primary-toolbar .budgie-panel combobox > .linked > button.combo image:hover, .budgie-panel .primary-toolbar combobox > .linked > button.combo image:hover, headerbar .budgie-panel combobox > .linked > button.combo image:hover, .budgie-panel headerbar combobox > .linked > button.combo image:hover { + color: inherit; } + .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover, .primary-toolbar .budgie-panel combobox > .linked > button.combo:hover, .budgie-panel .primary-toolbar combobox > .linked > button.combo:hover, headerbar .budgie-panel combobox > .linked > button.combo:hover, .budgie-panel headerbar combobox > .linked > button.combo:hover { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; + box-shadow: none; } + .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled, .primary-toolbar .budgie-panel combobox > .linked > button.combo:disabled, .budgie-panel .primary-toolbar combobox > .linked > button.combo:disabled, headerbar .budgie-panel combobox > .linked > button.combo:disabled, .budgie-panel headerbar combobox > .linked > button.combo:disabled { + color: rgba(207, 218, 231, 0.35); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.22); } + +.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { + border-right-style: none; } + .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { + box-shadow: none; } + +.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { + border-left-style: none; } + .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { + box-shadow: none; } + +.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(ltr), .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar .budgie-panel combobox > .linked > button.combo:dir(ltr), .budgie-panel headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(ltr):hover, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar .budgie-panel combobox > .linked > button.combo:dir(ltr):hover, .budgie-panel headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(ltr):active, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar .budgie-panel combobox > .linked > button.combo:dir(ltr):active, .budgie-panel headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(ltr):checked, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar .budgie-panel combobox > .linked > button.combo:dir(ltr):checked, .budgie-panel headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(ltr):disabled, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar .budgie-panel combobox > .linked > button.combo:dir(ltr):disabled, .budgie-panel headerbar combobox > .linked > button.combo:dir(ltr):disabled { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(rtl), .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar .budgie-panel combobox > .linked > button.combo:dir(rtl), .budgie-panel headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(rtl):hover, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar .budgie-panel combobox > .linked > button.combo:dir(rtl):hover, .budgie-panel headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(rtl):active, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar .budgie-panel combobox > .linked > button.combo:dir(rtl):active, .budgie-panel headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(rtl):checked, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar .budgie-panel combobox > .linked > button.combo:dir(rtl):checked, .budgie-panel headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled, .primary-toolbar .budgie-panel combobox > .linked > button.combo:dir(rtl):disabled, .budgie-panel .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar .budgie-panel combobox > .linked > button.combo:dir(rtl):disabled, .budgie-panel headerbar combobox > .linked > button.combo:dir(rtl):disabled { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.primary-toolbar switch:backdrop, headerbar switch:backdrop { + opacity: 0.75; } + +.primary-toolbar progressbar trough, headerbar progressbar trough { + background-color: rgba(21, 23, 28, 0.37); } + +.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { + opacity: 0.75; } + +.primary-toolbar scale:backdrop, headerbar scale:backdrop { + opacity: 0.75; } + +.primary-toolbar scale slider, headerbar scale slider { + background-color: #454c5c; + border-color: rgba(21, 23, 28, 0.67); } + .primary-toolbar scale slider:hover, headerbar scale slider:hover { + background-color: #50586b; + border-color: rgba(21, 23, 28, 0.67); } + .primary-toolbar scale slider:active, headerbar scale slider:active { + background-color: #5294e2; + border-color: #5294e2; } + .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { + background-color: rgba(63, 69, 84, 0.991); + border-color: rgba(21, 23, 28, 0.67); } + +.primary-toolbar scale trough, headerbar scale trough { + background-color: rgba(21, 23, 28, 0.37); } + .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { + background-color: rgba(21, 23, 28, 0.27); } + +.path-bar button.text-button, .path-bar button.image-button, .path-bar button { + padding-left: 6px; + padding-right: 6px; } + +.path-bar button.text-button.image-button label { + padding-left: 0; + padding-right: 0; } + +.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child { + padding-right: 10px; } + +.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { + padding-left: 10px; } + +.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { + padding-left: 1px; + padding-right: 1px; } + +.path-bar button image { + padding-left: 4px; + padding-right: 4px; } + +treeview.view { + border-left-color: rgba(211, 218, 227, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + * { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; } + treeview.view acceleditor > label { + background-color: #5294e2; } + treeview.view:selected, treeview.view:selected:focus { + border-radius: 0; + border-left-color: #a9caf1; + border-top-color: rgba(211, 218, 227, 0.1); } + treeview.view:disabled { + color: rgba(211, 218, 227, 0.45); } + treeview.view:disabled:selected { + color: #97bfee; } + treeview.view.separator { + min-height: 2px; + color: rgba(0, 0, 0, 0.1); } + treeview.view:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: #93b7e3; } + treeview.view:drop(active).after { + border-top-style: none; } + treeview.view:drop(active).before { + border-bottom-style: none; } + treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8a909b; } + treeview.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + treeview.view.expander:hover { + color: #D3DAE3; } + treeview.view.expander:selected { + color: #cbdff6; } + treeview.view.expander:selected:hover { + color: #ffffff; } + treeview.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + treeview.view.progressbar, treeview.view.progressbar:focus { + color: #ffffff; + border-radius: 3px; + background-color: #5294e2; } + treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { + color: #5294e2; + box-shadow: none; + background-color: #ffffff; } + treeview.view.trough { + color: #D3DAE3; + background-color: #2b2e39; + border-radius: 3px; + border-width: 0; } + treeview.view.trough:selected, treeview.view.trough:selected:focus { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.2); + border-radius: 3px; + border-width: 0; } + treeview.view header button { + min-height: 0; + min-width: 0; + padding: 3px 6px; + font-weight: bold; + color: #b6bcc6; + background-color: #404552; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, #404552 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, #404552 80%) 0 1 0 0/0 1px 0 0 stretch; } + treeview.view header button:hover { + color: #5294e2; } + treeview.view header button:active { + color: #D3DAE3; } + treeview.view header button:active, treeview.view header button:hover { + background-color: #404552; } + treeview.view header button:active:hover { + color: #D3DAE3; } + treeview.view header button:disabled { + border-color: #383C4A; + background-image: none; } + treeview.view header button:last-child { + border-right-style: none; + border-image: none; } + treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, + treeview.view header.button.dnd, + treeview.view header.button.dnd:selected, + treeview.view header.button.dnd:hover, + treeview.view header.button.dnd:active { + padding: 0 6px; + transition: none; + color: #ffffff; + background-color: #5294e2; + border-radius: 0; + border-style: none; } + +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343f; + color: rgba(207, 218, 231, 0.8); } + menubar:backdrop, + .menubar:backdrop { + color: rgba(207, 218, 231, 0.5); } + menubar > menuitem, + .menubar > menuitem { + padding: 4px 8px; + border: solid transparent; + border-width: 0; } + menubar > menuitem:hover, + .menubar > menuitem:hover { + background-color: #5294e2; + color: #ffffff; } + menubar > menuitem:disabled, + .menubar > menuitem:disabled { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +menu, +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383C4A; + border: 1px solid #2b2e39; } + .csd menu, .csd + .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + menu separator, + .csd menu separator, + .menu separator, + .csd + .menu separator { + margin: 2px 0; + background-color: #383C4A; } + menu .separator:not(label), + .csd menu .separator:not(label), + .menu .separator:not(label), + .csd + .menu .separator:not(label) { + color: #383C4A; } + menu menuitem, + .menu menuitem { + min-height: 16px; + min-width: 40px; + padding: 5px; } + menu menuitem:hover, + .menu menuitem:hover { + color: #ffffff; + background-color: #5294e2; } + menu menuitem:disabled, + .menu menuitem:disabled { + color: rgba(211, 218, 227, 0.45); } + menu menuitem arrow, + .menu menuitem arrow { + min-height: 16px; + min-width: 16px; } + menu menuitem arrow:dir(ltr), + .menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 10px; } + menu menuitem arrow:dir(rtl), + .menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 10px; } + menuitem accelerator { + color: alpha(currentColor,0.55); } + menuitem check, menuitem radio { + min-height: 16px; + min-width: 16px; } + menuitem check:dir(ltr), menuitem radio:dir(ltr) { + margin-right: 6px; + margin-left: 2px; } + menuitem check:dir(rtl), menuitem radio:dir(rtl) { + margin-left: 6px; + margin-right: 2px; } + menu > arrow, + .menu > arrow { + border-color: transparent; + background-color: transparent; + background-image: none; + min-width: 16px; + min-height: 16px; + padding: 4px; + background-color: #383C4A; + border-radius: 0; } + menu > arrow.top, + .menu > arrow.top { + margin-top: -6px; + border-bottom: 1px solid #4f5461; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } + menu > arrow.bottom, + .menu > arrow.bottom { + margin-bottom: -6px; + border-top: 1px solid #4f5461; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + menu > arrow:hover, + .menu > arrow:hover { + background-color: #4f5461; } + menu > arrow:disabled, + .menu > arrow:disabled { + color: transparent; + background-color: transparent; + border-color: transparent; } + +popover, +popover.background { + padding: 2px; + border-radius: 3px; + background-clip: border-box; + background-color: #383C4A; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .csd popover, popover, .csd + popover.background, + popover.background { + border: 1px solid #20222a; } + popover separator, + popover.background separator { + background-color: #383C4A; } + popover > list, + popover > .view, + popover > iconview, + popover > toolbar, + popover > .inline-toolbar, + popover.background > list, + popover.background > .view, + popover.background > iconview, + popover.background > toolbar, + popover.background > .inline-toolbar { + border-style: none; + background-color: transparent; } + +cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +notebook { + padding: 0; } + notebook.frame { + border: 1px solid #2b2e39; } + notebook.frame > header { + margin: -1px; } + notebook.frame > header.top { + margin-bottom: 0; } + notebook.frame > header.bottom { + margin-top: 0; } + notebook.frame > header.left { + margin-right: 0; } + notebook.frame > header.right { + margin-left: 0; } + notebook.frame > header.top, notebook.frame > header.bottom { + padding-left: 0; + padding-right: 0; } + notebook.frame > header.left, notebook.frame > header.right { + padding-top: 0; + padding-bottom: 0; } + notebook > stack:not(:only-child) { + background-color: #404552; } + notebook > header { + padding: 2px; + background-color: #383C4A; } + notebook > header.top { + box-shadow: inset 0 -1px #2b2e39; } + notebook > header.bottom { + box-shadow: inset 0 1px #2b2e39; } + notebook > header.right { + box-shadow: inset 1px 0 #2b2e39; } + notebook > header.left { + box-shadow: inset -1px 0 #2b2e39; } + notebook > header.top { + padding-bottom: 0; } + notebook > header.top > tabs > tab { + padding: 2px 10px; + min-width: 20px; + min-height: 20px; + outline-offset: -4px; + border: 1px solid transparent; + border-bottom: none; + border-radius: 1px 1px 0 0; } + notebook > header.top > tabs > tab + tab { + margin-left: -1px; } + notebook > header.bottom { + padding-top: 0; } + notebook > header.bottom > tabs > tab { + padding: 2px 10px; + min-width: 20px; + min-height: 20px; + outline-offset: -4px; + border: 1px solid transparent; + border-top: none; + border-radius: 0 0 1px 1px; } + notebook > header.bottom > tabs > tab + tab { + margin-left: -1px; } + notebook > header.right { + padding-left: 0; } + notebook > header.right > tabs > tab { + padding: 2px 10px; + min-width: 20px; + min-height: 20px; + outline-offset: -4px; + border: 1px solid transparent; + border-left: none; + border-radius: 0 1px 1px 0; } + notebook > header.right > tabs > tab + tab { + margin-top: -1px; } + notebook > header.left { + padding-right: 0; } + notebook > header.left > tabs > tab { + padding: 2px 10px; + min-width: 20px; + min-height: 20px; + outline-offset: -4px; + border: 1px solid transparent; + border-right: none; + border-radius: 1px 0 0 1px; } + notebook > header.left > tabs > tab + tab { + margin-top: -1px; } + notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { + margin-left: 2px; } + notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } + notebook > header.top > tabs > arrow.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { + margin-right: 2px; } + notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { + margin-top: 2px; } + notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } + notebook > header.left > tabs > arrow.down:first-child, notebook > header.right > tabs > arrow.down:first-child { + margin-bottom: 2px; } + notebook > header > tabs > arrow { + color: rgba(211, 218, 227, 0.45); } + notebook > header > tabs > arrow:hover { + color: rgba(211, 218, 227, 0.725); } + notebook > header > tabs > arrow:active { + color: #D3DAE3; } + notebook > header > tabs > arrow:disabled { + color: rgba(211, 218, 227, 0.15); } + notebook > header.top > tabs > tab:hover:not(:checked) { + box-shadow: inset 0 -1px #2b2e39; } + notebook > header.bottom > tabs > tab:hover:not(:checked) { + box-shadow: inset 0 1px #2b2e39; } + notebook > header.left > tabs > tab:hover:not(:checked) { + box-shadow: inset -1px 0 #2b2e39; } + notebook > header.right > tabs > tab:hover:not(:checked) { + box-shadow: inset 1px 0 #2b2e39; } + notebook > header > tabs > tab { + color: rgba(211, 218, 227, 0.45); + background-color: rgba(64, 69, 82, 0); } + notebook > header > tabs > tab:hover:not(:checked) { + color: rgba(211, 218, 227, 0.725); + background-color: rgba(64, 69, 82, 0.5); + border-color: #2b2e39; } + notebook > header > tabs > tab:checked { + color: #D3DAE3; + background-color: #404552; + border-color: #2b2e39; } + notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button, .budgie-panel notebook > header > tabs > tab button.flat, .budgie-panel notebook > header > tabs > tab button.sidebar-button { + min-height: 22px; + min-width: 16px; + padding: 0; + color: #9da3ad; } + notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, .budgie-panel notebook > header > tabs > tab button.flat:hover, .budgie-panel notebook > header > tabs > tab button.sidebar-button:hover { + color: #ff4d4d; } + notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, .budgie-panel notebook > header > tabs > tab button.flat:active, .budgie-panel notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .budgie-panel notebook > header > tabs > tab button.sidebar-button:active:hover, .budgie-panel notebook > header > tabs > tab button.flat:active:hover { + color: #5294e2; } + +scrollbar { + background-color: #3e434f; + transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + * { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; } + scrollbar.top { + border-bottom: 1px solid #2b2e39; } + scrollbar.bottom { + border-top: 1px solid #2b2e39; } + scrollbar.left { + border-right: 1px solid #2b2e39; } + scrollbar.right { + border-left: 1px solid #2b2e39; } + scrollbar button, scrollbar .budgie-panel button, .budgie-panel scrollbar button { + border: none; } + scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } + scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); } + scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } + scrollbar slider { + min-width: 6px; + min-height: 6px; + margin: -1px; + border: 4px solid transparent; + border-radius: 8px; + background-clip: padding-box; + background-color: #767b87; } + scrollbar slider:hover { + background-color: #676b78; } + scrollbar slider:hover:active { + background-color: #5294e2; } + scrollbar slider:disabled { + background-color: transparent; } + scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; } + scrollbar.fine-tune.horizontal slider { + border-width: 5px 4px; } + scrollbar.fine-tune.vertical slider { + border-width: 4px 5px; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + border-color: transparent; + background-color: transparent; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + margin: 0; + min-width: 4px; + min-height: 4px; + background-color: #a5abb5; + border: 1px solid rgba(0, 0, 0, 0.3); } + scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + margin: 0 2px; + min-width: 40px; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + margin: 2px 0; + min-height: 40px; } + scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + scrollbar.horizontal slider { + min-width: 40px; } + scrollbar.vertical slider { + min-height: 40px; } + +switch { + font-size: 1px; + min-width: 52px; + min-height: 24px; + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: center center; } + switch slider { + min-width: 1px; + min-height: 1px; } + switch, switch slider { + outline-color: transparent; + color: transparent; + border: none; + box-shadow: none; } + +switch { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +menuitem:hover switch, +row:selected switch, +infobar switch { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +headerbar switch, +.primary-toolbar switch { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +switch:checked { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +menuitem:hover switch:checked, +row:selected switch:checked, +infobar switch:checked { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +headerbar switch:checked, +.primary-toolbar switch:checked { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +switch:disabled { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +menuitem:hover switch:disabled, +row:selected switch:disabled, +infobar switch:disabled { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +headerbar switch:disabled, +.primary-toolbar switch:disabled { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +switch:checked:disabled { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +menuitem:hover switch:checked:disabled, +row:selected switch:checked:disabled, +infobar switch:checked:disabled { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +headerbar switch:checked:disabled, +.primary-toolbar switch:checked:disabled { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check, +check, +treeview.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +.osd check, +filechooser actionbar check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +menuitem check:hover, +.view check:selected, +iconview check:selected, +treeview.check:selected, +row:selected check, +infobar check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:disabled, +check:disabled, +treeview.check:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +.osd check:disabled, +filechooser actionbar check:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +menuitem check:disabled:hover, +.view check:disabled:selected, +iconview check:disabled:selected, +treeview.check:disabled:selected, +row:selected check:disabled, +infobar check:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:indeterminate, +check:indeterminate, +treeview.check:indeterminate { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +.osd check:indeterminate, +filechooser actionbar check:indeterminate { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +menuitem check:indeterminate:hover, +.view check:indeterminate:selected, +iconview check:indeterminate:selected, +treeview.check:indeterminate:selected, +row:selected check:indeterminate, +infobar check:indeterminate { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:indeterminate:disabled, +check:indeterminate:disabled, +treeview.check:indeterminate:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +.osd check:indeterminate:disabled, +filechooser actionbar check:indeterminate:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +menuitem check:indeterminate:disabled:hover, +.view check:indeterminate:disabled:selected, +iconview check:indeterminate:disabled:selected, +treeview.check:indeterminate:disabled:selected, +row:selected check:indeterminate:disabled, +infobar check:indeterminate:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked, +check:checked, +treeview.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +.osd check:checked, +filechooser actionbar check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +menuitem check:checked:hover, +.view check:checked:selected, +iconview check:checked:selected, +treeview.check:checked:selected, +row:selected check:checked, +infobar check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:disabled, +check:checked:disabled, +treeview.check:checked:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +.osd check:checked:disabled, +filechooser actionbar check:checked:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +menuitem check:checked:disabled:hover, +.view check:checked:disabled:selected, +iconview check:checked:disabled:selected, +treeview.check:checked:disabled:selected, +row:selected check:checked:disabled, +infobar check:checked:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio, +radio, +treeview.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +.osd radio, +filechooser actionbar radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +menuitem radio:hover, +.view radio:selected, +iconview radio:selected, +treeview.radio:selected, +row:selected radio, +infobar radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:disabled, +radio:disabled, +treeview.radio:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +.osd radio:disabled, +filechooser actionbar radio:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +menuitem radio:disabled:hover, +.view radio:disabled:selected, +iconview radio:disabled:selected, +treeview.radio:disabled:selected, +row:selected radio:disabled, +infobar radio:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:indeterminate, +radio:indeterminate, +treeview.radio:indeterminate { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +.osd radio:indeterminate, +filechooser actionbar radio:indeterminate { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +menuitem radio:indeterminate:hover, +.view radio:indeterminate:selected, +iconview radio:indeterminate:selected, +treeview.radio:indeterminate:selected, +row:selected radio:indeterminate, +infobar radio:indeterminate { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:indeterminate:disabled, +radio:indeterminate:disabled, +treeview.radio:indeterminate:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +.osd radio:indeterminate:disabled, +filechooser actionbar radio:indeterminate:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +menuitem radio:indeterminate:disabled:hover, +.view radio:indeterminate:disabled:selected, +iconview radio:indeterminate:disabled:selected, +treeview.radio:indeterminate:disabled:selected, +row:selected radio:indeterminate:disabled, +infobar radio:indeterminate:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked, +radio:checked, +treeview.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +.osd radio:checked, +filechooser actionbar radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +menuitem radio:checked:hover, +.view radio:checked:selected, +iconview radio:checked:selected, +treeview.radio:checked:selected, +row:selected radio:checked, +infobar radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:disabled, +radio:checked:disabled, +treeview.radio:checked:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +.osd radio:checked:disabled, +filechooser actionbar radio:checked:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +menuitem radio:checked:disabled:hover, +.view radio:checked:disabled:selected, +iconview radio:checked:disabled:selected, +treeview.radio:checked:disabled:selected, +row:selected radio:checked:disabled, +infobar radio:checked:disabled { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(list), iconview.content-view.check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +checkbutton.text-button, radiobutton.text-button { + padding: 2px 0; + outline-offset: 0; } + +checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { + margin-left: 4px; } + +checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { + margin-right: 4px; } + +check, +radio { + min-width: 16px; + min-height: 16px; + margin: 0 2px; } + check:only-child, + menu menuitem check, + radio:only-child, + menu menuitem + radio { + margin: 0; } + +scale { + min-height: 15px; + min-width: 15px; + padding: 3px; } + scale.horizontal trough { + padding: 0 4px; } + scale.horizontal highlight, scale.horizontal fill { + margin: 0 -4px; } + scale.vertical trough { + padding: 4px 0; } + scale.vertical highlight, scale.vertical fill { + margin: -4px 0; } + scale slider { + min-height: 15px; + min-width: 15px; + margin: -6px; } + scale.fine-tune slider { + margin: -4px; } + scale.fine-tune fill, + scale.fine-tune highlight, + scale.fine-tune trough { + border-radius: 5px; + -gtk-outline-radius: 7px; } + scale trough { + outline-offset: 2px; + -gtk-outline-radius: 4.5px; + border-radius: 2.5px; + background-color: #2d303b; } + scale trough:disabled { + background-color: rgba(45, 48, 59, 0.55); } + .osd scale trough { + background-color: rgba(69, 74, 89, 0.95); } + .osd scale trough highlight { + background-color: #5294e2; } + menuitem:hover scale trough, + row:selected scale trough, + infobar scale trough { + background-color: rgba(0, 0, 0, 0.2); } + menuitem:hover scale trough highlight, + row:selected scale trough highlight, + infobar scale trough highlight { + background-color: #ffffff; } + menuitem:hover scale trough highlight:disabled, + row:selected scale trough highlight:disabled, + infobar scale trough highlight:disabled { + background-color: #b1cff2; } + menuitem:hover scale trough:disabled, + row:selected scale trough:disabled, + infobar scale trough:disabled { + background-color: rgba(0, 0, 0, 0.1); } + scale highlight { + border-radius: 2.5px; + background-color: #5294e2; } + scale highlight:disabled { + background-color: rgba(82, 148, 226, 0.55); } + scale fill { + border-radius: 2.5px; + background-color: rgba(82, 148, 226, 0.5); } + scale fill:disabled { + background-color: transparent; } + scale slider { + background-color: #444a58; + border: 1px solid #262933; + border-radius: 100%; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-property: background, border; } + scale slider:hover { + background-color: #505666; } + scale slider:active { + background-clip: border-box; + background-color: #5294e2; + border-color: #5294e2; } + scale slider:disabled { + background-color: #3c414e; + border-color: rgba(38, 41, 51, 0.8); } + menuitem:hover scale slider, + row:selected scale slider, + infobar scale slider { + background-clip: border-box; + background-color: #ffffff; + border-color: #ffffff; } + menuitem:hover scale slider:hover, + row:selected scale slider:hover, + infobar scale slider:hover { + background-color: #e5effb; + border-color: #e5effb; } + menuitem:hover scale slider:active, + row:selected scale slider:active, + infobar scale slider:active { + background-color: #a9caf1; + border-color: #a9caf1; } + menuitem:hover scale slider:disabled, + row:selected scale slider:disabled, + infobar scale slider:disabled { + background-color: #b1cff2; + border-color: #b1cff2; } + .osd scale slider { + background-clip: border-box; + background-color: #5294e2; + border-color: #5294e2; } + .osd scale slider:hover { + background-color: #7eafe9; + border-color: #7eafe9; } + .osd scale slider:active { + background-color: #2679db; + border-color: #2679db; } + scale value { + color: alpha(currentColor,0.4); } + scale marks { + color: alpha(currentColor,0.4); } + scale marks.top { + margin-bottom: 1px; + margin-top: -4px; } + scale marks.bottom { + margin-top: 1px; + margin-bottom: -4px; } + scale marks.top { + margin-right: 1px; + margin-left: -4px; } + scale marks.bottom { + margin-left: 1px; + margin-right: -4px; } + scale.fine-tune marks.top { + margin-bottom: 0px; + margin-top: -2px; } + scale.fine-tune marks.bottom { + margin-top: 0px; + margin-bottom: -2px; } + scale.fine-tune marks.top { + margin-right: 0px; + margin-left: -2px; } + scale.fine-tune marks.bottom { + margin-left: 0px; + margin-right: -2px; } + scale.horizontal indicator { + min-height: 3px; + min-width: 1px; } + scale.horizontal.fine-tune indicator { + min-height: 2px; } + scale.vertical indicator { + min-height: 1px; + min-width: 3px; } + scale.vertical.fine-tune indicator { + min-width: 2px; } + +progressbar { + padding: 0; + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + progressbar.osd { + min-width: 3px; + min-height: 3px; + background-color: transparent; } + progressbar.osd trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + progressbar progress { + background-color: #5294e2; + border: none; + border-radius: 3px; + box-shadow: none; } + row:selected progressbar progress, + infobar progressbar progress { + background-color: #ffffff; } + progressbar trough { + border: none; + border-radius: 3px; + background-color: #2d303b; } + row:selected progressbar trough, + infobar progressbar trough { + background-color: rgba(0, 0, 0, 0.2); } + +levelbar block { + min-width: 32px; + min-height: 1px; } + +levelbar.vertical block { + min-width: 1px; + min-height: 32px; } + +levelbar trough { + border: none; + padding: 3px; + border-radius: 3px; + background-color: #2d303b; } + +levelbar.horizontal.discrete block { + margin: 0 1px; } + +levelbar.vertical.discrete block { + margin: 1px 0; } + +levelbar block:not(.empty) { + border: 1px solid #5294e2; + background-color: #5294e2; + border-radius: 2px; } + +levelbar block.low { + border-color: #F27835; + background-color: #F27835; } + +levelbar block.high { + border-color: #5294e2; + background-color: #5294e2; } + +levelbar block.full { + border-color: #73d216; + background-color: #73d216; } + +levelbar block.empty { + background-color: #404552; + border-color: #404552; } + +printdialog paper { + border: 1px solid #2b2e39; + background: #404552; + padding: 0; } + +printdialog .dialog-action-box { + margin: 12px; } + +frame > border, +.frame { + margin: 0; + padding: 0; + border-radius: 0; + border: 1px solid #2b2e39; } + +frame.flat > border, +frame > border.flat, +.frame.flat { + border-style: none; } + +scrolledwindow viewport.frame { + border-style: none; } + +scrolledwindow overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; + border: none; } + +scrolledwindow undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; + border: none; } + +scrolledwindow undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; + border: none; } + +scrolledwindow undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; + border: none; } + +scrolledwindow junction { + border-color: transparent; + border-image: linear-gradient(to bottom, #2b2e39 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3e434f; } + scrolledwindow junction:dir(rtl) { + border-image-slice: 0 1 0 0; } + +separator { + background-color: rgba(0, 0, 0, 0.1); + min-width: 1px; + min-height: 1px; } + +list { + background-color: #404552; + border-color: #2b2e39; } + list row { + padding: 2px; } + +row:not(:hover) { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + +row.activatable.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:hover, .budgie-menu button:hover { + background-color: rgba(255, 255, 255, 0.03); } + +row.activatable:active, .budgie-menu button:active { + color: #D3DAE3; } + +row.activatable:disabled, .budgie-menu button:disabled { + color: rgba(211, 218, 227, 0.45); } + row.activatable:disabled image, .budgie-menu button:disabled image { + color: inherit; } + +row.activatable:selected:active, .budgie-menu button:selected:active { + color: #ffffff; } + +row.activatable:selected.has-open-popup, .budgie-menu button:selected.has-open-popup, row.activatable:selected:hover, .budgie-menu button:selected:hover { + background-color: #4a85cb; } + +.app-notification { + padding: 10px; + color: #BAC3CF; + background-color: rgba(53, 57, 69, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(31, 33, 40, 0.95); } + .app-notification border { + border: none; } + .app-notification button { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + .app-notification button.flat, .app-notification button.sidebar-button { + border-color: rgba(82, 148, 226, 0); } + .app-notification button:hover { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + .app-notification button:active, .app-notification button:checked { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; + background-clip: padding-box; } + .app-notification button:disabled { + color: #5d626e; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + +expander arrow { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + expander arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + expander arrow:hover { + color: white; } + expander arrow:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +calendar { + color: #D3DAE3; + border: 1px solid #2b2e39; + border-radius: 3px; + padding: 2px; } + calendar:selected { + border-radius: 1.5px; } + calendar.header { + color: #D3DAE3; + border: none; } + calendar.button { + color: rgba(211, 218, 227, 0.45); } + calendar.button:hover { + color: #D3DAE3; } + calendar.button:disabled { + color: rgba(211, 218, 227, 0.45); } + calendar:indeterminate { + color: alpha(currentColor,0.55); } + calendar.highlight { + color: #D3DAE3; } + +messagedialog .titlebar { + min-height: 20px; + background-color: rgba(47, 52, 63, 0.97); + border-bottom: 1px solid rgba(32, 35, 43, 0.97); } + +messagedialog .dialog-action-area button { + padding: 8px; + min-height: 0; } + +messagedialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + +messagedialog.csd .dialog-action-area button { + border-bottom-style: none; } + +messagedialog.csd .dialog-action-area button { + border-radius: 0; + border-right-style: none; } + +messagedialog.csd .dialog-action-area button:last-child { + border-radius: 0 0 3px 0; + border-right-style: none; } + +messagedialog.csd .dialog-action-area button:first-child { + border-radius: 0 0 0 3px; + border-left-style: none; } + +messagedialog.csd .dialog-action-area button:only-child { + border-radius: 0 0 3px 3px; + border-left-style: none; + border-right-style: none; } + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(43, 46, 57, 0.5); } + +filechooserbutton:drop(active) { + box-shadow: none; + border-color: transparent; } + +.sidebar { + border-style: none; + background-color: #3c4150; } + stacksidebar.sidebar:dir(ltr) list, + stacksidebar.sidebar.left list, + stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { + border-right: 1px solid #2b2e39; + border-left-style: none; } + stacksidebar.sidebar:dir(rtl) list, + stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { + border-left: 1px solid #2b2e39; + border-right-style: none; } + .sidebar list { + background-color: transparent; } + paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; } + +stacksidebar row { + padding: 10px 4px; } + stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; } + stacksidebar row.needs-attention > label { + background-size: 6px 6px, 0 0; } + +placessidebar > viewport.frame { + border-style: none; } + +placessidebar row { + min-height: 30px; + padding: 0px; } + placessidebar row > revealer { + padding: 0 10px; } + placessidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; } + placessidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; } + placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; } + placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; } + button.sidebar-button { + min-width: 22px; + min-height: 22px; + margin-top: 2px; + margin-bottom: 2px; + padding: 0; + border-radius: 100%; + -gtk-outline-radius: 100%; } + button.sidebar-button:not(:hover):not(:active) > image, .budgie-panel button.sidebar-button:not(:hover):not(:active) > image { + opacity: 0.5; } + placessidebar row.sidebar-placeholder-row { + padding: 0 8px; + min-height: 2px; + background-image: linear-gradient(to bottom, #F08437, #F08437); + background-clip: content-box; } + placessidebar row.sidebar-new-bookmark-row { + color: #5294e2; } + placessidebar row:drop(active):not(:disabled) { + box-shadow: inset 0 1px #F08437, inset 0 -1px #F08437; } + placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { + color: #F08437; } + placessidebar row:drop(active):not(:disabled):selected { + background-color: #F08437; } + placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { + color: #ffffff; } + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); } + +placesview .server-list-button:checked > image { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; } + +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: linear-gradient(to bottom, #2b2e39, #2b2e39); + background-size: 1px 1px; } + paned > separator:selected { + background-image: linear-gradient(to bottom, #5294e2, #5294e2); } + paned > separator.wide { + min-width: 5px; + min-height: 5px; + background-color: #383C4A; + background-image: linear-gradient(to bottom, #2b2e39, #2b2e39), linear-gradient(to bottom, #2b2e39, #2b2e39); + background-size: 1px 1px, 1px 1px; } + +paned.horizontal > separator { + background-repeat: repeat-y; } + paned.horizontal > separator:dir(ltr) { + margin: 0 -8px 0 0; + padding: 0 8px 0 0; + background-position: left; } + paned.horizontal > separator:dir(rtl) { + margin: 0 0 0 -8px; + padding: 0 0 0 8px; + background-position: right; } + paned.horizontal > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-y, repeat-y; + background-position: left, right; } + +paned.vertical > separator { + margin: 0 0 -8px 0; + padding: 0 0 8px 0; + background-repeat: repeat-x; + background-position: top; } + paned.vertical > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-x, repeat-x; + background-position: bottom, top; } + +infobar { + border-style: none; } + infobar.info, infobar.question, infobar.warning, infobar.error { + background-color: #5294e2; + color: #ffffff; + caret-color: currentColor; } + infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { + color: #5294e2; + background-color: #ffffff; } + +.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button, .lock-dialog button { + color: #ffffff; + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + +row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button, .lock-dialog button.flat, .lock-dialog button.sidebar-button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .lock-dialog button.flat:disabled, .lock-dialog button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label, .lock-dialog button.flat:disabled label, .lock-dialog button.sidebar-button:disabled label { + color: rgba(255, 255, 255, 0.4); } + +row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover, .lock-dialog button:hover { + color: #ffffff; + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + +.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .lock-dialog button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, .lock-dialog button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked, .lock-dialog button:checked { + color: #5294e2; + background-color: #ffffff; + border-color: #ffffff; } + +row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, .lock-dialog button:disabled { + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.4); } + row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, .lock-dialog button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label, .lock-dialog button:disabled label { + color: rgba(255, 255, 255, 0.5); } + .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .lock-dialog button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked, .lock-dialog button:disabled:checked { + color: #5294e2; + background-color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.4); } + +tooltip { + border-radius: 2px; + box-shadow: none; } + tooltip.background { + background-color: rgba(75, 81, 98, 0.95); + background-clip: padding-box; } + tooltip.background label { + padding: 4px; } + tooltip decoration { + background-color: transparent; } + tooltip * { + background-color: transparent; + color: #BAC3CF; } + +colorswatch, colorswatch:drop(active) { + border-style: none; } + +colorswatch.top { + border-top-left-radius: 2.5px; + border-top-right-radius: 2.5px; } + colorswatch.top overlay { + border-top-left-radius: 2px; + border-top-right-radius: 2px; } + +colorswatch.bottom { + border-bottom-left-radius: 2.5px; + border-bottom-right-radius: 2.5px; } + colorswatch.bottom overlay { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; } + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 2.5px; + border-bottom-left-radius: 2.5px; } + colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; } + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 2.5px; + border-bottom-right-radius: 2.5px; } + colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; } + +colorswatch.dark overlay { + color: rgba(255, 255, 255, 0.7); } + colorswatch.dark overlay:hover { + border-color: #2b2e39; } + +colorswatch.light overlay { + color: rgba(0, 0, 0, 0.7); } + colorswatch.light overlay:hover { + border-color: #2b2e39; } + +colorswatch overlay { + border: 1px solid #2b2e39; } + colorswatch overlay:hover { + background-color: rgba(255, 255, 255, 0.2); } + +colorswatch:disabled { + opacity: 0.5; } + colorswatch:disabled overlay { + border-color: rgba(0, 0, 0, 0.6); + box-shadow: none; } + +colorswatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #D3DAE3; + border-color: #2b2e39; + background-color: #444a58; } + colorswatch#add-color-button:hover { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #505666; } + colorswatch#add-color-button overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +button.color { + padding: 0; } + button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { + margin: 4px; + border-radius: 0; } + +colorchooser .popover.osd { + border-radius: 3px; } + +.content-view { + background-color: #404552; } + .content-view:hover { + -gtk-icon-effect: highlight; } + +.scale-popup button:hover { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #505666; } + +.context-menu, popover.touch-selection, .csd popover.touch-selection, +popover.background.touch-selection, .csd popover.background.touch-selection { + font: initial; } + +.monospace { + font-family: Monospace; } + +button.circular, button.nautilus-circular-button.image-button, +button.circular-button { + padding: 0; + min-width: 16px; + min-height: 24px; + padding: 2px 6px; + border-radius: 50%; + -gtk-outline-radius: 50%; } + button.circular label, button.nautilus-circular-button.image-button label, + button.circular-button label { + padding: 0; } + +.keycap { + min-width: 16px; + min-height: 20px; + padding: 3px 6px 4px 6px; + color: #D3DAE3; + background-color: #404552; + border: 1px solid #2b2e39; + border-radius: 2.5px; + box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.15); } + +stackswitcher button.text-button { + min-width: 80px; } + +stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { + min-width: 0; } + +*:drop(active):focus, +*:drop(active) { + box-shadow: inset 0 0 0 1px #F08437; } + +decoration { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(32, 35, 43, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + decoration:backdrop { + box-shadow: 0 0 0 1px rgba(32, 35, 43, 0.87), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.35); + transition: 200ms ease-out; } + .fullscreen decoration, + .tiled decoration { + border-radius: 0; } + .popup decoration { + box-shadow: none; + border-radius: 0; } + .ssd decoration { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .ssd decoration.maximized { + border-radius: 0; } + .csd.popup decoration { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #22242d; } + tooltip.csd decoration { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } + messagedialog.csd decoration { + border-radius: 3px; } + .solid-csd decoration { + border-radius: 0; + margin: 1px; + background-color: rgba(47, 52, 63, 0.97); + box-shadow: none; } + +headerbar.default-decoration button.titlebutton, +.titlebar.default-decoration button.titlebutton { + padding: 0 4px; + min-width: 0; + min-height: 0; + margin: 0; } + +headerbar button.titlebutton, +.titlebar button.titlebutton { + padding: 0; + min-width: 24px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 63, 0); } + headerbar button.titlebutton:hover, + .titlebar button.titlebutton:hover { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + headerbar button.titlebutton:active, headerbar button.titlebutton:checked, + .titlebar button.titlebutton:active, + .titlebar button.titlebutton:checked { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; } + headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, + .titlebar button.titlebutton.close, + .titlebar button.titlebutton.maximize, + .titlebar button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, + .titlebar button.titlebutton.close:backdrop, + .titlebar button.titlebutton.maximize:backdrop, + .titlebar button.titlebutton.minimize:backdrop { + opacity: 1; } + headerbar button.titlebutton.close, + .titlebar button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + headerbar button.titlebutton.close:backdrop, + .titlebar button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + headerbar button.titlebutton.close:hover, + .titlebar button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + headerbar button.titlebutton.close:active, + .titlebar button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + headerbar button.titlebutton.maximize, + .titlebar button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } + headerbar button.titlebutton.maximize:backdrop, + .titlebar button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } + headerbar button.titlebutton.maximize:hover, + .titlebar button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } + headerbar button.titlebutton.maximize:active, + .titlebar button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } + headerbar button.titlebutton.minimize, + .titlebar button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } + headerbar button.titlebutton.minimize:backdrop, + .titlebar button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } + headerbar button.titlebutton.minimize:hover, + .titlebar button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } + headerbar button.titlebutton.minimize:active, + .titlebar button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } + +.view:selected, iconview:selected, .view:selected:focus, .view text:selected, iconview text:selected, +textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, +textview text selection:focus, +textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, +modelbutton.flat:active, +modelbutton.flat:active arrow, +modelbutton.flat:selected, +modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, +.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, +.nautilus-window placessidebar.sidebar row.sidebar-row:selected, +.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, +.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { + background-color: #5294e2; } + row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, .view text:selected, iconview text:selected, + textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, + textview text selection:focus, + textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, + modelbutton.flat:active, + modelbutton.flat:active arrow, + modelbutton.flat:selected, + modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, + .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, + .nautilus-window placessidebar.sidebar row.sidebar-row:selected, + .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, + .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { + color: #ffffff; } + row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, + textview text:disabled:selected, iconview text:disabled:selected:focus, + textview text:disabled:selected:focus, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, + textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, + modelbutton.flat:disabled:active, + modelbutton.flat:active arrow:disabled, + modelbutton.flat:disabled:selected, + modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, + .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, + .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { + color: #a9caf1; } + +.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, +terminal-window notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -1px #2b2e39; } + +terminal-window notebook > header.top, +.mate-terminal notebook > header.top { + padding-top: 3px; + box-shadow: inset 0 1px #262a33, inset 0 -1px #2b2e39; } + terminal-window notebook > header.top button, + .mate-terminal notebook > header.top button { + padding: 0; + min-width: 24px; + min-height: 24px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { + color: white; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { + color: #D3DAE3; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { + color: #ffffff; + text-shadow: none; } + +.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, +popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, +.titlebar:not(headerbar) .nautilus-canvas-item.subtitle, .budgie-notification .nautilus-canvas-item.notification-body, .budgie-osd .nautilus-canvas-item.notification-body, .budgie-switcher-window .nautilus-canvas-item.notification-body, .budgie-switcher .nautilus-canvas-item.notification-body, +.nautilus-list-dim-label { + color: #868b97; } + .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, + .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .budgie-notification .nautilus-canvas-item.notification-body:selected, .budgie-osd .nautilus-canvas-item.notification-body:selected, .budgie-switcher-window .nautilus-canvas-item.notification-body:selected, .budgie-switcher .nautilus-canvas-item.notification-body:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, + .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, .budgie-notification .nautilus-canvas-item.notification-body:selected:focus, .budgie-osd .nautilus-canvas-item.notification-body:selected:focus, .budgie-switcher-window .nautilus-canvas-item.notification-body:selected:focus, .budgie-switcher .nautilus-canvas-item.notification-body:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dceaf9; } + +.nautilus-window searchbar { + border-top: 1px solid #2b2e39; } + +.nautilus-window .searchbar-container { + margin-top: -1px; } + +.nautilus-window notebook, +.nautilus-window notebook > stack:not(:only-child) searchbar { + background-color: #404552; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(211, 218, 227, 0.5); + border-color: rgba(180, 192, 207, 0.5); } + .disk-space-display.used { + background-color: rgba(82, 148, 226, 0.8); + border-color: rgba(38, 121, 219, 0.8); } + .disk-space-display.free { + background-color: #313541; + border-color: #1b1d24; } + +@keyframes needs_attention_keyframes { + 0% { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + 100% { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; } } + +.nautilus-operations-button-needs-attention { + animation: needs_attention_keyframes 2s ease-in-out; } + +.nautilus-operations-button-needs-attention-multiple { + animation: needs_attention_keyframes 3s ease-in-out; + animation-iteration-count: 3; } + +.conflict-row.activatable, .conflict-row.activatable:active { + color: white; + background-color: #FC4138; } + +.conflict-row.activatable:hover { + background-color: #fd716a; } + +.conflict-row.activatable:selected { + color: #ffffff; + background-color: #5294e2; } + +.nemo-window .nemo-places-sidebar.frame { + border-width: 0; } + +.nemo-window notebook { + background-color: #404552; } + +.nemo-window .nemo-window-pane widget.entry { + border: 1px solid; + border-radius: 3px; + color: #D3DAE3; + border-color: #2b2e39; + background-color: #404552; + box-shadow: inset 1px 0 #5294e2, inset -1px 0 #5294e2, inset 0 1px #5294e2, inset 0 -1px #5294e2; } + +.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child), .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { + margin: 0 0 1px 0; } + .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { + background-color: rgba(134, 144, 165, 0.37); } + .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; } + .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { + color: rgba(207, 218, 231, 0.4); } + +.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button + button { + border-left-style: none; } + +.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { + box-shadow: inset 1px 0 rgba(21, 23, 28, 0.37), inset -1px 0 rgba(21, 23, 28, 0.37); } + +.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { + box-shadow: inset -1px 0 rgba(21, 23, 28, 0.37); } + +.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .nemo-window .primary-toolbar .budgie-panel widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { + box-shadow: inset 1px 0 rgba(21, 23, 28, 0.37); } + +.caja-notebook { + border-top: 1px solid #2b2e39; } + +.caja-side-pane .frame { + border-width: 1px 0 0; } + +.caja-notebook .frame { + border-width: 0 0 1px; } + +.open-document-selector-treeview.view, iconview.open-document-selector-treeview { + padding: 3px 6px 3px 6px; + border-color: #404552; } + .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { + background-color: #4a4f5c; } + .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { + color: #ffffff; + background-color: #5294e2; } + +.open-document-selector-name-label { + color: #D3DAE3; } + +.open-document-selector-path-label { + color: #8a909b; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel row button { + min-width: 22px; + min-height: 22px; + padding: 0; + color: transparent; + background: none; + border: none; + box-shadow: none; } + .gedit-document-panel row button image { + color: inherit; } + +.gedit-document-panel row:hover:not(:selected) button { + color: #9da3ad; } + .gedit-document-panel row:hover:not(:selected) button:hover { + color: #ff4d4d; } + .gedit-document-panel row:hover:not(:selected) button:active { + color: #D3DAE3; } + +.gedit-document-panel row:hover:selected button:hover { + color: #ff6666; + background: none; + border: none; + box-shadow: none; } + .gedit-document-panel row:hover:selected button:hover:active { + color: #ffffff; } + +.gedit-document-panel-dragged-row { + border: 1px solid #2b2e39; + background-color: #22242d; + color: #D3DAE3; } + +.gedit-side-panel-paned statusbar { + border-top: 1px solid #2b2e39; + background-color: #383C4A; } + +.gedit-search-slider { + background-color: #3c4150; + padding: 6px; + border-color: #2b2e39; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +.gedit-search-entry-occurrences-tag { + color: rgba(211, 218, 227, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +.gedit-map-frame border { + border-width: 0; } + .gedit-map-frame border:dir(ltr) { + border-left-width: 1px; } + .gedit-map-frame border:dir(rtl) { + border-right-width: 1px; } + +.pluma-window statusbar frame > border { + border: none; } + +.pluma-window notebook > stack scrolledwindow { + border-width: 0 0 1px 0; } + +#pluma-status-combo-button { + min-height: 0; + padding: 0; + border-top: none; + border-bottom: none; + border-radius: 0; } + +.gb-search-entry-occurrences-tag { + background: none; } + +workbench.csd > stack.titlebar:not(headerbar) { + padding: 0; + background: none; + border: none; + box-shadow: none; } + workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { + border-radius: 3px 3px 0 0; } + +editortweak .linked > entry.search:focus + .gb-linked-scroller { + border-top-color: #5294e2; } + +layouttab { + background-color: #404552; } + +layout { + border: 1px solid #2b2e39; + -PnlDockBin-handle-size: 1; } + +eggsearchbar box.search-bar { + border-bottom: 1px solid #2b2e39; } + +pillbox { + color: #ffffff; + background-color: #5294e2; + border-radius: 3px; } + pillbox:disabled label { + color: rgba(255, 255, 255, 0.5); } + +docktabstrip { + padding: 0 6px; + background-color: #383C4A; + border-bottom: 1px solid #2b2e39; } + docktabstrip docktab { + min-height: 28px; + border: solid transparent; + border-width: 0 1px; } + docktabstrip docktab label { + opacity: 0.5; } + docktabstrip docktab:checked label, docktabstrip docktab:hover label { + opacity: 1; } + docktabstrip docktab:checked { + border-color: #2b2e39; + background-color: #404552; } + +dockbin { + border: 1px solid #2b2e39; + -PnlDockBin-handle-size: 1; } + +dockpaned { + border: 1px solid #2b2e39; } + +dockoverlayedge { + background-color: #383C4A; } + dockoverlayedge docktabstrip { + padding: 0; + border: none; } + dockoverlayedge.left-edge tab:checked, + dockoverlayedge.right-edge tab:checked { + border-width: 1px 0; } + +popover.messagepopover.background { + padding: 0; } + +popover.messagepopover .popover-content-area { + margin: 16px; } + +popover.messagepopover .popover-action-area { + margin: 8px; } + popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { + margin: 0 4px; } + +popover.popover-selector { + padding: 0; } + popover.popover-selector list row { + padding: 5px 0; } + popover.popover-selector list row image { + margin-left: 3px; + margin-right: 10px; } + +entry.search.preferences-search { + border: none; + border-right: 1px solid #2b2e39; + border-bottom: 1px solid #2b2e39; + border-radius: 0; } + +preferences stacksidebar.sidebar list { + background-image: linear-gradient(to bottom, #404552, #404552); } + +preferences stacksidebar.sidebar list separator { + background-color: transparent; } + +devhelppanel entry:focus, +symboltreepanel entry:focus { + border-color: #2b2e39; } + +button.run-arrow-button { + min-width: 12px; } + +omnibar.linked > entry:not(:only-child) { + border-style: solid; + border-radius: 3px; + margin-left: 1px; + margin-right: 1px; } + +gstyleslidein #scale_box button.toggle:checked, +gstyleslidein #strings_controls button.toggle:checked, +gstyleslidein #palette_controls button.toggle:checked, +gstyleslidein #components_controls button.toggle:checked { + color: #D3DAE3; } + +configurationview entry.flat { + background: none; } + +configurationview list { + border-width: 0; } + +.documents-scrolledwin.frame { + border-width: 0; } + +button.documents-load-more { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294e2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon, .photos-collection-icon { + background-color: rgba(211, 218, 227, 0.3); + border-radius: 2px; } + +button.documents-favorite:active, +button.documents-favorite:active:hover { + color: #a9caf1; } + +.documents-entry-tag, .photos-entry-tag { + color: #ffffff; + background: #5294e2; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover, .photos-entry-tag:hover { + color: #ffffff; + background: #639fe5; } + .documents-entry-tag:active, .photos-entry-tag:active { + color: #ffffff; + background: #4189df; } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +.photos-fade-in { + opacity: 1.0; + transition: opacity 0.2s ease-out; } + +.photos-fade-out { + opacity: 0.0; + transition: opacity 0.2s ease-out; } + +.tweak-categories, +.tweak-category:not(:selected):not(:hover) { + background-image: linear-gradient(to bottom, #404552, #404552); } + +.tr-workarea undershoot, +.tr-workarea overshoot { + border-color: transparent; } + +.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { + background: none; } + +#gf-bubble, #gf-bubble.solid, +#gf-osd-window, +#gf-osd-window.solid, +#gf-input-source-popup, +#gf-input-source-popup.solid, +#gf-candidate-popup, +#gf-candidate-popup.solid { + color: #cfd5de; + background-color: rgba(53, 57, 69, 0.95); + border: 1px solid rgba(35, 38, 46, 0.95); + border-radius: 2px; } + +#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, +#gf-osd-window levelbar block.low, +#gf-osd-window levelbar block.high, +#gf-osd-window levelbar block.full, +#gf-input-source-popup levelbar block.low, +#gf-input-source-popup levelbar block.high, +#gf-input-source-popup levelbar block.full, +#gf-candidate-popup levelbar block.low, +#gf-candidate-popup levelbar block.high, +#gf-candidate-popup levelbar block.full { + background-color: #5294e2; + border-color: #5294e2; } + +#gf-bubble levelbar block.empty, +#gf-osd-window levelbar block.empty, +#gf-input-source-popup levelbar block.empty, +#gf-candidate-popup levelbar block.empty { + background-color: rgba(42, 45, 55, 0.95); } + +#gf-bubble levelbar trough, +#gf-osd-window levelbar trough, +#gf-input-source-popup levelbar trough, +#gf-candidate-popup levelbar trough { + background: none; } + +#gf-input-source { + min-height: 32px; + min-width: 40px; } + #gf-input-source:selected { + color: #ffffff; + background-color: #5294e2; + border-radius: 2px; } + +gf-candidate-box label { + padding: 3px; } + +gf-candidate-box:hover, gf-candidate-box:selected { + color: #ffffff; + background-color: #5294e2; + border-radius: 2px; } + +MsdOsdWindow.background.osd { + border-radius: 2px; + border: 1px solid rgba(35, 38, 46, 0.95); } + MsdOsdWindow.background.osd .progressbar { + background-color: #5294e2; + border: none; + border-color: red; + border-radius: 5px; } + MsdOsdWindow.background.osd .trough { + background-color: rgba(42, 45, 55, 0.95); + border: none; + border-radius: 5px; } + +.mate-panel-menu-bar, .mate-panel-menu-bar menubar, +panel-toplevel.background, +panel-toplevel.background menubar { + background-color: #2b2e37; } + +.mate-panel-menu-bar menubar, +.mate-panel-menu-bar #PanelApplet label, +.mate-panel-menu-bar #PanelApplet image, +panel-toplevel.background menubar, +panel-toplevel.background #PanelApplet label, +panel-toplevel.background #PanelApplet image { + color: #BAC3CF; } + +.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, +.mate-panel-menu-bar #tasklist-button label, +.mate-panel-menu-bar #tasklist-button image, +panel-toplevel.background button label, +panel-toplevel.background button image, +panel-toplevel.background #tasklist-button label, +panel-toplevel.background #tasklist-button image { + color: inherit; } + +.mate-panel-menu-bar .wnck-pager, +panel-toplevel.background .wnck-pager { + color: #5d6268; + background-color: rgba(20, 22, 27, 0.95); } + .mate-panel-menu-bar .wnck-pager:hover, + panel-toplevel.background .wnck-pager:hover { + background-color: rgba(54, 58, 70, 0.95); } + .mate-panel-menu-bar .wnck-pager:selected, + panel-toplevel.background .wnck-pager:selected { + color: #a9caf1; + background-color: #5294e2; } + +.mate-panel-menu-bar na-tray-applet, +panel-toplevel.background na-tray-applet { + -NaTrayApplet-icon-padding: 0; + -NaTrayApplet-icon-size: 16px; } + +.xfce4-panel.panel { + background-color: rgba(43, 46, 55, 0.95); + font-weight: normal; + text-shadow: none; + -gtk-icon-shadow: none; } + +.xfce4-panel.panel menu { + font-weight: normal; } + +#tasklist-button { + color: rgba(186, 195, 207, 0.8); + border-radius: 0; + border: none; + background-color: rgba(43, 46, 55, 0); } + #tasklist-button:hover { + color: #d8dde4; + background-color: rgba(0, 0, 0, 0.17); } + #tasklist-button:checked { + color: white; + background-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294e2; } + +.mate-panel-menu-bar button:not(#tasklist-button), +panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { + color: #BAC3CF; + border-radius: 0; + border: none; + background-color: rgba(43, 46, 55, 0); } + .mate-panel-menu-bar button:hover:not(#tasklist-button), + panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { + border: none; + background-color: rgba(65, 70, 84, 0.95); } + .mate-panel-menu-bar button:active:not(#tasklist-button), + panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), + panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { + color: #ffffff; + border: none; + background-color: #5294e2; } + .mate-panel-menu-bar button:active:not(#tasklist-button) label, panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { + color: inherit; } + +.nautilus-window .floating-bar { + padding: 1px; + background-color: #5294e2; + color: #ffffff; + border-radius: 2px 2px 0 0; } + .nautilus-window .floating-bar.bottom.left { + border-top-left-radius: 0; } + .nautilus-window .floating-bar.bottom.right { + border-top-right-radius: 0; } + .nautilus-window .floating-bar button { + border: none; + border-radius: 0; + min-height: 0; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: rgba(207, 218, 231, 0.8); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.37); } + .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: transparent; + background-color: #5294e2; } + .marlin-pathbar.pathbar:disabled { + color: rgba(207, 218, 231, 0.35); + border-color: rgba(21, 23, 28, 0.37); + background-color: rgba(95, 105, 127, 0.22); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294e2; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + -gtk-icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +/******************** + * Mate-Screensaver * + ********************/ +.lock-dialog { + background-color: rgba(43, 46, 55, 0.95); + color: white; } + .lock-dialog entry, .lock-dialog entry:focus textview text { + background-color: transparent; + color: white; + border-style: none; + border-bottom: 1px solid #2b2e39; + border-radius: 1px; } + .lock-dialog frame > border { + border-style: none; + border-width: 0px; } + .lock-dialog notebook { + color: white; + background-color: rgba(43, 46, 55, 0.76); } + +window.background.chromium headerbar.titlebar button.titlebutton { + min-width: 16px; + min-height: 16px; + margin: 0px 4px; + padding: 0px; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294e2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration .top { + border: 1px solid rgba(32, 35, 43, 0.97); + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343f, #2f343f); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px rgba(54, 59, 72, 0.97); } + UnityDecoration .top:backdrop { + border-bottom-width: 0; + color: rgba(207, 218, 231, 0.5); } + UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, + UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(32, 35, 43, 0.97), rgba(32, 35, 43, 0.97)); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #2f343f, #2f343f); + color: #f6f7f9; + box-shadow: none; } + UnityPanelWidget:backdrop, + .unity-panel:backdrop { + color: #bdc6d1; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #ffffff; + background-image: linear-gradient(to bottom, #5294e2, #5294e2); + border-bottom: none; } + +.lightdm.menu { + background-image: none; + background-color: rgba(0, 0, 0, 0.4); + border-color: rgba(255, 255, 255, 0.8); + border-radius: 4px; + padding: 1px; + color: white; } + +.lightdm-combo .menu { + background-color: rgba(64, 71, 86, 0.97); + border-radius: 0px; + padding: 0px; + color: white; } + +.lightdm.menu .menuitem *, +.lightdm.menu .menuitem.check:active, +.lightdm.menu .menuitem.radio:active { + color: white; } + +.lightdm.menubar { + color: rgba(255, 255, 255, 0.8); + background-image: none; + background-color: rgba(0, 0, 0, 0.5); } + .lightdm.menubar > .menuitem { + padding: 2px 6px; } + +.lightdm-combo.combobox-entry .button, +.lightdm-combo .cell, +.lightdm-combo .button, +.lightdm-combo .entry, +.lightdm.button, +.lightdm.entry { + background-image: none; + background-color: rgba(0, 0, 0, 0.3); + border-color: rgba(255, 255, 255, 0.4); + border-radius: 10px; + padding: 7px; + color: white; + text-shadow: none; } + +.lightdm.button, +.lightdm.button:hover, +.lightdm.button:active, +.lightdm.button:active:focus, +.lightdm.entry, +.lightdm.entry:hover, +.lightdm.entry:active, +.lightdm.entry:active:focus { + background-image: none; + border-image: none; } + +.lightdm.button:focus, +.lightdm.entry:focus { + border-color: rgba(255, 255, 255, 0.1); + border-width: 1px; + border-style: solid; + color: white; } + +.lightdm.entry:selected { + background-color: rgba(255, 255, 255, 0.8); } + +.lightdm.entry:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: dashentry_spinner 1s infinite linear; } + +.lightdm.option-button { + padding: 2px; + background: none; + border: 0; } + +.lightdm.toggle-button { + background: none; + border-width: 0; } + .lightdm.toggle-button.selected { + background-color: rgba(0, 0, 0, 0.7); + border-width: 1px; } + +@keyframes dashentry_spinner { + to { + -gtk-icon-transform: rotate(1turn); } } + +.overlay-bar { + background-color: #5294e2; + border-color: #5294e2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar label { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #2b2e39; + border-right: 1px solid #2b2e39; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #2b2e39; } + toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { + padding: 0 3px 0 3px; } + +toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #2b2e39; + background-color: #383C4A; } + toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view, +iconview.source-list { + background-color: #383C4A; + color: #D3DAE3; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:hover, iconview.source-list:hover { + background-color: #434859; } + +.source-list.view:selected, iconview.source-list:selected, +.source-list.view:hover:selected, +iconview.source-list:hover:selected, +.source-list.view:selected:focus, +iconview.source-list:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294e2; } + +.source-list scrollbar, +.source-list junction { + border-image: none; + border-color: transparent; + background-color: #383C4A; + background-image: none; } + +.source-list.badge, +.source-list.badge:hover, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:hover:selected { + background-image: none; + background-color: #5294e2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:hover:selected { + background-color: #ffffff; + color: #5294e2; } + +.source-list.category-expander { + color: #D3DAE3; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #404552; } + +GraniteWidgetsWelcome label { + color: #868b97; + font-size: 11px; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(211, 218, 227, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #404552, #404552); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, +GraniteWidgetsPopOver * { + background-color: transparent; } + +GraniteWidgetsXsEntry entry { + padding: 4px; } + +.h1 { + font-size: 24px; } + +.h2 { + font-size: 18px; } + +.h3 { + font-size: 11px; } + +.h4, +.category-label { + color: #a5abb5; + font-weight: 600; } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +#panel_window { + background-color: rgba(43, 46, 55, 0.95); + color: #BAC3CF; + font-weight: bold; + box-shadow: inset 0 -1px rgba(27, 29, 35, 0.95); } + #panel_window menubar { + padding-left: 5px; } + #panel_window menubar, #panel_window menubar > menuitem { + background-color: transparent; + color: #BAC3CF; + font-weight: bold; } + #panel_window menubar menuitem:disabled { + color: rgba(186, 195, 207, 0.5); } + #panel_window menubar menuitem:disabled label { + color: inherit; } + #panel_window menubar menu > menuitem { + font-weight: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font-weight: normal; + border-style: none; + background-color: transparent; + color: #D3DAE3; } + +#content_frame { + padding-bottom: 14px; + background-color: #383C4A; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame button { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #444a58; } + #content_frame button:hover { + color: #D3DAE3; + border-color: #2b2e39; + background-color: #505666; } + #content_frame button:active, #content_frame button:checked { + color: #ffffff; + border-color: #2b2e39; + background-color: #5294e2; } + #content_frame button:disabled { + border-color: rgba(43, 46, 57, 0.55); + background-color: rgba(68, 74, 88, 0.55); } + #content_frame button:disabled label, #content_frame button:disabled { + color: rgba(211, 218, 227, 0.45); } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: rgba(47, 52, 63, 0.97); + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px rgba(38, 42, 51, 0.97); } + +#buttonbox_frame button { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + #buttonbox_frame button:hover { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + #buttonbox_frame button:active, #buttonbox_frame button:checked { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + #buttonbox_frame button:disabled { + color: #5d626e; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + +#login_window #user_combobox { + color: #D3DAE3; + font-size: 13px; } + #login_window #user_combobox menu { + font-weight: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: green; + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: green; + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: green; + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: green; + background-color: #4DADD4; + border-color: #4DADD4; } + #restart_button.button:hover { + background-clip: border-box; + color: green; + background-color: #76c0de; + border-color: #76c0de; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: green; + background-color: #2e96c0; + border-color: #2e96c0; } + +#greeter_infobar { + border-bottom-width: 0; + font-weight: bold; } + +.nautilus-window paned > separator { + background-image: linear-gradient(to bottom, rgba(42, 45, 55, 0.95), rgba(42, 45, 55, 0.95)); } + +filechooser paned > separator { + background-image: linear-gradient(to bottom, rgba(42, 45, 55, 0.95), rgba(42, 45, 55, 0.95)); } + +filechooser.csd.background, filechooser placessidebar list, +.nautilus-window.csd.background, +.nautilus-window placessidebar list { + background-color: transparent; } + +filechooser placessidebar.sidebar, +.nautilus-window placessidebar.sidebar { + background-color: rgba(53, 57, 69, 0.95); } + filechooser placessidebar.sidebar row.sidebar-row, + .nautilus-window placessidebar.sidebar row.sidebar-row { + border: none; + color: #BAC3CF; } + filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { + color: rgba(186, 195, 207, 0.6); } + filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, + .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, + .nautilus-window placessidebar.sidebar row.sidebar-row:hover { + background-color: rgba(186, 195, 207, 0.15); } + filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, + .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, + .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, + .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { + color: rgba(186, 195, 207, 0.4); } + filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { + color: inherit; } + filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, + .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { + color: #BAC3CF; } + filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, + .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, + .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { + color: #ffffff; + border-color: #2b2e39; + background-color: #5294e2; } + filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, filechooser placessidebar.sidebar row.sidebar-row:not(:selected) .budgie-panel button.sidebar-button:not(:hover):not(:active) > image, + .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, + .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) .budgie-panel button.sidebar-button:not(:hover):not(:active) > image { + opacity: 0.5; } + filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, + .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { + color: #5294e2; } + filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { + color: inherit; } + filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { + color: #F08437; } + filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { + background-color: #F08437; } + filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, + .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { + color: #ffffff; } + filechooser placessidebar.sidebar separator, + .nautilus-window placessidebar.sidebar separator { + background-color: transparent; } + +filechooser.maximized placessidebar.sidebar, +.nautilus-window.maximized placessidebar.sidebar { + background-color: #353945; } + +.nemo-window .sidebar { + color: #BAC3CF; + background-color: rgba(53, 57, 69, 0.95); } + .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { + background-color: transparent; + color: #BAC3CF; } + .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { + background-color: #5294e2; + color: #ffffff; } + .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { + color: rgba(123, 129, 141, 0.975); } + .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { + color: #BAC3CF; } + .nemo-window .sidebar separator { + background-color: transparent; } + +.caja-side-pane, +.caja-side-pane > notebook > stack > widget > box, +.caja-side-pane text, +.caja-side-pane treeview { + color: #BAC3CF; + caret-color: #BAC3CF; + background-color: #353945; } + +.caja-side-pane > box button:not(:active):not(:checked), .budgie-panel .caja-side-pane > box button:not(:active):not(:checked) { + color: #BAC3CF; } + +.caja-side-pane .frame { + border-color: #2a2d37; } + +.caja-side-pane junction { + background-color: rgba(42, 45, 55, 0.95); } + +filechooser actionbar { + color: #BAC3CF; + background-color: rgba(53, 57, 69, 0.95); + border-color: rgba(20, 21, 26, 0.95); } + filechooser actionbar label, filechooser actionbar combobox { + color: #BAC3CF; } + +.gedit-bottom-panel-paned { + background-color: #404552; } + +.gedit-side-panel-paned > separator { + background-image: linear-gradient(to bottom, rgba(42, 45, 55, 0.95), rgba(42, 45, 55, 0.95)); } + +.gedit-bottom-panel-paned > separator { + background-image: linear-gradient(to bottom, #2b2e39, #2b2e39); } + +.gedit-document-panel { + background-color: rgba(53, 57, 69, 0.95); } + .maximized .gedit-document-panel { + background-color: #353945; } + .gedit-document-panel row { + color: #BAC3CF; + background-color: rgba(186, 195, 207, 0); } + .gedit-document-panel row:hover { + background-color: rgba(186, 195, 207, 0.15); } + .gedit-document-panel row:active { + color: #ffffff; + background-color: #5294e2; } + .gedit-document-panel row:active button { + color: #ffffff; } + .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { + color: #ffffff; + background-color: #5294e2; } + .gedit-document-panel row:hover:not(:selected) button:active { + color: #BAC3CF; } + +filechooser actionbar button, filechooser actionbar .budgie-panel button, .budgie-panel filechooser actionbar button { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + .caja-side-pane > box button:hover:not(:active), .budgie-panel .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(119, 127, 151, 0.45); } + filechooser actionbar button:active, filechooser actionbar button:checked { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + filechooser actionbar button:disabled { + color: #5d626e; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.2); } + +filechooser actionbar entry { + color: #BAC3CF; + border-color: rgba(26, 28, 34, 0.35); + background-color: rgba(102, 109, 132, 0.35); } + filechooser actionbar entry image, filechooser actionbar entry image:hover { + color: inherit; } + filechooser actionbar entry:focus { + color: #ffffff; + border-color: rgba(26, 28, 34, 0.35); + background-color: #5294e2; } + filechooser actionbar entry:disabled { + color: rgba(186, 195, 207, 0.55); + background-color: rgba(102, 109, 132, 0.2); } + +filechooser placessidebar.sidebar scrollbar, +.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { + border-color: rgba(42, 45, 55, 0.95); } + filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + background-color: #e7eaee; + border: 1px solid rgba(0, 0, 0, 0.3); } + filechooser placessidebar.sidebar scrollbar slider, .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { + background-color: rgba(231, 234, 238, 0.7); } + filechooser placessidebar.sidebar scrollbar slider:hover, .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { + background-color: #f6f7f9; } + filechooser placessidebar.sidebar scrollbar slider:hover:active, .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { + background-color: #5294e2; } + filechooser placessidebar.sidebar scrollbar slider:disabled, .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { + background-color: transparent; } + filechooser placessidebar.sidebar scrollbar trough, .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { + background-color: rgba(42, 45, 55, 0.95); } + +@define-color theme_fg_color #D3DAE3; +@define-color theme_text_color #D3DAE3; +@define-color theme_bg_color #383C4A; +@define-color theme_base_color #404552; +@define-color theme_selected_bg_color #5294e2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #D3DAE3; +@define-color text_color #D3DAE3; +@define-color bg_color #383C4A; +@define-color base_color #404552; +@define-color selected_bg_color #5294e2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3c4150; +@define-color insensitive_fg_color alpha(#d3dae3, 0.5); +@define-color insensitive_base_color #404552; +@define-color theme_unfocused_fg_color #D3DAE3; +@define-color theme_unfocused_text_color #D3DAE3; +@define-color theme_unfocused_bg_color #383C4A; +@define-color theme_unfocused_base_color #404552; +@define-color borders #2b2e39; +@define-color unfocused_borders #2b2e39; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color link_color #a9caf1; +@define-color content_view_bg #404552; +@define-color wm_title alpha(#cfdae7, 0.8); +@define-color wm_unfocused_title alpha(#cfdae7, 0.5); +@define-color wm_bg #2f343f; +@define-color wm_bg_unfocused #323843; +@define-color wm_highlight #363b48; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5294e2; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; +.budgie-container { + background-color: transparent; } + +*:drop(active):focus, +*:drop(active) { + box-shadow: inset 0 0 0 1px #5294e2; } + +.budgie-panel { + background-color: rgba(43, 46, 55, 0.95); + color: #ffffff; + font-weight: normal; } + .budgie-panel .alert { + color: #4DADD4; } + .budgie-panel:backdrop { + color: #ffffff; + background-color: rgba(43, 46, 55, 0.95); } + .budgie-panel.transparent { + background-color: rgba(43, 46, 55, 0.38); + color: #ffffff; } + .budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: #ffffff; } + .budgie-panel button:hover { + box-shadow: alpha(rgba(43, 46, 55, 0.95),0.4); + background-color: rgba(43, 46, 55, 0.38); + border-color: rgba(43, 46, 55, 0.38); } + .budgie-panel.horizontal button { + padding: 0 4px; } + .budgie-panel.vertical button { + padding: 4px 0; } + .budgie-panel separator { + background-color: rgba(211, 218, 227, 0.4); } + .budgie-panel.vertical #tasklist-button { + min-height: 32px; } + .budgie-panel .end-region { + background-color: rgba(0, 0, 0, 0.3); + border-radius: 0px; } + .budgie-panel .end-region separator { + background-color: rgba(255, 255, 255, 0.15); } + .budgie-panel .end-region label { + font-weight: 700; + color: #ffffff; } + +.budgie-panel button.flat.launcher, .budgie-panel button.launcher.sidebar-button { + padding: 0; + border-radius: 0; + border: none; + background-image: radial-gradient(circle farthest-corner at center, alpha(#D3DAE3,0) 100%, transparent 0%), image(alpha(#D3DAE3,0)); + background-position: center center; } + .budgie-panel button.flat.launcher > image, .budgie-panel button.launcher.sidebar-button > image { + opacity: 0.87; } + .budgie-panel button.flat.launcher:hover, .budgie-panel button.launcher.sidebar-button:hover { + -gtk-icon-effect: highlight; } + .budgie-panel button.flat.launcher:hover > image, .budgie-panel button.launcher.sidebar-button:hover > image { + opacity: 1.0; } + .budgie-panel button.flat.launcher:active > image, .budgie-panel button.launcher.sidebar-button:active > image { + opacity: 1.0; } + .budgie-panel button.flat.launcher:checked, .budgie-panel button.launcher.sidebar-button:checked { + background-color: transparent; } + .budgie-panel button.flat.launcher:checked:hover, .budgie-panel button.launcher.sidebar-button:checked:hover { + -gtk-icon-effect: highlight; } + .budgie-panel button.flat.launcher:checked > image, .budgie-panel button.launcher.sidebar-button:checked > image { + opacity: 1.0; } + +.budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned button.launcher.sidebar-button:hover, +.budgie-panel .pinned button.flat.launcher.running:hover, +.budgie-panel .pinned button.launcher.running.sidebar-button:hover { + -gtk-icon-effect: highlight; } + +.budgie-panel .unpinned button.flat.launcher > image, .budgie-panel .unpinned button.launcher.sidebar-button > image, +.budgie-panel .pinned button.flat.launcher.running > image, +.budgie-panel .pinned button.launcher.running.sidebar-button > image { + background-size: 2px 2px; + background-repeat: no-repeat; + opacity: 1.0; } + +.budgie-panel .unpinned button.flat.launcher:hover > image, .budgie-panel .unpinned button.launcher.sidebar-button:hover > image, .budgie-panel .unpinned button.flat.launcher:active > image, .budgie-panel .unpinned button.launcher.sidebar-button:active > image, .budgie-panel .unpinned button.flat.launcher:checked > image, .budgie-panel .unpinned button.launcher.sidebar-button:checked > image, +.budgie-panel .pinned button.flat.launcher.running:hover > image, +.budgie-panel .pinned button.launcher.running.sidebar-button:hover > image, +.budgie-panel .pinned button.flat.launcher.running:active > image, +.budgie-panel .pinned button.launcher.running.sidebar-button:active > image, +.budgie-panel .pinned button.flat.launcher.running:checked > image, +.budgie-panel .pinned button.launcher.running.sidebar-button:checked > image { + background-image: none; } + +.top .budgie-panel button#tasklist-button:hover, +.top .budgie-panel button.flat.launcher:hover, +.top .budgie-panel button.launcher.sidebar-button:hover { + box-shadow: inset 0 2px alpha(#D3DAE3,0.4); + background-color: rgba(211, 218, 227, 0.4); + border: none; } + +.top .budgie-panel button#tasklist-button:active, .top .budgie-panel button#tasklist-button:checked, +.top .budgie-panel button.flat.launcher:active, +.top .budgie-panel button.launcher.sidebar-button:active, +.top .budgie-panel button.flat.launcher:checked, +.top .budgie-panel button.launcher.sidebar-button:checked { + box-shadow: inset 0 2px #5294e2; } + +.top .budgie-panel .unpinned button.flat.launcher > image, .top .budgie-panel .unpinned button.launcher.sidebar-button > image, +.top .budgie-panel .pinned button.flat.launcher.running > image, +.top .budgie-panel .pinned button.launcher.running.sidebar-button > image { + background-image: image(#5294e2); + background-position: top center; } + +.top .budgie-panel .unpinned button.flat.launcher:hover, .top .budgie-panel .unpinned button.launcher.sidebar-button:hover, .top .budgie-panel .unpinned button.flat.launcher:active, .top .budgie-panel .unpinned button.launcher.sidebar-button:active, .top .budgie-panel .unpinned button.flat.launcher:checked, .top .budgie-panel .unpinned button.launcher.sidebar-button:checked, +.top .budgie-panel .pinned button.flat.launcher.running:hover, +.top .budgie-panel .pinned button.launcher.running.sidebar-button:hover, +.top .budgie-panel .pinned button.flat.launcher.running:active, +.top .budgie-panel .pinned button.launcher.running.sidebar-button:active, +.top .budgie-panel .pinned button.flat.launcher.running:checked, +.top .budgie-panel .pinned button.launcher.running.sidebar-button:checked { + box-shadow: inset 0 2px #5294e2; } + +.bottom .budgie-panel button#tasklist-button:hover, +.bottom .budgie-panel button.flat.launcher:hover, +.bottom .budgie-panel button.launcher.sidebar-button:hover { + box-shadow: inset 0 -2px alpha(#D3DAE3,0.4); + background-color: rgba(211, 218, 227, 0.4); + border: none; } + +.bottom .budgie-panel button#tasklist-button:active, .bottom .budgie-panel button#tasklist-button:checked, +.bottom .budgie-panel button.flat.launcher:active, +.bottom .budgie-panel button.launcher.sidebar-button:active, +.bottom .budgie-panel button.flat.launcher:checked, +.bottom .budgie-panel button.launcher.sidebar-button:checked { + box-shadow: inset 0 -2px #5294e2; } + +.bottom .budgie-panel .unpinned button.flat.launcher > image, .bottom .budgie-panel .unpinned button.launcher.sidebar-button > image, +.bottom .budgie-panel .pinned button.flat.launcher.running > image, +.bottom .budgie-panel .pinned button.launcher.running.sidebar-button > image { + background-image: image(#5294e2); + background-position: bottom center; } + +.bottom .budgie-panel .unpinned button.flat.launcher:hover, .bottom .budgie-panel .unpinned button.launcher.sidebar-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:active, .bottom .budgie-panel .unpinned button.launcher.sidebar-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .bottom .budgie-panel .unpinned button.launcher.sidebar-button:checked, +.bottom .budgie-panel .pinned button.flat.launcher.running:hover, +.bottom .budgie-panel .pinned button.launcher.running.sidebar-button:hover, +.bottom .budgie-panel .pinned button.flat.launcher.running:active, +.bottom .budgie-panel .pinned button.launcher.running.sidebar-button:active, +.bottom .budgie-panel .pinned button.flat.launcher.running:checked, +.bottom .budgie-panel .pinned button.launcher.running.sidebar-button:checked { + box-shadow: inset 0 -2px #5294e2; } + +.left .budgie-panel button#tasklist-button:hover, +.left .budgie-panel button.flat.launcher:hover, +.left .budgie-panel button.launcher.sidebar-button:hover { + box-shadow: inset 2px 0 alpha(#D3DAE3,0.4); + background-color: rgba(211, 218, 227, 0.4); + border: none; } + +.left .budgie-panel button#tasklist-button:active, .left .budgie-panel button#tasklist-button:checked, +.left .budgie-panel button.flat.launcher:active, +.left .budgie-panel button.launcher.sidebar-button:active, +.left .budgie-panel button.flat.launcher:checked, +.left .budgie-panel button.launcher.sidebar-button:checked { + box-shadow: inset 2px 0 #5294e2; } + +.left .budgie-panel .unpinned button.flat.launcher > image, .left .budgie-panel .unpinned button.launcher.sidebar-button > image, +.left .budgie-panel .pinned button.flat.launcher.running > image, +.left .budgie-panel .pinned button.launcher.running.sidebar-button > image { + background-image: image(#5294e2); + background-position: left center; } + +.left .budgie-panel .unpinned button.flat.launcher:hover, .left .budgie-panel .unpinned button.launcher.sidebar-button:hover, .left .budgie-panel .unpinned button.flat.launcher:active, .left .budgie-panel .unpinned button.launcher.sidebar-button:active, .left .budgie-panel .unpinned button.flat.launcher:checked, .left .budgie-panel .unpinned button.launcher.sidebar-button:checked, +.left .budgie-panel .pinned button.flat.launcher.running:hover, +.left .budgie-panel .pinned button.launcher.running.sidebar-button:hover, +.left .budgie-panel .pinned button.flat.launcher.running:active, +.left .budgie-panel .pinned button.launcher.running.sidebar-button:active, +.left .budgie-panel .pinned button.flat.launcher.running:checked, +.left .budgie-panel .pinned button.launcher.running.sidebar-button:checked { + box-shadow: inset 2px 0 #5294e2; } + +.right .budgie-panel button#tasklist-button:hover, +.right .budgie-panel button.flat.launcher:hover, +.right .budgie-panel button.launcher.sidebar-button:hover { + box-shadow: inset -2px 0 alpha(#D3DAE3,0.4); + background-color: rgba(211, 218, 227, 0.4); + border: none; } + +.right .budgie-panel button#tasklist-button:active, .right .budgie-panel button#tasklist-button:checked, +.right .budgie-panel button.flat.launcher:active, +.right .budgie-panel button.launcher.sidebar-button:active, +.right .budgie-panel button.flat.launcher:checked, +.right .budgie-panel button.launcher.sidebar-button:checked { + box-shadow: inset -2px 0 #5294e2; } + +.right .budgie-panel .unpinned button.flat.launcher > image, .right .budgie-panel .unpinned button.launcher.sidebar-button > image, +.right .budgie-panel .pinned button.flat.launcher.running > image, +.right .budgie-panel .pinned button.launcher.running.sidebar-button > image { + background-image: image(#5294e2); + background-position: right center; } + +.right .budgie-panel .unpinned button.flat.launcher:hover, .right .budgie-panel .unpinned button.launcher.sidebar-button:hover, .right .budgie-panel .unpinned button.flat.launcher:active, .right .budgie-panel .unpinned button.launcher.sidebar-button:active, .right .budgie-panel .unpinned button.flat.launcher:checked, .right .budgie-panel .unpinned button.launcher.sidebar-button:checked, +.right .budgie-panel .pinned button.flat.launcher.running:hover, +.right .budgie-panel .pinned button.launcher.running.sidebar-button:hover, +.right .budgie-panel .pinned button.flat.launcher.running:active, +.right .budgie-panel .pinned button.launcher.running.sidebar-button:active, +.right .budgie-panel .pinned button.flat.launcher.running:checked, +.right .budgie-panel .pinned button.launcher.running.sidebar-button:checked { + box-shadow: inset -2px 0 #5294e2; } + +.top .shadow-block { + background-color: transparent; + background-image: linear-gradient(to bottom, alpha(#000000,0.23), alpha(#000000,0.08), transparent); } + +.bottom .shadow-block { + background-color: transparent; + background-image: linear-gradient(to top, alpha(#000000,0.23), alpha(#000000,0.08), transparent); } + +.left .shadow-block { + background-color: transparent; + background-image: linear-gradient(to right, alpha(#000000,0.23), alpha(#000000,0.08), transparent); } + +.right .shadow-block { + background-color: transparent; + background-image: linear-gradient(to left, alpha(#000000,0.23), alpha(#000000,0.08), transparent); } + +.budgie-popover { + border-style: none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.28); + border-radius: 1px; + box-shadow: 0 3px 4px rgba(0, 0, 0, 0.28); + background-color: #383C4A; } + .budgie-popover .container { + padding: 2px; } + .budgie-popover border { + border: none; } + .budgie-popover list { + background-color: transparent; } + .budgie-popover row { + padding: 0; } + .budgie-popover row:hover { + box-shadow: none; } + .budgie-popover:not(.budgie-menu) button.flat:not(.image-button), .budgie-popover:not(.budgie-menu) button.sidebar-button:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #D3DAE3; + font-weight: normal; } + .budgie-popover:not(.budgie-menu) button.flat:not(.image-button):disabled, .budgie-popover:not(.budgie-menu) button.sidebar-button:not(.image-button):disabled { + color: rgba(211, 218, 227, 0.45); } + .budgie-popover.budgie-menu .container { + padding: 0; } + .budgie-popover.user-menu .container { + padding: 8px; } + .budgie-popover.user-menu separator { + margin: 4px 0; } + .budgie-popover.sound-popover separator { + margin: 3px 0; } + .budgie-popover.night-light-indicator .container { + padding: 8px; } + .budgie-popover.places-menu .container { + padding: 8px; } + .budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid #2b2e39; } + .budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; } + .budgie-popover.workspace-popover .container { + padding: 2px 8px 8px; } + .budgie-popover.workspace-popover separator { + margin: 4px 0; } + .budgie-popover.workspace-popover flowboxchild { + padding: 0; } + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(43, 46, 55, 0.95); } + .top .workspace-switcher .workspace-layout:dir(ltr), + .bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; } + .top .workspace-switcher .workspace-layout:dir(rtl), + .bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; } + .left .workspace-switcher .workspace-layout, + .right .workspace-switcher .workspace-layout { + border-top-width: 1px; } + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(32, 34, 41, 0.95); } + .top .workspace-switcher .workspace-item:dir(ltr), + .bottom .workspace-switcher .workspace-item:dir(ltr), .top + .workspace-switcher .workspace-add-button:dir(ltr), + .bottom + .workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; } + .top .workspace-switcher .workspace-item:dir(rtl), + .bottom .workspace-switcher .workspace-item:dir(rtl), .top + .workspace-switcher .workspace-add-button:dir(rtl), + .bottom + .workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; } + .left .workspace-switcher .workspace-item, + .right .workspace-switcher .workspace-item, .left + .workspace-switcher .workspace-add-button, + .right + .workspace-switcher .workspace-add-button { + border-bottom-width: 1px; } + +.workspace-switcher .workspace-item.current-workspace { + background-color: rgba(32, 34, 41, 0.95); } + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; } + +.workspace-switcher .workspace-add-button:active { + background-image: none; } + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; } + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 2px; } + +.budgie-menu.background { + padding: 0; + background-color: #404552; } + +.budgie-menu scrollbar, +.budgie-menu entry.search { + background-color: transparent; } + +.budgie-menu entry.search { + border-style: none; + border-bottom: 1px solid #2b2e39; + border-radius: 1px; + box-shadow: none; + font-size: 120%; + padding-top: 6px; + padding-bottom: 6px; } + +.budgie-menu button { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + color: #D3DAE3; + font-weight: normal; } + +.budgie-menu row { + padding: 0; } + .budgie-menu row:hover { + box-shadow: none; } + +button.budgie-menu-launcher { + color: #F5F6F7; + border: none; } + button.budgie-menu-launcher:hover { + background-color: rgba(211, 218, 227, 0.4); + border: none; } + +popover.background.user-menu { + padding: 8px; } + popover.background.user-menu .content-box { + background-color: transparent; } + popover.background.user-menu separator { + margin: 4px 0; } + popover.background.user-menu row { + padding: 0; + box-shadow: none; + background-image: none; } + +button.raven-trigger { + color: #ffffff; + border: none; } + button.raven-trigger:hover { + background-color: rgba(211, 218, 227, 0.4); + border: none; } + +popover.background.places-menu { + padding: 8px; } + popover.background.places-menu .name-button.text-button { + padding-left: 8px; + padding-right: 8px; } + popover.background.places-menu .name-button.text-button image:dir(ltr) { + margin-right: 3px; } + popover.background.places-menu .name-button.text-button image:dir(rtl) { + margin-left: 3px; } + popover.background.places-menu .places-section-header > image:dir(ltr) { + margin: 0 -2px 0 5px; } + popover.background.places-menu .places-section-header > image:dir(rtl) { + margin: 0 5px 0 -2px; } + popover.background.places-menu .places-list { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid #2b2e39; + background-color: transparent; } + popover.background.places-menu row { + padding: 0; + box-shadow: none; + background-image: none; } + +frame.raven-frame > border { + border-style: none; + box-shadow: none; } + +.raven { + background-color: #383C4A; + color: #D3DAE3; + padding: 6px 0 0 0; + border: none; } + .raven .raven-header { + min-height: 32px; + padding: 3px; } + .raven .raven-header.top { + padding: 2px 0; + background-color: #383C4A; + color: #D3DAE3; } + .raven .raven-header.top stackswitcher button { + margin: -6px 0; + min-height: 32px; } + .raven .raven-header.bottom { + border-top: 1px solid #2b2e39; } + .raven viewport.frame .raven-header { + margin-top: -8px; } + .raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: #2b2e39; + background-color: #404552; } + .raven scrolledwindow.raven-background { + border-bottom-style: none; } + .raven .powerstrip button { + margin: 2px 0 1px; + padding: 10px; } + .raven .option-subtitle { + font-size: smaller; } + +calendar.raven-calendar { + border-style: none; + background-color: transparent; } + calendar.raven-calendar:selected { + border-radius: 2px; + background-color: #383C4A; } + +.raven-mpris { + background-color: rgba(56, 60, 74, 0.8); + color: #D3DAE3; } + .raven-mpris label { + min-height: 24px; } + +.budgie-notification-window, .budgie-osd-window { + background-color: transparent; + color: #BAC3CF; + border-radius: 2px; } + .budgie-notification-window .drop-shadow, .budgie-osd-window .drop-shadow { + background-color: rgba(53, 57, 69, 0.95); } + +.budgie-notification, .budgie-osd, .budgie-switcher-window, .budgie-switcher { + background-color: rgba(53, 57, 69, 0.95); + color: #BAC3CF; } + .budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher-window .notification-title, .budgie-switcher .notification-title { + font-size: 110%; + color: #BAC3CF; } + .budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher-window .notification-body, .budgie-switcher .notification-body { + color: #BAC3CF; } + +.budgie-osd .budgie-osd-text { + font-size: 120%; } + +.budgie-switcher-window .drop-shadow { + margin: 8px 8px 16px; + border-radius: 2px; + background-color: rgba(53, 57, 69, 0.95); + box-shadow: rgba(0, 0, 0, 0.28); } + .budgie-switcher-window .drop-shadow label.budgie-switcher-title { + color: #BAC3CF; } + .budgie-switcher-window .drop-shadow label.budgie-switcher-title:dir(ltr) { + padding: 0 0 0 6px; } + .budgie-switcher-window .drop-shadow label.budgie-switcher-title:dir(rtl) { + padding: 0 6px 0 0; } + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 2px; + box-shadow: none; + background-color: #383C4A; } + .drop-shadow .linked > button, .drop-shadow .budgie-panel .linked > button { + border-radius: 2px; } + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 2px; + background-color: #383C4A; } + .budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 2px; } + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; } + +.budgie-session-dialog .linked.horizontal > button, .budgie-session-dialog .budgie-panel .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid #2b2e39; + border-radius: 0; } + .budgie-session-dialog .linked.horizontal > button:first-child, .budgie-session-dialog .budgie-panel .linked.horizontal > button:first-child { + border-bottom-left-radius: 2px; } + .budgie-session-dialog .linked.horizontal > button:last-child, .budgie-session-dialog .budgie-panel .linked.horizontal > button:last-child { + border-bottom-right-radius: 2px; } + +.budgie-polkit-dialog .message { + color: #D3DAE3; } + +.budgie-polkit-dialog .failure { + color: #F04A50; } + +.budgie-run-dialog { + background-color: #404552; + border-style: none; } + .budgie-run-dialog entry.search { + font-size: 120%; + box-shadow: none; + background-color: transparent; + border-style: none; + border-bottom: 1px solid #2b2e39; + border-radius: 1px; + padding-top: 6px; + padding-bottom: 6px; } + .budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list headerbar .subtitle, headerbar .budgie-run-dialog list .subtitle, + .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-osd .notification-body, .budgie-osd .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher-window .notification-body, .budgie-switcher-window .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body { + opacity: 1; } + .budgie-run-dialog scrolledwindow { + border-top: 1px solid #2b2e39; } diff --git a/theme/Budgie/gtk-3.0/thumbnail.png b/theme/Budgie/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..ba56cd0 Binary files /dev/null and b/theme/Budgie/gtk-3.0/thumbnail.png differ diff --git a/theme/Budgie/index.theme b/theme/Budgie/index.theme new file mode 100644 index 0000000..7f5fbfc --- /dev/null +++ b/theme/Budgie/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Arc-Dark +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Arc-Dark +MetacityTheme=Arc-Dark +IconTheme=gnome +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/theme/Budgie/metacity-1/button-bg.svg b/theme/Budgie/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/theme/Budgie/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/metacity-1/button-border.svg b/theme/Budgie/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/theme/Budgie/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/metacity-1/close-icon.svg b/theme/Budgie/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/theme/Budgie/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/metacity-1/max-icon.svg b/theme/Budgie/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/theme/Budgie/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/theme/Budgie/metacity-1/metacity-theme-1.xml b/theme/Budgie/metacity-1/metacity-theme-1.xml new file mode 100644 index 0000000..4cb97be --- /dev/null +++ b/theme/Budgie/metacity-1/metacity-theme-1.xml @@ -0,0 +1,762 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/theme/Budgie/metacity-1/metacity-theme-2.xml b/theme/Budgie/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..4cb97be --- /dev/null +++ b/theme/Budgie/metacity-1/metacity-theme-2.xml @@ -0,0 +1,762 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#afb8c6" /> +<constant name="C_title_unfocused" value="#8a939f" /> + +<constant name="C_wm_bg_focused" value="#2f343f" /> +<constant name="C_wm_bg_unfocused" value="#2f343f" /> + +<constant name="C_wm_highlight" value="#353a48" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="#cc575d" /> +<constant name="C_button_close_bg_hover" value="#d7787d" /> +<constant name="C_button_close_bg_active" value="#be3841" /> + +<constant name="C_icon_close_bg" value="#2f343f" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#454C5C" /> +<constant name="C_button_bg_active" value="#5294e2" /> + +<constant name="C_button_border_hover" value="#262932" /> + +<constant name="C_icon_bg_focused" value="#90939B" /> +<constant name="C_icon_bg_unfocused" value="#666A74" /> +<constant name="C_icon_bg_hover" value="#C4C7CC" /> +<constant name="C_icon_bg_active" value="#5294e2" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="3" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="3" right="3" top="0" bottom="0"/> + <aspect_ratio name="button" value="1.0" /> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="0" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/theme/Budgie/metacity-1/metacity-theme-3.xml b/theme/Budgie/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..6a0aeef --- /dev/null +++ b/theme/Budgie/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1016 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="gtk:custom(wm_title,#70788d)" /> +<constant name="C_title_unfocused" value="gtk:custom(wm_unfocused_title,#979dac)" /> + +<constant name="C_wm_bg_focused" value="gtk:custom(wm_bg,#e7e8eb)" /> +<constant name="C_wm_bg_unfocused" value="gtk:custom(wm_bg,#e7e8eb)" /> + +<constant name="C_wm_highlight" value="gtk:custom(wm_highlight,#eeeff1)" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(wm_button_close_bg,#f46067)" /> +<constant name="C_button_close_bg_hover" value="gtk:custom(wm_button_close_hover_bg,#f68086)" /> +<constant name="C_button_close_bg_active" value="gtk:custom(wm_button_close_active_bg,#f13039)" /> + +<constant name="C_icon_close_bg" value="gtk:custom(wm_icon_close_bg,#F8F8F9)" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="gtk:custom(wm_button_hover_bg,#fdfdfd)" /> +<constant name="C_button_bg_active" value="gtk:custom(wm_button_active_bg,#5294E2)" /> + +<constant name="C_button_border_hover" value="gtk:custom(wm_button_hover_border,#D1D3DA)" /> + +<constant name="C_icon_bg_focused" value="gtk:custom(wm_icon_bg,#90949E)" /> +<constant name="C_icon_bg_unfocused" value="gtk:custom(wm_icon_unfocused_bg,#B6B8C0)" /> +<constant name="C_icon_bg_hover" value="gtk:custom(wm_icon_hover_bg,#7A7F8B)" /> +<constant name="C_icon_bg_active" value="gtk:custom(wm_icon_active_bg,#ffffff)" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="0" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="1" parent="normal"> + <distance name="right_width" value="0" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="1" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="0" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/theme/Budgie/metacity-1/min-icon.svg b/theme/Budgie/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/theme/Budgie/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/theme/Budgie/metacity-1/thumbnail.png b/theme/Budgie/metacity-1/thumbnail.png new file mode 100644 index 0000000..cfd892d Binary files /dev/null and b/theme/Budgie/metacity-1/thumbnail.png differ diff --git a/theme/Budgie/plank/dock.theme b/theme/Budgie/plank/dock.theme new file mode 100644 index 0000000..4c77c81 --- /dev/null +++ b/theme/Budgie/plank/dock.theme @@ -0,0 +1,63 @@ +# Arc theme for Plank +# Author: Horst3180 +# Adapted from the default Plank theme + +[PlankDrawingTheme] +#The roundness of the top corners. +TopRoundness=2 +#The roundness of the bottom corners. +BottomRoundness=0 +#The thickness (in pixels) of lines drawn. +LineWidth=1 +#The color (RGBA) of the outer stroke. +OuterStrokeColor=22;;26;;38;;255 +#The starting color (RGBA) of the fill gradient. +FillStartColor=53;;57;;69;;242 +#The ending color (RGBA) of the fill gradient. +FillEndColor=53;;57;;69;;242 +#The color (RGBA) of the inner stroke. +InnerStrokeColor=53;;57;;69;;0 + +[PlankDrawingDockTheme] +#The padding on the left/right dock edges, in tenths of a percent of IconSize. +HorizPadding=1 +#The padding on the top dock edge, in tenths of a percent of IconSize. +TopPadding= 1 +#The padding on the bottom dock edge, in tenths of a percent of IconSize. +BottomPadding=1 +#The padding between items on the dock, in tenths of a percent of IconSize. +ItemPadding=2 +#The size of item indicators, in tenths of a percent of IconSize. +IndicatorSize=3 +#The size of the icon-shadow behind every item, in tenths of a percent of IconSize. +IconShadowSize=0 +#The height (in percent of IconSize) to bounce an icon when the application sets urgent. +UrgentBounceHeight=1.6666666666666667 +#The height (in percent of IconSize) to bounce an icon when launching an application. +LaunchBounceHeight=0.625 +#The opacity value (0 to 1) to fade the dock to when hiding it. +FadeOpacity=1 +#The amount of time (in ms) for click animations. +ClickTime=300 +#The amount of time (in ms) to bounce an urgent icon. +UrgentBounceTime=600 +#The amount of time (in ms) to bounce an icon when launching an application. +LaunchBounceTime=600 +#The amount of time (in ms) for active window indicator animations. +ActiveTime=300 +#The amount of time (in ms) to slide icons into/out of the dock. +SlideTime=300 +#The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). +FadeTime=250 +#The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). +HideTime=150 +#The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. +GlowSize=30 +#The total time (in ms) to show the hidden-dock urgent glow. +GlowTime=10000 +#The time (in ms) of each pulse of the hidden-dock urgent glow. +GlowPulseTime=2000 +#The hue-shift (-180 to 180) of the urgent indicator color. +UrgentHueShift=150 +#The time (in ms) to move an item to its new position or its addition/removal to/from the dock. +ItemMoveTime=450 diff --git a/theme/Budgie/unity/close.svg b/theme/Budgie/unity/close.svg new file mode 100644 index 0000000..4a82a49 --- /dev/null +++ b/theme/Budgie/unity/close.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#cc575d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_dash.svg b/theme/Budgie/unity/close_dash.svg new file mode 100644 index 0000000..2b484e8 --- /dev/null +++ b/theme/Budgie/unity/close_dash.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#cc575d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_dash_disabled.svg b/theme/Budgie/unity/close_dash_disabled.svg new file mode 100644 index 0000000..497574e --- /dev/null +++ b/theme/Budgie/unity/close_dash_disabled.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_dash_prelight.svg b/theme/Budgie/unity/close_dash_prelight.svg new file mode 100644 index 0000000..6d3238c --- /dev/null +++ b/theme/Budgie/unity/close_dash_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#d7787d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_dash_pressed.svg b/theme/Budgie/unity/close_dash_pressed.svg new file mode 100644 index 0000000..2af4093 --- /dev/null +++ b/theme/Budgie/unity/close_dash_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#be3841;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_focused_normal.svg b/theme/Budgie/unity/close_focused_normal.svg new file mode 100644 index 0000000..4a82a49 --- /dev/null +++ b/theme/Budgie/unity/close_focused_normal.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#cc575d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_focused_prelight.svg b/theme/Budgie/unity/close_focused_prelight.svg new file mode 100644 index 0000000..852b85a --- /dev/null +++ b/theme/Budgie/unity/close_focused_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#d7787d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_focused_pressed.svg b/theme/Budgie/unity/close_focused_pressed.svg new file mode 100644 index 0000000..349692a --- /dev/null +++ b/theme/Budgie/unity/close_focused_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#be3841;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_unfocused.svg b/theme/Budgie/unity/close_unfocused.svg new file mode 100644 index 0000000..1138c36 --- /dev/null +++ b/theme/Budgie/unity/close_unfocused.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_unfocused_prelight.svg b/theme/Budgie/unity/close_unfocused_prelight.svg new file mode 100644 index 0000000..852b85a --- /dev/null +++ b/theme/Budgie/unity/close_unfocused_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#d7787d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/close_unfocused_pressed.svg b/theme/Budgie/unity/close_unfocused_pressed.svg new file mode 100644 index 0000000..349692a --- /dev/null +++ b/theme/Budgie/unity/close_unfocused_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#be3841;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/close_dash.svg b/theme/Budgie/unity/dash/close_dash.svg new file mode 100644 index 0000000..2b484e8 --- /dev/null +++ b/theme/Budgie/unity/dash/close_dash.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#cc575d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/close_dash_disabled.svg b/theme/Budgie/unity/dash/close_dash_disabled.svg new file mode 100644 index 0000000..497574e --- /dev/null +++ b/theme/Budgie/unity/dash/close_dash_disabled.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/close_dash_prelight.svg b/theme/Budgie/unity/dash/close_dash_prelight.svg new file mode 100644 index 0000000..6d3238c --- /dev/null +++ b/theme/Budgie/unity/dash/close_dash_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#d7787d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/close_dash_pressed.svg b/theme/Budgie/unity/dash/close_dash_pressed.svg new file mode 100644 index 0000000..2af4093 --- /dev/null +++ b/theme/Budgie/unity/dash/close_dash_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#be3841;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/maximize_dash.svg b/theme/Budgie/unity/dash/maximize_dash.svg new file mode 100644 index 0000000..f739283 --- /dev/null +++ b/theme/Budgie/unity/dash/maximize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/maximize_dash_disabled.svg b/theme/Budgie/unity/dash/maximize_dash_disabled.svg new file mode 100644 index 0000000..a01a3ec --- /dev/null +++ b/theme/Budgie/unity/dash/maximize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/maximize_dash_prelight.svg b/theme/Budgie/unity/dash/maximize_dash_prelight.svg new file mode 100644 index 0000000..09e1d2d --- /dev/null +++ b/theme/Budgie/unity/dash/maximize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/maximize_dash_pressed.svg b/theme/Budgie/unity/dash/maximize_dash_pressed.svg new file mode 100644 index 0000000..5f09b02 --- /dev/null +++ b/theme/Budgie/unity/dash/maximize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="5.2618001" + inkscape:cy="4.6396105" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/minimize_dash.svg b/theme/Budgie/unity/dash/minimize_dash.svg new file mode 100644 index 0000000..e25d5be --- /dev/null +++ b/theme/Budgie/unity/dash/minimize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/minimize_dash_disabled.svg b/theme/Budgie/unity/dash/minimize_dash_disabled.svg new file mode 100644 index 0000000..1b90e96 --- /dev/null +++ b/theme/Budgie/unity/dash/minimize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/minimize_dash_prelight.svg b/theme/Budgie/unity/dash/minimize_dash_prelight.svg new file mode 100644 index 0000000..7150ada --- /dev/null +++ b/theme/Budgie/unity/dash/minimize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c4c7cc;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/dash/minimize_dash_pressed.svg b/theme/Budgie/unity/dash/minimize_dash_pressed.svg new file mode 100644 index 0000000..72a57f0 --- /dev/null +++ b/theme/Budgie/unity/dash/minimize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="4.8956836" + inkscape:cy="9.0696203" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_ltr_19.svg b/theme/Budgie/unity/launcher_arrow_ltr_19.svg new file mode 100644 index 0000000..957b03b --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_ltr_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_ltr_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#828282" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="-0.75898517" + inkscape:cy="9.0594719" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1275" + inkscape:window-height="630" + inkscape:window-x="49" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.90196079" + id="rect3338" + width="2" + height="17" + x="2" + y="1034.3622" + ry="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_ltr_37.svg b/theme/Budgie/unity/launcher_arrow_ltr_37.svg new file mode 100644 index 0000000..c2c2ec7 --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_ltr_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_ltr_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#828282" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="1.4637299" + inkscape:cy="12.768116" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="33.000019" + x="4" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_outline_ltr_19.svg b/theme/Budgie/unity/launcher_arrow_outline_ltr_19.svg new file mode 100644 index 0000000..b475ca0 --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_outline_ltr_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_ltr_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="1.149139" + inkscape:cy="8.9402141" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.4" + id="rect3338" + width="2" + height="17" + x="2" + y="1034.3622" + ry="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_outline_ltr_37.svg b/theme/Budgie/unity/launcher_arrow_outline_ltr_37.svg new file mode 100644 index 0000000..52e736c --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_outline_ltr_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_ltr_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="8.2254385" + inkscape:cy="5.6970486" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="opacity:0.4;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="33.000019" + x="4" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_outline_rtl_19.svg b/theme/Budgie/unity/launcher_arrow_outline_rtl_19.svg new file mode 100644 index 0000000..9c28495 --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_outline_rtl_19.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_rtl_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="-2.1423752" + inkscape:cy="8.8448079" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="opacity:0.4;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="17" + x="6" + y="1034.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_outline_rtl_37.svg b/theme/Budgie/unity/launcher_arrow_outline_rtl_37.svg new file mode 100644 index 0000000..0bfb365 --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_outline_rtl_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_rtl_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="8.2254385" + inkscape:cy="5.6970486" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.4" + id="rect3338" + width="4" + height="33.000019" + x="12" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_rtl_19.svg b/theme/Budgie/unity/launcher_arrow_rtl_19.svg new file mode 100644 index 0000000..ae9337d --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_rtl_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_rtl_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="-4.2413119" + inkscape:cy="9.0594719" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="17" + x="6" + y="1034.3622" + ry="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_arrow_rtl_37.svg b/theme/Budgie/unity/launcher_arrow_rtl_37.svg new file mode 100644 index 0000000..f592c52 --- /dev/null +++ b/theme/Budgie/unity/launcher_arrow_rtl_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_rtl_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="1.4637299" + inkscape:cy="5.6970486" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="33.000019" + x="12" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_back_150.svg b/theme/Budgie/unity/launcher_icon_back_150.svg new file mode 100644 index 0000000..66ec310 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_back_150.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_back_150.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview10" + showgrid="true" + inkscape:zoom="2.2250293" + inkscape:cx="36.35956" + inkscape:cy="127.34179" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2989" /> + </sodipodi:namedview> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 440,80.683594 c -1.84957,0 -3.31641,1.466834 -3.31641,3.316406 l 0,44 c 0,1.84957 1.46684,3.31641 3.31641,3.31641 l 44,0 c 1.84957,0 3.31641,-1.46684 3.31641,-3.31641 l 0,-44 c 0,-1.849572 -1.46684,-3.316406 -3.31641,-3.316406 l -44,0 z" + id="path8" /> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_back_54.svg b/theme/Budgie/unity/launcher_icon_back_54.svg new file mode 100644 index 0000000..dc539ea --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_back_54.svg @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_back_54.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6" /> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview4" + showgrid="true" + inkscape:zoom="17.481481" + inkscape:cx="26.660864" + inkscape:cy="43.535494" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid2985" /> + </sodipodi:namedview> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_edge_150.svg b/theme/Budgie/unity/launcher_icon_edge_150.svg new file mode 100644 index 0000000..a842a47 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_edge_150.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_edge_150.svg"> + <metadata + id="metadata16"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview14" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:zoom="3.1466667" + inkscape:cx="43.369154" + inkscape:cy="69.620822" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2993" /> + </sodipodi:namedview> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 440,80.683594 c -1.84957,0 -3.31641,1.466834 -3.31641,3.316406 l 0,44 c 0,1.84957 1.46684,3.31641 3.31641,3.31641 l 44,0 c 1.84957,0 3.31641,-1.46684 3.31641,-3.31641 l 0,-44 c 0,-1.849572 -1.46684,-3.316406 -3.31641,-3.316406 l -44,0 z" + id="path8" /> + </clipPath> + <clipPath + id="clipPath10"> + <rect + y="316" + x="353" + height="148" + width="148" + opacity="0.8" + fill="#ff00ff" + color="#000000" + rx="12" + id="rect12" /> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_edge_54.svg b/theme/Budgie/unity/launcher_icon_edge_54.svg new file mode 100644 index 0000000..8d133af --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_edge_54.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_edge_54.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview10" + showgrid="true" + inkscape:zoom="24.722548" + inkscape:cx="10.242601" + inkscape:cy="56.465656" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid3757" /> + </sodipodi:namedview> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 440,81.001953 c -1.67866,0 -2.99805,1.319387 -2.99805,2.998047 l 0,44 c 0,1.67866 1.31939,2.99805 2.99805,2.99805 l 44,0 c 1.67866,0 2.99805,-1.31939 2.99805,-2.99805 l 0,-44 c 0,-1.67866 -1.31939,-2.998047 -2.99805,-2.998047 l -44,0 z" + id="path8" /> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_glow_200.svg b/theme/Budgie/unity/launcher_icon_glow_200.svg new file mode 100644 index 0000000..01bb0d9 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_glow_200.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200.00001 200.00003"> + <defs> + <clipPath> + <path d="m 427.33333,22.026666 0,69.333333 69.33333,0 0,-69.333333 -69.33333,0 z m 13.11917,9.013333 43.095,0 c 2.27623,0 4.10583,1.829606 4.10583,4.105834 l 0,43.094999 c 0,2.276228 -1.8296,4.105834 -4.10583,4.105834 l -43.095,0 c -2.27623,0 -4.10583,-1.829606 -4.10583,-4.105834 l 0,-43.094999 c 0,-2.276228 1.8296,-4.105834 4.10583,-4.105834 z"/> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_glow_62.svg b/theme/Budgie/unity/launcher_icon_glow_62.svg new file mode 100644 index 0000000..105b068 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_glow_62.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62.000001"> + <defs> + <clipPath> + <path d="m 1,25 0,62 62,0 0,-62 -62,0 z m 9,6 44,0 c 1.662,0 3,1.338 3,3 l 0,44 c 0,1.662 -1.338,3 -3,3 L 10,81 C 8.338,81 7,79.662 7,78 L 7,34 c 0,-1.662 1.338,-3 3,-3 z"/> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_selected_back_150.svg b/theme/Budgie/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 0000000..424c299 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,96 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + 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="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_selected_back_150.svg"> + <metadata + id="metadata16"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview14" + showgrid="true" + inkscape:zoom="1.1125147" + inkscape:cx="-204.38973" + inkscape:cy="91.79881" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2993" /> + </sodipodi:namedview> + <defs + id="defs4"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4138" /> + </linearGradient> + <clipPath + id="clipPath6"> + <rect + y="1040.22" + x="505" + height="150" + width="150" + opacity="0.2" + fill-rule="evenodd" + color="#000000" + rx="42" + id="rect8" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4140" + x1="75" + y1="1" + x2="75" + y2="148" + gradientUnits="userSpaceOnUse" /> + </defs> + <rect + style="fill:url(#linearGradient4140);fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" + id="rect2995" + width="148" + height="147" + x="1" + y="1" + transform="translate(-1e-5,0)" + ry="1" /> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_selected_back_54.svg b/theme/Budgie/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 0000000..0e1b983 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + 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="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_selected_back_54.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4136" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4138" + x1="27" + y1="1" + x2="27" + y2="52" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview4" + showgrid="true" + inkscape:zoom="8.7407407" + inkscape:cx="11.220234" + inkscape:cy="23.327385" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2985" /> + </sodipodi:namedview> + <rect + style="opacity:1;fill:url(#linearGradient4138);fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" + id="rect2987" + width="52" + height="51" + x="1" + y="1" + ry="1" /> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_shadow_200.svg b/theme/Budgie/unity/launcher_icon_shadow_200.svg new file mode 100644 index 0000000..9e68b14 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_shadow_200.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200.00001 200.00003"> + <defs> + <clipPath> + <path d="m 489.73333,21.333331 0,69.333332 69.33333,0 0,-69.333332 -69.33333,0 z m 13.11917,9.013334 43.095,0 c 2.27623,0 4.10583,1.829606 4.10583,4.105833 l 0,43.094999 c 0,2.276227 -1.8296,4.105833 -4.10583,4.105833 l -43.095,0 c -2.27623,0 -4.10583,-1.829606 -4.10583,-4.105833 l 0,-43.094999 c 0,-2.276227 1.8296,-4.105833 4.10583,-4.105833 z"/> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_shadow_62.svg b/theme/Budgie/unity/launcher_icon_shadow_62.svg new file mode 100644 index 0000000..9bc9c12 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_shadow_62.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="62" + height="62" + viewBox="0 0 61.999999 62.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_shadow_62.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview10" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:zoom="10.766271" + inkscape:cx="46.152641" + inkscape:cy="12.729335" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" /> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 4,24 c -2.216,0 -4,1.784 -4,4 l 0,56 c 0,2.216 1.784,4 4,4 l 56,0 c 2.216,0 4,-1.784 4,-4 l 0,-56 c 0,-2.216 -1.784,-4 -4,-4 L 4,24 z m 6,6 44,0 c 2.216,0 4,1.784 4,4 l 0,44 c 0,2.216 -1.784,4 -4,4 L 10,82 C 7.784,82 6,80.216 6,78 L 6,34 c 0,-2.216 1.784,-4 4,-4 z" + id="path8" /> + </clipPath> + </defs> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_shine_150.svg b/theme/Budgie/unity/launcher_icon_shine_150.svg new file mode 100644 index 0000000..a456296 --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_shine_150.svg @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_shine_150.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6" /> + <sodipodi:namedview + pagecolor="#6e6e6e" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0.90588235" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview4" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:zoom="17.800235" + inkscape:cx="26.229204" + inkscape:cy="7.3679574" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2985" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> +</svg> diff --git a/theme/Budgie/unity/launcher_icon_shine_54.svg b/theme/Budgie/unity/launcher_icon_shine_54.svg new file mode 100644 index 0000000..a793abc --- /dev/null +++ b/theme/Budgie/unity/launcher_icon_shine_54.svg @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns: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="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_shine_54.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6"> + <linearGradient + inkscape:collect="always" + id="linearGradient3762"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3764" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3766" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3762" + id="linearGradient3768" + x1="0" + y1="27" + x2="2.999999" + y2="27" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0,-1,1,0,0,54)" /> + </defs> + <sodipodi:namedview + pagecolor="#000000" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0.67843137" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview4" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:zoom="8.7407407" + inkscape:cx="27.214228" + inkscape:cy="18.946249" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid3753" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> +</svg> diff --git a/theme/Budgie/unity/launcher_pip_ltr_19.svg b/theme/Budgie/unity/launcher_pip_ltr_19.svg new file mode 100644 index 0000000..34b1757 --- /dev/null +++ b/theme/Budgie/unity/launcher_pip_ltr_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_ltr_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="15.178831" + inkscape:cx="2.3818874" + inkscape:cy="5.0805669" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="648" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="3.0000174" + x="2" + y="1041.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_pip_ltr_37.svg b/theme/Budgie/unity/launcher_pip_ltr_37.svg new file mode 100644 index 0000000..d8dc422 --- /dev/null +++ b/theme/Budgie/unity/launcher_pip_ltr_37.svg @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_ltr_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="-7.5475486" + inkscape:cy="14.518805" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true" + inkscape:snap-nodes="false"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + rx="3.0675728e-06" + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="5.0000172" + x="4" + y="1031.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_pip_rtl_19.svg b/theme/Budgie/unity/launcher_pip_rtl_19.svg new file mode 100644 index 0000000..3194b73 --- /dev/null +++ b/theme/Budgie/unity/launcher_pip_rtl_19.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_rtl_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="0.4532629" + inkscape:cy="12.759685" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true" + inkscape:snap-nodes="false"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="3.0000174" + x="6" + y="1041.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/theme/Budgie/unity/launcher_pip_rtl_37.svg b/theme/Budgie/unity/launcher_pip_rtl_37.svg new file mode 100644 index 0000000..461250f --- /dev/null +++ b/theme/Budgie/unity/launcher_pip_rtl_37.svg @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_rtl_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="3.9744094" + inkscape:cy="10.722806" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true" + inkscape:snap-nodes="false"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + rx="3.0675728e-06" + style="fill:#ffffff;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="5.0000172" + x="12" + y="1031.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize.svg b/theme/Budgie/unity/maximize.svg new file mode 100644 index 0000000..e2036d7 --- /dev/null +++ b/theme/Budgie/unity/maximize.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_dash.svg b/theme/Budgie/unity/maximize_dash.svg new file mode 100644 index 0000000..f739283 --- /dev/null +++ b/theme/Budgie/unity/maximize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_dash_disabled.svg b/theme/Budgie/unity/maximize_dash_disabled.svg new file mode 100644 index 0000000..a01a3ec --- /dev/null +++ b/theme/Budgie/unity/maximize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_dash_prelight.svg b/theme/Budgie/unity/maximize_dash_prelight.svg new file mode 100644 index 0000000..09e1d2d --- /dev/null +++ b/theme/Budgie/unity/maximize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_dash_pressed.svg b/theme/Budgie/unity/maximize_dash_pressed.svg new file mode 100644 index 0000000..5f09b02 --- /dev/null +++ b/theme/Budgie/unity/maximize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="5.2618001" + inkscape:cy="4.6396105" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_focused_normal.svg b/theme/Budgie/unity/maximize_focused_normal.svg new file mode 100644 index 0000000..e2036d7 --- /dev/null +++ b/theme/Budgie/unity/maximize_focused_normal.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_focused_prelight.svg b/theme/Budgie/unity/maximize_focused_prelight.svg new file mode 100644 index 0000000..9be9958 --- /dev/null +++ b/theme/Budgie/unity/maximize_focused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_focused_pressed.svg b/theme/Budgie/unity/maximize_focused_pressed.svg new file mode 100644 index 0000000..fb686b1 --- /dev/null +++ b/theme/Budgie/unity/maximize_focused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_unfocused.svg b/theme/Budgie/unity/maximize_unfocused.svg new file mode 100644 index 0000000..02a2711 --- /dev/null +++ b/theme/Budgie/unity/maximize_unfocused.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_unfocused_prelight.svg b/theme/Budgie/unity/maximize_unfocused_prelight.svg new file mode 100644 index 0000000..9be9958 --- /dev/null +++ b/theme/Budgie/unity/maximize_unfocused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/maximize_unfocused_pressed.svg b/theme/Budgie/unity/maximize_unfocused_pressed.svg new file mode 100644 index 0000000..fb686b1 --- /dev/null +++ b/theme/Budgie/unity/maximize_unfocused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize.svg b/theme/Budgie/unity/minimize.svg new file mode 100644 index 0000000..480c900 --- /dev/null +++ b/theme/Budgie/unity/minimize.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_dash.svg b/theme/Budgie/unity/minimize_dash.svg new file mode 100644 index 0000000..e25d5be --- /dev/null +++ b/theme/Budgie/unity/minimize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_dash_disabled.svg b/theme/Budgie/unity/minimize_dash_disabled.svg new file mode 100644 index 0000000..1b90e96 --- /dev/null +++ b/theme/Budgie/unity/minimize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_dash_prelight.svg b/theme/Budgie/unity/minimize_dash_prelight.svg new file mode 100644 index 0000000..7150ada --- /dev/null +++ b/theme/Budgie/unity/minimize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c4c7cc;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_dash_pressed.svg b/theme/Budgie/unity/minimize_dash_pressed.svg new file mode 100644 index 0000000..72a57f0 --- /dev/null +++ b/theme/Budgie/unity/minimize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="4.8956836" + inkscape:cy="9.0696203" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_focused_normal.svg b/theme/Budgie/unity/minimize_focused_normal.svg new file mode 100644 index 0000000..480c900 --- /dev/null +++ b/theme/Budgie/unity/minimize_focused_normal.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_focused_prelight.svg b/theme/Budgie/unity/minimize_focused_prelight.svg new file mode 100644 index 0000000..d029d16 --- /dev/null +++ b/theme/Budgie/unity/minimize_focused_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c4c7cc;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_focused_pressed.svg b/theme/Budgie/unity/minimize_focused_pressed.svg new file mode 100644 index 0000000..21645b1 --- /dev/null +++ b/theme/Budgie/unity/minimize_focused_pressed.svg @@ -0,0 +1,260 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4172" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4169" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4171" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4174" + x1="89.0002" + y1="974" + x2="89.0002" + y2="976" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="-0.56721978" + inkscape:cy="13.766373" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_unfocused.svg b/theme/Budgie/unity/minimize_unfocused.svg new file mode 100644 index 0000000..a802efc --- /dev/null +++ b/theme/Budgie/unity/minimize_unfocused.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_unfocused_prelight.svg b/theme/Budgie/unity/minimize_unfocused_prelight.svg new file mode 100644 index 0000000..d029d16 --- /dev/null +++ b/theme/Budgie/unity/minimize_unfocused_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c4c7cc;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/minimize_unfocused_pressed.svg b/theme/Budgie/unity/minimize_unfocused_pressed.svg new file mode 100644 index 0000000..21645b1 --- /dev/null +++ b/theme/Budgie/unity/minimize_unfocused_pressed.svg @@ -0,0 +1,260 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4172" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4169" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4171" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4174" + x1="89.0002" + y1="974" + x2="89.0002" + y2="976" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="-0.56721978" + inkscape:cy="13.766373" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/sheet_style_close_focused.svg b/theme/Budgie/unity/sheet_style_close_focused.svg new file mode 100644 index 0000000..4a82a49 --- /dev/null +++ b/theme/Budgie/unity/sheet_style_close_focused.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#cc575d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/sheet_style_close_focused_prelight.svg b/theme/Budgie/unity/sheet_style_close_focused_prelight.svg new file mode 100644 index 0000000..852b85a --- /dev/null +++ b/theme/Budgie/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#d7787d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/sheet_style_close_focused_pressed.svg b/theme/Budgie/unity/sheet_style_close_focused_pressed.svg new file mode 100644 index 0000000..1138c36 --- /dev/null +++ b/theme/Budgie/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize.svg b/theme/Budgie/unity/unmaximize.svg new file mode 100644 index 0000000..e2036d7 --- /dev/null +++ b/theme/Budgie/unity/unmaximize.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_dash.svg b/theme/Budgie/unity/unmaximize_dash.svg new file mode 100644 index 0000000..f739283 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_dash_disabled.svg b/theme/Budgie/unity/unmaximize_dash_disabled.svg new file mode 100644 index 0000000..a01a3ec --- /dev/null +++ b/theme/Budgie/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_dash_prelight.svg b/theme/Budgie/unity/unmaximize_dash_prelight.svg new file mode 100644 index 0000000..09e1d2d --- /dev/null +++ b/theme/Budgie/unity/unmaximize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_dash_pressed.svg b/theme/Budgie/unity/unmaximize_dash_pressed.svg new file mode 100644 index 0000000..5f09b02 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="5.2618001" + inkscape:cy="4.6396105" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_focused_normal.svg b/theme/Budgie/unity/unmaximize_focused_normal.svg new file mode 100644 index 0000000..e2036d7 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_focused_normal.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_focused_prelight.svg b/theme/Budgie/unity/unmaximize_focused_prelight.svg new file mode 100644 index 0000000..9be9958 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_focused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_focused_pressed.svg b/theme/Budgie/unity/unmaximize_focused_pressed.svg new file mode 100644 index 0000000..fb686b1 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_focused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_unfocused.svg b/theme/Budgie/unity/unmaximize_unfocused.svg new file mode 100644 index 0000000..02a2711 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_unfocused.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_unfocused_prelight.svg b/theme/Budgie/unity/unmaximize_unfocused_prelight.svg new file mode 100644 index 0000000..9be9958 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/unmaximize_unfocused_pressed.svg b/theme/Budgie/unity/unmaximize_unfocused_pressed.svg new file mode 100644 index 0000000..fb686b1 --- /dev/null +++ b/theme/Budgie/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/close.svg b/theme/Budgie/unity/window-buttons/close.svg new file mode 100644 index 0000000..4a82a49 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/close.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#cc575d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/close_prelight.svg b/theme/Budgie/unity/window-buttons/close_prelight.svg new file mode 100644 index 0000000..852b85a --- /dev/null +++ b/theme/Budgie/unity/window-buttons/close_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#d7787d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/close_pressed.svg b/theme/Budgie/unity/window-buttons/close_pressed.svg new file mode 100644 index 0000000..349692a --- /dev/null +++ b/theme/Budgie/unity/window-buttons/close_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#be3841;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/close_unfocused.svg b/theme/Budgie/unity/window-buttons/close_unfocused.svg new file mode 100644 index 0000000..1138c36 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/close_unfocused.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/maximize.svg b/theme/Budgie/unity/window-buttons/maximize.svg new file mode 100644 index 0000000..e2036d7 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/maximize.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/maximize_prelight.svg b/theme/Budgie/unity/window-buttons/maximize_prelight.svg new file mode 100644 index 0000000..9be9958 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/maximize_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/maximize_pressed.svg b/theme/Budgie/unity/window-buttons/maximize_pressed.svg new file mode 100644 index 0000000..fb686b1 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/maximize_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#c4c7cc;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/maximize_unfocused.svg b/theme/Budgie/unity/window-buttons/maximize_unfocused.svg new file mode 100644 index 0000000..02a2711 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/maximize_unfocused.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/minimize.svg b/theme/Budgie/unity/window-buttons/minimize.svg new file mode 100644 index 0000000..480c900 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/minimize.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/minimize_prelight.svg b/theme/Budgie/unity/window-buttons/minimize_prelight.svg new file mode 100644 index 0000000..d029d16 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/minimize_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c4c7cc;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/minimize_pressed.svg b/theme/Budgie/unity/window-buttons/minimize_pressed.svg new file mode 100644 index 0000000..21645b1 --- /dev/null +++ b/theme/Budgie/unity/window-buttons/minimize_pressed.svg @@ -0,0 +1,260 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#ffffffgit;stop-opacity:1;" + offset="0" + id="stop4172" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#5294e2;stop-opacity:1;" + offset="0" + id="stop4169" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4171" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4174" + x1="89.0002" + y1="974" + x2="89.0002" + y2="976" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="-0.56721978" + inkscape:cy="13.766373" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/unity/window-buttons/minimize_unfocused.svg b/theme/Budgie/unity/window-buttons/minimize_unfocused.svg new file mode 100644 index 0000000..a802efc --- /dev/null +++ b/theme/Budgie/unity/window-buttons/minimize_unfocused.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <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="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/theme/Budgie/xfwm4/bottom-active.png b/theme/Budgie/xfwm4/bottom-active.png new file mode 100644 index 0000000..8af0600 Binary files /dev/null and b/theme/Budgie/xfwm4/bottom-active.png differ diff --git a/theme/Budgie/xfwm4/bottom-inactive.png b/theme/Budgie/xfwm4/bottom-inactive.png new file mode 100644 index 0000000..8af0600 Binary files /dev/null and b/theme/Budgie/xfwm4/bottom-inactive.png differ diff --git a/theme/Budgie/xfwm4/bottom-left-active.png b/theme/Budgie/xfwm4/bottom-left-active.png new file mode 100644 index 0000000..79145d8 Binary files /dev/null and b/theme/Budgie/xfwm4/bottom-left-active.png differ diff --git a/theme/Budgie/xfwm4/bottom-left-inactive.png b/theme/Budgie/xfwm4/bottom-left-inactive.png new file mode 100644 index 0000000..79145d8 Binary files /dev/null and b/theme/Budgie/xfwm4/bottom-left-inactive.png differ diff --git a/theme/Budgie/xfwm4/bottom-right-active.png b/theme/Budgie/xfwm4/bottom-right-active.png new file mode 100644 index 0000000..a22b3fd Binary files /dev/null and b/theme/Budgie/xfwm4/bottom-right-active.png differ diff --git a/theme/Budgie/xfwm4/bottom-right-inactive.png b/theme/Budgie/xfwm4/bottom-right-inactive.png new file mode 100644 index 0000000..a22b3fd Binary files /dev/null and b/theme/Budgie/xfwm4/bottom-right-inactive.png differ diff --git a/theme/Budgie/xfwm4/close-active.png b/theme/Budgie/xfwm4/close-active.png new file mode 100644 index 0000000..dfb05bd Binary files /dev/null and b/theme/Budgie/xfwm4/close-active.png differ diff --git a/theme/Budgie/xfwm4/close-inactive.png b/theme/Budgie/xfwm4/close-inactive.png new file mode 100644 index 0000000..5255935 Binary files /dev/null and b/theme/Budgie/xfwm4/close-inactive.png differ diff --git a/theme/Budgie/xfwm4/close-prelight.png b/theme/Budgie/xfwm4/close-prelight.png new file mode 100644 index 0000000..418f188 Binary files /dev/null and b/theme/Budgie/xfwm4/close-prelight.png differ diff --git a/theme/Budgie/xfwm4/close-pressed.png b/theme/Budgie/xfwm4/close-pressed.png new file mode 100644 index 0000000..9a83b88 Binary files /dev/null and b/theme/Budgie/xfwm4/close-pressed.png differ diff --git a/theme/Budgie/xfwm4/hide-active.png b/theme/Budgie/xfwm4/hide-active.png new file mode 100644 index 0000000..85f7b53 Binary files /dev/null and b/theme/Budgie/xfwm4/hide-active.png differ diff --git a/theme/Budgie/xfwm4/hide-inactive.png b/theme/Budgie/xfwm4/hide-inactive.png new file mode 100644 index 0000000..3879b3d Binary files /dev/null and b/theme/Budgie/xfwm4/hide-inactive.png differ diff --git a/theme/Budgie/xfwm4/hide-prelight.png b/theme/Budgie/xfwm4/hide-prelight.png new file mode 100644 index 0000000..328b893 Binary files /dev/null and b/theme/Budgie/xfwm4/hide-prelight.png differ diff --git a/theme/Budgie/xfwm4/hide-pressed.png b/theme/Budgie/xfwm4/hide-pressed.png new file mode 100644 index 0000000..cd22f07 Binary files /dev/null and b/theme/Budgie/xfwm4/hide-pressed.png differ diff --git a/theme/Budgie/xfwm4/left-active.png b/theme/Budgie/xfwm4/left-active.png new file mode 100644 index 0000000..9ed4f50 Binary files /dev/null and b/theme/Budgie/xfwm4/left-active.png differ diff --git a/theme/Budgie/xfwm4/left-inactive.png b/theme/Budgie/xfwm4/left-inactive.png new file mode 100644 index 0000000..9ed4f50 Binary files /dev/null and b/theme/Budgie/xfwm4/left-inactive.png differ diff --git a/theme/Budgie/xfwm4/maximize-active.png b/theme/Budgie/xfwm4/maximize-active.png new file mode 100644 index 0000000..1a9cf09 Binary files /dev/null and b/theme/Budgie/xfwm4/maximize-active.png differ diff --git a/theme/Budgie/xfwm4/maximize-inactive.png b/theme/Budgie/xfwm4/maximize-inactive.png new file mode 100644 index 0000000..ea984d7 Binary files /dev/null and b/theme/Budgie/xfwm4/maximize-inactive.png differ diff --git a/theme/Budgie/xfwm4/maximize-prelight.png b/theme/Budgie/xfwm4/maximize-prelight.png new file mode 100644 index 0000000..9758e01 Binary files /dev/null and b/theme/Budgie/xfwm4/maximize-prelight.png differ diff --git a/theme/Budgie/xfwm4/maximize-pressed.png b/theme/Budgie/xfwm4/maximize-pressed.png new file mode 100644 index 0000000..2239495 Binary files /dev/null and b/theme/Budgie/xfwm4/maximize-pressed.png differ diff --git a/theme/Budgie/xfwm4/menu-active.png b/theme/Budgie/xfwm4/menu-active.png new file mode 100644 index 0000000..81ead23 Binary files /dev/null and b/theme/Budgie/xfwm4/menu-active.png differ diff --git a/theme/Budgie/xfwm4/menu-inactive.png b/theme/Budgie/xfwm4/menu-inactive.png new file mode 100644 index 0000000..81ead23 Binary files /dev/null and b/theme/Budgie/xfwm4/menu-inactive.png differ diff --git a/theme/Budgie/xfwm4/menu-pressed.png b/theme/Budgie/xfwm4/menu-pressed.png new file mode 100644 index 0000000..81ead23 Binary files /dev/null and b/theme/Budgie/xfwm4/menu-pressed.png differ diff --git a/theme/Budgie/xfwm4/right-active.png b/theme/Budgie/xfwm4/right-active.png new file mode 100644 index 0000000..9ed4f50 Binary files /dev/null and b/theme/Budgie/xfwm4/right-active.png differ diff --git a/theme/Budgie/xfwm4/right-inactive.png b/theme/Budgie/xfwm4/right-inactive.png new file mode 100644 index 0000000..9ed4f50 Binary files /dev/null and b/theme/Budgie/xfwm4/right-inactive.png differ diff --git a/theme/Budgie/xfwm4/shade-active.png b/theme/Budgie/xfwm4/shade-active.png new file mode 100644 index 0000000..61bbbb8 Binary files /dev/null and b/theme/Budgie/xfwm4/shade-active.png differ diff --git a/theme/Budgie/xfwm4/shade-inactive.png b/theme/Budgie/xfwm4/shade-inactive.png new file mode 100644 index 0000000..8e75779 Binary files /dev/null and b/theme/Budgie/xfwm4/shade-inactive.png differ diff --git a/theme/Budgie/xfwm4/shade-pressed.png b/theme/Budgie/xfwm4/shade-pressed.png new file mode 100644 index 0000000..9112cb9 Binary files /dev/null and b/theme/Budgie/xfwm4/shade-pressed.png differ diff --git a/theme/Budgie/xfwm4/stick-active.png b/theme/Budgie/xfwm4/stick-active.png new file mode 100644 index 0000000..d99a948 Binary files /dev/null and b/theme/Budgie/xfwm4/stick-active.png differ diff --git a/theme/Budgie/xfwm4/stick-inactive.png b/theme/Budgie/xfwm4/stick-inactive.png new file mode 100644 index 0000000..04445ac Binary files /dev/null and b/theme/Budgie/xfwm4/stick-inactive.png differ diff --git a/theme/Budgie/xfwm4/stick-pressed.png b/theme/Budgie/xfwm4/stick-pressed.png new file mode 100644 index 0000000..7ab1734 Binary files /dev/null and b/theme/Budgie/xfwm4/stick-pressed.png differ diff --git a/theme/Budgie/xfwm4/themerc b/theme/Budgie/xfwm4/themerc new file mode 100644 index 0000000..f7fd498 --- /dev/null +++ b/theme/Budgie/xfwm4/themerc @@ -0,0 +1,23 @@ +button_offset=2 +button_spacing=4 + +show_app_icon=true + +full_width_title=true + +title_shadow_active=false +title_shadow_inactive=false + +title_horizontal_offset=3 + +active_text_color=#afb8c5 +active_text_shadow_color=#2f343b + +inactive_text_color=#808791 +inactive_text_shadow_color=#2f343b + +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=40 diff --git a/theme/Budgie/xfwm4/title-1-active.png b/theme/Budgie/xfwm4/title-1-active.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-1-active.png differ diff --git a/theme/Budgie/xfwm4/title-1-inactive.png b/theme/Budgie/xfwm4/title-1-inactive.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-1-inactive.png differ diff --git a/theme/Budgie/xfwm4/title-2-active.png b/theme/Budgie/xfwm4/title-2-active.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-2-active.png differ diff --git a/theme/Budgie/xfwm4/title-2-inactive.png b/theme/Budgie/xfwm4/title-2-inactive.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-2-inactive.png differ diff --git a/theme/Budgie/xfwm4/title-3-active.png b/theme/Budgie/xfwm4/title-3-active.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-3-active.png differ diff --git a/theme/Budgie/xfwm4/title-3-inactive.png b/theme/Budgie/xfwm4/title-3-inactive.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-3-inactive.png differ diff --git a/theme/Budgie/xfwm4/title-4-active.png b/theme/Budgie/xfwm4/title-4-active.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-4-active.png differ diff --git a/theme/Budgie/xfwm4/title-4-inactive.png b/theme/Budgie/xfwm4/title-4-inactive.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-4-inactive.png differ diff --git a/theme/Budgie/xfwm4/title-5-active.png b/theme/Budgie/xfwm4/title-5-active.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-5-active.png differ diff --git a/theme/Budgie/xfwm4/title-5-inactive.png b/theme/Budgie/xfwm4/title-5-inactive.png new file mode 100644 index 0000000..66cf8b0 Binary files /dev/null and b/theme/Budgie/xfwm4/title-5-inactive.png differ diff --git a/theme/Budgie/xfwm4/top-left-active.png b/theme/Budgie/xfwm4/top-left-active.png new file mode 100644 index 0000000..910bb69 Binary files /dev/null and b/theme/Budgie/xfwm4/top-left-active.png differ diff --git a/theme/Budgie/xfwm4/top-left-inactive.png b/theme/Budgie/xfwm4/top-left-inactive.png new file mode 100644 index 0000000..910bb69 Binary files /dev/null and b/theme/Budgie/xfwm4/top-left-inactive.png differ diff --git a/theme/Budgie/xfwm4/top-right-active.png b/theme/Budgie/xfwm4/top-right-active.png new file mode 100644 index 0000000..79db5b9 Binary files /dev/null and b/theme/Budgie/xfwm4/top-right-active.png differ diff --git a/theme/Budgie/xfwm4/top-right-inactive.png b/theme/Budgie/xfwm4/top-right-inactive.png new file mode 100644 index 0000000..79db5b9 Binary files /dev/null and b/theme/Budgie/xfwm4/top-right-inactive.png differ diff --git a/theme/Capitaine/cursors/00000000000000020006000e7e9ffc3f b/theme/Capitaine/cursors/00000000000000020006000e7e9ffc3f new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Capitaine/cursors/00000000000000020006000e7e9ffc3f @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Capitaine/cursors/00008160000006810000408080010102 b/theme/Capitaine/cursors/00008160000006810000408080010102 new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Capitaine/cursors/00008160000006810000408080010102 @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Capitaine/cursors/03b6e0fcb3499374a867c041f52298f0 b/theme/Capitaine/cursors/03b6e0fcb3499374a867c041f52298f0 new file mode 120000 index 0000000..031757c --- /dev/null +++ b/theme/Capitaine/cursors/03b6e0fcb3499374a867c041f52298f0 @@ -0,0 +1 @@ +circle \ No newline at end of file diff --git a/theme/Capitaine/cursors/08e8e1c95fe2fc01f976f1e063a24ccd b/theme/Capitaine/cursors/08e8e1c95fe2fc01f976f1e063a24ccd new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Capitaine/cursors/08e8e1c95fe2fc01f976f1e063a24ccd @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Capitaine/cursors/1081e37283d90000800003c07f3ef6bf b/theme/Capitaine/cursors/1081e37283d90000800003c07f3ef6bf new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Capitaine/cursors/1081e37283d90000800003c07f3ef6bf @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Capitaine/cursors/3085a0e285430894940527032f8b26df b/theme/Capitaine/cursors/3085a0e285430894940527032f8b26df new file mode 120000 index 0000000..c4ad821 --- /dev/null +++ b/theme/Capitaine/cursors/3085a0e285430894940527032f8b26df @@ -0,0 +1 @@ +alias \ No newline at end of file diff --git a/theme/Capitaine/cursors/3ecb610c1bf2410f44200f48c40d3599 b/theme/Capitaine/cursors/3ecb610c1bf2410f44200f48c40d3599 new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Capitaine/cursors/3ecb610c1bf2410f44200f48c40d3599 @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Capitaine/cursors/4498f0e0c1937ffe01fd06f973665830 b/theme/Capitaine/cursors/4498f0e0c1937ffe01fd06f973665830 new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/4498f0e0c1937ffe01fd06f973665830 @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 b/theme/Capitaine/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Capitaine/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Capitaine/cursors/6407b0e94181790501fd1e167b474872 b/theme/Capitaine/cursors/6407b0e94181790501fd1e167b474872 new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Capitaine/cursors/6407b0e94181790501fd1e167b474872 @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Capitaine/cursors/640fb0e74195791501fd1ed57b41487f b/theme/Capitaine/cursors/640fb0e74195791501fd1ed57b41487f new file mode 120000 index 0000000..c4ad821 --- /dev/null +++ b/theme/Capitaine/cursors/640fb0e74195791501fd1ed57b41487f @@ -0,0 +1 @@ +alias \ No newline at end of file diff --git a/theme/Capitaine/cursors/9081237383d90e509aa00f00170e968f b/theme/Capitaine/cursors/9081237383d90e509aa00f00170e968f new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/9081237383d90e509aa00f00170e968f @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/9d800788f1b08800ae810202380a0822 b/theme/Capitaine/cursors/9d800788f1b08800ae810202380a0822 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Capitaine/cursors/9d800788f1b08800ae810202380a0822 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Capitaine/cursors/a2a266d0498c3104214a47bd64ab0fc8 b/theme/Capitaine/cursors/a2a266d0498c3104214a47bd64ab0fc8 new file mode 120000 index 0000000..c4ad821 --- /dev/null +++ b/theme/Capitaine/cursors/a2a266d0498c3104214a47bd64ab0fc8 @@ -0,0 +1 @@ +alias \ No newline at end of file diff --git a/theme/Capitaine/cursors/alias b/theme/Capitaine/cursors/alias new file mode 100644 index 0000000..58cecbd Binary files /dev/null and b/theme/Capitaine/cursors/alias differ diff --git a/theme/Capitaine/cursors/all-scroll b/theme/Capitaine/cursors/all-scroll new file mode 100644 index 0000000..36c98a1 Binary files /dev/null and b/theme/Capitaine/cursors/all-scroll differ diff --git a/theme/Capitaine/cursors/arrow b/theme/Capitaine/cursors/arrow new file mode 120000 index 0000000..331d858 --- /dev/null +++ b/theme/Capitaine/cursors/arrow @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/theme/Capitaine/cursors/b66166c04f8c3109214a4fbd64a50fc8 b/theme/Capitaine/cursors/b66166c04f8c3109214a4fbd64a50fc8 new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Capitaine/cursors/b66166c04f8c3109214a4fbd64a50fc8 @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Capitaine/cursors/bottom_left_corner b/theme/Capitaine/cursors/bottom_left_corner new file mode 100644 index 0000000..2b1ba41 Binary files /dev/null and b/theme/Capitaine/cursors/bottom_left_corner differ diff --git a/theme/Capitaine/cursors/bottom_right_corner b/theme/Capitaine/cursors/bottom_right_corner new file mode 100644 index 0000000..dbaeba2 Binary files /dev/null and b/theme/Capitaine/cursors/bottom_right_corner differ diff --git a/theme/Capitaine/cursors/bottom_side b/theme/Capitaine/cursors/bottom_side new file mode 100644 index 0000000..2674486 Binary files /dev/null and b/theme/Capitaine/cursors/bottom_side differ diff --git a/theme/Capitaine/cursors/cell b/theme/Capitaine/cursors/cell new file mode 100644 index 0000000..62d473c Binary files /dev/null and b/theme/Capitaine/cursors/cell differ diff --git a/theme/Capitaine/cursors/center_ptr b/theme/Capitaine/cursors/center_ptr new file mode 100644 index 0000000..d1ca1b6 Binary files /dev/null and b/theme/Capitaine/cursors/center_ptr differ diff --git a/theme/Capitaine/cursors/circle b/theme/Capitaine/cursors/circle new file mode 120000 index 0000000..23bfed6 --- /dev/null +++ b/theme/Capitaine/cursors/circle @@ -0,0 +1 @@ +not-allowed \ No newline at end of file diff --git a/theme/Capitaine/cursors/closedhand b/theme/Capitaine/cursors/closedhand new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/closedhand @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/col-resize b/theme/Capitaine/cursors/col-resize new file mode 100644 index 0000000..f88b9aa Binary files /dev/null and b/theme/Capitaine/cursors/col-resize differ diff --git a/theme/Capitaine/cursors/color-picker b/theme/Capitaine/cursors/color-picker new file mode 100644 index 0000000..8aad53c Binary files /dev/null and b/theme/Capitaine/cursors/color-picker differ diff --git a/theme/Capitaine/cursors/context-menu b/theme/Capitaine/cursors/context-menu new file mode 100644 index 0000000..e6cb627 Binary files /dev/null and b/theme/Capitaine/cursors/context-menu differ diff --git a/theme/Capitaine/cursors/copy b/theme/Capitaine/cursors/copy new file mode 100644 index 0000000..e3f8980 Binary files /dev/null and b/theme/Capitaine/cursors/copy differ diff --git a/theme/Capitaine/cursors/cross b/theme/Capitaine/cursors/cross new file mode 120000 index 0000000..67580a7 --- /dev/null +++ b/theme/Capitaine/cursors/cross @@ -0,0 +1 @@ +crosshair \ No newline at end of file diff --git a/theme/Capitaine/cursors/crossed_circle b/theme/Capitaine/cursors/crossed_circle new file mode 120000 index 0000000..23bfed6 --- /dev/null +++ b/theme/Capitaine/cursors/crossed_circle @@ -0,0 +1 @@ +not-allowed \ No newline at end of file diff --git a/theme/Capitaine/cursors/crosshair b/theme/Capitaine/cursors/crosshair new file mode 100644 index 0000000..53bbd3d Binary files /dev/null and b/theme/Capitaine/cursors/crosshair differ diff --git a/theme/Capitaine/cursors/d9ce0ab605698f320427677b458ad60b b/theme/Capitaine/cursors/d9ce0ab605698f320427677b458ad60b new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Capitaine/cursors/d9ce0ab605698f320427677b458ad60b @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Capitaine/cursors/default b/theme/Capitaine/cursors/default new file mode 100644 index 0000000..6b7f20a Binary files /dev/null and b/theme/Capitaine/cursors/default differ diff --git a/theme/Capitaine/cursors/dnd-copy b/theme/Capitaine/cursors/dnd-copy new file mode 120000 index 0000000..88740b2 --- /dev/null +++ b/theme/Capitaine/cursors/dnd-copy @@ -0,0 +1 @@ +copy \ No newline at end of file diff --git a/theme/Capitaine/cursors/dnd-move b/theme/Capitaine/cursors/dnd-move new file mode 100644 index 0000000..87526d1 Binary files /dev/null and b/theme/Capitaine/cursors/dnd-move differ diff --git a/theme/Capitaine/cursors/dnd-no-drop b/theme/Capitaine/cursors/dnd-no-drop new file mode 100644 index 0000000..f59fdd3 Binary files /dev/null and b/theme/Capitaine/cursors/dnd-no-drop differ diff --git a/theme/Capitaine/cursors/dnd-none b/theme/Capitaine/cursors/dnd-none new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/dnd-none @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/down-arrow b/theme/Capitaine/cursors/down-arrow new file mode 100644 index 0000000..84f66f4 Binary files /dev/null and b/theme/Capitaine/cursors/down-arrow differ diff --git a/theme/Capitaine/cursors/draft b/theme/Capitaine/cursors/draft new file mode 100644 index 0000000..0dfcb1d Binary files /dev/null and b/theme/Capitaine/cursors/draft differ diff --git a/theme/Capitaine/cursors/e-resize b/theme/Capitaine/cursors/e-resize new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Capitaine/cursors/e-resize @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Capitaine/cursors/e29285e634086352946a0e7090d73106 b/theme/Capitaine/cursors/e29285e634086352946a0e7090d73106 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Capitaine/cursors/e29285e634086352946a0e7090d73106 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Capitaine/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff b/theme/Capitaine/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/fleur b/theme/Capitaine/cursors/fleur new file mode 100644 index 0000000..f4a6399 Binary files /dev/null and b/theme/Capitaine/cursors/fleur differ diff --git a/theme/Capitaine/cursors/forbidden b/theme/Capitaine/cursors/forbidden new file mode 120000 index 0000000..226af18 --- /dev/null +++ b/theme/Capitaine/cursors/forbidden @@ -0,0 +1 @@ +no-drop \ No newline at end of file diff --git a/theme/Capitaine/cursors/grab b/theme/Capitaine/cursors/grab new file mode 120000 index 0000000..0834bff --- /dev/null +++ b/theme/Capitaine/cursors/grab @@ -0,0 +1 @@ +openhand \ No newline at end of file diff --git a/theme/Capitaine/cursors/grabbing b/theme/Capitaine/cursors/grabbing new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/grabbing @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/h_double_arrow b/theme/Capitaine/cursors/h_double_arrow new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Capitaine/cursors/h_double_arrow @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Capitaine/cursors/half-busy b/theme/Capitaine/cursors/half-busy new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Capitaine/cursors/half-busy @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Capitaine/cursors/hand1 b/theme/Capitaine/cursors/hand1 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Capitaine/cursors/hand1 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Capitaine/cursors/hand2 b/theme/Capitaine/cursors/hand2 new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Capitaine/cursors/hand2 @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Capitaine/cursors/help b/theme/Capitaine/cursors/help new file mode 100644 index 0000000..5a5b8f4 Binary files /dev/null and b/theme/Capitaine/cursors/help differ diff --git a/theme/Capitaine/cursors/ibeam b/theme/Capitaine/cursors/ibeam new file mode 120000 index 0000000..f3a3485 --- /dev/null +++ b/theme/Capitaine/cursors/ibeam @@ -0,0 +1 @@ +text \ No newline at end of file diff --git a/theme/Capitaine/cursors/left-arrow b/theme/Capitaine/cursors/left-arrow new file mode 100644 index 0000000..4424088 Binary files /dev/null and b/theme/Capitaine/cursors/left-arrow differ diff --git a/theme/Capitaine/cursors/left_ptr b/theme/Capitaine/cursors/left_ptr new file mode 120000 index 0000000..331d858 --- /dev/null +++ b/theme/Capitaine/cursors/left_ptr @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/theme/Capitaine/cursors/left_ptr_help b/theme/Capitaine/cursors/left_ptr_help new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Capitaine/cursors/left_ptr_help @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Capitaine/cursors/left_ptr_watch b/theme/Capitaine/cursors/left_ptr_watch new file mode 120000 index 0000000..a305d5c --- /dev/null +++ b/theme/Capitaine/cursors/left_ptr_watch @@ -0,0 +1 @@ +progress \ No newline at end of file diff --git a/theme/Capitaine/cursors/left_side b/theme/Capitaine/cursors/left_side new file mode 100644 index 0000000..01a017d Binary files /dev/null and b/theme/Capitaine/cursors/left_side differ diff --git a/theme/Capitaine/cursors/link b/theme/Capitaine/cursors/link new file mode 120000 index 0000000..c4ad821 --- /dev/null +++ b/theme/Capitaine/cursors/link @@ -0,0 +1 @@ +alias \ No newline at end of file diff --git a/theme/Capitaine/cursors/ll_angle b/theme/Capitaine/cursors/ll_angle new file mode 120000 index 0000000..aab13ad --- /dev/null +++ b/theme/Capitaine/cursors/ll_angle @@ -0,0 +1 @@ +bottom_left_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/lr_angle b/theme/Capitaine/cursors/lr_angle new file mode 120000 index 0000000..9a02514 --- /dev/null +++ b/theme/Capitaine/cursors/lr_angle @@ -0,0 +1 @@ +bottom_right_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/move b/theme/Capitaine/cursors/move new file mode 120000 index 0000000..cbb52c1 --- /dev/null +++ b/theme/Capitaine/cursors/move @@ -0,0 +1 @@ +dnd-move \ No newline at end of file diff --git a/theme/Capitaine/cursors/n-resize b/theme/Capitaine/cursors/n-resize new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Capitaine/cursors/n-resize @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Capitaine/cursors/ne-resize b/theme/Capitaine/cursors/ne-resize new file mode 120000 index 0000000..19274a2 --- /dev/null +++ b/theme/Capitaine/cursors/ne-resize @@ -0,0 +1 @@ +top_right_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/nesw-resize b/theme/Capitaine/cursors/nesw-resize new file mode 120000 index 0000000..e0935e6 --- /dev/null +++ b/theme/Capitaine/cursors/nesw-resize @@ -0,0 +1 @@ +size_bdiag \ No newline at end of file diff --git a/theme/Capitaine/cursors/no-drop b/theme/Capitaine/cursors/no-drop new file mode 100644 index 0000000..c3a4382 Binary files /dev/null and b/theme/Capitaine/cursors/no-drop differ diff --git a/theme/Capitaine/cursors/not-allowed b/theme/Capitaine/cursors/not-allowed new file mode 100644 index 0000000..e4c7ba1 Binary files /dev/null and b/theme/Capitaine/cursors/not-allowed differ diff --git a/theme/Capitaine/cursors/nw-resize b/theme/Capitaine/cursors/nw-resize new file mode 120000 index 0000000..be1ee95 --- /dev/null +++ b/theme/Capitaine/cursors/nw-resize @@ -0,0 +1 @@ +top_left_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/nwse-resize b/theme/Capitaine/cursors/nwse-resize new file mode 120000 index 0000000..913bbc3 --- /dev/null +++ b/theme/Capitaine/cursors/nwse-resize @@ -0,0 +1 @@ +size_fdiag \ No newline at end of file diff --git a/theme/Capitaine/cursors/openhand b/theme/Capitaine/cursors/openhand new file mode 100644 index 0000000..bca5acd Binary files /dev/null and b/theme/Capitaine/cursors/openhand differ diff --git a/theme/Capitaine/cursors/pencil b/theme/Capitaine/cursors/pencil new file mode 100644 index 0000000..bf172f6 Binary files /dev/null and b/theme/Capitaine/cursors/pencil differ diff --git a/theme/Capitaine/cursors/pirate b/theme/Capitaine/cursors/pirate new file mode 100644 index 0000000..559a0ce Binary files /dev/null and b/theme/Capitaine/cursors/pirate differ diff --git a/theme/Capitaine/cursors/plus b/theme/Capitaine/cursors/plus new file mode 120000 index 0000000..d1b147b --- /dev/null +++ b/theme/Capitaine/cursors/plus @@ -0,0 +1 @@ +cell \ No newline at end of file diff --git a/theme/Capitaine/cursors/pointer b/theme/Capitaine/cursors/pointer new file mode 100644 index 0000000..6537cc4 Binary files /dev/null and b/theme/Capitaine/cursors/pointer differ diff --git a/theme/Capitaine/cursors/pointing_hand b/theme/Capitaine/cursors/pointing_hand new file mode 120000 index 0000000..5ba3f42 --- /dev/null +++ b/theme/Capitaine/cursors/pointing_hand @@ -0,0 +1 @@ +pointer \ No newline at end of file diff --git a/theme/Capitaine/cursors/progress b/theme/Capitaine/cursors/progress new file mode 100644 index 0000000..84a96c7 Binary files /dev/null and b/theme/Capitaine/cursors/progress differ diff --git a/theme/Capitaine/cursors/question_arrow b/theme/Capitaine/cursors/question_arrow new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Capitaine/cursors/question_arrow @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Capitaine/cursors/right-arrow b/theme/Capitaine/cursors/right-arrow new file mode 100644 index 0000000..d266c11 Binary files /dev/null and b/theme/Capitaine/cursors/right-arrow differ diff --git a/theme/Capitaine/cursors/right_ptr b/theme/Capitaine/cursors/right_ptr new file mode 100644 index 0000000..4a109d5 Binary files /dev/null and b/theme/Capitaine/cursors/right_ptr differ diff --git a/theme/Capitaine/cursors/right_side b/theme/Capitaine/cursors/right_side new file mode 100644 index 0000000..4e6a414 Binary files /dev/null and b/theme/Capitaine/cursors/right_side differ diff --git a/theme/Capitaine/cursors/row-resize b/theme/Capitaine/cursors/row-resize new file mode 100644 index 0000000..3f49150 Binary files /dev/null and b/theme/Capitaine/cursors/row-resize differ diff --git a/theme/Capitaine/cursors/s-resize b/theme/Capitaine/cursors/s-resize new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Capitaine/cursors/s-resize @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Capitaine/cursors/sb_h_double_arrow b/theme/Capitaine/cursors/sb_h_double_arrow new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Capitaine/cursors/sb_h_double_arrow @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Capitaine/cursors/sb_v_double_arrow b/theme/Capitaine/cursors/sb_v_double_arrow new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Capitaine/cursors/sb_v_double_arrow @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Capitaine/cursors/se-resize b/theme/Capitaine/cursors/se-resize new file mode 120000 index 0000000..9a02514 --- /dev/null +++ b/theme/Capitaine/cursors/se-resize @@ -0,0 +1 @@ +bottom_right_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/size_all b/theme/Capitaine/cursors/size_all new file mode 120000 index 0000000..147f744 --- /dev/null +++ b/theme/Capitaine/cursors/size_all @@ -0,0 +1 @@ +fleur \ No newline at end of file diff --git a/theme/Capitaine/cursors/size_bdiag b/theme/Capitaine/cursors/size_bdiag new file mode 100644 index 0000000..eb24c47 Binary files /dev/null and b/theme/Capitaine/cursors/size_bdiag differ diff --git a/theme/Capitaine/cursors/size_fdiag b/theme/Capitaine/cursors/size_fdiag new file mode 100644 index 0000000..4dfd342 Binary files /dev/null and b/theme/Capitaine/cursors/size_fdiag differ diff --git a/theme/Capitaine/cursors/size_hor b/theme/Capitaine/cursors/size_hor new file mode 100644 index 0000000..963df81 Binary files /dev/null and b/theme/Capitaine/cursors/size_hor differ diff --git a/theme/Capitaine/cursors/size_ver b/theme/Capitaine/cursors/size_ver new file mode 100644 index 0000000..21c09aa Binary files /dev/null and b/theme/Capitaine/cursors/size_ver differ diff --git a/theme/Capitaine/cursors/split_h b/theme/Capitaine/cursors/split_h new file mode 120000 index 0000000..3ce0e22 --- /dev/null +++ b/theme/Capitaine/cursors/split_h @@ -0,0 +1 @@ +col-resize \ No newline at end of file diff --git a/theme/Capitaine/cursors/split_v b/theme/Capitaine/cursors/split_v new file mode 120000 index 0000000..93d9c89 --- /dev/null +++ b/theme/Capitaine/cursors/split_v @@ -0,0 +1 @@ +row-resize \ No newline at end of file diff --git a/theme/Capitaine/cursors/sw-resize b/theme/Capitaine/cursors/sw-resize new file mode 120000 index 0000000..aab13ad --- /dev/null +++ b/theme/Capitaine/cursors/sw-resize @@ -0,0 +1 @@ +bottom_left_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/text b/theme/Capitaine/cursors/text new file mode 100644 index 0000000..f2376de Binary files /dev/null and b/theme/Capitaine/cursors/text differ diff --git a/theme/Capitaine/cursors/top_left_corner b/theme/Capitaine/cursors/top_left_corner new file mode 100644 index 0000000..8946738 Binary files /dev/null and b/theme/Capitaine/cursors/top_left_corner differ diff --git a/theme/Capitaine/cursors/top_right_corner b/theme/Capitaine/cursors/top_right_corner new file mode 100644 index 0000000..bd73391 Binary files /dev/null and b/theme/Capitaine/cursors/top_right_corner differ diff --git a/theme/Capitaine/cursors/top_side b/theme/Capitaine/cursors/top_side new file mode 100644 index 0000000..823a211 Binary files /dev/null and b/theme/Capitaine/cursors/top_side differ diff --git a/theme/Capitaine/cursors/ul_angle b/theme/Capitaine/cursors/ul_angle new file mode 120000 index 0000000..be1ee95 --- /dev/null +++ b/theme/Capitaine/cursors/ul_angle @@ -0,0 +1 @@ +top_left_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/up-arrow b/theme/Capitaine/cursors/up-arrow new file mode 100644 index 0000000..fb15ef8 Binary files /dev/null and b/theme/Capitaine/cursors/up-arrow differ diff --git a/theme/Capitaine/cursors/ur_angle b/theme/Capitaine/cursors/ur_angle new file mode 120000 index 0000000..19274a2 --- /dev/null +++ b/theme/Capitaine/cursors/ur_angle @@ -0,0 +1 @@ +top_right_corner \ No newline at end of file diff --git a/theme/Capitaine/cursors/v_double_arrow b/theme/Capitaine/cursors/v_double_arrow new file mode 120000 index 0000000..fb54fee --- /dev/null +++ b/theme/Capitaine/cursors/v_double_arrow @@ -0,0 +1 @@ +size_ver \ No newline at end of file diff --git a/theme/Capitaine/cursors/vertical-text b/theme/Capitaine/cursors/vertical-text new file mode 100644 index 0000000..3cbd547 Binary files /dev/null and b/theme/Capitaine/cursors/vertical-text differ diff --git a/theme/Capitaine/cursors/w-resize b/theme/Capitaine/cursors/w-resize new file mode 120000 index 0000000..e0da659 --- /dev/null +++ b/theme/Capitaine/cursors/w-resize @@ -0,0 +1 @@ +size_hor \ No newline at end of file diff --git a/theme/Capitaine/cursors/wait b/theme/Capitaine/cursors/wait new file mode 100644 index 0000000..9c77b9c Binary files /dev/null and b/theme/Capitaine/cursors/wait differ diff --git a/theme/Capitaine/cursors/watch b/theme/Capitaine/cursors/watch new file mode 120000 index 0000000..fd80437 --- /dev/null +++ b/theme/Capitaine/cursors/watch @@ -0,0 +1 @@ +wait \ No newline at end of file diff --git a/theme/Capitaine/cursors/wayland-cursor b/theme/Capitaine/cursors/wayland-cursor new file mode 100644 index 0000000..ca3af34 Binary files /dev/null and b/theme/Capitaine/cursors/wayland-cursor differ diff --git a/theme/Capitaine/cursors/whats_this b/theme/Capitaine/cursors/whats_this new file mode 120000 index 0000000..4cea3ac --- /dev/null +++ b/theme/Capitaine/cursors/whats_this @@ -0,0 +1 @@ +help \ No newline at end of file diff --git a/theme/Capitaine/cursors/x-cursor b/theme/Capitaine/cursors/x-cursor new file mode 100644 index 0000000..b0cc8ab Binary files /dev/null and b/theme/Capitaine/cursors/x-cursor differ diff --git a/theme/Capitaine/cursors/xterm b/theme/Capitaine/cursors/xterm new file mode 120000 index 0000000..f3a3485 --- /dev/null +++ b/theme/Capitaine/cursors/xterm @@ -0,0 +1 @@ +text \ No newline at end of file diff --git a/theme/Capitaine/cursors/zoom-in b/theme/Capitaine/cursors/zoom-in new file mode 100644 index 0000000..44a71f3 Binary files /dev/null and b/theme/Capitaine/cursors/zoom-in differ diff --git a/theme/Capitaine/cursors/zoom-out b/theme/Capitaine/cursors/zoom-out new file mode 100644 index 0000000..ac21852 Binary files /dev/null and b/theme/Capitaine/cursors/zoom-out differ diff --git a/theme/Capitaine/index.theme b/theme/Capitaine/index.theme new file mode 100644 index 0000000..6d9b59c --- /dev/null +++ b/theme/Capitaine/index.theme @@ -0,0 +1,4 @@ +[Icon Theme] +Name=Capitaine Cursors +Comment=A stylish cursor for humans + diff --git a/theme/install.sh b/theme/install.sh new file mode 100755 index 0000000..b70fd4b --- /dev/null +++ b/theme/install.sh @@ -0,0 +1,41 @@ +#!/bin/bash +. "../src/01-common.sh" || exit 5 +title "Installing theme..." + +# theme +# sudo cp -R ../theme/Budgie /usr/share/themes/Budgie + +# cursor +# sudo cp -R ../theme/Bridge /usr/share/icons/Bridge +# sudo cp -R ../theme/Capitaine /usr/share/icons/Capitaine + +# icons +# if installed "git"; then + sudo git clone https://github.com/PapirusDevelopmentTeam/papirus-icon-theme.git /usr/src/papirus +<<<<<<< HEAD:theme/install.sh +else + sudo wget https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/master.zip -O /usr/src/papirus.zip + sudo unzip /usr/src/papirus.zip -d /usr/src/papirus + sudo rm -f /usr/src/papirus.zip +fi +sudo chown -R anthony: /usr/src/papirus + +======= +# else +# sudo wget https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/master.zip -O /usr/src/papirus.zip +# sudo unzip /usr/src/papirus.zip -d /usr/src/papirus +# sudo rm -f /usr/src/papirus.zip +# fi +>>>>>>> 80482acf7ae67d27edcc5d00c9836e94016f0fed:install/010-theme.sh +# sudo ln -s /usr/src/papirus/ePapirus /usr/share/icons/ePapirus +sudo ln -s /usr/src/papirus/Papirus /usr/share/icons/Papirus +sudo ln -s /usr/src/papirus/Papirus-Dark /usr/share/icons/Papirus-Dark +sudo ln -s /usr/src/papirus/Papirus-Light /usr/share/icons/Papirus-Light + +# dconf write /org/mate/marco/general/theme "'Budgie'" +# dconf write /org/mate/desktop/interface/gtk-theme "'Budgie'" +# dconf write /org/mate/desktop/interface/icon-theme "'Papirus-Dark'" +# dconf write /org/mate/desktop/peripherals/mouse/cursor-theme "'Capitaine'" +# dconf write /org/mate/desktop/peripherals/mouse/cursor-size 20 +# dconf write /org/mate/notification-daemon/theme "'coco'" +# dconf write /org/mate/notification-daemon/popup-location "'top_right'"