commit db49f683129771d95828b01594c69431a717e8e8 Author: Tyler Murphy Date: Mon Sep 4 23:21:01 2023 -0400 guix diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5b9023a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +current diff --git a/channels.scm b/channels.scm new file mode 100644 index 0000000..f074b1b --- /dev/null +++ b/channels.scm @@ -0,0 +1,34 @@ +(list (channel + (name 'guix) + (url "https://git.savannah.gnu.org/git/guix.git") + (branch "master") + (commit + "710d9050524213a83e4ce9efe9765d7fbc233839") + (introduction + (make-channel-introduction + "9edb3f66fd807b096b48283debdcddccfea34bad" + (openpgp-fingerprint + "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))) + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + (branch "master") + (commit + "e2aa9e56d4d1888bf51d7671a18d304750373f89") + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + (channel + (name 'rosenthal) + (url "https://codeberg.org/hako/rosenthal.git") + (branch "trunk") + (commit + "129ca6fe164bf8b5a37357bab8c5229b611f1df2") + (introduction + (make-channel-introduction + "7677db76330121a901604dfbad19077893865f35" + (openpgp-fingerprint + "13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7")))) + ) diff --git a/home-config/.bash_profile b/home-config/.bash_profile new file mode 100644 index 0000000..7736e39 --- /dev/null +++ b/home-config/.bash_profile @@ -0,0 +1,14 @@ +# Set up Guix Home profile +if [ -f ~/.profile ]; then . ~/.profile; fi + +# Honor per-interactive-shell startup file +if [ -f ~/.bashrc ]; then . ~/.bashrc; fi + +# Merge search-paths from multiple profiles, the order matters. +eval "$(guix package --search-paths \ +-p $HOME/.config/guix/current \ +-p $HOME/.guix-profile \ +-p /run/current-system/profile)" + +# Prepend setuid programs. +export PATH=/run/setuid-programs:$PATH diff --git a/home-config/.bashrc b/home-config/.bashrc new file mode 100644 index 0000000..4c0f896 --- /dev/null +++ b/home-config/.bashrc @@ -0,0 +1,24 @@ +# Bash initialization for interactive non-login shells and +# for remote shells (info "(bash) Bash Startup Files"). + +# Export 'SHELL' to child processes. Programs such as 'screen' +# honor it and otherwise use /bin/sh. +export SHELL + +if [[ $- != *i* ]] +then + # We are being invoked from a non-interactive shell. If this + # is an SSH session (as in "ssh host command"), source + # /etc/profile so we get PATH and other essential variables. + [[ -n "$SSH_CLIENT" ]] && source /etc/profile + + # Don't do anything else. + return +fi + +# Source the system-wide file. +[ -f /etc/bashrc ] && source /etc/bashrc + +alias ls='ls -p --color=auto' +alias ll='ls -l' +alias grep='grep --color=auto' diff --git a/home-config/alacritty/alacritty.yml b/home-config/alacritty/alacritty.yml new file mode 100644 index 0000000..37c52d4 --- /dev/null +++ b/home-config/alacritty/alacritty.yml @@ -0,0 +1,31 @@ +# Colorscheme +import: +- ~/.config/alacritty/catppuccin-mocha.yml + +# Window settings +window: + opacity: .85 + padding: + x: 5 + y: 5 + +# Set font +font: + normal: + family: FiraCode Nerd Font Mono + style: Regular + bold: + style: Bold + italic: + style: Italic + bold_italic: + style: Bold Italic + size: 11 + offset: + x: 0 + y: 0 + +colors: + primary: + background: '0x14171d' + foreground: '0xc7c6c3' diff --git a/home-config/alacritty/catppuccin-mocha.yml b/home-config/alacritty/catppuccin-mocha.yml new file mode 100644 index 0000000..74ea60c --- /dev/null +++ b/home-config/alacritty/catppuccin-mocha.yml @@ -0,0 +1,78 @@ +colors: + primary: + background: "#1d1d2d" # base + foreground: "#CDD6F4" # text + # Bright and dim foreground colors + dim_foreground: "#CDD6F4" # text + bright_foreground: "#CDD6F4" # text + + # Cursor colors + cursor: + text: "#1E1E2E" # base + cursor: "#F5E0DC" # rosewater + vi_mode_cursor: + text: "#1E1E2E" # base + cursor: "#B4BEFE" # lavender + + # Search colors + search: + matches: + foreground: "#1E1E2E" # base + background: "#A6ADC8" # subtext0 + focused_match: + foreground: "#1E1E2E" # base + background: "#A6E3A1" # green + footer_bar: + foreground: "#1E1E2E" # base + background: "#A6ADC8" # subtext0 + + # Keyboard regex hints + hints: + start: + foreground: "#1E1E2E" # base + background: "#F9E2AF" # yellow + end: + foreground: "#1E1E2E" # base + background: "#A6ADC8" # subtext0 + + # Selection colors + selection: + text: "#1E1E2E" # base + background: "#F5E0DC" # rosewater + + # Normal colors + normal: + black: "#45475A" # surface1 + red: "#F38BA8" # red + green: "#A6E3A1" # green + yellow: "#F9E2AF" # yellow + blue: "#89B4FA" # blue + magenta: "#F5C2E7" # pink + cyan: "#94E2D5" # teal + white: "#BAC2DE" # subtext1 + + # Bright colors + bright: + black: "#585B70" # surface2 + red: "#F38BA8" # red + green: "#A6E3A1" # green + yellow: "#F9E2AF" # yellow + blue: "#89B4FA" # blue + magenta: "#F5C2E7" # pink + cyan: "#94E2D5" # teal + white: "#A6ADC8" # subtext0 + + # Dim colors + dim: + black: "#45475A" # surface1 + red: "#F38BA8" # red + green: "#A6E3A1" # green + yellow: "#F9E2AF" # yellow + blue: "#89B4FA" # blue + magenta: "#F5C2E7" # pink + cyan: "#94E2D5" # teal + white: "#BAC2DE" # subtext1 + + indexed_colors: + - { index: 16, color: "#FAB387" } + - { index: 17, color: "#F5E0DC" } diff --git a/home-config/applications/thunderbird.desktop b/home-config/applications/thunderbird.desktop new file mode 100644 index 0000000..ca1da71 --- /dev/null +++ b/home-config/applications/thunderbird.desktop @@ -0,0 +1,173 @@ +[Desktop Entry] +Name=Thunderbird +Comment=Send and receive mail with Thunderbird +Comment[ast]=Lleer y escribir corréu electrónicu +Comment[ca]=Llegiu i escriviu correu +Comment[cs]=Čtení a psaní pošty +Comment[da]=Skriv/læs e-post/nyhedsgruppe med Mozilla Thunderbird +Comment[de]=E-Mails und Nachrichten mit Thunderbird lesen und schreiben +Comment[el]=Διαβάστε και γράψτε γράμματα με το Mozilla Thunderbird +Comment[es]=Lea y escriba correos y noticias con Thunderbird +Comment[fi]=Lue ja kirjoita sähköposteja +Comment[fr]=Lire et écrire des courriels +Comment[gl]=Lea e escriba correo electrónico +Comment[he]=קריאה/כתיבה של דוא״ל/חדשות באמצעות Mozilla Thunderbird +Comment[hr]=Čitajte/šaljite e-poštu s Thunderbird +Comment[hu]=Levelek írása és olvasása a Thunderbirddel +Comment[it]=Per leggere e scrivere email +Comment[ja]=メールの読み書き +Comment[ko]=Mozilla Thunderbird 메일/뉴스 읽기 및 쓰기 클라이언트 +Comment[nl]=E-mail/nieuws lezen en schrijven met Mozilla Thunderbird +Comment[pl]=Czytanie i wysyłanie e-maili +Comment[pt_BR]=Leia e escreva suas mensagens +Comment[ru]=Читайте и пишите письма +Comment[sk]=Čítajte a píšte poštu pomocou programu Thunderbird +Comment[sv]=Läs och skriv e-post +Comment[ug]=ئېلخەت ۋە خەۋەرلەرنى Mozilla Thunderbird دا كۆرۈش ۋە يېزىش +Comment[uk]=Читання та написання листів +Comment[vi]=Đọc và soạn thư điện tử +Comment[zh_CN]=阅读邮件或新闻 +Comment[zh_TW]=以 Mozilla Thunderbird 讀寫郵件或新聞 +GenericName=Mail Client +GenericName[ast]=Client de correu +GenericName[ca]=Client de correu +GenericName[cs]=Poštovní klient +GenericName[da]=E-postklient +GenericName[de]=E-Mail-Anwendung +GenericName[el]=Λογισμικό αλληλογραφίας +GenericName[es]=Cliente de correo +GenericName[fi]=Sähköpostiohjelma +GenericName[fr]=Client de messagerie +GenericName[gl]=Cliente de correo electrónico +GenericName[he]=לקוח דוא״ל +GenericName[hr]=Klijent e-pošte +GenericName[hu]=Levelezőkliens +GenericName[it]=Client email +GenericName[ja]=電子メールクライアント +GenericName[ko]=메일 클라이언트 +GenericName[nl]=E-mailprogramma +GenericName[pl]=Klient poczty +GenericName[pt_BR]=Cliente de E-mail +GenericName[ru]=Почтовый клиент +GenericName[sk]=Poštový klient +GenericName[ug]=ئېلخەت دېتالى +GenericName[uk]=Поштова програма +GenericName[vi]=Phần mềm khách quản lý thư điện tử +GenericName[zh_CN]=邮件新闻客户端 +GenericName[zh_TW]=郵件用戶端 +Exec=thunderbird %u +Terminal=false +Type=Application +Icon=thunderbird +Categories=Network;Email; +MimeType=message/rfc822;x-scheme-handler/mailto;application/x-xpinstall; +StartupNotify=true +Actions=ComposeMessage;OpenAddressBook; + +[Desktop Action ComposeMessage] +Name=Write new message +Name[ar]=اكتب رسالة جديدة +Name[ast]=Redactar mensaxe nuevu +Name[be]=Напісаць новы ліст +Name[bg]=Съставяне на ново съобщение +Name[br]=Skrivañ ur gemennadenn nevez +Name[ca]=Escriu un missatge nou +Name[cs]=Napsat novou zprávu +Name[da]=Skriv en ny meddelelse +Name[de]=Neue Nachricht verfassen +Name[el]=Σύνταξη νέου μηνύματος +Name[es_AR]=Escribir un nuevo mensaje +Name[es_ES]=Redactar nuevo mensaje +Name[et]=Kirjuta uus kiri +Name[eu]=Idatzi mezu berria +Name[fi]=Kirjoita uusi viesti +Name[fr]=Rédiger un nouveau message +Name[fy_NL]=Skriuw in nij berjocht +Name[ga_IE]=Scríobh teachtaireacht nua +Name[gd]=Sgrìobh teachdaireachd ùr +Name[gl]=Escribir unha nova mensaxe +Name[he]=כתיבת הודעה חדשה +Name[hr]=Piši novu poruku +Name[hu]=Új üzenet írása +Name[hy_AM]=Գրել նոր նամակ +Name[is]=SKrifa nýjan póst +Name[it]=Scrivi nuovo messaggio +Name[ja]=新しいメッセージを作成する +Name[ko]=새 메시지 작성 +Name[lt]=Rašyti naują laišką +Name[nb_NO]=Skriv ny melding +Name[nl]=Nieuw bericht aanmaken +Name[nn_NO]=Skriv ny melding +Name[pl]=Nowa wiadomość +Name[pt_BR]=Nova mensagem +Name[pt_PT]=Escrever nova mensagem +Name[rm]=Scriver in nov messadi +Name[ro]=Scrie un mesaj nou +Name[ru]=Создать новое сообщение +Name[si]=නව ලිපියක් ලියන්න +Name[sk]=Nová e-mailová správa +Name[sl]=Sestavi novo sporočilo +Name[sq]=Shkruani mesazh të ri +Name[sr]=Писање нове поруке +Name[sv_SE]=Skriv ett nytt meddelande +Name[ta_LK]=புதிய செய்தியை எழுதுக +Name[tr]=Yeni ileti yaz +Name[uk]=Написати нового листа +Name[vi]=Viết thư mới +Name[zh_CN]=编写新消息 +Name[zh_TW]=寫一封新訊息 +Exec=/usr/bin/thunderbird -compose + +[Desktop Action OpenAddressBook] +Name=Open address book +Name[ar]=افتح دفتر العناوين +Name[ast]=Abrir llibreta de direiciones +Name[be]=Адкрыць адрасную кнігу +Name[bg]=Отваряне на адресник +Name[br]=Digeriñ ur c'harned chomlec'hioù +Name[ca]=Obre la llibreta d'adreces +Name[cs]=Otevřít Adresář +Name[da]=Åbn adressebog +Name[de]=Adressbuch öffnen +Name[el]=Άνοιγμα ευρετηρίου διευθύνσεων +Name[es_AR]=Abrir libreta de direcciones +Name[es_ES]=Abrir libreta de direcciones +Name[et]=Ava aadressiraamat +Name[eu]=Ireki helbide-liburua +Name[fi]=Avaa osoitekirja +Name[fr]=Ouvrir un carnet d'adresses +Name[fy_NL]=Iepenje adresboek +Name[ga_IE]=Oscail leabhar seoltaí +Name[gd]=Fosgail leabhar-sheòlaidhean +Name[gl]=Abrir a axenda de enderezos +Name[he]=פתיחת ספר כתובות +Name[hr]=Otvori adresar +Name[hu]=Címjegyzék megnyitása +Name[hy_AM]=Բացել Հասցեագիրքը +Name[is]=Opna nafnaskrá +Name[it]=Apri rubrica +Name[ja]=アドレス帳を開く +Name[ko]=주소록 열기 +Name[lt]=Atverti adresų knygą +Name[nb_NO]=Åpne adressebok +Name[nl]=Adresboek openen +Name[nn_NO]=Opne adressebok +Name[pl]=Książka adresowa +Name[pt_BR]=Catálogo de endereços +Name[pt_PT]=Abrir livro de endereços +Name[rm]=Avrir il cudeschet d'adressas +Name[ro]=Deschide agenda de contacte +Name[ru]=Открыть адресную книгу +Name[si]=ලිපින පොත විවෘත කරන්න +Name[sk]=Otvoriť adresár +Name[sl]=Odpri adressar +Name[sq]=Hapni libër adresash +Name[sr]=Отвори адресар +Name[sv_SE]=Öppna adressboken +Name[ta_LK]=முகவரி பத்தகத்தை திறக்க +Name[tr]=Adres defterini aç +Name[uk]=Відкрити адресну книгу +Name[vi]=Mở sổ địa chỉ +Name[zh_CN]=打开通讯录 +Name[zh_TW]=開啟通訊錄 +Exec=/usr/bin/thunderbird -addressbook diff --git a/home-config/fonts/BrailleCc0-DOeDd.ttf b/home-config/fonts/BrailleCc0-DOeDd.ttf new file mode 100755 index 0000000..68b3c68 Binary files /dev/null and b/home-config/fonts/BrailleCc0-DOeDd.ttf differ diff --git a/home-config/fonts/FiraCodeNerdFontMono-Regular.ttf b/home-config/fonts/FiraCodeNerdFontMono-Regular.ttf new file mode 100755 index 0000000..e6b6f75 Binary files /dev/null and b/home-config/fonts/FiraCodeNerdFontMono-Regular.ttf differ diff --git a/home-config/fonts/FiraMono-Bold.ttf b/home-config/fonts/FiraMono-Bold.ttf new file mode 100644 index 0000000..23bc30f Binary files /dev/null and b/home-config/fonts/FiraMono-Bold.ttf differ diff --git a/home-config/fonts/FiraMono-Medium.ttf b/home-config/fonts/FiraMono-Medium.ttf new file mode 100644 index 0000000..793c60d Binary files /dev/null and b/home-config/fonts/FiraMono-Medium.ttf differ diff --git a/home-config/fonts/FiraMono-Regular.ttf b/home-config/fonts/FiraMono-Regular.ttf new file mode 100644 index 0000000..67bbd42 Binary files /dev/null and b/home-config/fonts/FiraMono-Regular.ttf differ diff --git a/home-config/fonts/fa-regular-400.ttf b/home-config/fonts/fa-regular-400.ttf new file mode 100755 index 0000000..1bd5782 Binary files /dev/null and b/home-config/fonts/fa-regular-400.ttf differ diff --git a/home-config/fonts/windows/.uuid b/home-config/fonts/windows/.uuid new file mode 100644 index 0000000..c942ca9 --- /dev/null +++ b/home-config/fonts/windows/.uuid @@ -0,0 +1 @@ +9b49157c-372f-47c1-b290-e492c2bcf108 \ No newline at end of file diff --git a/home-config/fonts/windows/Candara.ttf b/home-config/fonts/windows/Candara.ttf new file mode 100755 index 0000000..b9817e2 Binary files /dev/null and b/home-config/fonts/windows/Candara.ttf differ diff --git a/home-config/fonts/windows/Candarab.ttf b/home-config/fonts/windows/Candarab.ttf new file mode 100755 index 0000000..d9ab172 Binary files /dev/null and b/home-config/fonts/windows/Candarab.ttf differ diff --git a/home-config/fonts/windows/Candarai.ttf b/home-config/fonts/windows/Candarai.ttf new file mode 100755 index 0000000..4f4e239 Binary files /dev/null and b/home-config/fonts/windows/Candarai.ttf differ diff --git a/home-config/fonts/windows/Candaral.ttf b/home-config/fonts/windows/Candaral.ttf new file mode 100755 index 0000000..a7b9c80 Binary files /dev/null and b/home-config/fonts/windows/Candaral.ttf differ diff --git a/home-config/fonts/windows/Candarali.ttf b/home-config/fonts/windows/Candarali.ttf new file mode 100755 index 0000000..190cc89 Binary files /dev/null and b/home-config/fonts/windows/Candarali.ttf differ diff --git a/home-config/fonts/windows/Candaraz.ttf b/home-config/fonts/windows/Candaraz.ttf new file mode 100755 index 0000000..124b59f Binary files /dev/null and b/home-config/fonts/windows/Candaraz.ttf differ diff --git a/home-config/fonts/windows/CharisSIL-B.ttf b/home-config/fonts/windows/CharisSIL-B.ttf new file mode 100755 index 0000000..5801dea Binary files /dev/null and b/home-config/fonts/windows/CharisSIL-B.ttf differ diff --git a/home-config/fonts/windows/CharisSIL-BI.ttf b/home-config/fonts/windows/CharisSIL-BI.ttf new file mode 100755 index 0000000..6c57383 Binary files /dev/null and b/home-config/fonts/windows/CharisSIL-BI.ttf differ diff --git a/home-config/fonts/windows/CharisSIL-I.ttf b/home-config/fonts/windows/CharisSIL-I.ttf new file mode 100755 index 0000000..146b4ac Binary files /dev/null and b/home-config/fonts/windows/CharisSIL-I.ttf differ diff --git a/home-config/fonts/windows/CharisSIL-R.ttf b/home-config/fonts/windows/CharisSIL-R.ttf new file mode 100755 index 0000000..b8e686a Binary files /dev/null and b/home-config/fonts/windows/CharisSIL-R.ttf differ diff --git a/home-config/fonts/windows/FSEX300.ttf b/home-config/fonts/windows/FSEX300.ttf new file mode 100755 index 0000000..a4f177c Binary files /dev/null and b/home-config/fonts/windows/FSEX300.ttf differ diff --git a/home-config/fonts/windows/arial.ttf b/home-config/fonts/windows/arial.ttf new file mode 100755 index 0000000..8682d94 Binary files /dev/null and b/home-config/fonts/windows/arial.ttf differ diff --git a/home-config/fonts/windows/arialbd.ttf b/home-config/fonts/windows/arialbd.ttf new file mode 100755 index 0000000..a6037e6 Binary files /dev/null and b/home-config/fonts/windows/arialbd.ttf differ diff --git a/home-config/fonts/windows/arialbi.ttf b/home-config/fonts/windows/arialbi.ttf new file mode 100755 index 0000000..6a1fa0f Binary files /dev/null and b/home-config/fonts/windows/arialbi.ttf differ diff --git a/home-config/fonts/windows/ariali.ttf b/home-config/fonts/windows/ariali.ttf new file mode 100755 index 0000000..3801997 Binary files /dev/null and b/home-config/fonts/windows/ariali.ttf differ diff --git a/home-config/fonts/windows/ariblk.ttf b/home-config/fonts/windows/ariblk.ttf new file mode 100755 index 0000000..e7ae345 Binary files /dev/null and b/home-config/fonts/windows/ariblk.ttf differ diff --git a/home-config/fonts/windows/calibri.ttf b/home-config/fonts/windows/calibri.ttf new file mode 100755 index 0000000..aac4726 Binary files /dev/null and b/home-config/fonts/windows/calibri.ttf differ diff --git a/home-config/fonts/windows/calibrib.ttf b/home-config/fonts/windows/calibrib.ttf new file mode 100755 index 0000000..326893d Binary files /dev/null and b/home-config/fonts/windows/calibrib.ttf differ diff --git a/home-config/fonts/windows/calibrii.ttf b/home-config/fonts/windows/calibrii.ttf new file mode 100755 index 0000000..3543c4c Binary files /dev/null and b/home-config/fonts/windows/calibrii.ttf differ diff --git a/home-config/fonts/windows/calibril.ttf b/home-config/fonts/windows/calibril.ttf new file mode 100755 index 0000000..1ac6669 Binary files /dev/null and b/home-config/fonts/windows/calibril.ttf differ diff --git a/home-config/fonts/windows/calibrili.ttf b/home-config/fonts/windows/calibrili.ttf new file mode 100755 index 0000000..fac9ae2 Binary files /dev/null and b/home-config/fonts/windows/calibrili.ttf differ diff --git a/home-config/fonts/windows/calibriz.ttf b/home-config/fonts/windows/calibriz.ttf new file mode 100755 index 0000000..58afcd1 Binary files /dev/null and b/home-config/fonts/windows/calibriz.ttf differ diff --git a/home-config/fonts/windows/cambria.ttc b/home-config/fonts/windows/cambria.ttc new file mode 100755 index 0000000..b971a3f Binary files /dev/null and b/home-config/fonts/windows/cambria.ttc differ diff --git a/home-config/fonts/windows/cambriab.ttf b/home-config/fonts/windows/cambriab.ttf new file mode 100755 index 0000000..c70283c Binary files /dev/null and b/home-config/fonts/windows/cambriab.ttf differ diff --git a/home-config/fonts/windows/cambriai.ttf b/home-config/fonts/windows/cambriai.ttf new file mode 100755 index 0000000..299dccd Binary files /dev/null and b/home-config/fonts/windows/cambriai.ttf differ diff --git a/home-config/fonts/windows/cambriaz.ttf b/home-config/fonts/windows/cambriaz.ttf new file mode 100755 index 0000000..4912bcb Binary files /dev/null and b/home-config/fonts/windows/cambriaz.ttf differ diff --git a/home-config/fonts/windows/comic.ttf b/home-config/fonts/windows/comic.ttf new file mode 100755 index 0000000..2d8e9ca Binary files /dev/null and b/home-config/fonts/windows/comic.ttf differ diff --git a/home-config/fonts/windows/comicbd.ttf b/home-config/fonts/windows/comicbd.ttf new file mode 100755 index 0000000..59f77d5 Binary files /dev/null and b/home-config/fonts/windows/comicbd.ttf differ diff --git a/home-config/fonts/windows/comici.ttf b/home-config/fonts/windows/comici.ttf new file mode 100755 index 0000000..49a4069 Binary files /dev/null and b/home-config/fonts/windows/comici.ttf differ diff --git a/home-config/fonts/windows/comicz.ttf b/home-config/fonts/windows/comicz.ttf new file mode 100755 index 0000000..f451961 Binary files /dev/null and b/home-config/fonts/windows/comicz.ttf differ diff --git a/home-config/fonts/windows/consola.ttf b/home-config/fonts/windows/consola.ttf new file mode 100755 index 0000000..e881ca4 Binary files /dev/null and b/home-config/fonts/windows/consola.ttf differ diff --git a/home-config/fonts/windows/consolab.ttf b/home-config/fonts/windows/consolab.ttf new file mode 100755 index 0000000..77f5d60 Binary files /dev/null and b/home-config/fonts/windows/consolab.ttf differ diff --git a/home-config/fonts/windows/consolai.ttf b/home-config/fonts/windows/consolai.ttf new file mode 100755 index 0000000..2de4de8 Binary files /dev/null and b/home-config/fonts/windows/consolai.ttf differ diff --git a/home-config/fonts/windows/consolaz.ttf b/home-config/fonts/windows/consolaz.ttf new file mode 100755 index 0000000..d9df211 Binary files /dev/null and b/home-config/fonts/windows/consolaz.ttf differ diff --git a/home-config/fonts/windows/constan.ttf b/home-config/fonts/windows/constan.ttf new file mode 100755 index 0000000..0ef9d17 Binary files /dev/null and b/home-config/fonts/windows/constan.ttf differ diff --git a/home-config/fonts/windows/constanb.ttf b/home-config/fonts/windows/constanb.ttf new file mode 100755 index 0000000..540b1d7 Binary files /dev/null and b/home-config/fonts/windows/constanb.ttf differ diff --git a/home-config/fonts/windows/constani.ttf b/home-config/fonts/windows/constani.ttf new file mode 100755 index 0000000..a5aa7ac Binary files /dev/null and b/home-config/fonts/windows/constani.ttf differ diff --git a/home-config/fonts/windows/constanz.ttf b/home-config/fonts/windows/constanz.ttf new file mode 100755 index 0000000..0b7ea48 Binary files /dev/null and b/home-config/fonts/windows/constanz.ttf differ diff --git a/home-config/fonts/windows/corbel.ttf b/home-config/fonts/windows/corbel.ttf new file mode 100755 index 0000000..34fd5aa Binary files /dev/null and b/home-config/fonts/windows/corbel.ttf differ diff --git a/home-config/fonts/windows/corbelb.ttf b/home-config/fonts/windows/corbelb.ttf new file mode 100755 index 0000000..551afa3 Binary files /dev/null and b/home-config/fonts/windows/corbelb.ttf differ diff --git a/home-config/fonts/windows/corbeli.ttf b/home-config/fonts/windows/corbeli.ttf new file mode 100755 index 0000000..91b076b Binary files /dev/null and b/home-config/fonts/windows/corbeli.ttf differ diff --git a/home-config/fonts/windows/corbell.ttf b/home-config/fonts/windows/corbell.ttf new file mode 100755 index 0000000..501eeef Binary files /dev/null and b/home-config/fonts/windows/corbell.ttf differ diff --git a/home-config/fonts/windows/corbelli.ttf b/home-config/fonts/windows/corbelli.ttf new file mode 100755 index 0000000..6173fd7 Binary files /dev/null and b/home-config/fonts/windows/corbelli.ttf differ diff --git a/home-config/fonts/windows/corbelz.ttf b/home-config/fonts/windows/corbelz.ttf new file mode 100755 index 0000000..1afab65 Binary files /dev/null and b/home-config/fonts/windows/corbelz.ttf differ diff --git a/home-config/fonts/windows/cour.ttf b/home-config/fonts/windows/cour.ttf new file mode 100755 index 0000000..46a0712 Binary files /dev/null and b/home-config/fonts/windows/cour.ttf differ diff --git a/home-config/fonts/windows/courbd.ttf b/home-config/fonts/windows/courbd.ttf new file mode 100755 index 0000000..145b736 Binary files /dev/null and b/home-config/fonts/windows/courbd.ttf differ diff --git a/home-config/fonts/windows/courbi.ttf b/home-config/fonts/windows/courbi.ttf new file mode 100755 index 0000000..430fced Binary files /dev/null and b/home-config/fonts/windows/courbi.ttf differ diff --git a/home-config/fonts/windows/couri.ttf b/home-config/fonts/windows/couri.ttf new file mode 100755 index 0000000..22b73d4 Binary files /dev/null and b/home-config/fonts/windows/couri.ttf differ diff --git a/home-config/fonts/windows/fonts.dir b/home-config/fonts/windows/fonts.dir new file mode 100755 index 0000000..7450f2e --- /dev/null +++ b/home-config/fonts/windows/fonts.dir @@ -0,0 +1,1972 @@ +1971 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-adobe-standard +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-ascii-0 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso10646-1 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-1 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-10 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-13 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-15 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-16 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-2 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-3 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-4 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-5 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-7 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-9 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-e +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-r +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-ru +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-u +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-uni +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-adobe-standard +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-ascii-0 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso10646-1 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-1 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-10 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-13 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-15 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-16 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-2 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-3 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-4 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-5 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-7 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-9 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-e +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-r +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-ru +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-u +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-uni +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-adobe-standard +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-ascii-0 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso10646-1 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-1 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-10 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-13 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-15 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-16 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-2 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-3 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-4 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-5 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-7 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-9 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-e +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-r +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-ru +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-u +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-uni +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-adobe-standard +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-ascii-0 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso10646-1 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-1 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-13 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-15 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-16 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-2 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-5 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-7 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-9 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-e +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-r +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-ru +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-u +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-uni +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-adobe-standard +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-ascii-0 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso10646-1 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-1 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-13 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-15 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-16 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-2 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-5 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-7 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-9 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-e +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-r +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-ru +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-u +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-uni +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-adobe-standard +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-ascii-0 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso10646-1 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-1 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-10 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-13 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-15 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-16 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-2 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-3 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-4 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-5 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-7 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-9 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-e +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-r +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-ru +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-u +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-uni +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-e +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-r +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-u +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-e +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-r +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-u +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-e +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-r +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-u +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-e +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-r +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-u +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-adobe-standard +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ascii-0 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso10646-1 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-1 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-10 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-11 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-13 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-15 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-16 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-2 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-3 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-4 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-5 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-7 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-8 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-9 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-e +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-r +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-ru +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-u +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-uni +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-suneu-greek +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-adobe-standard +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ascii-0 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso10646-1 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-1 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-10 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-13 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-15 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-16 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-2 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-3 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-4 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-5 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-6 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-7 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-8 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-9 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-e +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-r +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-ru +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-u +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-uni +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-suneu-greek +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-adobe-standard +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ascii-0 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp437 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp866 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso10646-1 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-1 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-10 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-13 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-15 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-16 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-2 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-3 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-4 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-5 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-6 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-7 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-8 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-9 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-e +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-r +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-ru +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-u +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-uni +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-suneu-greek +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-adobe-standard +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ascii-0 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp437 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp850 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp852 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp866 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso10646-1 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-1 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-10 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-13 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-15 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-16 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-2 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-3 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-4 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-5 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-7 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-8 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-9 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-e +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-r +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-ru +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-u +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-uni +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-suneu-greek +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-adobe-standard +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ascii-0 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp437 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp850 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp852 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp866 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso10646-1 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-1 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-10 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-13 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-15 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-16 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-2 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-3 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-4 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-5 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-7 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-8 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-9 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-e +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-r +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-ru +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-u +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-uni +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-suneu-greek +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-adobe-standard +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ascii-0 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp437 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp850 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp852 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp866 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso10646-1 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-1 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-10 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-13 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-15 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-16 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-2 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-3 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-4 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-5 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-7 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-9 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-e +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-r +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-ru +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-u +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-uni +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-adobe-standard +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-ascii-0 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso10646-1 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-1 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-10 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-13 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-15 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-16 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-2 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-3 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-4 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-5 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-6 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-7 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-8 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-9 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-e +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-r +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-ru +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-u +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-uni +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-suneu-greek +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-adobe-standard +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-ascii-0 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso10646-1 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-1 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-10 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-13 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-15 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-16 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-2 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-3 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-4 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-5 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-6 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-7 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-8 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-9 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-e +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-r +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-ru +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-u +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-uni +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-suneu-greek +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-adobe-standard +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-ascii-0 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso10646-1 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-1 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-10 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-13 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-15 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-16 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-2 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-3 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-4 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-5 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-7 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-8 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-9 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-e +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-r +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-ru +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-u +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-uni +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-suneu-greek +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-adobe-standard +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-ascii-0 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso10646-1 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-1 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-10 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-13 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-15 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-16 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-2 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-3 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-4 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-5 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-6 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-7 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-8 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-9 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-e +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-r +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-ru +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-u +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-uni +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-suneu-greek +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-adobe-standard +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-ascii-0 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso10646-1 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-1 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-10 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-13 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-15 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-16 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-2 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-3 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-4 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-5 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-7 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-8 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-9 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-e +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-r +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-ru +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-u +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-uni +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-microsoft-cp1252 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-suneu-greek +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-adobe-standard +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-ascii-0 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso10646-1 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-1 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-10 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-13 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-15 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-16 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-2 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-3 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-4 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-5 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-7 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-8 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-9 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-e +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-r +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-ru +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-u +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-uni +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-suneu-greek +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-adobe-standard +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-ascii-0 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso10646-1 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-1 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-10 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-13 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-15 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-16 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-2 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-3 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-4 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-5 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-7 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-9 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-e +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-r +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-ru +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-u +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-uni +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-suneu-greek +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-adobe-standard +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-ascii-0 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso10646-1 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-1 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-10 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-13 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-15 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-16 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-2 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-3 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-4 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-5 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-7 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-9 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-e +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-r +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-ru +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-u +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-uni +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-suneu-greek +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-adobe-standard +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-ascii-0 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso10646-1 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-1 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-10 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-13 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-15 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-16 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-2 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-3 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-4 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-5 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-7 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-9 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-e +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-r +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-ru +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-u +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-uni +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-suneu-greek +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-adobe-standard +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-ascii-0 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso10646-1 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-1 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-10 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-13 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-15 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-16 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-2 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-3 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-4 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-5 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-7 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-9 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-e +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-r +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-ru +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-u +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-uni +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-suneu-greek +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-adobe-standard +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-ascii-0 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso10646-1 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-1 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-10 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-13 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-15 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-16 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-2 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-3 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-4 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-5 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-7 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-9 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-e +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-r +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-ru +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-u +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-uni +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-adobe-standard +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-ascii-0 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso10646-1 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-1 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-10 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-13 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-15 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-16 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-2 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-3 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-4 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-5 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-7 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-9 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-e +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-r +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-ru +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-u +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-uni +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-adobe-standard +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-ascii-0 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso10646-1 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-1 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-10 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-13 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-15 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-16 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-2 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-3 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-4 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-5 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-7 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-9 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-e +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-r +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-ru +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-u +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-uni +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-adobe-standard +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-ascii-0 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso10646-1 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-1 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-10 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-13 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-15 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-16 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-2 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-3 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-4 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-5 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-7 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-9 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-e +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-r +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-ru +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-u +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-uni +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-adobe-standard +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ascii-0 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp437 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp850 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp852 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp866 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso10646-1 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-1 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-10 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-13 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-15 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-16 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-2 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-3 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-4 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-5 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-7 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-9 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-e +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-r +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-ru +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-u +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-uni +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-suneu-greek +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-adobe-standard +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ascii-0 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp437 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp850 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp852 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp866 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso10646-1 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-1 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-10 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-13 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-15 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-16 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-2 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-3 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-4 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-5 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-7 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-9 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-e +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-r +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-ru +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-u +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-uni +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-suneu-greek +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-adobe-standard +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ascii-0 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp437 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp850 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp852 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp866 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso10646-1 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-1 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-10 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-13 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-15 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-16 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-2 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-3 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-4 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-5 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-7 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-9 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-e +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-r +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-ru +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-u +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-uni +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-microsoft-cp1252 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-suneu-greek +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-adobe-standard +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ascii-0 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp437 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp850 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp852 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp866 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso10646-1 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-1 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-10 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-13 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-15 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-16 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-2 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-3 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-4 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-5 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-7 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-9 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-e +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-r +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-ru +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-u +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-uni +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-microsoft-cp1252 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-suneu-greek +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-adobe-standard +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-ascii-0 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso10646-1 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-1 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-10 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-13 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-15 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-16 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-2 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-3 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-4 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-5 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-7 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-9 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-e +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-r +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-ru +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-u +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-uni +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-adobe-standard +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-ascii-0 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso10646-1 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-1 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-10 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-13 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-15 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-16 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-2 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-3 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-4 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-5 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-7 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-9 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-e +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-r +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-ru +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-u +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-uni +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-adobe-standard +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-ascii-0 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso10646-1 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-1 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-10 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-13 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-15 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-16 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-2 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-3 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-4 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-5 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-7 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-9 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-e +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-r +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-ru +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-u +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-uni +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-adobe-standard +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-ascii-0 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso10646-1 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-1 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-10 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-13 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-15 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-16 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-2 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-3 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-4 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-5 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-7 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-9 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-e +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-r +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-ru +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-u +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-uni +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-adobe-standard +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-ascii-0 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso10646-1 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-1 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-10 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-13 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-15 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-16 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-2 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-3 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-4 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-5 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-7 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-9 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-e +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-r +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-ru +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-u +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-uni +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-adobe-standard +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-ascii-0 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso10646-1 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-1 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-10 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-13 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-15 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-16 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-2 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-3 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-4 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-5 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-7 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-9 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-e +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-r +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-ru +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-u +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-uni +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-adobe-standard +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-ascii-0 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso10646-1 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-1 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-10 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-13 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-15 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-16 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-2 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-3 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-4 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-5 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-7 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-9 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-e +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-r +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-ru +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-u +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-uni +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-adobe-standard +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-ascii-0 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso10646-1 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-1 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-10 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-13 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-15 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-16 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-2 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-3 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-4 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-5 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-7 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-9 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-e +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-r +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-ru +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-u +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-uni +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-microsoft-cp1252 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-adobe-standard +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-ascii-0 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso10646-1 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-1 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-10 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-13 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-15 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-16 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-2 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-3 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-4 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-5 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-7 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-9 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-e +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-r +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-ru +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-u +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-uni +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-microsoft-cp1252 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-adobe-standard +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-ascii-0 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso10646-1 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-1 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-10 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-13 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-15 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-16 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-2 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-3 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-4 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-5 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-7 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-9 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-e +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-r +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-ru +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-u +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-uni +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-adobe-standard +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ascii-0 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp437 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp850 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp852 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp866 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso10646-1 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-1 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-10 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-13 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-15 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-16 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-2 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-3 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-4 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-5 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-6 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-6.16 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-6.8x +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-7 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-8 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-9 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-e +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-r +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-ru +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-u +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-uni +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-suneu-greek +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-adobe-standard +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ascii-0 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp437 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp850 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp852 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp866 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso10646-1 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-1 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-10 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-13 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-15 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-16 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-2 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-3 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-4 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-5 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-6 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-6.16 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-6.8x +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-7 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-8 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-9 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-e +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-r +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-ru +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-u +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-uni +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-suneu-greek +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-adobe-standard +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ascii-0 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp437 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp850 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp852 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp866 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso10646-1 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-1 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-10 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-13 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-15 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-16 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-2 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-3 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-4 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-5 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-7 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-8 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-9 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-e +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-r +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-ru +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-u +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-uni +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-microsoft-cp1252 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-suneu-greek +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-adobe-standard +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ascii-0 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp437 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp850 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp852 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp866 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso10646-1 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-1 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-10 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-13 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-15 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-16 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-2 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-3 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-4 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-5 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-7 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-8 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-9 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-e +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-r +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-ru +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-u +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-uni +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-microsoft-cp1252 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-suneu-greek +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-adobe-standard +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ascii-0 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso10646-1 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-1 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-10 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-13 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-15 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-16 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-2 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-3 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-4 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-5 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-7 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-9 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-e +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-r +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-ru +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-u +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-uni +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-adobe-standard +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ascii-0 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp437 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp850 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp852 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp866 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso10646-1 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-1 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-10 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-13 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-15 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-2 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-3 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-4 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-5 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-7 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-9 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-e +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-r +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-ru +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-u +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-uni +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-adobe-standard +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-ascii-0 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso10646-1 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-1 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-10 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-13 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-15 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-16 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-2 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-3 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-4 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-5 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-7 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-9 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-e +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-r +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-ru +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-u +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-uni +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-adobe-standard +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-ascii-0 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso10646-1 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-1 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-10 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-13 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-15 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-16 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-2 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-3 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-4 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-5 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-7 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-9 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-e +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-r +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-ru +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-u +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-uni +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-adobe-standard +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-ascii-0 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso10646-1 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-1 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-10 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-13 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-15 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-16 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-2 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-3 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-4 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-5 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-7 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-9 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-e +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-r +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-ru +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-u +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-uni +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-adobe-standard +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-ascii-0 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso10646-1 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-1 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-10 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-13 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-15 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-16 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-2 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-3 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-4 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-5 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-7 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-9 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-e +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-r +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-ru +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-u +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-uni +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-adobe-standard +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ascii-0 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp437 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp850 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp852 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp866 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso10646-1 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-1 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-10 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-13 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-15 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-16 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-2 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-3 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-4 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-5 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-7 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-9 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-e +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-r +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-ru +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-u +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-uni +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-microsoft-cp1252 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-adobe-standard +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ascii-0 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso10646-1 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-1 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-10 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-13 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-15 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-16 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-2 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-3 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-4 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-5 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-7 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-8 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-9 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-e +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-r +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-ru +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-u +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-uni +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-suneu-greek +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-adobe-standard +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ascii-0 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp437 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp850 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp852 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp866 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso10646-1 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-1 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-10 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-13 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-15 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-16 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-2 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-3 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-4 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-5 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-7 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-9 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-e +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-r +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-ru +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-u +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-uni +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-microsoft-cp1252 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-16 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-e +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-r +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-u +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-adobe-standard +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-ascii-0 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso10646-1 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-1 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-10 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-13 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-15 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-16 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-2 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-3 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-4 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-5 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-7 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-9 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-e +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-r +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-ru +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-u +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-uni +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-e +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-r +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-u +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-adobe-standard +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-ascii-0 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso10646-1 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-1 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-10 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-13 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-15 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-2 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-3 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-4 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-5 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-7 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-9 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-e +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-r +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-ru +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-u +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-uni +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-16 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-6 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-8 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-e +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-r +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-u +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-suneu-greek +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-adobe-standard +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-ascii-0 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso10646-1 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-1 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-10 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-13 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-15 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-16 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-2 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-3 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-4 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-5 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-6 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-7 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-8 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-9 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-e +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-r +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-ru +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-u +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-uni +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-suneu-greek +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-adobe-standard +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-ascii-0 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso10646-1 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-1 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-10 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-13 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-15 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-16 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-2 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-3 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-4 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-5 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-7 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-9 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-e +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-r +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-ru +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-u +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-uni +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-suneu-greek +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-adobe-standard +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-ascii-0 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso10646-1 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-1 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-10 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-13 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-15 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-16 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-2 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-3 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-4 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-5 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-6 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-7 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-8 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-9 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-e +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-r +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-ru +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-u +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-uni +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-suneu-greek +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-16 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-6 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-8 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-e +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-r +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-u +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-suneu-greek +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-adobe-standard +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-ascii-0 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso10646-1 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-1 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-10 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-13 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-15 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-16 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-2 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-3 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-4 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-5 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-7 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-9 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-e +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-r +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-ru +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-u +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-uni +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-suneu-greek +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-adobe-standard +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-ascii-0 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso10646-1 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-1 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-10 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-13 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-15 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-16 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-2 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-3 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-4 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-5 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-7 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-9 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-e +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-r +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-ru +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-u +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-uni +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-suneu-greek +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-adobe-standard +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-ascii-0 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso10646-1 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-1 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-10 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-13 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-15 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-16 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-2 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-3 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-4 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-5 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-7 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-9 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-e +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-r +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-ru +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-u +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-uni +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-suneu-greek +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-adobe-standard +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-ascii-0 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-iso10646-1 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-iso8859-1 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-iso8859-15 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-ascii-0 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-iso10646-1 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-iso8859-1 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-iso8859-15 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-adobe-standard +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-ascii-0 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso10646-1 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-1 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-10 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-13 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-15 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-16 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-2 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-3 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-4 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-5 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-7 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-9 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-e +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-r +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-ru +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-u +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-uni +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-suneu-greek +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-adobe-standard +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-ascii-0 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso10646-1 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-1 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-10 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-13 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-15 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-16 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-2 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-3 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-4 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-5 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-6 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-6.16 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-6.8x +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-7 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-8 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-9 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-e +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-r +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-ru +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-u +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-uni +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-suneu-greek +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-adobe-standard +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-ascii-0 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso10646-1 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-1 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-10 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-13 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-15 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-16 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-2 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-3 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-4 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-5 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-7 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-9 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-e +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-r +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-ru +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-u +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-uni +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-suneu-greek +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-adobe-standard +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-ascii-0 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso10646-1 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-1 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-10 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-13 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-15 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-16 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-2 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-3 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-4 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-5 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-7 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-9 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-e +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-r +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-ru +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-u +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-uni +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-suneu-greek +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-adobe-symbol +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-ascii-0 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso10646-1 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso8859-1 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso8859-15 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso8859-7 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +symbol.ttf -monotype-symbol-medium-r-normal--0-0-0-0-p-0-iso8859-1 +symbol.ttf -monotype-symbol-medium-r-normal--0-0-0-0-p-0-microsoft-symbol +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-adobe-standard +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ascii-0 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso10646-1 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-1 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-10 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-11 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-13 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-15 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-16 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-2 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-3 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-4 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-5 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-6 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-7 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-8 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-9 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-e +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-r +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-ru +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-u +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-uni +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-suneu-greek +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-adobe-standard +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ascii-0 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp437 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp866 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso10646-1 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-1 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-10 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-11 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-13 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-15 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-16 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-2 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-3 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-4 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-5 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-6 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-7 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-8 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-9 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-e +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-r +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-ru +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-u +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-uni +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-suneu-greek +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-adobe-standard +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ascii-0 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso10646-1 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-1 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-10 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-13 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-15 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-16 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-2 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-3 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-4 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-5 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-6 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-7 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-8 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-9 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-e +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-r +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-ru +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-u +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-uni +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-suneu-greek +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-adobe-standard +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ascii-0 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp437 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp866 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso10646-1 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-1 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-10 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-13 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-15 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-16 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-2 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-3 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-4 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-5 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-6 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-7 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-8 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-9 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-e +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-r +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-ru +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-u +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-uni +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-suneu-greek +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-adobe-standard +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ascii-0 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp437 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp850 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp852 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp866 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso10646-1 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-1 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-10 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-13 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-15 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-16 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-2 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-3 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-4 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-5 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-7 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-8 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-9 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-e +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-r +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-ru +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-u +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-uni +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-suneu-greek +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-adobe-standard +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ascii-0 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp437 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp850 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp852 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp866 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso10646-1 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-1 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-10 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-13 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-15 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-16 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-2 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-3 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-4 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-5 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-7 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-8 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-9 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-e +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-r +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-ru +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-u +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-uni +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-suneu-greek +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-adobe-standard +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-ascii-0 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso10646-1 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-1 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-10 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-13 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-15 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-16 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-2 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-3 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-4 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-5 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-7 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-9 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-e +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-r +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-ru +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-u +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-uni +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-adobe-standard +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-ascii-0 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso10646-1 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-1 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-10 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-13 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-15 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-16 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-2 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-3 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-4 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-5 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-7 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-9 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-e +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-r +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-ru +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-u +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-uni +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-adobe-standard +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-ascii-0 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso10646-1 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-1 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-10 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-13 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-15 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-16 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-2 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-3 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-4 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-5 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-7 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-9 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-e +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-r +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-ru +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-u +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-uni +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-adobe-standard +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-ascii-0 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso10646-1 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-1 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-10 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-13 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-15 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-16 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-2 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-3 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-4 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-5 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-7 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-9 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-e +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-r +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-ru +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-u +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-uni +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-adobe-standard +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-ascii-0 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso10646-1 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-1 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-10 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-13 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-15 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-16 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-2 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-3 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-4 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-5 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-7 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-9 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-e +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-r +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-ru +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-u +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-uni +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-adobe-standard +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-ascii-0 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso10646-1 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-1 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-10 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-13 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-15 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-16 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-2 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-3 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-4 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-5 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-7 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-9 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-e +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-r +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-ru +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-u +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-uni +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-adobe-standard +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-ascii-0 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso10646-1 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-1 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-10 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-13 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-15 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-16 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-2 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-3 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-4 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-5 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-7 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-9 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-e +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-r +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-ru +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-u +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-uni +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-adobe-standard +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-ascii-0 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso10646-1 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-1 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-10 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-13 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-15 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-16 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-2 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-3 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-4 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-5 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-7 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-9 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-e +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-r +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-ru +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-u +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-uni +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +webdings.ttf -microsoft-webdings-medium-r-normal--0-0-0-0-p-0-iso8859-1 +webdings.ttf -microsoft-webdings-medium-r-normal--0-0-0-0-p-0-microsoft-symbol +wingding.ttf -microsoft-wingdings-medium-r-normal--0-0-0-0-p-0-iso8859-1 +wingding.ttf -microsoft-wingdings-medium-r-normal--0-0-0-0-p-0-microsoft-symbol diff --git a/home-config/fonts/windows/fonts.scale b/home-config/fonts/windows/fonts.scale new file mode 100755 index 0000000..7450f2e --- /dev/null +++ b/home-config/fonts/windows/fonts.scale @@ -0,0 +1,1972 @@ +1971 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-adobe-standard +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-ascii-0 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso10646-1 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-1 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-10 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-13 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-15 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-16 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-2 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-3 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-4 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-5 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-7 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-iso8859-9 +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-e +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-r +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-ru +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-u +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-koi8-uni +Candara.ttf -microsoft-candara-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-adobe-standard +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-ascii-0 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso10646-1 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-1 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-10 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-13 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-15 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-16 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-2 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-3 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-4 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-5 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-7 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-iso8859-9 +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-e +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-r +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-ru +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-u +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-koi8-uni +Candarab.ttf -microsoft-candara-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-adobe-standard +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-ascii-0 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso10646-1 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-1 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-10 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-13 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-15 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-16 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-2 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-3 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-4 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-5 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-7 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-iso8859-9 +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-e +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-r +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-ru +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-u +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-koi8-uni +Candarai.ttf -microsoft-candara-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-adobe-standard +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-ascii-0 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso10646-1 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-1 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-13 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-15 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-16 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-2 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-5 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-7 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-iso8859-9 +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-e +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-r +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-ru +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-u +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-koi8-uni +Candaral.ttf -microsoft-candara light-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-adobe-standard +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-ascii-0 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso10646-1 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-1 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-13 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-15 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-16 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-2 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-5 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-7 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-iso8859-9 +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-e +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-r +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-ru +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-u +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-koi8-uni +Candarali.ttf -microsoft-candara light-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-adobe-standard +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-ascii-0 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso10646-1 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-1 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-10 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-13 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-15 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-16 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-2 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-3 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-4 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-5 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-7 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-iso8859-9 +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-e +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-r +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-ru +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-u +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-koi8-uni +Candaraz.ttf -microsoft-candara-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-e +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-r +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-u +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-B.ttf -misc-charis sil-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-e +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-r +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-u +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-BI.ttf -misc-charis sil-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-e +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-r +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-u +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-I.ttf -misc-charis sil-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-adobe-standard +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-ascii-0 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso10646-1 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-1 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-10 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-13 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-15 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-16 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-2 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-3 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-4 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-5 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-iso8859-9 +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-e +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-r +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-ru +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-u +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-koi8-uni +CharisSIL-R.ttf -misc-charis sil-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-adobe-standard +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ascii-0 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso10646-1 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-1 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-10 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-11 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-13 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-15 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-16 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-2 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-3 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-4 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-5 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-7 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-8 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-iso8859-9 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-e +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-r +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-ru +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-u +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-koi8-uni +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +FSEX300.ttf -misc-fixedsys excelsior 3.01-medium-r-normal--0-0-0-0-p-0-suneu-greek +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-adobe-standard +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ascii-0 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso10646-1 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-1 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-10 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-13 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-15 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-16 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-2 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-3 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-4 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-5 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-6 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-7 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-8 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-iso8859-9 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-e +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-r +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-ru +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-u +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-koi8-uni +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +arial.ttf -monotype-arial-medium-r-normal--0-0-0-0-p-0-suneu-greek +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-adobe-standard +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ascii-0 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp437 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-ibm-cp866 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso10646-1 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-1 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-10 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-13 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-15 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-16 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-2 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-3 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-4 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-5 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-6 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-7 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-8 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-9 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-e +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-r +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-ru +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-u +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-koi8-uni +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +arialbd.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-suneu-greek +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-adobe-standard +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ascii-0 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp437 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp850 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp852 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-ibm-cp866 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso10646-1 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-1 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-10 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-13 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-15 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-16 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-2 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-3 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-4 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-5 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-7 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-8 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-iso8859-9 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-e +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-r +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-ru +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-u +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-koi8-uni +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +arialbi.ttf -monotype-arial-bold-i-normal--0-0-0-0-p-0-suneu-greek +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-adobe-standard +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ascii-0 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp437 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp850 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp852 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-ibm-cp866 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso10646-1 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-1 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-10 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-13 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-15 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-16 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-2 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-3 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-4 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-5 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-7 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-8 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-iso8859-9 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-e +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-r +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-ru +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-u +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-koi8-uni +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +ariali.ttf -monotype-arial-medium-i-normal--0-0-0-0-p-0-suneu-greek +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-adobe-standard +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ascii-0 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp437 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp850 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp852 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-ibm-cp866 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso10646-1 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-1 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-10 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-13 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-15 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-16 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-2 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-3 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-4 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-5 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-7 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-iso8859-9 +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-e +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-r +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-ru +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-u +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-koi8-uni +ariblk.ttf -monotype-arial black-black-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-adobe-standard +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-ascii-0 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso10646-1 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-1 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-10 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-13 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-15 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-16 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-2 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-3 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-4 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-5 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-6 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-7 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-8 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-iso8859-9 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-e +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-r +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-ru +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-u +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-koi8-uni +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibri.ttf -microsoft-calibri-medium-r-normal--0-0-0-0-p-0-suneu-greek +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-adobe-standard +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-ascii-0 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso10646-1 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-1 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-10 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-13 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-15 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-16 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-2 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-3 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-4 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-5 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-6 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-7 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-8 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-iso8859-9 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-e +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-r +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-ru +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-u +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-koi8-uni +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibrib.ttf -microsoft-calibri-bold-r-normal--0-0-0-0-p-0-suneu-greek +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-adobe-standard +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-ascii-0 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso10646-1 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-1 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-10 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-13 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-15 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-16 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-2 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-3 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-4 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-5 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-7 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-8 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-iso8859-9 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-e +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-r +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-ru +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-u +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-koi8-uni +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +calibrii.ttf -microsoft-calibri-medium-i-normal--0-0-0-0-p-0-suneu-greek +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-adobe-standard +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-ascii-0 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso10646-1 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-1 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-10 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-13 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-15 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-16 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-2 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-3 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-4 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-5 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-6 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-7 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-8 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-iso8859-9 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-e +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-r +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-ru +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-u +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-koi8-uni +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-microsoft-cp1252 +calibril.ttf -microsoft-calibri light-light-r-normal--0-0-0-0-p-0-suneu-greek +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-adobe-standard +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-ascii-0 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso10646-1 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-1 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-10 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-13 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-15 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-16 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-2 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-3 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-4 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-5 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-7 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-8 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-iso8859-9 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-e +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-r +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-ru +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-u +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-koi8-uni +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-microsoft-cp1252 +calibrili.ttf -microsoft-calibri light-light-i-normal--0-0-0-0-p-0-suneu-greek +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-adobe-standard +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-ascii-0 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso10646-1 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-1 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-10 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-13 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-15 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-16 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-2 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-3 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-4 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-5 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-7 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-8 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-iso8859-9 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-e +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-r +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-ru +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-u +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-koi8-uni +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +calibriz.ttf -microsoft-calibri-bold-i-normal--0-0-0-0-p-0-suneu-greek +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-adobe-standard +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-ascii-0 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso10646-1 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-1 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-10 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-13 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-15 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-16 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-2 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-3 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-4 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-5 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-7 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-iso8859-9 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-e +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-r +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-ru +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-u +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-koi8-uni +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +cambria.ttc -microsoft-cambria-medium-r-normal--0-0-0-0-p-0-suneu-greek +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-adobe-standard +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-ascii-0 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso10646-1 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-1 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-10 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-13 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-15 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-16 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-2 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-3 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-4 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-5 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-7 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-iso8859-9 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-e +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-r +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-ru +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-u +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-koi8-uni +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +cambriab.ttf -microsoft-cambria-bold-r-normal--0-0-0-0-p-0-suneu-greek +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-adobe-standard +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-ascii-0 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso10646-1 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-1 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-10 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-13 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-15 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-16 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-2 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-3 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-4 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-5 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-7 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-iso8859-9 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-e +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-r +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-ru +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-u +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-koi8-uni +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +cambriai.ttf -microsoft-cambria-medium-i-normal--0-0-0-0-p-0-suneu-greek +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-adobe-standard +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-ascii-0 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso10646-1 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-1 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-10 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-13 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-15 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-16 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-2 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-3 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-4 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-5 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-7 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-iso8859-9 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-e +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-r +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-ru +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-u +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-koi8-uni +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +cambriaz.ttf -microsoft-cambria-bold-i-normal--0-0-0-0-p-0-suneu-greek +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-adobe-standard +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-ascii-0 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso10646-1 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-1 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-10 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-13 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-15 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-16 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-2 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-3 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-4 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-5 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-7 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-iso8859-9 +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-e +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-r +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-ru +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-u +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-koi8-uni +comic.ttf -microsoft-comic sans ms-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-adobe-standard +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-ascii-0 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso10646-1 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-1 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-10 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-13 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-15 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-16 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-2 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-3 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-4 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-5 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-7 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-iso8859-9 +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-e +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-r +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-ru +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-u +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-koi8-uni +comicbd.ttf -microsoft-comic sans ms-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-adobe-standard +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-ascii-0 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso10646-1 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-1 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-10 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-13 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-15 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-16 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-2 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-3 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-4 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-5 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-7 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-iso8859-9 +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-e +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-r +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-ru +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-u +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-koi8-uni +comici.ttf -microsoft-comic sans ms-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-adobe-standard +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-ascii-0 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso10646-1 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-1 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-10 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-13 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-15 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-16 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-2 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-3 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-4 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-5 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-7 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-iso8859-9 +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-e +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-r +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-ru +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-u +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-koi8-uni +comicz.ttf -microsoft-comic sans ms-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-adobe-standard +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ascii-0 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp437 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp850 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp852 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-ibm-cp866 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso10646-1 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-1 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-10 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-13 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-15 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-16 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-2 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-3 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-4 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-5 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-7 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-iso8859-9 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-e +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-r +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-ru +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-u +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-koi8-uni +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252 +consola.ttf -microsoft-consolas-medium-r-normal--0-0-0-0-m-0-suneu-greek +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-adobe-standard +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ascii-0 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp437 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp850 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp852 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-ibm-cp866 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso10646-1 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-1 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-10 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-13 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-15 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-16 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-2 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-3 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-4 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-5 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-7 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-iso8859-9 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-e +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-r +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-ru +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-u +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-koi8-uni +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252 +consolab.ttf -microsoft-consolas-bold-r-normal--0-0-0-0-m-0-suneu-greek +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-adobe-standard +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ascii-0 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp437 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp850 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp852 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-ibm-cp866 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso10646-1 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-1 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-10 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-13 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-15 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-16 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-2 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-3 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-4 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-5 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-7 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-iso8859-9 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-e +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-r +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-ru +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-u +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-koi8-uni +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-microsoft-cp1252 +consolai.ttf -microsoft-consolas-medium-i-normal--0-0-0-0-m-0-suneu-greek +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-adobe-standard +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ascii-0 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp437 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp850 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp852 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-ibm-cp866 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso10646-1 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-1 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-10 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-13 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-15 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-16 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-2 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-3 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-4 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-5 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-7 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-iso8859-9 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-e +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-r +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-ru +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-u +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-koi8-uni +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-microsoft-cp1252 +consolaz.ttf -microsoft-consolas-bold-i-normal--0-0-0-0-m-0-suneu-greek +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-adobe-standard +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-ascii-0 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso10646-1 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-1 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-10 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-13 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-15 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-16 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-2 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-3 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-4 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-5 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-7 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-iso8859-9 +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-e +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-r +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-ru +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-u +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-koi8-uni +constan.ttf -microsoft-constantia-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-adobe-standard +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-ascii-0 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso10646-1 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-1 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-10 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-13 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-15 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-16 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-2 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-3 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-4 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-5 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-7 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-iso8859-9 +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-e +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-r +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-ru +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-u +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-koi8-uni +constanb.ttf -microsoft-constantia-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-adobe-standard +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-ascii-0 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso10646-1 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-1 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-10 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-13 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-15 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-16 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-2 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-3 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-4 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-5 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-7 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-iso8859-9 +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-e +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-r +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-ru +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-u +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-koi8-uni +constani.ttf -microsoft-constantia-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-adobe-standard +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-ascii-0 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso10646-1 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-1 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-10 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-13 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-15 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-16 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-2 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-3 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-4 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-5 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-7 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-iso8859-9 +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-e +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-r +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-ru +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-u +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-koi8-uni +constanz.ttf -microsoft-constantia-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-adobe-standard +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-ascii-0 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso10646-1 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-1 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-10 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-13 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-15 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-16 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-2 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-3 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-4 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-5 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-7 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-iso8859-9 +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-e +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-r +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-ru +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-u +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-koi8-uni +corbel.ttf -microsoft-corbel-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-adobe-standard +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-ascii-0 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso10646-1 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-1 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-10 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-13 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-15 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-16 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-2 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-3 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-4 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-5 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-7 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-iso8859-9 +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-e +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-r +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-ru +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-u +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-koi8-uni +corbelb.ttf -microsoft-corbel-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-adobe-standard +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-ascii-0 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso10646-1 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-1 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-10 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-13 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-15 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-16 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-2 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-3 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-4 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-5 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-7 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-iso8859-9 +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-e +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-r +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-ru +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-u +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-koi8-uni +corbeli.ttf -microsoft-corbel-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-adobe-standard +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-ascii-0 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso10646-1 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-1 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-10 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-13 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-15 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-16 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-2 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-3 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-4 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-5 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-7 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-iso8859-9 +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-e +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-r +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-ru +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-u +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-koi8-uni +corbell.ttf -microsoft-corbel light-light-r-normal--0-0-0-0-p-0-microsoft-cp1252 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-adobe-standard +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-ascii-0 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso10646-1 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-1 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-10 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-13 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-15 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-16 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-2 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-3 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-4 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-5 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-7 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-iso8859-9 +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-e +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-r +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-ru +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-u +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-koi8-uni +corbelli.ttf -microsoft-corbel light-light-i-normal--0-0-0-0-p-0-microsoft-cp1252 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-adobe-standard +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-ascii-0 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso10646-1 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-1 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-10 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-13 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-15 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-16 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-2 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-3 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-4 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-5 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-7 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-iso8859-9 +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-e +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-r +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-ru +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-u +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-koi8-uni +corbelz.ttf -microsoft-corbel-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-adobe-standard +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ascii-0 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp437 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp850 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp852 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-ibm-cp866 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso10646-1 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-1 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-10 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-13 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-15 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-16 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-2 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-3 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-4 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-5 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-6 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-6.16 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-6.8x +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-7 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-8 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-iso8859-9 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-e +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-r +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-ru +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-u +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-koi8-uni +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252 +cour.ttf -monotype-courier new-medium-r-normal--0-0-0-0-m-0-suneu-greek +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-adobe-standard +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ascii-0 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp437 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp850 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp852 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-ibm-cp866 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso10646-1 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-1 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-10 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-13 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-15 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-16 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-2 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-3 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-4 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-5 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-6 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-6.16 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-6.8x +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-7 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-8 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-iso8859-9 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-e +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-r +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-ru +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-u +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-koi8-uni +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252 +courbd.ttf -monotype-courier new-bold-r-normal--0-0-0-0-m-0-suneu-greek +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-adobe-standard +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ascii-0 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp437 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp850 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp852 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-ibm-cp866 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso10646-1 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-1 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-10 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-13 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-15 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-16 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-2 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-3 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-4 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-5 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-7 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-8 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-iso8859-9 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-e +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-r +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-ru +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-u +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-koi8-uni +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-microsoft-cp1252 +courbi.ttf -monotype-courier new-bold-i-normal--0-0-0-0-m-0-suneu-greek +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-adobe-standard +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ascii-0 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp437 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp850 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp852 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-ibm-cp866 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso10646-1 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-1 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-10 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-13 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-15 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-16 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-2 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-3 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-4 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-5 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-7 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-8 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-iso8859-9 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-e +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-r +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-ru +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-u +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-koi8-uni +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-microsoft-cp1252 +couri.ttf -monotype-courier new-medium-i-normal--0-0-0-0-m-0-suneu-greek +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-adobe-standard +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ascii-0 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso10646-1 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-1 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-10 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-13 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-15 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-16 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-2 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-3 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-4 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-5 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-7 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-iso8859-9 +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-e +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-r +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-ru +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-u +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-koi8-uni +framd.ttf -itc-franklin gothic medium-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-adobe-standard +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ascii-0 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp437 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp850 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp852 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-ibm-cp866 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso10646-1 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-1 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-10 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-13 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-15 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-2 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-3 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-4 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-5 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-7 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-iso8859-9 +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-e +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-r +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-ru +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-u +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-koi8-uni +framdit.ttf -itc-franklin gothic medium-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-adobe-standard +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-ascii-0 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso10646-1 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-1 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-10 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-13 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-15 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-16 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-2 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-3 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-4 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-5 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-7 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-iso8859-9 +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-e +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-r +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-ru +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-u +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-koi8-uni +georgia.ttf -microsoft-georgia-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-adobe-standard +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-ascii-0 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso10646-1 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-1 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-10 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-13 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-15 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-16 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-2 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-3 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-4 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-5 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-7 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-iso8859-9 +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-e +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-r +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-ru +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-u +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-koi8-uni +georgiab.ttf -microsoft-georgia-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-adobe-standard +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-ascii-0 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso10646-1 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-1 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-10 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-13 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-15 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-16 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-2 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-3 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-4 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-5 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-7 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-iso8859-9 +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-e +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-r +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-ru +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-u +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-koi8-uni +georgiai.ttf -microsoft-georgia-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-adobe-standard +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-ascii-0 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso10646-1 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-1 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-10 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-13 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-15 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-16 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-2 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-3 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-4 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-5 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-7 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-iso8859-9 +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-e +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-r +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-ru +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-u +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-koi8-uni +georgiaz.ttf -microsoft-georgia-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-adobe-standard +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ascii-0 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp437 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp850 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp852 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-ibm-cp866 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso10646-1 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-1 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-10 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-13 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-15 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-16 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-2 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-3 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-4 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-5 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-7 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-iso8859-9 +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-e +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-r +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-ru +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-u +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-koi8-uni +impact.ttf -monotype-impact-medium-r-condensed--0-0-0-0-p-0-microsoft-cp1252 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-adobe-standard +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ascii-0 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso10646-1 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-1 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-10 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-13 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-15 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-16 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-2 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-3 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-4 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-5 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-7 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-8 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-iso8859-9 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-e +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-r +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-ru +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-u +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-koi8-uni +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +l_10646.ttf -b&h-lucida sans unicode-medium-r-normal--0-0-0-0-p-0-suneu-greek +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-adobe-standard +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ascii-0 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp437 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp850 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp852 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-ibm-cp866 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso10646-1 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-1 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-10 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-13 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-15 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-16 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-2 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-3 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-4 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-5 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-7 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-iso8859-9 +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-e +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-r +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-ru +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-u +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-koi8-uni +lucon.ttf -b&h-lucida console-medium-r-semicondensed--0-0-0-0-m-0-microsoft-cp1252 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-16 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-e +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-r +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-u +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoepr.ttf -microsoft-segoe print-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-adobe-standard +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-ascii-0 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso10646-1 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-1 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-10 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-13 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-15 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-16 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-2 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-3 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-4 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-5 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-7 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-iso8859-9 +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-e +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-r +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-ru +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-u +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-koi8-uni +segoeprb.ttf -microsoft-segoe print-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-e +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-r +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-u +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoesc.ttf -microsoft-segoe script-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-adobe-standard +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-ascii-0 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso10646-1 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-1 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-10 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-13 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-15 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-2 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-3 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-4 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-5 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-7 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-iso8859-9 +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-e +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-r +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-ru +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-u +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-koi8-uni +segoescb.ttf -microsoft-segoe script-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-16 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-6 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-8 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-e +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-r +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-u +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeui.ttf -microsoft-segoe ui-medium-r-normal--0-0-0-0-p-0-suneu-greek +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-adobe-standard +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-ascii-0 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso10646-1 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-1 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-10 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-13 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-15 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-16 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-2 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-3 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-4 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-5 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-6 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-7 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-8 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-iso8859-9 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-e +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-r +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-ru +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-u +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-koi8-uni +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuib.ttf -microsoft-segoe ui-bold-r-normal--0-0-0-0-p-0-suneu-greek +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-adobe-standard +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-ascii-0 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso10646-1 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-1 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-10 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-13 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-15 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-16 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-2 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-3 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-4 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-5 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-7 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-iso8859-9 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-e +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-r +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-ru +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-u +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-koi8-uni +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuii.ttf -microsoft-segoe ui-medium-i-normal--0-0-0-0-p-0-suneu-greek +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-adobe-standard +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-ascii-0 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso10646-1 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-1 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-10 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-13 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-15 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-16 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-2 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-3 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-4 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-5 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-6 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-7 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-8 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-iso8859-9 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-e +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-r +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-ru +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-u +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-koi8-uni +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuil.ttf -microsoft-segoe ui light-light-r-normal--0-0-0-0-p-0-suneu-greek +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-adobe-standard +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-ascii-0 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso10646-1 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-1 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-10 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-13 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-15 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-16 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-2 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-3 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-4 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-5 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-6 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-7 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-8 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-iso8859-9 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-e +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-r +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-ru +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-u +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-koi8-uni +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuisl.ttf -microsoft-segoe ui semilight-medium-r-normal--0-0-0-0-p-0-suneu-greek +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-adobe-standard +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-ascii-0 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso10646-1 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-1 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-10 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-13 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-15 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-16 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-2 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-3 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-4 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-5 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-7 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-iso8859-9 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-e +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-r +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-ru +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-u +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-koi8-uni +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +segoeuiz.ttf -microsoft-segoe ui-bold-i-normal--0-0-0-0-p-0-suneu-greek +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-adobe-standard +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-ascii-0 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso10646-1 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-1 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-10 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-13 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-15 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-16 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-2 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-3 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-4 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-5 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-7 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-iso8859-9 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-e +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-r +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-ru +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-u +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-koi8-uni +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguibl.ttf -microsoft-segoe ui black-black-r-normal--0-0-0-0-p-0-suneu-greek +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-adobe-standard +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-ascii-0 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso10646-1 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-1 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-10 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-13 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-15 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-16 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-2 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-3 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-4 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-5 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-7 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-iso8859-9 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-e +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-r +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-ru +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-u +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-koi8-uni +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguibli.ttf -microsoft-segoe ui black-black-i-normal--0-0-0-0-p-0-suneu-greek +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-adobe-standard +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-ascii-0 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-iso10646-1 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-iso8859-1 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-iso8859-15 +seguiemj.ttf -microsoft-segoe ui emoji-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-ascii-0 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-iso10646-1 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-iso8859-1 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-iso8859-15 +seguihis.ttf -microsoft-segoe ui historic-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-adobe-standard +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-ascii-0 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso10646-1 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-1 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-10 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-13 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-15 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-16 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-2 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-3 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-4 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-5 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-7 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-iso8859-9 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-e +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-r +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-ru +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-u +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-koi8-uni +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguili.ttf -microsoft-segoe ui light-light-i-normal--0-0-0-0-p-0-suneu-greek +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-adobe-standard +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-ascii-0 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso10646-1 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-1 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-10 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-13 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-15 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-16 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-2 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-3 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-4 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-5 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-6 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-6.16 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-6.8x +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-7 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-8 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-iso8859-9 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-e +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-r +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-ru +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-u +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-koi8-uni +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +seguisb.ttf -microsoft-segoe ui semibold-semibold-r-normal--0-0-0-0-p-0-suneu-greek +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-adobe-standard +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-ascii-0 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso10646-1 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-1 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-10 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-13 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-15 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-16 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-2 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-3 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-4 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-5 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-7 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-iso8859-9 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-e +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-r +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-ru +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-u +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-koi8-uni +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguisbi.ttf -microsoft-segoe ui semibold-semibold-i-normal--0-0-0-0-p-0-suneu-greek +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-adobe-standard +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-ascii-0 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso10646-1 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-1 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-10 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-13 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-15 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-16 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-2 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-3 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-4 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-5 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-7 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-iso8859-9 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-e +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-r +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-ru +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-u +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-koi8-uni +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +seguisli.ttf -microsoft-segoe ui semilight-medium-i-normal--0-0-0-0-p-0-suneu-greek +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-adobe-symbol +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-ascii-0 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso10646-1 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso8859-1 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso8859-15 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-iso8859-7 +seguisym.ttf -microsoft-segoe ui symbol-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +symbol.ttf -monotype-symbol-medium-r-normal--0-0-0-0-p-0-iso8859-1 +symbol.ttf -monotype-symbol-medium-r-normal--0-0-0-0-p-0-microsoft-symbol +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-adobe-standard +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ascii-0 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso10646-1 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-1 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-10 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-11 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-13 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-15 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-16 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-2 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-3 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-4 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-5 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-6 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-7 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-8 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-iso8859-9 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-e +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-r +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-ru +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-u +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-koi8-uni +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +tahoma.ttf -microsoft-tahoma-medium-r-normal--0-0-0-0-p-0-suneu-greek +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-adobe-standard +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ascii-0 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp437 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-ibm-cp866 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso10646-1 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-1 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-10 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-11 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-13 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-15 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-16 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-2 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-3 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-4 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-5 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-6 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-7 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-8 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-iso8859-9 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-e +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-r +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-ru +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-u +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-koi8-uni +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +tahomabd.ttf -microsoft-tahoma-bold-r-normal--0-0-0-0-p-0-suneu-greek +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-adobe-standard +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ascii-0 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp437 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp850 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp852 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-ibm-cp866 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso10646-1 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-1 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-10 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-13 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-15 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-16 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-2 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-3 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-4 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-5 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-6 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-6.16 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-6.8x +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-7 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-8 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-iso8859-9 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-e +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-r +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-ru +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-u +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-koi8-uni +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +times.ttf -monotype-times new roman-medium-r-normal--0-0-0-0-p-0-suneu-greek +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-adobe-standard +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ascii-0 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp437 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp850 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp852 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-ibm-cp866 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso10646-1 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-1 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-10 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-13 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-15 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-16 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-2 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-3 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-4 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-5 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-6 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-6.16 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-6.8x +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-7 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-8 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-iso8859-9 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-e +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-r +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-ru +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-u +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-koi8-uni +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +timesbd.ttf -monotype-times new roman-bold-r-normal--0-0-0-0-p-0-suneu-greek +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-adobe-standard +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ascii-0 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp437 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp850 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp852 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-ibm-cp866 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso10646-1 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-1 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-10 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-13 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-15 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-16 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-2 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-3 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-4 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-5 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-7 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-8 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-iso8859-9 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-e +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-r +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-ru +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-u +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-koi8-uni +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +timesbi.ttf -monotype-times new roman-bold-i-normal--0-0-0-0-p-0-suneu-greek +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-adobe-standard +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ascii-0 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp437 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp850 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp852 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-ibm-cp866 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso10646-1 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-1 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-10 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-13 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-15 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-16 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-2 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-3 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-4 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-5 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-7 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-8 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-iso8859-9 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-e +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-r +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-ru +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-u +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-koi8-uni +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +timesi.ttf -monotype-times new roman-medium-i-normal--0-0-0-0-p-0-suneu-greek +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-adobe-standard +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-ascii-0 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso10646-1 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-1 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-10 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-13 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-15 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-16 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-2 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-3 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-4 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-5 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-7 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-iso8859-9 +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-e +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-r +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-ru +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-u +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-koi8-uni +trebuc.ttf -microsoft-trebuchet ms-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-adobe-standard +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-ascii-0 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso10646-1 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-1 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-10 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-13 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-15 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-16 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-2 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-3 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-4 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-5 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-7 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-iso8859-9 +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-e +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-r +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-ru +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-u +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-koi8-uni +trebucbd.ttf -microsoft-trebuchet ms-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-adobe-standard +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-ascii-0 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso10646-1 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-1 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-10 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-13 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-15 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-16 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-2 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-3 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-4 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-5 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-7 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-iso8859-9 +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-e +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-r +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-ru +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-u +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-koi8-uni +trebucbi.ttf -microsoft-trebuchet ms-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-adobe-standard +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-ascii-0 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso10646-1 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-1 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-10 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-13 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-15 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-16 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-2 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-3 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-4 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-5 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-7 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-iso8859-9 +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-e +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-r +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-ru +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-u +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-koi8-uni +trebucit.ttf -microsoft-trebuchet ms-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-adobe-standard +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-ascii-0 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso10646-1 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-1 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-10 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-13 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-15 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-16 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-2 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-3 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-4 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-5 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-7 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-iso8859-9 +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-e +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-r +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-ru +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-u +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-koi8-uni +verdana.ttf -microsoft-verdana-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-adobe-standard +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-ascii-0 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso10646-1 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-1 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-10 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-13 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-15 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-16 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-2 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-3 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-4 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-5 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-7 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-iso8859-9 +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-e +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-r +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-ru +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-u +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-koi8-uni +verdanab.ttf -microsoft-verdana-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-adobe-standard +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-ascii-0 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso10646-1 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-1 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-10 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-13 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-15 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-16 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-2 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-3 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-4 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-5 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-7 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-iso8859-9 +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-e +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-r +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-ru +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-u +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-koi8-uni +verdanai.ttf -microsoft-verdana-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-adobe-standard +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-ascii-0 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso10646-1 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-1 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-10 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-13 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-15 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-16 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-2 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-3 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-4 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-5 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-7 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-iso8859-9 +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-e +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-r +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-ru +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-u +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-koi8-uni +verdanaz.ttf -microsoft-verdana-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252 +webdings.ttf -microsoft-webdings-medium-r-normal--0-0-0-0-p-0-iso8859-1 +webdings.ttf -microsoft-webdings-medium-r-normal--0-0-0-0-p-0-microsoft-symbol +wingding.ttf -microsoft-wingdings-medium-r-normal--0-0-0-0-p-0-iso8859-1 +wingding.ttf -microsoft-wingdings-medium-r-normal--0-0-0-0-p-0-microsoft-symbol diff --git a/home-config/fonts/windows/framd.ttf b/home-config/fonts/windows/framd.ttf new file mode 100755 index 0000000..ca7e2ae Binary files /dev/null and b/home-config/fonts/windows/framd.ttf differ diff --git a/home-config/fonts/windows/framdit.ttf b/home-config/fonts/windows/framdit.ttf new file mode 100755 index 0000000..44993d7 Binary files /dev/null and b/home-config/fonts/windows/framdit.ttf differ diff --git a/home-config/fonts/windows/georgia.ttf b/home-config/fonts/windows/georgia.ttf new file mode 100755 index 0000000..43672d8 Binary files /dev/null and b/home-config/fonts/windows/georgia.ttf differ diff --git a/home-config/fonts/windows/georgiab.ttf b/home-config/fonts/windows/georgiab.ttf new file mode 100755 index 0000000..f460970 Binary files /dev/null and b/home-config/fonts/windows/georgiab.ttf differ diff --git a/home-config/fonts/windows/georgiai.ttf b/home-config/fonts/windows/georgiai.ttf new file mode 100755 index 0000000..c9f60e7 Binary files /dev/null and b/home-config/fonts/windows/georgiai.ttf differ diff --git a/home-config/fonts/windows/georgiaz.ttf b/home-config/fonts/windows/georgiaz.ttf new file mode 100755 index 0000000..124d291 Binary files /dev/null and b/home-config/fonts/windows/georgiaz.ttf differ diff --git a/home-config/fonts/windows/impact.ttf b/home-config/fonts/windows/impact.ttf new file mode 100755 index 0000000..2675688 Binary files /dev/null and b/home-config/fonts/windows/impact.ttf differ diff --git a/home-config/fonts/windows/l_10646.ttf b/home-config/fonts/windows/l_10646.ttf new file mode 100755 index 0000000..afb1c60 Binary files /dev/null and b/home-config/fonts/windows/l_10646.ttf differ diff --git a/home-config/fonts/windows/lucon.ttf b/home-config/fonts/windows/lucon.ttf new file mode 100755 index 0000000..db9fb00 Binary files /dev/null and b/home-config/fonts/windows/lucon.ttf differ diff --git a/home-config/fonts/windows/segoepr.ttf b/home-config/fonts/windows/segoepr.ttf new file mode 100755 index 0000000..f72ba5c Binary files /dev/null and b/home-config/fonts/windows/segoepr.ttf differ diff --git a/home-config/fonts/windows/segoeprb.ttf b/home-config/fonts/windows/segoeprb.ttf new file mode 100755 index 0000000..8111e18 Binary files /dev/null and b/home-config/fonts/windows/segoeprb.ttf differ diff --git a/home-config/fonts/windows/segoesc.ttf b/home-config/fonts/windows/segoesc.ttf new file mode 100755 index 0000000..6511a43 Binary files /dev/null and b/home-config/fonts/windows/segoesc.ttf differ diff --git a/home-config/fonts/windows/segoescb.ttf b/home-config/fonts/windows/segoescb.ttf new file mode 100755 index 0000000..8240a7e Binary files /dev/null and b/home-config/fonts/windows/segoescb.ttf differ diff --git a/home-config/fonts/windows/segoeui.ttf b/home-config/fonts/windows/segoeui.ttf new file mode 100755 index 0000000..0f52cbd Binary files /dev/null and b/home-config/fonts/windows/segoeui.ttf differ diff --git a/home-config/fonts/windows/segoeuib.ttf b/home-config/fonts/windows/segoeuib.ttf new file mode 100755 index 0000000..ff196d6 Binary files /dev/null and b/home-config/fonts/windows/segoeuib.ttf differ diff --git a/home-config/fonts/windows/segoeuii.ttf b/home-config/fonts/windows/segoeuii.ttf new file mode 100755 index 0000000..5dd3c32 Binary files /dev/null and b/home-config/fonts/windows/segoeuii.ttf differ diff --git a/home-config/fonts/windows/segoeuil.ttf b/home-config/fonts/windows/segoeuil.ttf new file mode 100755 index 0000000..23fb04d Binary files /dev/null and b/home-config/fonts/windows/segoeuil.ttf differ diff --git a/home-config/fonts/windows/segoeuisl.ttf b/home-config/fonts/windows/segoeuisl.ttf new file mode 100755 index 0000000..a276476 Binary files /dev/null and b/home-config/fonts/windows/segoeuisl.ttf differ diff --git a/home-config/fonts/windows/segoeuiz.ttf b/home-config/fonts/windows/segoeuiz.ttf new file mode 100755 index 0000000..c393040 Binary files /dev/null and b/home-config/fonts/windows/segoeuiz.ttf differ diff --git a/home-config/fonts/windows/seguibl.ttf b/home-config/fonts/windows/seguibl.ttf new file mode 100755 index 0000000..b296657 Binary files /dev/null and b/home-config/fonts/windows/seguibl.ttf differ diff --git a/home-config/fonts/windows/seguibli.ttf b/home-config/fonts/windows/seguibli.ttf new file mode 100755 index 0000000..d38c82c Binary files /dev/null and b/home-config/fonts/windows/seguibli.ttf differ diff --git a/home-config/fonts/windows/seguiemj.ttf b/home-config/fonts/windows/seguiemj.ttf new file mode 100755 index 0000000..77497bf Binary files /dev/null and b/home-config/fonts/windows/seguiemj.ttf differ diff --git a/home-config/fonts/windows/seguihis.ttf b/home-config/fonts/windows/seguihis.ttf new file mode 100755 index 0000000..a10c573 Binary files /dev/null and b/home-config/fonts/windows/seguihis.ttf differ diff --git a/home-config/fonts/windows/seguili.ttf b/home-config/fonts/windows/seguili.ttf new file mode 100755 index 0000000..73bfedd Binary files /dev/null and b/home-config/fonts/windows/seguili.ttf differ diff --git a/home-config/fonts/windows/seguisb.ttf b/home-config/fonts/windows/seguisb.ttf new file mode 100755 index 0000000..90b39f7 Binary files /dev/null and b/home-config/fonts/windows/seguisb.ttf differ diff --git a/home-config/fonts/windows/seguisbi.ttf b/home-config/fonts/windows/seguisbi.ttf new file mode 100755 index 0000000..4d57335 Binary files /dev/null and b/home-config/fonts/windows/seguisbi.ttf differ diff --git a/home-config/fonts/windows/seguisli.ttf b/home-config/fonts/windows/seguisli.ttf new file mode 100755 index 0000000..dbd8664 Binary files /dev/null and b/home-config/fonts/windows/seguisli.ttf differ diff --git a/home-config/fonts/windows/seguisym.ttf b/home-config/fonts/windows/seguisym.ttf new file mode 100755 index 0000000..d987ce5 Binary files /dev/null and b/home-config/fonts/windows/seguisym.ttf differ diff --git a/home-config/fonts/windows/symbol.ttf b/home-config/fonts/windows/symbol.ttf new file mode 100755 index 0000000..897384a Binary files /dev/null and b/home-config/fonts/windows/symbol.ttf differ diff --git a/home-config/fonts/windows/tahoma.ttf b/home-config/fonts/windows/tahoma.ttf new file mode 100755 index 0000000..b7b7086 Binary files /dev/null and b/home-config/fonts/windows/tahoma.ttf differ diff --git a/home-config/fonts/windows/tahomabd.ttf b/home-config/fonts/windows/tahomabd.ttf new file mode 100755 index 0000000..2b694bf Binary files /dev/null and b/home-config/fonts/windows/tahomabd.ttf differ diff --git a/home-config/fonts/windows/times.ttf b/home-config/fonts/windows/times.ttf new file mode 100755 index 0000000..f71d84a Binary files /dev/null and b/home-config/fonts/windows/times.ttf differ diff --git a/home-config/fonts/windows/timesbd.ttf b/home-config/fonts/windows/timesbd.ttf new file mode 100755 index 0000000..43259eb Binary files /dev/null and b/home-config/fonts/windows/timesbd.ttf differ diff --git a/home-config/fonts/windows/timesbi.ttf b/home-config/fonts/windows/timesbi.ttf new file mode 100755 index 0000000..c0b27d2 Binary files /dev/null and b/home-config/fonts/windows/timesbi.ttf differ diff --git a/home-config/fonts/windows/timesi.ttf b/home-config/fonts/windows/timesi.ttf new file mode 100755 index 0000000..4bcad69 Binary files /dev/null and b/home-config/fonts/windows/timesi.ttf differ diff --git a/home-config/fonts/windows/trebuc.ttf b/home-config/fonts/windows/trebuc.ttf new file mode 100755 index 0000000..549a507 Binary files /dev/null and b/home-config/fonts/windows/trebuc.ttf differ diff --git a/home-config/fonts/windows/trebucbd.ttf b/home-config/fonts/windows/trebucbd.ttf new file mode 100755 index 0000000..45891de Binary files /dev/null and b/home-config/fonts/windows/trebucbd.ttf differ diff --git a/home-config/fonts/windows/trebucbi.ttf b/home-config/fonts/windows/trebucbi.ttf new file mode 100755 index 0000000..23e4b8b Binary files /dev/null and b/home-config/fonts/windows/trebucbi.ttf differ diff --git a/home-config/fonts/windows/trebucit.ttf b/home-config/fonts/windows/trebucit.ttf new file mode 100755 index 0000000..41edbfa Binary files /dev/null and b/home-config/fonts/windows/trebucit.ttf differ diff --git a/home-config/fonts/windows/verdana.ttf b/home-config/fonts/windows/verdana.ttf new file mode 100755 index 0000000..9a34997 Binary files /dev/null and b/home-config/fonts/windows/verdana.ttf differ diff --git a/home-config/fonts/windows/verdanab.ttf b/home-config/fonts/windows/verdanab.ttf new file mode 100755 index 0000000..fe8e687 Binary files /dev/null and b/home-config/fonts/windows/verdanab.ttf differ diff --git a/home-config/fonts/windows/verdanai.ttf b/home-config/fonts/windows/verdanai.ttf new file mode 100755 index 0000000..23a6a03 Binary files /dev/null and b/home-config/fonts/windows/verdanai.ttf differ diff --git a/home-config/fonts/windows/verdanaz.ttf b/home-config/fonts/windows/verdanaz.ttf new file mode 100755 index 0000000..ff3b385 Binary files /dev/null and b/home-config/fonts/windows/verdanaz.ttf differ diff --git a/home-config/fonts/windows/webdings.ttf b/home-config/fonts/windows/webdings.ttf new file mode 100755 index 0000000..73ae1a5 Binary files /dev/null and b/home-config/fonts/windows/webdings.ttf differ diff --git a/home-config/fonts/windows/wingding.ttf b/home-config/fonts/windows/wingding.ttf new file mode 100755 index 0000000..6e38f7f Binary files /dev/null and b/home-config/fonts/windows/wingding.ttf differ diff --git a/home-config/git/gitconfig b/home-config/git/gitconfig new file mode 100644 index 0000000..1090f25 --- /dev/null +++ b/home-config/git/gitconfig @@ -0,0 +1,8 @@ +[user] + signingkey = 4F6BC11CEBB2F24214B90FAC9FF6937B829E565A + email = tylerm@tylerm.dev + name = Tyler Murphy +[commit] + gpgsign = true +[init] + defaultBranch = main diff --git a/home-config/gnupg/gpg-agent.conf b/home-config/gnupg/gpg-agent.conf new file mode 100644 index 0000000..230b310 --- /dev/null +++ b/home-config/gnupg/gpg-agent.conf @@ -0,0 +1,2 @@ +enable-ssh-support +display :0 diff --git a/home-config/gnupg/sshcontrol b/home-config/gnupg/sshcontrol new file mode 100644 index 0000000..c61ee5c --- /dev/null +++ b/home-config/gnupg/sshcontrol @@ -0,0 +1,11 @@ +# List of allowed ssh keys. Only keys present in this file are used +# in the SSH protocol. The ssh-add tool may add new entries to this +# file to enable them; you may also add them manually. Comment +# lines, like this one, as well as empty lines are ignored. Lines do +# have a certain length limit but this is not serious limitation as +# the format of the entries is fixed and checked by gpg-agent. A +# non-comment line starts with optional white spaces, followed by the +# keygrip of the key given as 40 hex digits, optionally followed by a +# caching TTL in seconds, and another optional field for arbitrary +# flags. Prepend the keygrip with an '!' mark to disable it. + diff --git a/home-config/gtk/gtk-3.0/bookmarks b/home-config/gtk/gtk-3.0/bookmarks new file mode 100644 index 0000000..031170a --- /dev/null +++ b/home-config/gtk/gtk-3.0/bookmarks @@ -0,0 +1,2 @@ +file:///home/tylerm/code +file:///home/tylerm/sync diff --git a/home-config/gtk/gtk-3.0/settings.ini b/home-config/gtk/gtk-3.0/settings.ini new file mode 100644 index 0000000..ed5349d --- /dev/null +++ b/home-config/gtk/gtk-3.0/settings.ini @@ -0,0 +1,18 @@ +[Settings] +gtk-application-prefer-dark-theme=0 +#gtk-theme-name=Catppuccin-Mocha-Standard-Blue-dark +gtk-theme-name=Lavanda-Sea-Dark +gtk-font-name=Cantarell 11 +gtk-cursor-theme-name=Adwaita +gtk-cursor-theme-size=14 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull +gtk-xft-rgba=rgb +gtk-icon-theme-name=Adwaita diff --git a/home-config/gtk/gtk-4.0/settings.ini b/home-config/gtk/gtk-4.0/settings.ini new file mode 100644 index 0000000..7c6461a --- /dev/null +++ b/home-config/gtk/gtk-4.0/settings.ini @@ -0,0 +1,2 @@ +[Settings] +gtk-application-prefer-dark-theme=0 diff --git a/home-config/gtk/gtkrc-2.0 b/home-config/gtk/gtkrc-2.0 new file mode 100644 index 0000000..e6697d4 --- /dev/null +++ b/home-config/gtk/gtkrc-2.0 @@ -0,0 +1,18 @@ +# DO NOT EDIT! This file will be overwritten by LXAppearance. +# Any customization should be done in ~/.gtkrc-2.0.mine instead. + +include "/home/tylerm/.gtkrc-2.0.mine" +gtk-theme-name="Lavanda-Sea-Dark" +gtk-icon-theme-name="Adwaita" +gtk-font-name="Cantarell 11" +gtk-cursor-theme-name="Adwaita" +gtk-cursor-theme-size=14 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle="hintfull" diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm new file mode 100644 index 0000000..707c8df --- /dev/null +++ b/home-config/home-configuration.scm @@ -0,0 +1,126 @@ +;; This "home-environment" file can be passed to 'guix home reconfigure' +;; to reproduce the content of your profile. This is "symbolic": it only +;; specifies package names. To reproduce the exact same profile, you also +;; need to capture the channels being used, as returned by "guix describe". +;; See the "Replicating Guix" section in the manual. + +(use-modules (gnu home) + (gnu packages) + (gnu packages vim) + (gnu packages gcc) + (gnu packages gnupg) + (gnu services) + (guix packages) + (guix gexp) + (gnu home services shells) + (gnu home services desktop) + (gnu home services gnupg) + (gnu home services) + (home-services pipewire) + (home-packages easyeffects)) + +(define my-neovim + (package + (inherit neovim) + (native-inputs + (modify-inputs (package-native-inputs neovim) + (prepend gcc-12))))) + +(home-environment + ;; Below is the list of packages that will show up in your + ;; Home profile, unser ~/.guix-home/profile. + (packages (append (specifications->packages (list "xdg-utils" + "mako" + "i3-autotiling" + "wofi" + "qrencode" + "sassc" + "binutils" + "gcc-toolchain" + "clang-toolchain" + "libreoffice" + "gnupg" + "pavucontrol" + "bind:utils" + "syncthing" + "imv" + "unzip" + "p7zip" + "curl" + "htop" + "curl" + "zathura" + "zathura-pdf-mupdf" + "gimp" + "weechat" + "mpv" + "git" + "pinentry" + "firefox" + "ungoogled-chromium" + "element-desktop" + "nm-tray" + "pfetch" + "acpi" + "brightnessctl" + "neofetch" + "python" + "openjdk" + "maven" + "make" + "tree" + "rust-libc" + "rust-gcc" + "ripgrep" + "fd" + "tree-sitter-cli" + "python-pynvim")) + + (list my-neovim easyeffects))) + + ;; Below is the list of Home services. To search for available + ;; services, run 'guix home search KEYWORD' in a terminal. + (services + (list (service home-zsh-service-type + (home-zsh-configuration + (zshrc (list (local-file "zsh/zshrc"))) + (zprofile (list (local-file "zsh/zprofile"))))) + (service home-xdg-configuration-files-service-type + `(("nvim/init.vim" ,(local-file "nvim/init.vim")) + ("sway" ,(local-file "sway" #:recursive? #t)) + ("waybar" ,(local-file "waybar" #:recursive? #t)) + ("alacritty" ,(local-file "alacritty" #:recursive? #t)) + ("lvim" ,(local-file "lvim" #:recursive? #t)) + ("mako" ,(local-file "mako" #:recursive? #t)) + ("gtk-3.0" ,(local-file "gtk/gtk-3.0" #:recursive? #t)) + ("gtk-4.0" ,(local-file "gtk/gtk-4.0" #:recursive? #t)) + ("wofi" ,(local-file "wofi" #:recursive? #t)) + ("hypr" ,(local-file "hypr" #:recursive? #t)) + ("mimeapps.list" ,(local-file "xdg/mimeapps.list" #:recursive? #t)) + ("user-dirs.dirs" ,(local-file "xdg/user-dirs.dirs" #:recursive? #t)) + ("starship.toml" ,(local-file "starship/starship.toml" #:recursive? #t)) + ("home-manager/home.nix" ,(local-file "nix-home-manager/home.nix")) )) + + (service home-files-service-type + `((".local/share/nvim/site/autoload/plug.vim" ,(local-file "nvim/plug.vim")) + (".ssh/config" ,(local-file "ssh/config")) + (".gnupg/sshcontrol" ,(local-file "gnupg/sshcontrol")) + ;;(".gnupg/gpg-agent.conf" ,(local-file "gnupg/gpg-agent.conf")) + (".local/share/fonts" ,(local-file "fonts" #:recursive? #t)) + (".local/share/themes" ,(local-file "themes" #:recursive? #t)) + (".local/share/applications" ,(local-file "applications" #:recursive? #t)) + (".local/share/icons" ,(local-file "icons" #:recursive? #t)) + (".gtkrc-2.0" ,(local-file "gtk/gtkrc-2.0")) + (".nix-channels" ,(local-file "nix-channels")) + (".gitconfig" ,(local-file "git/gitconfig")) + (".zsh/zsh-autosuggestions" ,(local-file "zsh/zsh-autosuggestions" #:recursive? #t)))) + + (service home-pipewire-service-type) + (service home-dbus-service-type) + (service home-gpg-agent-service-type + (home-gpg-agent-configuration + (pinentry-program + (file-append pinentry "/bin/pinentry")) + (ssh-support? #t))) + + ))) diff --git a/home-config/hypr/config.d/autostart.sh b/home-config/hypr/config.d/autostart.sh new file mode 100755 index 0000000..9b18715 --- /dev/null +++ b/home-config/hypr/config.d/autostart.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +pipewire & &> ~/.log/pipewire +pipewire-pulse & &> ~/.log/pipewire-pulse +wireplumber & &> ~/.log/wireplumber + +/usr/lib/xdg-desktop-portal -r & +/usr/lib/xdg-desktop-portal-hyprland -r & + +waybar & + +mako & + +hyprpaper & + +nm-applet --indicator & + +/usr/bin/gnome-keyring-daemon --foreground & + +discord --enable-features=UseOzonePlatform --ozone-platform=wayland & +element-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland & diff --git a/home-config/hypr/config.d/input.conf b/home-config/hypr/config.d/input.conf new file mode 100644 index 0000000..947ae3d --- /dev/null +++ b/home-config/hypr/config.d/input.conf @@ -0,0 +1,24 @@ + +monitor= eDP-1, 3072x1920, 0x0, $scale + +env = XCURSOR_SIZE, 24 + +input { + kb_layout = us + kb_variant = + kb_model = + kb_options = gtp:alt_shit_toggle, compose:rctrl + kb_rules = + + follow_mouse = 1 + + touchpad { + natural_scroll = yes + } + + sensitivity = 0 +} + +device:epic-mouse-v1 { + sensitivity = -0.5 +} diff --git a/home-config/hypr/config.d/keybinds.conf b/home-config/hypr/config.d/keybinds.conf new file mode 100644 index 0000000..3351e85 --- /dev/null +++ b/home-config/hypr/config.d/keybinds.conf @@ -0,0 +1,34 @@ + +bind = $mod, Return, exec, $term +bind = $mod, W, exec, $browser +bind = $mod SHIFT, SPACE, togglefloating +bind = $mod, D, exec, $menu +bind = $mod, J, togglesplit +bind = $mod, F, fullscreen +bind = $mod, L, exec, killall wlogout || wlogout --css ~/scripts/power/style.css -l ~/scripts/power/layout +bind = $mod, P, exec, killall wlogout || wlogout --css ~/scripts/monitor/style.css -l ~/scripts/monitor/layout -b 2 -L 400 -R 400 +bind = $mod SHIFT, B, exec, killall waybar && waybar +bind = $mod SHIFT, Q, killactive +bind = $mod SHIFT, W, exec, hyprpaper + +$monitor_sh = ~/scripts/monitor +bind = $mod ALT, right, exec, $monitor_sh right +bind = $mod ALT, left, exec, $monitor_sh left +bind = $mod ALT, up, exec, $monitor_sh mirror +bind = $mod ALT, down, exec, $monitor_sh disable + +binde =, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+ +binde =, XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- +binde =, XF86AudioMute, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle +binde =, XF86AudioMicMute, exec, pactl set-source-mute @DEFAULT_SOURCE@ toggle + +binde =, XF86MonBrightnessDown, exec, brightnessctl set 5%- +binde =, XF86MonBrightnessUp, exec, brightnessctl set 5%+ + +binde =, XF86AudioPlay, exec, playerctl play-pause +binde =, XF86AudioNext, exec, playerctl next +binde =, XF86AudioPrev, exec, playerctl previous + +bind = ,Print, exec, grim -g "$(slurp)" - | wl-copy +bind = SHIFT, Print, exec, slurp -p | grim -g - - | convert - txt:- | tail -n 1 | awk '{print $3}' | wl-copy +bind = CONTROL, Print, exec, diff --git a/home-config/hypr/config.d/theme.conf b/home-config/hypr/config.d/theme.conf new file mode 100644 index 0000000..90e23e8 --- /dev/null +++ b/home-config/hypr/config.d/theme.conf @@ -0,0 +1,40 @@ +general { + gaps_in = $radius + gaps_out = $gaps + border_size = $border + col.active_border = rgba(aaaaaa90) + col.inactive_border = rgba(77777790) + col.group_border_active = rgba(aaaaaa90) + col.group_border = rgba(77777790) + + layout = dwindle +} + +decoration { + + rounding = 5 + drop_shadow = yes + shadow_range = 4 + shadow_render_power = 3 + col.shadow = rgba(1a1a1aee) +} + +animations { + enabled = yes + + bezier = myBezier, 0.05, 0.9, 0.1, 1.05 + + #animation = windows, 1, 7, myBezier + #animation = windowsOut, 1, 7, default, popin 80% + animation = border, 1, 10, default + animation = borderangle, 1, 8, default + animation = fade, 1, 7, default + animation = workspaces, 1, 6, default +} + +windowrule = float, ^(wlogout)$ +windowrule = move 12.5% 12.5%, ^(wlogout)$ +windowrule = size 75% 75%, ^(wlogout)$ +windowrule = noborder, ^(wlogout)$ +windowrule = noshadow, ^(wlogout)$ +windowrule = nofullscreenrequest, ^(wlogout)$ diff --git a/home-config/hypr/config.d/workspaces.conf b/home-config/hypr/config.d/workspaces.conf new file mode 100644 index 0000000..2f3e81c --- /dev/null +++ b/home-config/hypr/config.d/workspaces.conf @@ -0,0 +1,58 @@ + +dwindle { + pseudotile = yes + preserve_split = yes +} + +gestures { + workspace_swipe = on +} + +# Move focus with mod + arrow keys + +bind = $mod, left, movefocus, l +bind = $mod, right, movefocus, r +bind = $mod, up, movefocus, u +bind = $mod, down, movefocus, d + +# Move window across workspace with mod + arrow keys + +bind = $mod SHIFT, left, movewindow, l +bind = $mod SHIFT, right, movewindow, r +bind = $mod SHIFT, up, movewindow, u +bind = $mod SHIFT, down, movewindow, d + +# Switch workspaces with mod + [0-9] + +bind = $mod, 1, workspace, 1 +bind = $mod, 2, workspace, 2 +bind = $mod, 3, workspace, 3 +bind = $mod, 4, workspace, 4 +bind = $mod, 5, workspace, 5 +bind = $mod, 6, workspace, 6 +bind = $mod, 7, workspace, 7 +bind = $mod, 8, workspace, 8 +bind = $mod, 9, workspace, 9 + +# Move active window to a workspace with mod + SHIFT + [0-9] + +bind = $mod SHIFT, 1, movetoworkspacesilent, 1 +bind = $mod SHIFT, 2, movetoworkspacesilent, 2 +bind = $mod SHIFT, 3, movetoworkspacesilent, 3 +bind = $mod SHIFT, 4, movetoworkspacesilent, 4 +bind = $mod SHIFT, 5, movetoworkspacesilent, 5 +bind = $mod SHIFT, 6, movetoworkspacesilent, 6 +bind = $mod SHIFT, 7, movetoworkspacesilent, 7 +bind = $mod SHIFT, 8, movetoworkspacesilent, 8 +bind = $mod SHIFT, 9, movetoworkspacesilent, 9 +bind = $mod SHIFT, 0, movetoworkspacesilent, 10 + +# Scroll through existing workspaces with mod + scroll + +bind = $mod, mouse_down, workspace, e+1 +bind = $mod, mouse_up, workspace, e-1 + +# Move/resize windows with mod + LMB/RMB and dragging + +bindm = $mod, mouse:272, movewindow +bindm = $mod, mouse:273, resizewindow diff --git a/home-config/hypr/hyprland.conf b/home-config/hypr/hyprland.conf new file mode 100644 index 0000000..743fa37 --- /dev/null +++ b/home-config/hypr/hyprland.conf @@ -0,0 +1,22 @@ +exec-once = dbus-update-activation-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=Hyprland + +$mod = SUPER + +$term = alacritty + +$menu = wofi --allow-images --show drun --prompt "Search Program" + +$scale = 1.5 + +$radius = 5 +$gaps = 10 +$border = 3 + +$browser = firefox + +source = ~/.config/hypr/config.d/theme.conf +source = ~/.config/hypr/config.d/keybinds.conf +source = ~/.config/hypr/config.d/input.conf +source = ~/.config/hypr/config.d/workspaces.conf + +exec-once = ~/.config/hypr/config.d/autostart.sh diff --git a/home-config/hypr/hyprpaper.conf b/home-config/hypr/hyprpaper.conf new file mode 100644 index 0000000..1bfca3c --- /dev/null +++ b/home-config/hypr/hyprpaper.conf @@ -0,0 +1,2 @@ +preload = ~/sync/wallpapers/nya0.png +wallpaper = ,~/sync/wallpapers/nya0.png diff --git a/home-config/icons/hicolor/16x16/apps/thunderbird.png b/home-config/icons/hicolor/16x16/apps/thunderbird.png new file mode 100644 index 0000000..f48e411 Binary files /dev/null and b/home-config/icons/hicolor/16x16/apps/thunderbird.png differ diff --git a/home-config/icons/hicolor/22x22/apps/thunderbird.png b/home-config/icons/hicolor/22x22/apps/thunderbird.png new file mode 100644 index 0000000..37136a7 Binary files /dev/null and b/home-config/icons/hicolor/22x22/apps/thunderbird.png differ diff --git a/home-config/icons/hicolor/24x24/apps/thunderbird.png b/home-config/icons/hicolor/24x24/apps/thunderbird.png new file mode 100644 index 0000000..6c9888b Binary files /dev/null and b/home-config/icons/hicolor/24x24/apps/thunderbird.png differ diff --git a/home-config/icons/hicolor/256x256/apps/thunderbird.png b/home-config/icons/hicolor/256x256/apps/thunderbird.png new file mode 100644 index 0000000..db25f98 Binary files /dev/null and b/home-config/icons/hicolor/256x256/apps/thunderbird.png differ diff --git a/home-config/icons/hicolor/32x32/apps/thunderbird.png b/home-config/icons/hicolor/32x32/apps/thunderbird.png new file mode 100644 index 0000000..6bbf73e Binary files /dev/null and b/home-config/icons/hicolor/32x32/apps/thunderbird.png differ diff --git a/home-config/icons/hicolor/48x48/apps/thunderbird.png b/home-config/icons/hicolor/48x48/apps/thunderbird.png new file mode 100644 index 0000000..e20ccd2 Binary files /dev/null and b/home-config/icons/hicolor/48x48/apps/thunderbird.png differ diff --git a/home-config/lvim/config.lua b/home-config/lvim/config.lua new file mode 100644 index 0000000..09776ff --- /dev/null +++ b/home-config/lvim/config.lua @@ -0,0 +1,51 @@ +-- Vim Options +local set = vim.opt -- set options +set.tabstop = 4 +set.softtabstop = 4 +set.shiftwidth = 4 +set.mouse = "a" +set.clipboard = "unnamedplus" +set.hlsearch = true +set.autoindent = true +set.ttyfast = true + +lvim.plugins = { + { "catppuccin/nvim", name = "catppuccin" } +} + +-- Lvim Options +lvim.log.level = "warn" +lvim.format_on_save.enabled = false +lvim.colorscheme = "catppuccin" + +-- Keybinds +lvim.leader = "space" +lvim.keys.normal_mode[""] = ":w" + +-- Builtin Shit IDK +lvim.builtin.alpha.active = true +lvim.builtin.alpha.mode = "dashboard" +lvim.builtin.lualine.style = "default" +lvim.builtin.terminal.active = true +lvim.builtin.nvimtree.setup.view.side = "left" +lvim.builtin.nvimtree.setup.renderer.icons.show.git = false + +-- LSP Stuff +lvim.builtin.treesitter.ensure_installed = { + "bash", + "c", + "javascript", + "json", + "lua", + "python", + "typescript", + "tsx", + "css", + "rust", + "java", + "yaml", +} + +-- Idk why were ignoring haskell but it was here by default so whatever +lvim.builtin.treesitter.ignore_install = { "haskell" } +lvim.builtin.treesitter.highlight.enable = true diff --git a/home-config/lvim/lazy-lock.json b/home-config/lvim/lazy-lock.json new file mode 100644 index 0000000..c604568 --- /dev/null +++ b/home-config/lvim/lazy-lock.json @@ -0,0 +1,45 @@ +{ + "Comment.nvim": { "branch": "master", "commit": "38d3b7eb553872d8866f14a0dd4fe84126068fce" }, + "LuaSnip": { "branch": "master", "commit": "e77fa9ad0b1f4fc6cddf54e51047e17e90c7d7ed" }, + "alpha-nvim": { "branch": "main", "commit": "87c204040e3f5d4c1c95067b35905d8f8a2f2545" }, + "bigfile.nvim": { "branch": "main", "commit": "c1bad34ce742b4f360b67ca23c873fef998240fc" }, + "bufferline.nvim": { "branch": "main", "commit": "a4bd44523316928a7c4a5c09a3407d02c30b6027" }, + "catppuccin": { "branch": "main", "commit": "3ffd2f511f3dc6c01258923d7170ccaf1445634b" }, + "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "0e6b2ed705ddcff9738ec4ea838141654f12eeef" }, + "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, + "cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" }, + "friendly-snippets": { "branch": "main", "commit": "631f79e346b0b3203d2ce3eae619ca8d612e5463" }, + "gitsigns.nvim": { "branch": "main", "commit": "e5edefd9976039f5352e0c900f35206770b33a2d" }, + "indent-blankline.nvim": { "branch": "master", "commit": "018bd04d80c9a73d399c1061fa0c3b14a7614399" }, + "lazy.nvim": { "branch": "main", "commit": "d6a782c7002682f4a01b79fc3918c4584ad6e8fb" }, + "lir.nvim": { "branch": "master", "commit": "1aa871f20637eccc4e1e26b0fbcf9aafc9b6caf7" }, + "lualine.nvim": { "branch": "master", "commit": "84ffb80e452d95e2c46fa29a98ea11a240f7843e" }, + "lunar.nvim": { "branch": "master", "commit": "08bbc93b96ad698d22fc2aa01805786bcedc34b9" }, + "mason-lspconfig.nvim": { "branch": "main", "commit": "7276ffffcf51a8304b5fd4b81293be4ee010ec47" }, + "mason.nvim": { "branch": "main", "commit": "057ac5ca159c83e302a55bd839a96ff1ea2396db" }, + "neodev.nvim": { "branch": "main", "commit": "0043cf91c18aeac8db5765eb86c6078e17ac9325" }, + "nlsp-settings.nvim": { "branch": "main", "commit": "32aa12da328258f2dccb15d327c26a8d21d9f4bd" }, + "null-ls.nvim": { "branch": "main", "commit": "33b853a3933eed3137cd055aac4e539e69832ad0" }, + "nvim-autopairs": { "branch": "master", "commit": "7566a86f44bb72ba2b1a609f528a27d93241502d" }, + "nvim-cmp": { "branch": "main", "commit": "11102d3db12c7f8b35265ad0e17a21511e5b1e68" }, + "nvim-dap": { "branch": "master", "commit": "6cedcb527e264c8f25e86afa8dae74c6692dee51" }, + "nvim-dap-ui": { "branch": "master", "commit": "286f682f366fbc652b38dff893569374e9433dd3" }, + "nvim-lspconfig": { "branch": "master", "commit": "427378a03ffc1e1bc023275583a49b1993e524d0" }, + "nvim-navic": { "branch": "master", "commit": "83dc174da915f9dbc9b51169e9b62a2e0d42b527" }, + "nvim-tree.lua": { "branch": "master", "commit": "bb375fb20327c49920c41d2b51c1ce2f4fe7deb3" }, + "nvim-treesitter": { "branch": "master", "commit": "2ce3c9080cfe4a39c7907e672edafd2a95244a7c" }, + "nvim-ts-context-commentstring": { "branch": "main", "commit": "0bf8fbc2ca8f8cdb6efbd0a9e32740d7a991e4c3" }, + "nvim-web-devicons": { "branch": "master", "commit": "986875b7364095d6535e28bd4aac3a9357e91bbe" }, + "onedarker.nvim": { "branch": "freeze", "commit": "b00dd2189f264c5aeb4cf04c59439655ecd573ec" }, + "plenary.nvim": { "branch": "master", "commit": "9ac3e9541bbabd9d73663d757e4fe48a675bb054" }, + "project.nvim": { "branch": "main", "commit": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb" }, + "schemastore.nvim": { "branch": "main", "commit": "0b396f538f195c249f021a48c3d8988f0d3f86f7" }, + "structlog.nvim": { "branch": "main", "commit": "45b26a2b1036bb93c0e83f4225e85ab3cee8f476" }, + "telescope-fzf-native.nvim": { "branch": "main", "commit": "580b6c48651cabb63455e97d7e131ed557b8c7e2" }, + "telescope.nvim": { "branch": "0.1.x", "commit": "9de317bdea2bc393074651179c4fc7f93e9b2d56" }, + "toggleterm.nvim": { "branch": "main", "commit": "68fdf851c2b7901a7065ff129b77d3483419ddce" }, + "tokyonight.nvim": { "branch": "main", "commit": "c5df636ce62a8aab7565f35da143cfd672526302" }, + "vim-illuminate": { "branch": "master", "commit": "a2907275a6899c570d16e95b9db5fd921c167502" }, + "which-key.nvim": { "branch": "main", "commit": "4acffc92953a90a790603bfdab7c92319ab167b1" } +} \ No newline at end of file diff --git a/home-config/mako/config b/home-config/mako/config new file mode 100644 index 0000000..862f2e5 --- /dev/null +++ b/home-config/mako/config @@ -0,0 +1,24 @@ +font=Fira Mono 10 +background-color=#1d1b2b +border-size=2 +border-radius=5 +margin=6 +padding=5,8 +progress-color=#373c47 +layer=overlay +icons=1 + +[urgency=low] +text-color=#98c379 +border-color=#98c379 +default-timeout=10000 + +[urgency=normal] +text-color=#61afef +border-color=#61afef +default-timeout=10000 + +[urgency=critical] +text-color=#e06c75 +border-color=#e06c75 +default-timeout=0 diff --git a/home-config/mako/config.bak b/home-config/mako/config.bak new file mode 100644 index 0000000..88da911 --- /dev/null +++ b/home-config/mako/config.bak @@ -0,0 +1,23 @@ +font=Source Code Pro Medium 10 +background-color=#272b33 +border-size=2 +margin=6 +padding=5,8 +progress-color=#373c47 +layer=overlay +icons=1 + +[urgency=low] +text-color=#98c379 +border-color=#98c379 +default-timeout=10000 + +[urgency=normal] +text-color=#61afef +border-color=#61afef +default-timeout=10000 + +[urgency=critical] +text-color=#e06c75 +border-color=#e06c75 +default-timeout=0 diff --git a/home-config/nix-channels b/home-config/nix-channels new file mode 100644 index 0000000..c040488 --- /dev/null +++ b/home-config/nix-channels @@ -0,0 +1,3 @@ +https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager +https://nixos.org/channels/nixpkgs-unstable nixpkgs + diff --git a/home-config/nix-home-manager/home.nix b/home-config/nix-home-manager/home.nix new file mode 100644 index 0000000..1964f1c --- /dev/null +++ b/home-config/nix-home-manager/home.nix @@ -0,0 +1,31 @@ +{ config, pkgs, ... }: + +{ + # Home Manager needs a bit of information about you and the paths it should + # manage. + home.username = "tylerm"; + home.homeDirectory = "/home/tylerm"; + home.stateVersion = "22.11"; # Please read the comment before changing. + + # This value will set some environment variables to allow home-manager to + # function better outside of NixOS + nixpkgs.config.allowUnfree = true; + targets.genericLinux.enable = true; + fonts.fontconfig.enable = true; + + # The home.packages option allows you to install Nix packages into your + # environment. + home.packages = with pkgs; [ + yt-dlp + starship + discord + thunderbirdPackages.thunderbird-115 + rustup + glibc + gcc + ]; + + # Let Home Manager install and manage itself. + programs.home-manager.enable = true; +} + diff --git a/home-config/nvim/init.vim b/home-config/nvim/init.vim new file mode 100644 index 0000000..45b705b --- /dev/null +++ b/home-config/nvim/init.vim @@ -0,0 +1,36 @@ +call plug#begin() + +Plug 'itchyny/lightline.vim' + +Plug 'folke/tokyonight.nvim', { 'branch': 'main' } + +call plug#end() + +syntax on +filetype plugin indent on + +colorscheme tokyonight-moon +let g:lightline = {'colorscheme': 'tokyonight'} + +set mouse=v +set mouse=a +set clipboard=unnamedplus +set autoindent +set hlsearch +set tabstop=4 +set shiftwidth=0 +set expandtab +set number +set cc=80 +set encoding=utf-8 +set nofoldenable +set laststatus=2 +set noshowmode +set modeline +set mouse=a +set ttyfast +set colorcolumn=0 + +hi Normal guibg=NONE ctermbg=NONE +hi LineNr term=bold cterm=bold ctermfg=2 guifg=White guibg=NONE + diff --git a/home-config/nvim/plug.vim b/home-config/nvim/plug.vim new file mode 100644 index 0000000..9c3011f --- /dev/null +++ b/home-config/nvim/plug.vim @@ -0,0 +1,2812 @@ +" vim-plug: Vim plugin manager +" ============================ +" +" Download plug.vim and put it in ~/.vim/autoload +" +" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ +" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +" +" Edit your .vimrc +" +" call plug#begin('~/.vim/plugged') +" +" " Make sure you use single quotes +" +" " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align +" Plug 'junegunn/vim-easy-align' +" +" " Any valid git URL is allowed +" Plug 'https://github.com/junegunn/vim-github-dashboard.git' +" +" " Multiple Plug commands can be written in a single line using | separators +" Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' +" +" " On-demand loading +" Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle' } +" Plug 'tpope/vim-fireplace', { 'for': 'clojure' } +" +" " Using a non-default branch +" Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } +" +" " Using a tagged release; wildcard allowed (requires git 1.9.2 or above) +" Plug 'fatih/vim-go', { 'tag': '*' } +" +" " Plugin options +" Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } +" +" " Plugin outside ~/.vim/plugged with post-update hook +" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } +" +" " Unmanaged plugin (manually installed and updated) +" Plug '~/my-prototype-plugin' +" +" " Initialize plugin system +" call plug#end() +" +" Then reload .vimrc and :PlugInstall to install plugins. +" +" Plug options: +" +"| Option | Description | +"| ----------------------- | ------------------------------------------------ | +"| `branch`/`tag`/`commit` | Branch/tag/commit of the repository to use | +"| `rtp` | Subdirectory that contains Vim plugin | +"| `dir` | Custom directory for the plugin | +"| `as` | Use different name for the plugin | +"| `do` | Post-update hook (string or funcref) | +"| `on` | On-demand loading: Commands or ``-mappings | +"| `for` | On-demand loading: File types | +"| `frozen` | Do not update unless explicitly specified | +" +" More information: https://github.com/junegunn/vim-plug +" +" +" Copyright (c) 2017 Junegunn Choi +" +" MIT License +" +" Permission is hereby granted, free of charge, to any person obtaining +" a copy of this software and associated documentation files (the +" "Software"), to deal in the Software without restriction, including +" without limitation the rights to use, copy, modify, merge, publish, +" distribute, sublicense, and/or sell copies of the Software, and to +" permit persons to whom the Software is furnished to do so, subject to +" the following conditions: +" +" The above copyright notice and this permission notice shall be +" included in all copies or substantial portions of the Software. +" +" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +" NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +" LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +if exists('g:loaded_plug') + finish +endif +let g:loaded_plug = 1 + +let s:cpo_save = &cpo +set cpo&vim + +let s:plug_src = 'https://github.com/junegunn/vim-plug.git' +let s:plug_tab = get(s:, 'plug_tab', -1) +let s:plug_buf = get(s:, 'plug_buf', -1) +let s:mac_gui = has('gui_macvim') && has('gui_running') +let s:is_win = has('win32') +let s:nvim = has('nvim-0.2') || (has('nvim') && exists('*jobwait') && !s:is_win) +let s:vim8 = has('patch-8.0.0039') && exists('*job_start') +if s:is_win && &shellslash + set noshellslash + let s:me = resolve(expand(':p')) + set shellslash +else + let s:me = resolve(expand(':p')) +endif +let s:base_spec = { 'branch': '', 'frozen': 0 } +let s:TYPE = { +\ 'string': type(''), +\ 'list': type([]), +\ 'dict': type({}), +\ 'funcref': type(function('call')) +\ } +let s:loaded = get(s:, 'loaded', {}) +let s:triggers = get(s:, 'triggers', {}) + +function! s:is_powershell(shell) + return a:shell =~# 'powershell\(\.exe\)\?$' || a:shell =~# 'pwsh\(\.exe\)\?$' +endfunction + +function! s:isabsolute(dir) abort + return a:dir =~# '^/' || (has('win32') && a:dir =~? '^\%(\\\|[A-Z]:\)') +endfunction + +function! s:git_dir(dir) abort + let gitdir = s:trim(a:dir) . '/.git' + if isdirectory(gitdir) + return gitdir + endif + if !filereadable(gitdir) + return '' + endif + let gitdir = matchstr(get(readfile(gitdir), 0, ''), '^gitdir: \zs.*') + if len(gitdir) && !s:isabsolute(gitdir) + let gitdir = a:dir . '/' . gitdir + endif + return isdirectory(gitdir) ? gitdir : '' +endfunction + +function! s:git_origin_url(dir) abort + let gitdir = s:git_dir(a:dir) + let config = gitdir . '/config' + if empty(gitdir) || !filereadable(config) + return '' + endif + return matchstr(join(readfile(config)), '\[remote "origin"\].\{-}url\s*=\s*\zs\S*\ze') +endfunction + +function! s:git_revision(dir) abort + let gitdir = s:git_dir(a:dir) + let head = gitdir . '/HEAD' + if empty(gitdir) || !filereadable(head) + return '' + endif + + let line = get(readfile(head), 0, '') + let ref = matchstr(line, '^ref: \zs.*') + if empty(ref) + return line + endif + + if filereadable(gitdir . '/' . ref) + return get(readfile(gitdir . '/' . ref), 0, '') + endif + + if filereadable(gitdir . '/packed-refs') + for line in readfile(gitdir . '/packed-refs') + if line =~# ' ' . ref + return matchstr(line, '^[0-9a-f]*') + endif + endfor + endif + + return '' +endfunction + +function! s:git_local_branch(dir) abort + let gitdir = s:git_dir(a:dir) + let head = gitdir . '/HEAD' + if empty(gitdir) || !filereadable(head) + return '' + endif + let branch = matchstr(get(readfile(head), 0, ''), '^ref: refs/heads/\zs.*') + return len(branch) ? branch : 'HEAD' +endfunction + +function! s:git_origin_branch(spec) + if len(a:spec.branch) + return a:spec.branch + endif + + " The file may not be present if this is a local repository + let gitdir = s:git_dir(a:spec.dir) + let origin_head = gitdir.'/refs/remotes/origin/HEAD' + if len(gitdir) && filereadable(origin_head) + return matchstr(get(readfile(origin_head), 0, ''), + \ '^ref: refs/remotes/origin/\zs.*') + endif + + " The command may not return the name of a branch in detached HEAD state + let result = s:lines(s:system('git symbolic-ref --short HEAD', a:spec.dir)) + return v:shell_error ? '' : result[-1] +endfunction + +if s:is_win + function! s:plug_call(fn, ...) + let shellslash = &shellslash + try + set noshellslash + return call(a:fn, a:000) + finally + let &shellslash = shellslash + endtry + endfunction +else + function! s:plug_call(fn, ...) + return call(a:fn, a:000) + endfunction +endif + +function! s:plug_getcwd() + return s:plug_call('getcwd') +endfunction + +function! s:plug_fnamemodify(fname, mods) + return s:plug_call('fnamemodify', a:fname, a:mods) +endfunction + +function! s:plug_expand(fmt) + return s:plug_call('expand', a:fmt, 1) +endfunction + +function! s:plug_tempname() + return s:plug_call('tempname') +endfunction + +function! plug#begin(...) + if a:0 > 0 + let s:plug_home_org = a:1 + let home = s:path(s:plug_fnamemodify(s:plug_expand(a:1), ':p')) + elseif exists('g:plug_home') + let home = s:path(g:plug_home) + elseif has('nvim') + let home = stdpath('data') . '/plugged' + elseif !empty(&rtp) + let home = s:path(split(&rtp, ',')[0]) . '/plugged' + else + return s:err('Unable to determine plug home. Try calling plug#begin() with a path argument.') + endif + if s:plug_fnamemodify(home, ':t') ==# 'plugin' && s:plug_fnamemodify(home, ':h') ==# s:first_rtp + return s:err('Invalid plug home. '.home.' is a standard Vim runtime path and is not allowed.') + endif + + let g:plug_home = home + let g:plugs = {} + let g:plugs_order = [] + let s:triggers = {} + + call s:define_commands() + return 1 +endfunction + +function! s:define_commands() + command! -nargs=+ -bar Plug call plug#() + if !executable('git') + return s:err('`git` executable not found. Most commands will not be available. To suppress this message, prepend `silent!` to `call plug#begin(...)`.') + endif + if has('win32') + \ && &shellslash + \ && (&shell =~# 'cmd\(\.exe\)\?$' || s:is_powershell(&shell)) + return s:err('vim-plug does not support shell, ' . &shell . ', when shellslash is set.') + endif + if !has('nvim') + \ && (has('win32') || has('win32unix')) + \ && !has('multi_byte') + return s:err('Vim needs +multi_byte feature on Windows to run shell commands. Enable +iconv for best results.') + endif + command! -nargs=* -bar -bang -complete=customlist,s:names PlugInstall call s:install(0, []) + command! -nargs=* -bar -bang -complete=customlist,s:names PlugUpdate call s:update(0, []) + command! -nargs=0 -bar -bang PlugClean call s:clean(0) + command! -nargs=0 -bar PlugUpgrade if s:upgrade() | execute 'source' s:esc(s:me) | endif + command! -nargs=0 -bar PlugStatus call s:status() + command! -nargs=0 -bar PlugDiff call s:diff() + command! -nargs=? -bar -bang -complete=file PlugSnapshot call s:snapshot(0, ) +endfunction + +function! s:to_a(v) + return type(a:v) == s:TYPE.list ? a:v : [a:v] +endfunction + +function! s:to_s(v) + return type(a:v) == s:TYPE.string ? a:v : join(a:v, "\n") . "\n" +endfunction + +function! s:glob(from, pattern) + return s:lines(globpath(a:from, a:pattern)) +endfunction + +function! s:source(from, ...) + let found = 0 + for pattern in a:000 + for vim in s:glob(a:from, pattern) + execute 'source' s:esc(vim) + let found = 1 + endfor + endfor + return found +endfunction + +function! s:assoc(dict, key, val) + let a:dict[a:key] = add(get(a:dict, a:key, []), a:val) +endfunction + +function! s:ask(message, ...) + call inputsave() + echohl WarningMsg + let answer = input(a:message.(a:0 ? ' (y/N/a) ' : ' (y/N) ')) + echohl None + call inputrestore() + echo "\r" + return (a:0 && answer =~? '^a') ? 2 : (answer =~? '^y') ? 1 : 0 +endfunction + +function! s:ask_no_interrupt(...) + try + return call('s:ask', a:000) + catch + return 0 + endtry +endfunction + +function! s:lazy(plug, opt) + return has_key(a:plug, a:opt) && + \ (empty(s:to_a(a:plug[a:opt])) || + \ !isdirectory(a:plug.dir) || + \ len(s:glob(s:rtp(a:plug), 'plugin')) || + \ len(s:glob(s:rtp(a:plug), 'after/plugin'))) +endfunction + +function! plug#end() + if !exists('g:plugs') + return s:err('plug#end() called without calling plug#begin() first') + endif + + if exists('#PlugLOD') + augroup PlugLOD + autocmd! + augroup END + augroup! PlugLOD + endif + let lod = { 'ft': {}, 'map': {}, 'cmd': {} } + + if get(g:, 'did_load_filetypes', 0) + filetype off + endif + for name in g:plugs_order + if !has_key(g:plugs, name) + continue + endif + let plug = g:plugs[name] + if get(s:loaded, name, 0) || !s:lazy(plug, 'on') && !s:lazy(plug, 'for') + let s:loaded[name] = 1 + continue + endif + + if has_key(plug, 'on') + let s:triggers[name] = { 'map': [], 'cmd': [] } + for cmd in s:to_a(plug.on) + if cmd =~? '^.\+' + if empty(mapcheck(cmd)) && empty(mapcheck(cmd, 'i')) + call s:assoc(lod.map, cmd, name) + endif + call add(s:triggers[name].map, cmd) + elseif cmd =~# '^[A-Z]' + let cmd = substitute(cmd, '!*$', '', '') + if exists(':'.cmd) != 2 + call s:assoc(lod.cmd, cmd, name) + endif + call add(s:triggers[name].cmd, cmd) + else + call s:err('Invalid `on` option: '.cmd. + \ '. Should start with an uppercase letter or ``.') + endif + endfor + endif + + if has_key(plug, 'for') + let types = s:to_a(plug.for) + if !empty(types) + augroup filetypedetect + call s:source(s:rtp(plug), 'ftdetect/**/*.vim', 'after/ftdetect/**/*.vim') + augroup END + endif + for type in types + call s:assoc(lod.ft, type, name) + endfor + endif + endfor + + for [cmd, names] in items(lod.cmd) + execute printf( + \ 'command! -nargs=* -range -bang -complete=file %s call s:lod_cmd(%s, "", , , , %s)', + \ cmd, string(cmd), string(names)) + endfor + + for [map, names] in items(lod.map) + for [mode, map_prefix, key_prefix] in + \ [['i', '', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']] + execute printf( + \ '%snoremap %s %s:call lod_map(%s, %s, %s, "%s")', + \ mode, map, map_prefix, string(map), string(names), mode != 'i', key_prefix) + endfor + endfor + + for [ft, names] in items(lod.ft) + augroup PlugLOD + execute printf('autocmd FileType %s call lod_ft(%s, %s)', + \ ft, string(ft), string(names)) + augroup END + endfor + + call s:reorg_rtp() + filetype plugin indent on + if has('vim_starting') + if has('syntax') && !exists('g:syntax_on') + syntax enable + end + else + call s:reload_plugins() + endif +endfunction + +function! s:loaded_names() + return filter(copy(g:plugs_order), 'get(s:loaded, v:val, 0)') +endfunction + +function! s:load_plugin(spec) + call s:source(s:rtp(a:spec), 'plugin/**/*.vim', 'after/plugin/**/*.vim') +endfunction + +function! s:reload_plugins() + for name in s:loaded_names() + call s:load_plugin(g:plugs[name]) + endfor +endfunction + +function! s:trim(str) + return substitute(a:str, '[\/]\+$', '', '') +endfunction + +function! s:version_requirement(val, min) + for idx in range(0, len(a:min) - 1) + let v = get(a:val, idx, 0) + if v < a:min[idx] | return 0 + elseif v > a:min[idx] | return 1 + endif + endfor + return 1 +endfunction + +function! s:git_version_requirement(...) + if !exists('s:git_version') + let s:git_version = map(split(split(s:system(['git', '--version']))[2], '\.'), 'str2nr(v:val)') + endif + return s:version_requirement(s:git_version, a:000) +endfunction + +function! s:progress_opt(base) + return a:base && !s:is_win && + \ s:git_version_requirement(1, 7, 1) ? '--progress' : '' +endfunction + +function! s:rtp(spec) + return s:path(a:spec.dir . get(a:spec, 'rtp', '')) +endfunction + +if s:is_win + function! s:path(path) + return s:trim(substitute(a:path, '/', '\', 'g')) + endfunction + + function! s:dirpath(path) + return s:path(a:path) . '\' + endfunction + + function! s:is_local_plug(repo) + return a:repo =~? '^[a-z]:\|^[%~]' + endfunction + + " Copied from fzf + function! s:wrap_cmds(cmds) + let cmds = [ + \ '@echo off', + \ 'setlocal enabledelayedexpansion'] + \ + (type(a:cmds) == type([]) ? a:cmds : [a:cmds]) + \ + ['endlocal'] + if has('iconv') + if !exists('s:codepage') + let s:codepage = libcallnr('kernel32.dll', 'GetACP', 0) + endif + return map(cmds, printf('iconv(v:val."\r", "%s", "cp%d")', &encoding, s:codepage)) + endif + return map(cmds, 'v:val."\r"') + endfunction + + function! s:batchfile(cmd) + let batchfile = s:plug_tempname().'.bat' + call writefile(s:wrap_cmds(a:cmd), batchfile) + let cmd = plug#shellescape(batchfile, {'shell': &shell, 'script': 0}) + if s:is_powershell(&shell) + let cmd = '& ' . cmd + endif + return [batchfile, cmd] + endfunction +else + function! s:path(path) + return s:trim(a:path) + endfunction + + function! s:dirpath(path) + return substitute(a:path, '[/\\]*$', '/', '') + endfunction + + function! s:is_local_plug(repo) + return a:repo[0] =~ '[/$~]' + endfunction +endif + +function! s:err(msg) + echohl ErrorMsg + echom '[vim-plug] '.a:msg + echohl None +endfunction + +function! s:warn(cmd, msg) + echohl WarningMsg + execute a:cmd 'a:msg' + echohl None +endfunction + +function! s:esc(path) + return escape(a:path, ' ') +endfunction + +function! s:escrtp(path) + return escape(a:path, ' ,') +endfunction + +function! s:remove_rtp() + for name in s:loaded_names() + let rtp = s:rtp(g:plugs[name]) + execute 'set rtp-='.s:escrtp(rtp) + let after = globpath(rtp, 'after') + if isdirectory(after) + execute 'set rtp-='.s:escrtp(after) + endif + endfor +endfunction + +function! s:reorg_rtp() + if !empty(s:first_rtp) + execute 'set rtp-='.s:first_rtp + execute 'set rtp-='.s:last_rtp + endif + + " &rtp is modified from outside + if exists('s:prtp') && s:prtp !=# &rtp + call s:remove_rtp() + unlet! s:middle + endif + + let s:middle = get(s:, 'middle', &rtp) + let rtps = map(s:loaded_names(), 's:rtp(g:plugs[v:val])') + let afters = filter(map(copy(rtps), 'globpath(v:val, "after")'), '!empty(v:val)') + let rtp = join(map(rtps, 'escape(v:val, ",")'), ',') + \ . ','.s:middle.',' + \ . join(map(afters, 'escape(v:val, ",")'), ',') + let &rtp = substitute(substitute(rtp, ',,*', ',', 'g'), '^,\|,$', '', 'g') + let s:prtp = &rtp + + if !empty(s:first_rtp) + execute 'set rtp^='.s:first_rtp + execute 'set rtp+='.s:last_rtp + endif +endfunction + +function! s:doautocmd(...) + if exists('#'.join(a:000, '#')) + execute 'doautocmd' ((v:version > 703 || has('patch442')) ? '' : '') join(a:000) + endif +endfunction + +function! s:dobufread(names) + for name in a:names + let path = s:rtp(g:plugs[name]) + for dir in ['ftdetect', 'ftplugin', 'after/ftdetect', 'after/ftplugin'] + if len(finddir(dir, path)) + if exists('#BufRead') + doautocmd BufRead + endif + return + endif + endfor + endfor +endfunction + +function! plug#load(...) + if a:0 == 0 + return s:err('Argument missing: plugin name(s) required') + endif + if !exists('g:plugs') + return s:err('plug#begin was not called') + endif + let names = a:0 == 1 && type(a:1) == s:TYPE.list ? a:1 : a:000 + let unknowns = filter(copy(names), '!has_key(g:plugs, v:val)') + if !empty(unknowns) + let s = len(unknowns) > 1 ? 's' : '' + return s:err(printf('Unknown plugin%s: %s', s, join(unknowns, ', '))) + end + let unloaded = filter(copy(names), '!get(s:loaded, v:val, 0)') + if !empty(unloaded) + for name in unloaded + call s:lod([name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + endfor + call s:dobufread(unloaded) + return 1 + end + return 0 +endfunction + +function! s:remove_triggers(name) + if !has_key(s:triggers, a:name) + return + endif + for cmd in s:triggers[a:name].cmd + execute 'silent! delc' cmd + endfor + for map in s:triggers[a:name].map + execute 'silent! unmap' map + execute 'silent! iunmap' map + endfor + call remove(s:triggers, a:name) +endfunction + +function! s:lod(names, types, ...) + for name in a:names + call s:remove_triggers(name) + let s:loaded[name] = 1 + endfor + call s:reorg_rtp() + + for name in a:names + let rtp = s:rtp(g:plugs[name]) + for dir in a:types + call s:source(rtp, dir.'/**/*.vim') + endfor + if a:0 + if !s:source(rtp, a:1) && !empty(s:glob(rtp, a:2)) + execute 'runtime' a:1 + endif + call s:source(rtp, a:2) + endif + call s:doautocmd('User', name) + endfor +endfunction + +function! s:lod_ft(pat, names) + let syn = 'syntax/'.a:pat.'.vim' + call s:lod(a:names, ['plugin', 'after/plugin'], syn, 'after/'.syn) + execute 'autocmd! PlugLOD FileType' a:pat + call s:doautocmd('filetypeplugin', 'FileType') + call s:doautocmd('filetypeindent', 'FileType') +endfunction + +function! s:lod_cmd(cmd, bang, l1, l2, args, names) + call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + call s:dobufread(a:names) + execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args) +endfunction + +function! s:lod_map(map, names, with_prefix, prefix) + call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + call s:dobufread(a:names) + let extra = '' + while 1 + let c = getchar(0) + if c == 0 + break + endif + let extra .= nr2char(c) + endwhile + + if a:with_prefix + let prefix = v:count ? v:count : '' + let prefix .= '"'.v:register.a:prefix + if mode(1) == 'no' + if v:operator == 'c' + let prefix = "\" . prefix + endif + let prefix .= v:operator + endif + call feedkeys(prefix, 'n') + endif + call feedkeys(substitute(a:map, '^', "\", '') . extra) +endfunction + +function! plug#(repo, ...) + if a:0 > 1 + return s:err('Invalid number of arguments (1..2)') + endif + + try + let repo = s:trim(a:repo) + let opts = a:0 == 1 ? s:parse_options(a:1) : s:base_spec + let name = get(opts, 'as', s:plug_fnamemodify(repo, ':t:s?\.git$??')) + let spec = extend(s:infer_properties(name, repo), opts) + if !has_key(g:plugs, name) + call add(g:plugs_order, name) + endif + let g:plugs[name] = spec + let s:loaded[name] = get(s:loaded, name, 0) + catch + return s:err(repo . ' ' . v:exception) + endtry +endfunction + +function! s:parse_options(arg) + let opts = copy(s:base_spec) + let type = type(a:arg) + let opt_errfmt = 'Invalid argument for "%s" option of :Plug (expected: %s)' + if type == s:TYPE.string + if empty(a:arg) + throw printf(opt_errfmt, 'tag', 'string') + endif + let opts.tag = a:arg + elseif type == s:TYPE.dict + for opt in ['branch', 'tag', 'commit', 'rtp', 'dir', 'as'] + if has_key(a:arg, opt) + \ && (type(a:arg[opt]) != s:TYPE.string || empty(a:arg[opt])) + throw printf(opt_errfmt, opt, 'string') + endif + endfor + for opt in ['on', 'for'] + if has_key(a:arg, opt) + \ && type(a:arg[opt]) != s:TYPE.list + \ && (type(a:arg[opt]) != s:TYPE.string || empty(a:arg[opt])) + throw printf(opt_errfmt, opt, 'string or list') + endif + endfor + if has_key(a:arg, 'do') + \ && type(a:arg.do) != s:TYPE.funcref + \ && (type(a:arg.do) != s:TYPE.string || empty(a:arg.do)) + throw printf(opt_errfmt, 'do', 'string or funcref') + endif + call extend(opts, a:arg) + if has_key(opts, 'dir') + let opts.dir = s:dirpath(s:plug_expand(opts.dir)) + endif + else + throw 'Invalid argument type (expected: string or dictionary)' + endif + return opts +endfunction + +function! s:infer_properties(name, repo) + let repo = a:repo + if s:is_local_plug(repo) + return { 'dir': s:dirpath(s:plug_expand(repo)) } + else + if repo =~ ':' + let uri = repo + else + if repo !~ '/' + throw printf('Invalid argument: %s (implicit `vim-scripts'' expansion is deprecated)', repo) + endif + let fmt = get(g:, 'plug_url_format', 'https://git::@github.com/%s.git') + let uri = printf(fmt, repo) + endif + return { 'dir': s:dirpath(g:plug_home.'/'.a:name), 'uri': uri } + endif +endfunction + +function! s:install(force, names) + call s:update_impl(0, a:force, a:names) +endfunction + +function! s:update(force, names) + call s:update_impl(1, a:force, a:names) +endfunction + +function! plug#helptags() + if !exists('g:plugs') + return s:err('plug#begin was not called') + endif + for spec in values(g:plugs) + let docd = join([s:rtp(spec), 'doc'], '/') + if isdirectory(docd) + silent! execute 'helptags' s:esc(docd) + endif + endfor + return 1 +endfunction + +function! s:syntax() + syntax clear + syntax region plug1 start=/\%1l/ end=/\%2l/ contains=plugNumber + syntax region plug2 start=/\%2l/ end=/\%3l/ contains=plugBracket,plugX + syn match plugNumber /[0-9]\+[0-9.]*/ contained + syn match plugBracket /[[\]]/ contained + syn match plugX /x/ contained + syn match plugDash /^-\{1}\ / + syn match plugPlus /^+/ + syn match plugStar /^*/ + syn match plugMessage /\(^- \)\@<=.*/ + syn match plugName /\(^- \)\@<=[^ ]*:/ + syn match plugSha /\%(: \)\@<=[0-9a-f]\{4,}$/ + syn match plugTag /(tag: [^)]\+)/ + syn match plugInstall /\(^+ \)\@<=[^:]*/ + syn match plugUpdate /\(^* \)\@<=[^:]*/ + syn match plugCommit /^ \X*[0-9a-f]\{7,9} .*/ contains=plugRelDate,plugEdge,plugTag + syn match plugEdge /^ \X\+$/ + syn match plugEdge /^ \X*/ contained nextgroup=plugSha + syn match plugSha /[0-9a-f]\{7,9}/ contained + syn match plugRelDate /([^)]*)$/ contained + syn match plugNotLoaded /(not loaded)$/ + syn match plugError /^x.*/ + syn region plugDeleted start=/^\~ .*/ end=/^\ze\S/ + syn match plugH2 /^.*:\n-\+$/ + syn match plugH2 /^-\{2,}/ + syn keyword Function PlugInstall PlugStatus PlugUpdate PlugClean + hi def link plug1 Title + hi def link plug2 Repeat + hi def link plugH2 Type + hi def link plugX Exception + hi def link plugBracket Structure + hi def link plugNumber Number + + hi def link plugDash Special + hi def link plugPlus Constant + hi def link plugStar Boolean + + hi def link plugMessage Function + hi def link plugName Label + hi def link plugInstall Function + hi def link plugUpdate Type + + hi def link plugError Error + hi def link plugDeleted Ignore + hi def link plugRelDate Comment + hi def link plugEdge PreProc + hi def link plugSha Identifier + hi def link plugTag Constant + + hi def link plugNotLoaded Comment +endfunction + +function! s:lpad(str, len) + return a:str . repeat(' ', a:len - len(a:str)) +endfunction + +function! s:lines(msg) + return split(a:msg, "[\r\n]") +endfunction + +function! s:lastline(msg) + return get(s:lines(a:msg), -1, '') +endfunction + +function! s:new_window() + execute get(g:, 'plug_window', 'vertical topleft new') +endfunction + +function! s:plug_window_exists() + let buflist = tabpagebuflist(s:plug_tab) + return !empty(buflist) && index(buflist, s:plug_buf) >= 0 +endfunction + +function! s:switch_in() + if !s:plug_window_exists() + return 0 + endif + + if winbufnr(0) != s:plug_buf + let s:pos = [tabpagenr(), winnr(), winsaveview()] + execute 'normal!' s:plug_tab.'gt' + let winnr = bufwinnr(s:plug_buf) + execute winnr.'wincmd w' + call add(s:pos, winsaveview()) + else + let s:pos = [winsaveview()] + endif + + setlocal modifiable + return 1 +endfunction + +function! s:switch_out(...) + call winrestview(s:pos[-1]) + setlocal nomodifiable + if a:0 > 0 + execute a:1 + endif + + if len(s:pos) > 1 + execute 'normal!' s:pos[0].'gt' + execute s:pos[1] 'wincmd w' + call winrestview(s:pos[2]) + endif +endfunction + +function! s:finish_bindings() + nnoremap R :call retry() + nnoremap D :PlugDiff + nnoremap S :PlugStatus + nnoremap U :call status_update() + xnoremap U :call status_update() + nnoremap ]] :silent! call section('') + nnoremap [[ :silent! call section('b') +endfunction + +function! s:prepare(...) + if empty(s:plug_getcwd()) + throw 'Invalid current working directory. Cannot proceed.' + endif + + for evar in ['$GIT_DIR', '$GIT_WORK_TREE'] + if exists(evar) + throw evar.' detected. Cannot proceed.' + endif + endfor + + call s:job_abort() + if s:switch_in() + if b:plug_preview == 1 + pc + endif + enew + else + call s:new_window() + endif + + nnoremap q :call close_pane() + if a:0 == 0 + call s:finish_bindings() + endif + let b:plug_preview = -1 + let s:plug_tab = tabpagenr() + let s:plug_buf = winbufnr(0) + call s:assign_name() + + for k in ['', 'L', 'o', 'X', 'd', 'dd'] + execute 'silent! unmap ' k + endfor + setlocal buftype=nofile bufhidden=wipe nobuflisted nolist noswapfile nowrap cursorline modifiable nospell + if exists('+colorcolumn') + setlocal colorcolumn= + endif + setf vim-plug + if exists('g:syntax_on') + call s:syntax() + endif +endfunction + +function! s:close_pane() + if b:plug_preview == 1 + pc + let b:plug_preview = -1 + else + bd + endif +endfunction + +function! s:assign_name() + " Assign buffer name + let prefix = '[Plugins]' + let name = prefix + let idx = 2 + while bufexists(name) + let name = printf('%s (%s)', prefix, idx) + let idx = idx + 1 + endwhile + silent! execute 'f' fnameescape(name) +endfunction + +function! s:chsh(swap) + let prev = [&shell, &shellcmdflag, &shellredir] + if !s:is_win + set shell=sh + endif + if a:swap + if s:is_powershell(&shell) + let &shellredir = '2>&1 | Out-File -Encoding UTF8 %s' + elseif &shell =~# 'sh' || &shell =~# 'cmd\(\.exe\)\?$' + set shellredir=>%s\ 2>&1 + endif + endif + return prev +endfunction + +function! s:bang(cmd, ...) + let batchfile = '' + try + let [sh, shellcmdflag, shrd] = s:chsh(a:0) + " FIXME: Escaping is incomplete. We could use shellescape with eval, + " but it won't work on Windows. + let cmd = a:0 ? s:with_cd(a:cmd, a:1) : a:cmd + if s:is_win + let [batchfile, cmd] = s:batchfile(cmd) + endif + let g:_plug_bang = (s:is_win && has('gui_running') ? 'silent ' : '').'!'.escape(cmd, '#!%') + execute "normal! :execute g:_plug_bang\\" + finally + unlet g:_plug_bang + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win && filereadable(batchfile) + call delete(batchfile) + endif + endtry + return v:shell_error ? 'Exit status: ' . v:shell_error : '' +endfunction + +function! s:regress_bar() + let bar = substitute(getline(2)[1:-2], '.*\zs=', 'x', '') + call s:progress_bar(2, bar, len(bar)) +endfunction + +function! s:is_updated(dir) + return !empty(s:system_chomp(['git', 'log', '--pretty=format:%h', 'HEAD...HEAD@{1}'], a:dir)) +endfunction + +function! s:do(pull, force, todo) + for [name, spec] in items(a:todo) + if !isdirectory(spec.dir) + continue + endif + let installed = has_key(s:update.new, name) + let updated = installed ? 0 : + \ (a:pull && index(s:update.errors, name) < 0 && s:is_updated(spec.dir)) + if a:force || installed || updated + execute 'cd' s:esc(spec.dir) + call append(3, '- Post-update hook for '. name .' ... ') + let error = '' + let type = type(spec.do) + if type == s:TYPE.string + if spec.do[0] == ':' + if !get(s:loaded, name, 0) + let s:loaded[name] = 1 + call s:reorg_rtp() + endif + call s:load_plugin(spec) + try + execute spec.do[1:] + catch + let error = v:exception + endtry + if !s:plug_window_exists() + cd - + throw 'Warning: vim-plug was terminated by the post-update hook of '.name + endif + else + let error = s:bang(spec.do) + endif + elseif type == s:TYPE.funcref + try + call s:load_plugin(spec) + let status = installed ? 'installed' : (updated ? 'updated' : 'unchanged') + call spec.do({ 'name': name, 'status': status, 'force': a:force }) + catch + let error = v:exception + endtry + else + let error = 'Invalid hook type' + endif + call s:switch_in() + call setline(4, empty(error) ? (getline(4) . 'OK') + \ : ('x' . getline(4)[1:] . error)) + if !empty(error) + call add(s:update.errors, name) + call s:regress_bar() + endif + cd - + endif + endfor +endfunction + +function! s:hash_match(a, b) + return stridx(a:a, a:b) == 0 || stridx(a:b, a:a) == 0 +endfunction + +function! s:checkout(spec) + let sha = a:spec.commit + let output = s:git_revision(a:spec.dir) + if !empty(output) && !s:hash_match(sha, s:lines(output)[0]) + let credential_helper = s:git_version_requirement(2) ? '-c credential.helper= ' : '' + let output = s:system( + \ 'git '.credential_helper.'fetch --depth 999999 && git checkout '.plug#shellescape(sha).' --', a:spec.dir) + endif + return output +endfunction + +function! s:finish(pull) + let new_frozen = len(filter(keys(s:update.new), 'g:plugs[v:val].frozen')) + if new_frozen + let s = new_frozen > 1 ? 's' : '' + call append(3, printf('- Installed %d frozen plugin%s', new_frozen, s)) + endif + call append(3, '- Finishing ... ') | 4 + redraw + call plug#helptags() + call plug#end() + call setline(4, getline(4) . 'Done!') + redraw + let msgs = [] + if !empty(s:update.errors) + call add(msgs, "Press 'R' to retry.") + endif + if a:pull && len(s:update.new) < len(filter(getline(5, '$'), + \ "v:val =~ '^- ' && v:val !~# 'Already up.to.date'")) + call add(msgs, "Press 'D' to see the updated changes.") + endif + echo join(msgs, ' ') + call s:finish_bindings() +endfunction + +function! s:retry() + if empty(s:update.errors) + return + endif + echo + call s:update_impl(s:update.pull, s:update.force, + \ extend(copy(s:update.errors), [s:update.threads])) +endfunction + +function! s:is_managed(name) + return has_key(g:plugs[a:name], 'uri') +endfunction + +function! s:names(...) + return sort(filter(keys(g:plugs), 'stridx(v:val, a:1) == 0 && s:is_managed(v:val)')) +endfunction + +function! s:check_ruby() + silent! ruby require 'thread'; VIM::command("let g:plug_ruby = '#{RUBY_VERSION}'") + if !exists('g:plug_ruby') + redraw! + return s:warn('echom', 'Warning: Ruby interface is broken') + endif + let ruby_version = split(g:plug_ruby, '\.') + unlet g:plug_ruby + return s:version_requirement(ruby_version, [1, 8, 7]) +endfunction + +function! s:update_impl(pull, force, args) abort + let sync = index(a:args, '--sync') >= 0 || has('vim_starting') + let args = filter(copy(a:args), 'v:val != "--sync"') + let threads = (len(args) > 0 && args[-1] =~ '^[1-9][0-9]*$') ? + \ remove(args, -1) : get(g:, 'plug_threads', 16) + + let managed = filter(copy(g:plugs), 's:is_managed(v:key)') + let todo = empty(args) ? filter(managed, '!v:val.frozen || !isdirectory(v:val.dir)') : + \ filter(managed, 'index(args, v:key) >= 0') + + if empty(todo) + return s:warn('echo', 'No plugin to '. (a:pull ? 'update' : 'install')) + endif + + if !s:is_win && s:git_version_requirement(2, 3) + let s:git_terminal_prompt = exists('$GIT_TERMINAL_PROMPT') ? $GIT_TERMINAL_PROMPT : '' + let $GIT_TERMINAL_PROMPT = 0 + for plug in values(todo) + let plug.uri = substitute(plug.uri, + \ '^https://git::@github\.com', 'https://github.com', '') + endfor + endif + + if !isdirectory(g:plug_home) + try + call mkdir(g:plug_home, 'p') + catch + return s:err(printf('Invalid plug directory: %s. '. + \ 'Try to call plug#begin with a valid directory', g:plug_home)) + endtry + endif + + if has('nvim') && !exists('*jobwait') && threads > 1 + call s:warn('echom', '[vim-plug] Update Neovim for parallel installer') + endif + + let use_job = s:nvim || s:vim8 + let python = (has('python') || has('python3')) && !use_job + let ruby = has('ruby') && !use_job && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && threads > 1 && s:check_ruby() + + let s:update = { + \ 'start': reltime(), + \ 'all': todo, + \ 'todo': copy(todo), + \ 'errors': [], + \ 'pull': a:pull, + \ 'force': a:force, + \ 'new': {}, + \ 'threads': (python || ruby || use_job) ? min([len(todo), threads]) : 1, + \ 'bar': '', + \ 'fin': 0 + \ } + + call s:prepare(1) + call append(0, ['', '']) + normal! 2G + silent! redraw + + " Set remote name, overriding a possible user git config's clone.defaultRemoteName + let s:clone_opt = ['--origin', 'origin'] + if get(g:, 'plug_shallow', 1) + call extend(s:clone_opt, ['--depth', '1']) + if s:git_version_requirement(1, 7, 10) + call add(s:clone_opt, '--no-single-branch') + endif + endif + + if has('win32unix') || has('wsl') + call extend(s:clone_opt, ['-c', 'core.eol=lf', '-c', 'core.autocrlf=input']) + endif + + let s:submodule_opt = s:git_version_requirement(2, 8) ? ' --jobs='.threads : '' + + " Python version requirement (>= 2.7) + if python && !has('python3') && !ruby && !use_job && s:update.threads > 1 + redir => pyv + silent python import platform; print platform.python_version() + redir END + let python = s:version_requirement( + \ map(split(split(pyv)[0], '\.'), 'str2nr(v:val)'), [2, 6]) + endif + + if (python || ruby) && s:update.threads > 1 + try + let imd = &imd + if s:mac_gui + set noimd + endif + if ruby + call s:update_ruby() + else + call s:update_python() + endif + catch + let lines = getline(4, '$') + let printed = {} + silent! 4,$d _ + for line in lines + let name = s:extract_name(line, '.', '') + if empty(name) || !has_key(printed, name) + call append('$', line) + if !empty(name) + let printed[name] = 1 + if line[0] == 'x' && index(s:update.errors, name) < 0 + call add(s:update.errors, name) + end + endif + endif + endfor + finally + let &imd = imd + call s:update_finish() + endtry + else + call s:update_vim() + while use_job && sync + sleep 100m + if s:update.fin + break + endif + endwhile + endif +endfunction + +function! s:log4(name, msg) + call setline(4, printf('- %s (%s)', a:msg, a:name)) + redraw +endfunction + +function! s:update_finish() + if exists('s:git_terminal_prompt') + let $GIT_TERMINAL_PROMPT = s:git_terminal_prompt + endif + if s:switch_in() + call append(3, '- Updating ...') | 4 + for [name, spec] in items(filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && (s:update.force || s:update.pull || has_key(s:update.new, v:key))')) + let [pos, _] = s:logpos(name) + if !pos + continue + endif + if has_key(spec, 'commit') + call s:log4(name, 'Checking out '.spec.commit) + let out = s:checkout(spec) + elseif has_key(spec, 'tag') + let tag = spec.tag + if tag =~ '\*' + let tags = s:lines(s:system('git tag --list '.plug#shellescape(tag).' --sort -version:refname 2>&1', spec.dir)) + if !v:shell_error && !empty(tags) + let tag = tags[0] + call s:log4(name, printf('Latest tag for %s -> %s', spec.tag, tag)) + call append(3, '') + endif + endif + call s:log4(name, 'Checking out '.tag) + let out = s:system('git checkout -q '.plug#shellescape(tag).' -- 2>&1', spec.dir) + else + let branch = s:git_origin_branch(spec) + call s:log4(name, 'Merging origin/'.s:esc(branch)) + let out = s:system('git checkout -q '.plug#shellescape(branch).' -- 2>&1' + \. (has_key(s:update.new, name) ? '' : ('&& git merge --ff-only '.plug#shellescape('origin/'.branch).' 2>&1')), spec.dir) + endif + if !v:shell_error && filereadable(spec.dir.'/.gitmodules') && + \ (s:update.force || has_key(s:update.new, name) || s:is_updated(spec.dir)) + call s:log4(name, 'Updating submodules. This may take a while.') + let out .= s:bang('git submodule update --init --recursive'.s:submodule_opt.' 2>&1', spec.dir) + endif + let msg = s:format_message(v:shell_error ? 'x': '-', name, out) + if v:shell_error + call add(s:update.errors, name) + call s:regress_bar() + silent execute pos 'd _' + call append(4, msg) | 4 + elseif !empty(out) + call setline(pos, msg[0]) + endif + redraw + endfor + silent 4 d _ + try + call s:do(s:update.pull, s:update.force, filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && has_key(v:val, "do")')) + catch + call s:warn('echom', v:exception) + call s:warn('echo', '') + return + endtry + call s:finish(s:update.pull) + call setline(1, 'Updated. Elapsed time: ' . split(reltimestr(reltime(s:update.start)))[0] . ' sec.') + call s:switch_out('normal! gg') + endif +endfunction + +function! s:job_abort() + if (!s:nvim && !s:vim8) || !exists('s:jobs') + return + endif + + for [name, j] in items(s:jobs) + if s:nvim + silent! call jobstop(j.jobid) + elseif s:vim8 + silent! call job_stop(j.jobid) + endif + if j.new + call s:rm_rf(g:plugs[name].dir) + endif + endfor + let s:jobs = {} +endfunction + +function! s:last_non_empty_line(lines) + let len = len(a:lines) + for idx in range(len) + let line = a:lines[len-idx-1] + if !empty(line) + return line + endif + endfor + return '' +endfunction + +function! s:job_out_cb(self, data) abort + let self = a:self + let data = remove(self.lines, -1) . a:data + let lines = map(split(data, "\n", 1), 'split(v:val, "\r", 1)[-1]') + call extend(self.lines, lines) + " To reduce the number of buffer updates + let self.tick = get(self, 'tick', -1) + 1 + if !self.running || self.tick % len(s:jobs) == 0 + let bullet = self.running ? (self.new ? '+' : '*') : (self.error ? 'x' : '-') + let result = self.error ? join(self.lines, "\n") : s:last_non_empty_line(self.lines) + call s:log(bullet, self.name, result) + endif +endfunction + +function! s:job_exit_cb(self, data) abort + let a:self.running = 0 + let a:self.error = a:data != 0 + call s:reap(a:self.name) + call s:tick() +endfunction + +function! s:job_cb(fn, job, ch, data) + if !s:plug_window_exists() " plug window closed + return s:job_abort() + endif + call call(a:fn, [a:job, a:data]) +endfunction + +function! s:nvim_cb(job_id, data, event) dict abort + return (a:event == 'stdout' || a:event == 'stderr') ? + \ s:job_cb('s:job_out_cb', self, 0, join(a:data, "\n")) : + \ s:job_cb('s:job_exit_cb', self, 0, a:data) +endfunction + +function! s:spawn(name, cmd, opts) + let job = { 'name': a:name, 'running': 1, 'error': 0, 'lines': [''], + \ 'new': get(a:opts, 'new', 0) } + let s:jobs[a:name] = job + + if s:nvim + if has_key(a:opts, 'dir') + let job.cwd = a:opts.dir + endif + let argv = a:cmd + call extend(job, { + \ 'on_stdout': function('s:nvim_cb'), + \ 'on_stderr': function('s:nvim_cb'), + \ 'on_exit': function('s:nvim_cb'), + \ }) + let jid = s:plug_call('jobstart', argv, job) + if jid > 0 + let job.jobid = jid + else + let job.running = 0 + let job.error = 1 + let job.lines = [jid < 0 ? argv[0].' is not executable' : + \ 'Invalid arguments (or job table is full)'] + endif + elseif s:vim8 + let cmd = join(map(copy(a:cmd), 'plug#shellescape(v:val, {"script": 0})')) + if has_key(a:opts, 'dir') + let cmd = s:with_cd(cmd, a:opts.dir, 0) + endif + let argv = s:is_win ? ['cmd', '/s', '/c', '"'.cmd.'"'] : ['sh', '-c', cmd] + let jid = job_start(s:is_win ? join(argv, ' ') : argv, { + \ 'out_cb': function('s:job_cb', ['s:job_out_cb', job]), + \ 'err_cb': function('s:job_cb', ['s:job_out_cb', job]), + \ 'exit_cb': function('s:job_cb', ['s:job_exit_cb', job]), + \ 'err_mode': 'raw', + \ 'out_mode': 'raw' + \}) + if job_status(jid) == 'run' + let job.jobid = jid + else + let job.running = 0 + let job.error = 1 + let job.lines = ['Failed to start job'] + endif + else + let job.lines = s:lines(call('s:system', has_key(a:opts, 'dir') ? [a:cmd, a:opts.dir] : [a:cmd])) + let job.error = v:shell_error != 0 + let job.running = 0 + endif +endfunction + +function! s:reap(name) + let job = s:jobs[a:name] + if job.error + call add(s:update.errors, a:name) + elseif get(job, 'new', 0) + let s:update.new[a:name] = 1 + endif + let s:update.bar .= job.error ? 'x' : '=' + + let bullet = job.error ? 'x' : '-' + let result = job.error ? join(job.lines, "\n") : s:last_non_empty_line(job.lines) + call s:log(bullet, a:name, empty(result) ? 'OK' : result) + call s:bar() + + call remove(s:jobs, a:name) +endfunction + +function! s:bar() + if s:switch_in() + let total = len(s:update.all) + call setline(1, (s:update.pull ? 'Updating' : 'Installing'). + \ ' plugins ('.len(s:update.bar).'/'.total.')') + call s:progress_bar(2, s:update.bar, total) + call s:switch_out() + endif +endfunction + +function! s:logpos(name) + let max = line('$') + for i in range(4, max > 4 ? max : 4) + if getline(i) =~# '^[-+x*] '.a:name.':' + for j in range(i + 1, max > 5 ? max : 5) + if getline(j) !~ '^ ' + return [i, j - 1] + endif + endfor + return [i, i] + endif + endfor + return [0, 0] +endfunction + +function! s:log(bullet, name, lines) + if s:switch_in() + let [b, e] = s:logpos(a:name) + if b > 0 + silent execute printf('%d,%d d _', b, e) + if b > winheight('.') + let b = 4 + endif + else + let b = 4 + endif + " FIXME For some reason, nomodifiable is set after :d in vim8 + setlocal modifiable + call append(b - 1, s:format_message(a:bullet, a:name, a:lines)) + call s:switch_out() + endif +endfunction + +function! s:update_vim() + let s:jobs = {} + + call s:bar() + call s:tick() +endfunction + +function! s:tick() + let pull = s:update.pull + let prog = s:progress_opt(s:nvim || s:vim8) +while 1 " Without TCO, Vim stack is bound to explode + if empty(s:update.todo) + if empty(s:jobs) && !s:update.fin + call s:update_finish() + let s:update.fin = 1 + endif + return + endif + + let name = keys(s:update.todo)[0] + let spec = remove(s:update.todo, name) + let new = empty(globpath(spec.dir, '.git', 1)) + + call s:log(new ? '+' : '*', name, pull ? 'Updating ...' : 'Installing ...') + redraw + + let has_tag = has_key(spec, 'tag') + if !new + let [error, _] = s:git_validate(spec, 0) + if empty(error) + if pull + let cmd = s:git_version_requirement(2) ? ['git', '-c', 'credential.helper=', 'fetch'] : ['git', 'fetch'] + if has_tag && !empty(globpath(spec.dir, '.git/shallow')) + call extend(cmd, ['--depth', '99999999']) + endif + if !empty(prog) + call add(cmd, prog) + endif + call s:spawn(name, cmd, { 'dir': spec.dir }) + else + let s:jobs[name] = { 'running': 0, 'lines': ['Already installed'], 'error': 0 } + endif + else + let s:jobs[name] = { 'running': 0, 'lines': s:lines(error), 'error': 1 } + endif + else + let cmd = ['git', 'clone'] + if !has_tag + call extend(cmd, s:clone_opt) + endif + if !empty(prog) + call add(cmd, prog) + endif + call s:spawn(name, extend(cmd, [spec.uri, s:trim(spec.dir)]), { 'new': 1 }) + endif + + if !s:jobs[name].running + call s:reap(name) + endif + if len(s:jobs) >= s:update.threads + break + endif +endwhile +endfunction + +function! s:update_python() +let py_exe = has('python') ? 'python' : 'python3' +execute py_exe "<< EOF" +import datetime +import functools +import os +try: + import queue +except ImportError: + import Queue as queue +import random +import re +import shutil +import signal +import subprocess +import tempfile +import threading as thr +import time +import traceback +import vim + +G_NVIM = vim.eval("has('nvim')") == '1' +G_PULL = vim.eval('s:update.pull') == '1' +G_RETRIES = int(vim.eval('get(g:, "plug_retries", 2)')) + 1 +G_TIMEOUT = int(vim.eval('get(g:, "plug_timeout", 60)')) +G_CLONE_OPT = ' '.join(vim.eval('s:clone_opt')) +G_PROGRESS = vim.eval('s:progress_opt(1)') +G_LOG_PROB = 1.0 / int(vim.eval('s:update.threads')) +G_STOP = thr.Event() +G_IS_WIN = vim.eval('s:is_win') == '1' + +class PlugError(Exception): + def __init__(self, msg): + self.msg = msg +class CmdTimedOut(PlugError): + pass +class CmdFailed(PlugError): + pass +class InvalidURI(PlugError): + pass +class Action(object): + INSTALL, UPDATE, ERROR, DONE = ['+', '*', 'x', '-'] + +class Buffer(object): + def __init__(self, lock, num_plugs, is_pull): + self.bar = '' + self.event = 'Updating' if is_pull else 'Installing' + self.lock = lock + self.maxy = int(vim.eval('winheight(".")')) + self.num_plugs = num_plugs + + def __where(self, name): + """ Find first line with name in current buffer. Return line num. """ + found, lnum = False, 0 + matcher = re.compile('^[-+x*] {0}:'.format(name)) + for line in vim.current.buffer: + if matcher.search(line) is not None: + found = True + break + lnum += 1 + + if not found: + lnum = -1 + return lnum + + def header(self): + curbuf = vim.current.buffer + curbuf[0] = self.event + ' plugins ({0}/{1})'.format(len(self.bar), self.num_plugs) + + num_spaces = self.num_plugs - len(self.bar) + curbuf[1] = '[{0}{1}]'.format(self.bar, num_spaces * ' ') + + with self.lock: + vim.command('normal! 2G') + vim.command('redraw') + + def write(self, action, name, lines): + first, rest = lines[0], lines[1:] + msg = ['{0} {1}{2}{3}'.format(action, name, ': ' if first else '', first)] + msg.extend([' ' + line for line in rest]) + + try: + if action == Action.ERROR: + self.bar += 'x' + vim.command("call add(s:update.errors, '{0}')".format(name)) + elif action == Action.DONE: + self.bar += '=' + + curbuf = vim.current.buffer + lnum = self.__where(name) + if lnum != -1: # Found matching line num + del curbuf[lnum] + if lnum > self.maxy and action in set([Action.INSTALL, Action.UPDATE]): + lnum = 3 + else: + lnum = 3 + curbuf.append(msg, lnum) + + self.header() + except vim.error: + pass + +class Command(object): + CD = 'cd /d' if G_IS_WIN else 'cd' + + def __init__(self, cmd, cmd_dir=None, timeout=60, cb=None, clean=None): + self.cmd = cmd + if cmd_dir: + self.cmd = '{0} {1} && {2}'.format(Command.CD, cmd_dir, self.cmd) + self.timeout = timeout + self.callback = cb if cb else (lambda msg: None) + self.clean = clean if clean else (lambda: None) + self.proc = None + + @property + def alive(self): + """ Returns true only if command still running. """ + return self.proc and self.proc.poll() is None + + def execute(self, ntries=3): + """ Execute the command with ntries if CmdTimedOut. + Returns the output of the command if no Exception. + """ + attempt, finished, limit = 0, False, self.timeout + + while not finished: + try: + attempt += 1 + result = self.try_command() + finished = True + return result + except CmdTimedOut: + if attempt != ntries: + self.notify_retry() + self.timeout += limit + else: + raise + + def notify_retry(self): + """ Retry required for command, notify user. """ + for count in range(3, 0, -1): + if G_STOP.is_set(): + raise KeyboardInterrupt + msg = 'Timeout. Will retry in {0} second{1} ...'.format( + count, 's' if count != 1 else '') + self.callback([msg]) + time.sleep(1) + self.callback(['Retrying ...']) + + def try_command(self): + """ Execute a cmd & poll for callback. Returns list of output. + Raises CmdFailed -> return code for Popen isn't 0 + Raises CmdTimedOut -> command exceeded timeout without new output + """ + first_line = True + + try: + tfile = tempfile.NamedTemporaryFile(mode='w+b') + preexec_fn = not G_IS_WIN and os.setsid or None + self.proc = subprocess.Popen(self.cmd, stdout=tfile, + stderr=subprocess.STDOUT, + stdin=subprocess.PIPE, shell=True, + preexec_fn=preexec_fn) + thrd = thr.Thread(target=(lambda proc: proc.wait()), args=(self.proc,)) + thrd.start() + + thread_not_started = True + while thread_not_started: + try: + thrd.join(0.1) + thread_not_started = False + except RuntimeError: + pass + + while self.alive: + if G_STOP.is_set(): + raise KeyboardInterrupt + + if first_line or random.random() < G_LOG_PROB: + first_line = False + line = '' if G_IS_WIN else nonblock_read(tfile.name) + if line: + self.callback([line]) + + time_diff = time.time() - os.path.getmtime(tfile.name) + if time_diff > self.timeout: + raise CmdTimedOut(['Timeout!']) + + thrd.join(0.5) + + tfile.seek(0) + result = [line.decode('utf-8', 'replace').rstrip() for line in tfile] + + if self.proc.returncode != 0: + raise CmdFailed([''] + result) + + return result + except: + self.terminate() + raise + + def terminate(self): + """ Terminate process and cleanup. """ + if self.alive: + if G_IS_WIN: + os.kill(self.proc.pid, signal.SIGINT) + else: + os.killpg(self.proc.pid, signal.SIGTERM) + self.clean() + +class Plugin(object): + def __init__(self, name, args, buf_q, lock): + self.name = name + self.args = args + self.buf_q = buf_q + self.lock = lock + self.tag = args.get('tag', 0) + + def manage(self): + try: + if os.path.exists(self.args['dir']): + self.update() + else: + self.install() + with self.lock: + thread_vim_command("let s:update.new['{0}'] = 1".format(self.name)) + except PlugError as exc: + self.write(Action.ERROR, self.name, exc.msg) + except KeyboardInterrupt: + G_STOP.set() + self.write(Action.ERROR, self.name, ['Interrupted!']) + except: + # Any exception except those above print stack trace + msg = 'Trace:\n{0}'.format(traceback.format_exc().rstrip()) + self.write(Action.ERROR, self.name, msg.split('\n')) + raise + + def install(self): + target = self.args['dir'] + if target[-1] == '\\': + target = target[0:-1] + + def clean(target): + def _clean(): + try: + shutil.rmtree(target) + except OSError: + pass + return _clean + + self.write(Action.INSTALL, self.name, ['Installing ...']) + callback = functools.partial(self.write, Action.INSTALL, self.name) + cmd = 'git clone {0} {1} {2} {3} 2>&1'.format( + '' if self.tag else G_CLONE_OPT, G_PROGRESS, self.args['uri'], + esc(target)) + com = Command(cmd, None, G_TIMEOUT, callback, clean(target)) + result = com.execute(G_RETRIES) + self.write(Action.DONE, self.name, result[-1:]) + + def repo_uri(self): + cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url' + command = Command(cmd, self.args['dir'], G_TIMEOUT,) + result = command.execute(G_RETRIES) + return result[-1] + + def update(self): + actual_uri = self.repo_uri() + expect_uri = self.args['uri'] + regex = re.compile(r'^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$') + ma = regex.match(actual_uri) + mb = regex.match(expect_uri) + if ma is None or mb is None or ma.groups() != mb.groups(): + msg = ['', + 'Invalid URI: {0}'.format(actual_uri), + 'Expected {0}'.format(expect_uri), + 'PlugClean required.'] + raise InvalidURI(msg) + + if G_PULL: + self.write(Action.UPDATE, self.name, ['Updating ...']) + callback = functools.partial(self.write, Action.UPDATE, self.name) + fetch_opt = '--depth 99999999' if self.tag and os.path.isfile(os.path.join(self.args['dir'], '.git/shallow')) else '' + cmd = 'git fetch {0} {1} 2>&1'.format(fetch_opt, G_PROGRESS) + com = Command(cmd, self.args['dir'], G_TIMEOUT, callback) + result = com.execute(G_RETRIES) + self.write(Action.DONE, self.name, result[-1:]) + else: + self.write(Action.DONE, self.name, ['Already installed']) + + def write(self, action, name, msg): + self.buf_q.put((action, name, msg)) + +class PlugThread(thr.Thread): + def __init__(self, tname, args): + super(PlugThread, self).__init__() + self.tname = tname + self.args = args + + def run(self): + thr.current_thread().name = self.tname + buf_q, work_q, lock = self.args + + try: + while not G_STOP.is_set(): + name, args = work_q.get_nowait() + plug = Plugin(name, args, buf_q, lock) + plug.manage() + work_q.task_done() + except queue.Empty: + pass + +class RefreshThread(thr.Thread): + def __init__(self, lock): + super(RefreshThread, self).__init__() + self.lock = lock + self.running = True + + def run(self): + while self.running: + with self.lock: + thread_vim_command('noautocmd normal! a') + time.sleep(0.33) + + def stop(self): + self.running = False + +if G_NVIM: + def thread_vim_command(cmd): + vim.session.threadsafe_call(lambda: vim.command(cmd)) +else: + def thread_vim_command(cmd): + vim.command(cmd) + +def esc(name): + return '"' + name.replace('"', '\"') + '"' + +def nonblock_read(fname): + """ Read a file with nonblock flag. Return the last line. """ + fread = os.open(fname, os.O_RDONLY | os.O_NONBLOCK) + buf = os.read(fread, 100000).decode('utf-8', 'replace') + os.close(fread) + + line = buf.rstrip('\r\n') + left = max(line.rfind('\r'), line.rfind('\n')) + if left != -1: + left += 1 + line = line[left:] + + return line + +def main(): + thr.current_thread().name = 'main' + nthreads = int(vim.eval('s:update.threads')) + plugs = vim.eval('s:update.todo') + mac_gui = vim.eval('s:mac_gui') == '1' + + lock = thr.Lock() + buf = Buffer(lock, len(plugs), G_PULL) + buf_q, work_q = queue.Queue(), queue.Queue() + for work in plugs.items(): + work_q.put(work) + + start_cnt = thr.active_count() + for num in range(nthreads): + tname = 'PlugT-{0:02}'.format(num) + thread = PlugThread(tname, (buf_q, work_q, lock)) + thread.start() + if mac_gui: + rthread = RefreshThread(lock) + rthread.start() + + while not buf_q.empty() or thr.active_count() != start_cnt: + try: + action, name, msg = buf_q.get(True, 0.25) + buf.write(action, name, ['OK'] if not msg else msg) + buf_q.task_done() + except queue.Empty: + pass + except KeyboardInterrupt: + G_STOP.set() + + if mac_gui: + rthread.stop() + rthread.join() + +main() +EOF +endfunction + +function! s:update_ruby() + ruby << EOF + module PlugStream + SEP = ["\r", "\n", nil] + def get_line + buffer = '' + loop do + char = readchar rescue return + if SEP.include? char.chr + buffer << $/ + break + else + buffer << char + end + end + buffer + end + end unless defined?(PlugStream) + + def esc arg + %["#{arg.gsub('"', '\"')}"] + end + + def killall pid + pids = [pid] + if /mswin|mingw|bccwin/ =~ RUBY_PLATFORM + pids.each { |pid| Process.kill 'INT', pid.to_i rescue nil } + else + unless `which pgrep 2> /dev/null`.empty? + children = pids + until children.empty? + children = children.map { |pid| + `pgrep -P #{pid}`.lines.map { |l| l.chomp } + }.flatten + pids += children + end + end + pids.each { |pid| Process.kill 'TERM', pid.to_i rescue nil } + end + end + + def compare_git_uri a, b + regex = %r{^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$} + regex.match(a).to_a.drop(1) == regex.match(b).to_a.drop(1) + end + + require 'thread' + require 'fileutils' + require 'timeout' + running = true + iswin = VIM::evaluate('s:is_win').to_i == 1 + pull = VIM::evaluate('s:update.pull').to_i == 1 + base = VIM::evaluate('g:plug_home') + all = VIM::evaluate('s:update.todo') + limit = VIM::evaluate('get(g:, "plug_timeout", 60)') + tries = VIM::evaluate('get(g:, "plug_retries", 2)') + 1 + nthr = VIM::evaluate('s:update.threads').to_i + maxy = VIM::evaluate('winheight(".")').to_i + vim7 = VIM::evaluate('v:version').to_i <= 703 && RUBY_PLATFORM =~ /darwin/ + cd = iswin ? 'cd /d' : 'cd' + tot = VIM::evaluate('len(s:update.todo)') || 0 + bar = '' + skip = 'Already installed' + mtx = Mutex.new + take1 = proc { mtx.synchronize { running && all.shift } } + logh = proc { + cnt = bar.length + $curbuf[1] = "#{pull ? 'Updating' : 'Installing'} plugins (#{cnt}/#{tot})" + $curbuf[2] = '[' + bar.ljust(tot) + ']' + VIM::command('normal! 2G') + VIM::command('redraw') + } + where = proc { |name| (1..($curbuf.length)).find { |l| $curbuf[l] =~ /^[-+x*] #{name}:/ } } + log = proc { |name, result, type| + mtx.synchronize do + ing = ![true, false].include?(type) + bar += type ? '=' : 'x' unless ing + b = case type + when :install then '+' when :update then '*' + when true, nil then '-' else + VIM::command("call add(s:update.errors, '#{name}')") + 'x' + end + result = + if type || type.nil? + ["#{b} #{name}: #{result.lines.to_a.last || 'OK'}"] + elsif result =~ /^Interrupted|^Timeout/ + ["#{b} #{name}: #{result}"] + else + ["#{b} #{name}"] + result.lines.map { |l| " " << l } + end + if lnum = where.call(name) + $curbuf.delete lnum + lnum = 4 if ing && lnum > maxy + end + result.each_with_index do |line, offset| + $curbuf.append((lnum || 4) - 1 + offset, line.gsub(/\e\[./, '').chomp) + end + logh.call + end + } + bt = proc { |cmd, name, type, cleanup| + tried = timeout = 0 + begin + tried += 1 + timeout += limit + fd = nil + data = '' + if iswin + Timeout::timeout(timeout) do + tmp = VIM::evaluate('tempname()') + system("(#{cmd}) > #{tmp}") + data = File.read(tmp).chomp + File.unlink tmp rescue nil + end + else + fd = IO.popen(cmd).extend(PlugStream) + first_line = true + log_prob = 1.0 / nthr + while line = Timeout::timeout(timeout) { fd.get_line } + data << line + log.call name, line.chomp, type if name && (first_line || rand < log_prob) + first_line = false + end + fd.close + end + [$? == 0, data.chomp] + rescue Timeout::Error, Interrupt => e + if fd && !fd.closed? + killall fd.pid + fd.close + end + cleanup.call if cleanup + if e.is_a?(Timeout::Error) && tried < tries + 3.downto(1) do |countdown| + s = countdown > 1 ? 's' : '' + log.call name, "Timeout. Will retry in #{countdown} second#{s} ...", type + sleep 1 + end + log.call name, 'Retrying ...', type + retry + end + [false, e.is_a?(Interrupt) ? "Interrupted!" : "Timeout!"] + end + } + main = Thread.current + threads = [] + watcher = Thread.new { + if vim7 + while VIM::evaluate('getchar(1)') + sleep 0.1 + end + else + require 'io/console' # >= Ruby 1.9 + nil until IO.console.getch == 3.chr + end + mtx.synchronize do + running = false + threads.each { |t| t.raise Interrupt } unless vim7 + end + threads.each { |t| t.join rescue nil } + main.kill + } + refresh = Thread.new { + while true + mtx.synchronize do + break unless running + VIM::command('noautocmd normal! a') + end + sleep 0.2 + end + } if VIM::evaluate('s:mac_gui') == 1 + + clone_opt = VIM::evaluate('s:clone_opt').join(' ') + progress = VIM::evaluate('s:progress_opt(1)') + nthr.times do + mtx.synchronize do + threads << Thread.new { + while pair = take1.call + name = pair.first + dir, uri, tag = pair.last.values_at *%w[dir uri tag] + exists = File.directory? dir + ok, result = + if exists + chdir = "#{cd} #{iswin ? dir : esc(dir)}" + ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url", nil, nil, nil + current_uri = data.lines.to_a.last + if !ret + if data =~ /^Interrupted|^Timeout/ + [false, data] + else + [false, [data.chomp, "PlugClean required."].join($/)] + end + elsif !compare_git_uri(current_uri, uri) + [false, ["Invalid URI: #{current_uri}", + "Expected: #{uri}", + "PlugClean required."].join($/)] + else + if pull + log.call name, 'Updating ...', :update + fetch_opt = (tag && File.exist?(File.join(dir, '.git/shallow'))) ? '--depth 99999999' : '' + bt.call "#{chdir} && git fetch #{fetch_opt} #{progress} 2>&1", name, :update, nil + else + [true, skip] + end + end + else + d = esc dir.sub(%r{[\\/]+$}, '') + log.call name, 'Installing ...', :install + bt.call "git clone #{clone_opt unless tag} #{progress} #{uri} #{d} 2>&1", name, :install, proc { + FileUtils.rm_rf dir + } + end + mtx.synchronize { VIM::command("let s:update.new['#{name}'] = 1") } if !exists && ok + log.call name, result, ok + end + } if running + end + end + threads.each { |t| t.join rescue nil } + logh.call + refresh.kill if refresh + watcher.kill +EOF +endfunction + +function! s:shellesc_cmd(arg, script) + let escaped = substitute('"'.a:arg.'"', '[&|<>()@^!"]', '^&', 'g') + return substitute(escaped, '%', (a:script ? '%' : '^') . '&', 'g') +endfunction + +function! s:shellesc_ps1(arg) + return "'".substitute(escape(a:arg, '\"'), "'", "''", 'g')."'" +endfunction + +function! s:shellesc_sh(arg) + return "'".substitute(a:arg, "'", "'\\\\''", 'g')."'" +endfunction + +" Escape the shell argument based on the shell. +" Vim and Neovim's shellescape() are insufficient. +" 1. shellslash determines whether to use single/double quotes. +" Double-quote escaping is fragile for cmd.exe. +" 2. It does not work for powershell. +" 3. It does not work for *sh shells if the command is executed +" via cmd.exe (ie. cmd.exe /c sh -c command command_args) +" 4. It does not support batchfile syntax. +" +" Accepts an optional dictionary with the following keys: +" - shell: same as Vim/Neovim 'shell' option. +" If unset, fallback to 'cmd.exe' on Windows or 'sh'. +" - script: If truthy and shell is cmd.exe, escape for batchfile syntax. +function! plug#shellescape(arg, ...) + if a:arg =~# '^[A-Za-z0-9_/:.-]\+$' + return a:arg + endif + let opts = a:0 > 0 && type(a:1) == s:TYPE.dict ? a:1 : {} + let shell = get(opts, 'shell', s:is_win ? 'cmd.exe' : 'sh') + let script = get(opts, 'script', 1) + if shell =~# 'cmd\(\.exe\)\?$' + return s:shellesc_cmd(a:arg, script) + elseif s:is_powershell(shell) + return s:shellesc_ps1(a:arg) + endif + return s:shellesc_sh(a:arg) +endfunction + +function! s:glob_dir(path) + return map(filter(s:glob(a:path, '**'), 'isdirectory(v:val)'), 's:dirpath(v:val)') +endfunction + +function! s:progress_bar(line, bar, total) + call setline(a:line, '[' . s:lpad(a:bar, a:total) . ']') +endfunction + +function! s:compare_git_uri(a, b) + " See `git help clone' + " https:// [user@] github.com[:port] / junegunn/vim-plug [.git] + " [git@] github.com[:port] : junegunn/vim-plug [.git] + " file:// / junegunn/vim-plug [/] + " / junegunn/vim-plug [/] + let pat = '^\%(\w\+://\)\='.'\%([^@/]*@\)\='.'\([^:/]*\%(:[0-9]*\)\=\)'.'[:/]'.'\(.\{-}\)'.'\%(\.git\)\=/\?$' + let ma = matchlist(a:a, pat) + let mb = matchlist(a:b, pat) + return ma[1:2] ==# mb[1:2] +endfunction + +function! s:format_message(bullet, name, message) + if a:bullet != 'x' + return [printf('%s %s: %s', a:bullet, a:name, s:lastline(a:message))] + else + let lines = map(s:lines(a:message), '" ".v:val') + return extend([printf('x %s:', a:name)], lines) + endif +endfunction + +function! s:with_cd(cmd, dir, ...) + let script = a:0 > 0 ? a:1 : 1 + return printf('cd%s %s && %s', s:is_win ? ' /d' : '', plug#shellescape(a:dir, {'script': script}), a:cmd) +endfunction + +function! s:system(cmd, ...) + let batchfile = '' + try + let [sh, shellcmdflag, shrd] = s:chsh(1) + if type(a:cmd) == s:TYPE.list + " Neovim's system() supports list argument to bypass the shell + " but it cannot set the working directory for the command. + " Assume that the command does not rely on the shell. + if has('nvim') && a:0 == 0 + return system(a:cmd) + endif + let cmd = join(map(copy(a:cmd), 'plug#shellescape(v:val, {"shell": &shell, "script": 0})')) + if s:is_powershell(&shell) + let cmd = '& ' . cmd + endif + else + let cmd = a:cmd + endif + if a:0 > 0 + let cmd = s:with_cd(cmd, a:1, type(a:cmd) != s:TYPE.list) + endif + if s:is_win && type(a:cmd) != s:TYPE.list + let [batchfile, cmd] = s:batchfile(cmd) + endif + return system(cmd) + finally + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win && filereadable(batchfile) + call delete(batchfile) + endif + endtry +endfunction + +function! s:system_chomp(...) + let ret = call('s:system', a:000) + return v:shell_error ? '' : substitute(ret, '\n$', '', '') +endfunction + +function! s:git_validate(spec, check_branch) + let err = '' + if isdirectory(a:spec.dir) + let result = [s:git_local_branch(a:spec.dir), s:git_origin_url(a:spec.dir)] + let remote = result[-1] + if empty(remote) + let err = join([remote, 'PlugClean required.'], "\n") + elseif !s:compare_git_uri(remote, a:spec.uri) + let err = join(['Invalid URI: '.remote, + \ 'Expected: '.a:spec.uri, + \ 'PlugClean required.'], "\n") + elseif a:check_branch && has_key(a:spec, 'commit') + let sha = s:git_revision(a:spec.dir) + if empty(sha) + let err = join(add(result, 'PlugClean required.'), "\n") + elseif !s:hash_match(sha, a:spec.commit) + let err = join([printf('Invalid HEAD (expected: %s, actual: %s)', + \ a:spec.commit[:6], sha[:6]), + \ 'PlugUpdate required.'], "\n") + endif + elseif a:check_branch + let current_branch = result[0] + " Check tag + let origin_branch = s:git_origin_branch(a:spec) + if has_key(a:spec, 'tag') + let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1', a:spec.dir) + if a:spec.tag !=# tag && a:spec.tag !~ '\*' + let err = printf('Invalid tag: %s (expected: %s). Try PlugUpdate.', + \ (empty(tag) ? 'N/A' : tag), a:spec.tag) + endif + " Check branch + elseif origin_branch !=# current_branch + let err = printf('Invalid branch: %s (expected: %s). Try PlugUpdate.', + \ current_branch, origin_branch) + endif + if empty(err) + let [ahead, behind] = split(s:lastline(s:system([ + \ 'git', 'rev-list', '--count', '--left-right', + \ printf('HEAD...origin/%s', origin_branch) + \ ], a:spec.dir)), '\t') + if !v:shell_error && ahead + if behind + " Only mention PlugClean if diverged, otherwise it's likely to be + " pushable (and probably not that messed up). + let err = printf( + \ "Diverged from origin/%s (%d commit(s) ahead and %d commit(s) behind!\n" + \ .'Backup local changes and run PlugClean and PlugUpdate to reinstall it.', origin_branch, ahead, behind) + else + let err = printf("Ahead of origin/%s by %d commit(s).\n" + \ .'Cannot update until local changes are pushed.', + \ origin_branch, ahead) + endif + endif + endif + endif + else + let err = 'Not found' + endif + return [err, err =~# 'PlugClean'] +endfunction + +function! s:rm_rf(dir) + if isdirectory(a:dir) + return s:system(s:is_win + \ ? 'rmdir /S /Q '.plug#shellescape(a:dir) + \ : ['rm', '-rf', a:dir]) + endif +endfunction + +function! s:clean(force) + call s:prepare() + call append(0, 'Searching for invalid plugins in '.g:plug_home) + call append(1, '') + + " List of valid directories + let dirs = [] + let errs = {} + let [cnt, total] = [0, len(g:plugs)] + for [name, spec] in items(g:plugs) + if !s:is_managed(name) + call add(dirs, spec.dir) + else + let [err, clean] = s:git_validate(spec, 1) + if clean + let errs[spec.dir] = s:lines(err)[0] + else + call add(dirs, spec.dir) + endif + endif + let cnt += 1 + call s:progress_bar(2, repeat('=', cnt), total) + normal! 2G + redraw + endfor + + let allowed = {} + for dir in dirs + let allowed[s:dirpath(s:plug_fnamemodify(dir, ':h:h'))] = 1 + let allowed[dir] = 1 + for child in s:glob_dir(dir) + let allowed[child] = 1 + endfor + endfor + + let todo = [] + let found = sort(s:glob_dir(g:plug_home)) + while !empty(found) + let f = remove(found, 0) + if !has_key(allowed, f) && isdirectory(f) + call add(todo, f) + call append(line('$'), '- ' . f) + if has_key(errs, f) + call append(line('$'), ' ' . errs[f]) + endif + let found = filter(found, 'stridx(v:val, f) != 0') + end + endwhile + + 4 + redraw + if empty(todo) + call append(line('$'), 'Already clean.') + else + let s:clean_count = 0 + call append(3, ['Directories to delete:', '']) + redraw! + if a:force || s:ask_no_interrupt('Delete all directories?') + call s:delete([6, line('$')], 1) + else + call setline(4, 'Cancelled.') + nnoremap d :set opfunc=delete_opg@ + nmap dd d_ + xnoremap d :call delete_op(visualmode(), 1) + echo 'Delete the lines (d{motion}) to delete the corresponding directories' + endif + endif + 4 + setlocal nomodifiable +endfunction + +function! s:delete_op(type, ...) + call s:delete(a:0 ? [line("'<"), line("'>")] : [line("'["), line("']")], 0) +endfunction + +function! s:delete(range, force) + let [l1, l2] = a:range + let force = a:force + let err_count = 0 + while l1 <= l2 + let line = getline(l1) + if line =~ '^- ' && isdirectory(line[2:]) + execute l1 + redraw! + let answer = force ? 1 : s:ask('Delete '.line[2:].'?', 1) + let force = force || answer > 1 + if answer + let err = s:rm_rf(line[2:]) + setlocal modifiable + if empty(err) + call setline(l1, '~'.line[1:]) + let s:clean_count += 1 + else + delete _ + call append(l1 - 1, s:format_message('x', line[1:], err)) + let l2 += len(s:lines(err)) + let err_count += 1 + endif + let msg = printf('Removed %d directories.', s:clean_count) + if err_count > 0 + let msg .= printf(' Failed to remove %d directories.', err_count) + endif + call setline(4, msg) + setlocal nomodifiable + endif + endif + let l1 += 1 + endwhile +endfunction + +function! s:upgrade() + echo 'Downloading the latest version of vim-plug' + redraw + let tmp = s:plug_tempname() + let new = tmp . '/plug.vim' + + try + let out = s:system(['git', 'clone', '--depth', '1', s:plug_src, tmp]) + if v:shell_error + return s:err('Error upgrading vim-plug: '. out) + endif + + if readfile(s:me) ==# readfile(new) + echo 'vim-plug is already up-to-date' + return 0 + else + call rename(s:me, s:me . '.old') + call rename(new, s:me) + unlet g:loaded_plug + echo 'vim-plug has been upgraded' + return 1 + endif + finally + silent! call s:rm_rf(tmp) + endtry +endfunction + +function! s:upgrade_specs() + for spec in values(g:plugs) + let spec.frozen = get(spec, 'frozen', 0) + endfor +endfunction + +function! s:status() + call s:prepare() + call append(0, 'Checking plugins') + call append(1, '') + + let ecnt = 0 + let unloaded = 0 + let [cnt, total] = [0, len(g:plugs)] + for [name, spec] in items(g:plugs) + let is_dir = isdirectory(spec.dir) + if has_key(spec, 'uri') + if is_dir + let [err, _] = s:git_validate(spec, 1) + let [valid, msg] = [empty(err), empty(err) ? 'OK' : err] + else + let [valid, msg] = [0, 'Not found. Try PlugInstall.'] + endif + else + if is_dir + let [valid, msg] = [1, 'OK'] + else + let [valid, msg] = [0, 'Not found.'] + endif + endif + let cnt += 1 + let ecnt += !valid + " `s:loaded` entry can be missing if PlugUpgraded + if is_dir && get(s:loaded, name, -1) == 0 + let unloaded = 1 + let msg .= ' (not loaded)' + endif + call s:progress_bar(2, repeat('=', cnt), total) + call append(3, s:format_message(valid ? '-' : 'x', name, msg)) + normal! 2G + redraw + endfor + call setline(1, 'Finished. '.ecnt.' error(s).') + normal! gg + setlocal nomodifiable + if unloaded + echo "Press 'L' on each line to load plugin, or 'U' to update" + nnoremap L :call status_load(line('.')) + xnoremap L :call status_load(line('.')) + end +endfunction + +function! s:extract_name(str, prefix, suffix) + return matchstr(a:str, '^'.a:prefix.' \zs[^:]\+\ze:.*'.a:suffix.'$') +endfunction + +function! s:status_load(lnum) + let line = getline(a:lnum) + let name = s:extract_name(line, '-', '(not loaded)') + if !empty(name) + call plug#load(name) + setlocal modifiable + call setline(a:lnum, substitute(line, ' (not loaded)$', '', '')) + setlocal nomodifiable + endif +endfunction + +function! s:status_update() range + let lines = getline(a:firstline, a:lastline) + let names = filter(map(lines, 's:extract_name(v:val, "[x-]", "")'), '!empty(v:val)') + if !empty(names) + echo + execute 'PlugUpdate' join(names) + endif +endfunction + +function! s:is_preview_window_open() + silent! wincmd P + if &previewwindow + wincmd p + return 1 + endif +endfunction + +function! s:find_name(lnum) + for lnum in reverse(range(1, a:lnum)) + let line = getline(lnum) + if empty(line) + return '' + endif + let name = s:extract_name(line, '-', '') + if !empty(name) + return name + endif + endfor + return '' +endfunction + +function! s:preview_commit() + if b:plug_preview < 0 + let b:plug_preview = !s:is_preview_window_open() + endif + + let sha = matchstr(getline('.'), '^ \X*\zs[0-9a-f]\{7,9}') + if empty(sha) + let name = matchstr(getline('.'), '^- \zs[^:]*\ze:$') + if empty(name) + return + endif + let title = 'HEAD@{1}..' + let command = 'git diff --no-color HEAD@{1}' + else + let title = sha + let command = 'git show --no-color --pretty=medium '.sha + let name = s:find_name(line('.')) + endif + + if empty(name) || !has_key(g:plugs, name) || !isdirectory(g:plugs[name].dir) + return + endif + + if exists('g:plug_pwindow') && !s:is_preview_window_open() + execute g:plug_pwindow + execute 'e' title + else + execute 'pedit' title + wincmd P + endif + setlocal previewwindow filetype=git buftype=nofile bufhidden=wipe nobuflisted modifiable + let batchfile = '' + try + let [sh, shellcmdflag, shrd] = s:chsh(1) + let cmd = 'cd '.plug#shellescape(g:plugs[name].dir).' && '.command + if s:is_win + let [batchfile, cmd] = s:batchfile(cmd) + endif + execute 'silent %!' cmd + finally + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win && filereadable(batchfile) + call delete(batchfile) + endif + endtry + setlocal nomodifiable + nnoremap q :q + wincmd p +endfunction + +function! s:section(flags) + call search('\(^[x-] \)\@<=[^:]\+:', a:flags) +endfunction + +function! s:format_git_log(line) + let indent = ' ' + let tokens = split(a:line, nr2char(1)) + if len(tokens) != 5 + return indent.substitute(a:line, '\s*$', '', '') + endif + let [graph, sha, refs, subject, date] = tokens + let tag = matchstr(refs, 'tag: [^,)]\+') + let tag = empty(tag) ? ' ' : ' ('.tag.') ' + return printf('%s%s%s%s%s (%s)', indent, graph, sha, tag, subject, date) +endfunction + +function! s:append_ul(lnum, text) + call append(a:lnum, ['', a:text, repeat('-', len(a:text))]) +endfunction + +function! s:diff() + call s:prepare() + call append(0, ['Collecting changes ...', '']) + let cnts = [0, 0] + let bar = '' + let total = filter(copy(g:plugs), 's:is_managed(v:key) && isdirectory(v:val.dir)') + call s:progress_bar(2, bar, len(total)) + for origin in [1, 0] + let plugs = reverse(sort(items(filter(copy(total), (origin ? '' : '!').'(has_key(v:val, "commit") || has_key(v:val, "tag"))')))) + if empty(plugs) + continue + endif + call s:append_ul(2, origin ? 'Pending updates:' : 'Last update:') + for [k, v] in plugs + let branch = s:git_origin_branch(v) + if len(branch) + let range = origin ? '..origin/'.branch : 'HEAD@{1}..' + let cmd = ['git', 'log', '--graph', '--color=never'] + if s:git_version_requirement(2, 10, 0) + call add(cmd, '--no-show-signature') + endif + call extend(cmd, ['--pretty=format:%x01%h%x01%d%x01%s%x01%cr', range]) + if has_key(v, 'rtp') + call extend(cmd, ['--', v.rtp]) + endif + let diff = s:system_chomp(cmd, v.dir) + if !empty(diff) + let ref = has_key(v, 'tag') ? (' (tag: '.v.tag.')') : has_key(v, 'commit') ? (' '.v.commit) : '' + call append(5, extend(['', '- '.k.':'.ref], map(s:lines(diff), 's:format_git_log(v:val)'))) + let cnts[origin] += 1 + endif + endif + let bar .= '=' + call s:progress_bar(2, bar, len(total)) + normal! 2G + redraw + endfor + if !cnts[origin] + call append(5, ['', 'N/A']) + endif + endfor + call setline(1, printf('%d plugin(s) updated.', cnts[0]) + \ . (cnts[1] ? printf(' %d plugin(s) have pending updates.', cnts[1]) : '')) + + if cnts[0] || cnts[1] + nnoremap (plug-preview) :silent! call preview_commit() + if empty(maparg("\", 'n')) + nmap (plug-preview) + endif + if empty(maparg('o', 'n')) + nmap o (plug-preview) + endif + endif + if cnts[0] + nnoremap X :call revert() + echo "Press 'X' on each block to revert the update" + endif + normal! gg + setlocal nomodifiable +endfunction + +function! s:revert() + if search('^Pending updates', 'bnW') + return + endif + + let name = s:find_name(line('.')) + if empty(name) || !has_key(g:plugs, name) || + \ input(printf('Revert the update of %s? (y/N) ', name)) !~? '^y' + return + endif + + call s:system('git reset --hard HEAD@{1} && git checkout '.plug#shellescape(g:plugs[name].branch).' --', g:plugs[name].dir) + setlocal modifiable + normal! "_dap + setlocal nomodifiable + echo 'Reverted' +endfunction + +function! s:snapshot(force, ...) abort + call s:prepare() + setf vim + call append(0, ['" Generated by vim-plug', + \ '" '.strftime("%c"), + \ '" :source this file in vim to restore the snapshot', + \ '" or execute: vim -S snapshot.vim', + \ '', '', 'PlugUpdate!']) + 1 + let anchor = line('$') - 3 + let names = sort(keys(filter(copy(g:plugs), + \'has_key(v:val, "uri") && isdirectory(v:val.dir)'))) + for name in reverse(names) + let sha = has_key(g:plugs[name], 'commit') ? g:plugs[name].commit : s:git_revision(g:plugs[name].dir) + if !empty(sha) + call append(anchor, printf("silent! let g:plugs['%s'].commit = '%s'", name, sha)) + redraw + endif + endfor + + if a:0 > 0 + let fn = s:plug_expand(a:1) + if filereadable(fn) && !(a:force || s:ask(a:1.' already exists. Overwrite?')) + return + endif + call writefile(getline(1, '$'), fn) + echo 'Saved as '.a:1 + silent execute 'e' s:esc(fn) + setf vim + endif +endfunction + +function! s:split_rtp() + return split(&rtp, '\\\@ + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/add-workspace-hover.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/add-workspace-hover.svg new file mode 100644 index 0000000..8a1d351 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/add-workspace-hover.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/add-workspace.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/add-workspace.svg new file mode 100644 index 0000000..8dba5df --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/add-workspace.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/calendar-arrow-left.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/calendar-arrow-left.svg new file mode 100644 index 0000000..dcf8298 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/calendar-arrow-left.svg @@ -0,0 +1,56 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/calendar-arrow-right.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/calendar-arrow-right.svg new file mode 100644 index 0000000..ed66559 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/calendar-arrow-right.svg @@ -0,0 +1,56 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/checkbox-off.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/checkbox-off.svg new file mode 100644 index 0000000..b00efa6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/checkbox.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/checkbox.svg new file mode 100644 index 0000000..a07837a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/checkbox.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close-active.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close-active.svg new file mode 100644 index 0000000..a2f1ffb --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close-active.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close-hover.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close-hover.svg new file mode 100644 index 0000000..ce2cb97 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close-hover.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close.svg new file mode 100644 index 0000000..09ec924 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/close.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/corner-ripple.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/corner-ripple.svg new file mode 100644 index 0000000..25f275e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/corner-ripple.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/radiobutton-off.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/radiobutton-off.svg new file mode 100644 index 0000000..b00efa6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/radiobutton-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/radiobutton.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/radiobutton.svg new file mode 100644 index 0000000..7111186 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/radiobutton.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/toggle-off.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/toggle-off.svg new file mode 100644 index 0000000..8522010 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/toggle-off.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/toggle-on.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/toggle-on.svg new file mode 100644 index 0000000..432833b --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/toggle-on.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/trash-icon.svg b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/trash-icon.svg new file mode 100644 index 0000000..d78a123 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/assets/trash-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/cinnamon.css b/home-config/themes/Lavanda-Sea-Dark/cinnamon/cinnamon.css new file mode 100644 index 0000000..e0c5bef --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/cinnamon/cinnamon.css @@ -0,0 +1,2343 @@ +stage { + color: #FFFFFF; +} + +.label-shadow { + color: rgba(0, 0, 0, 0); +} + +.sound-button { + min-height: 24px; + padding: 5px 32px; + transition-duration: 100ms; + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); +} + +.sound-button:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + border-radius: 6px; +} + +.sound-button:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + border-radius: 6px; +} + +.sound-button:hover:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); + border-radius: 6px; +} + +.sound-button:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); + border-radius: 6px; +} + +.sound-button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0.04); + border-radius: 6px; +} + +.notification-button, .notification-icon-button, .menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, #notification .notification-button, #notification .notification-icon-button, .calendar-today-home-button, +.calendar-today-home-button-enabled { + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; +} + +.notification-button:hover, .notification-icon-button:hover, #notification .notification-button:hover, #notification .notification-icon-button:hover, .calendar-today-home-button:hover, +.calendar-today-home-button-enabled:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + border-radius: 6px; +} + +.notification-button:active, .notification-icon-button:active, #notification .notification-button:active, #notification .notification-icon-button:active, .calendar-today-home-button:active, +.calendar-today-home-button-enabled:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); + border-radius: 6px; +} + +.notification-button:insensitive, .notification-icon-button:insensitive, #notification .notification-button:insensitive, #notification .notification-icon-button:insensitive, .calendar-today-home-button:insensitive, +.calendar-today-home-button-enabled:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; + border-radius: 6px; +} + +.modal-dialog-button-box .modal-dialog-button { + min-height: 24px; + padding: 6px 30px; + transition-duration: 100ms; + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); +} + +.modal-dialog-button-box .modal-dialog-button:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.modal-dialog-button-box .modal-dialog-button:focus { + color: #5b9bf8; +} + +.modal-dialog-button-box .modal-dialog-button:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); +} + +.modal-dialog-button-box .modal-dialog-button:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; +} + +#menu-search-entry, .notification StEntry, .menu #notification StEntry, .popup-menu #notification StEntry, #notification StEntry { + padding: 3px 12px; + min-height: 24px; + caret-size: 1px; + selection-background-color: #5b9bf8; + selected-color: #FFFFFF; + transition-duration: 300ms; + border-radius: 6px; + color: #FFFFFF; + border: 2px solid transparent; + background-color: rgba(255, 255, 255, 0.04); +} + +#menu-search-entry:focus, .notification StEntry:focus, .menu #notification StEntry:focus, .popup-menu #notification StEntry:focus, #notification StEntry:focus, #menu-search-entry:hover, .notification StEntry:hover, .menu #notification StEntry:hover, .popup-menu #notification StEntry:hover, #notification StEntry:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid #5b9bf8; +} + +#menu-search-entry:insensitive, .notification StEntry:insensitive, .menu #notification StEntry:insensitive, .popup-menu #notification StEntry:insensitive, #notification StEntry:insensitive { + border: 2px solid transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); +} + +#menu-search-entry StIcon.capslock-warning, .notification StEntry StIcon.capslock-warning, .menu #notification StEntry StIcon.capslock-warning, .popup-menu #notification StEntry StIcon.capslock-warning, #notification StEntry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #FBC02D; + padding: 0 6px; +} + +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(37, 41, 47, 0.1); + border-radius: 9999px; +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 9999px; + background-color: #7a7d80; + border: 0px solid; + margin: 0px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #64676b; +} + +StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5b9bf8; +} + +.separator { + -gradient-height: 1px; + -gradient-start: rgba(0, 0, 0, 0); + -gradient-end: rgba(0, 0, 0, 0); + -margin-horizontal: 1.5em; + height: 1em; +} + +.popup-slider-menu-item, +.slider { + -slider-height: 4px; + -slider-background-color: rgba(255, 255, 255, 0.12); + -slider-border-color: transparent; + -slider-active-background-color: #5b9bf8; + -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; +} + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; +} + +.check-box StLabel { + font-weight: normal; +} + +.check-box StBin { + width: 24px; + height: 24px; +} + +.check-box StBin, .check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:checked StBin, .check-box:focus:checked StBin { + background-image: url("assets/checkbox-dark.svg"); +} + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; +} + +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; +} + +.radiobutton StBin { + width: 24px; + height: 24px; +} + +.radiobutton StBin, .radiobutton:focus StBin { + background-image: url("assets/radiobutton-off.svg"); +} + +.radiobutton:checked StBin, .radiobutton:focus:checked StBin { + background-image: url("assets/radiobutton-dark.svg"); +} + +.toggle-switch { + width: 46px; + height: 24px; + background-size: contain; +} + +.toggle-switch, .popup-menu-item:active .toggle-switch { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch:checked, .popup-menu-item:active .toggle-switch:checked { + background-image: url("assets/toggle-on-dark.svg"); +} + +.cinnamon-link { + color: #3c84f7; + text-decoration: underline; +} + +.cinnamon-link:hover { + color: #6da3f9; +} + +#Tooltip { + border-radius: 9999px; + padding: 6px 12px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; + margin: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + font-size: 1em; + font-weight: normal; + text-align: center; +} + +.popup-menu-boxpointer { + -arrow-border-radius: 6px; + -arrow-background-color: rgba(0, 0, 0, 0); + -arrow-border-width: 0; + -arrow-border-color: rgba(0, 0, 0, 0); + -arrow-base: 0; + -arrow-rise: 0; +} + +.menu, +.popup-combo-menu, +.popup-menu { + padding: 0; + color: #FFFFFF; + background-color: transparent; + border: none; + margin: 0; + box-shadow: none; + min-width: 100px; +} + +.menu-arrow, .menu-icon, +.popup-combo-menu-arrow, +.popup-combo-menu-icon, +.popup-menu-arrow, +.popup-menu-icon { + icon-size: 16px; +} + +.popup-menu-content { + padding: 6px; + border-radius: 12px; + background-clip: padding-box; + background-color: #1a1f26; + margin: 6px; + box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35); +} + +.popup-menu-item { + padding: 6px 12px; + spacing: 12px; + border-radius: 6px; +} + +.popup-menu-item:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); +} + +.popup-menu-item:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.popup-menu-item:insensitive { + color: rgba(255, 255, 255, 0.4); + background: none; +} + +.popup-inactive-menu-item { + color: rgba(255, 255, 255, 0.4); +} + +.popup-inactive-menu-item:insensitive { + color: rgba(255, 255, 255, 0.14); +} + +.popup-menu-item:active .popup-inactive-menu-item { + color: rgba(255, 255, 255, 0.4); +} + +.popup-submenu-menu-item:open { + color: #FFFFFF; + background-color: transparent; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + border-radius: 6px 6px 0 0; +} + +.popup-sub-menu { + padding: 0; + margin: 0; + border-radius: 0 0 6px 6px; + background-gradient-direction: horizontal; + background-gradient-start: #31363c; + background-gradient-end: #31363c; + box-shadow: none; + color: rgba(255, 255, 255, 0.7); + transition: none; +} + +.popup-sub-menu .popup-menu-item:active { + background-gradient-start: rgba(255, 255, 255, 0.12); + background-gradient-end: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.popup-sub-menu StScrollBar { + padding: 4px; +} + +.popup-sub-menu StScrollBar StBin#trough, .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; +} + +.popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; +} + +.popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; +} + +.popup-combobox-item { + spacing: 1em; +} + +.popup-separator-menu-item { + -gradient-height: 0; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 0; + margin: 0; + padding: 0; + border-color: rgba(255, 255, 255, 0.12); + border-bottom-width: 0; + border-bottom-style: solid; + background-color: transparent; +} + +.popup-alternating-menu-item:alternate { + font-weight: bold; +} + +.popup-device-menu-item { + spacing: .5em; +} + +.popup-subtitle-menu-item { + font-weight: bold; +} + +.nm-menu-item-icons { + spacing: .5em; +} + +#panel { + font-weight: bold; + height: 36px; + width: 42px; +} + +#panel:highlight { + border-image: none; + background-color: rgba(244, 67, 54, 0.5); +} + +#panelLeft { + spacing: 4px; +} + +#panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(244, 67, 54, 0.35); + background-gradient-end: rgba(244, 67, 54, 0.35); +} + +#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(91, 155, 248, 0.35); + background-gradient-end: rgba(91, 155, 248, 0.35); +} + +#panelRight:ltr { + padding-left: 6px; + spacing: 0px; +} + +#panelRight:rtl { + padding-right: 6px; + 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(102, 187, 106, 0.35); + background-gradient-end: rgba(102, 187, 106, 0.35); +} + +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: rgba(255, 255, 255, 0.7); + font-size: 1em; + padding: 0px; + background-color: rgba(20, 24, 29, 0.75); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 16px rgba(0, 0, 0, 0.24); +} + +.panel-top .panel-button:hover, +.panel-top .panel-status-button:hover, .panel-bottom .panel-button:hover, +.panel-bottom .panel-status-button:hover, .panel-left .panel-button:hover, +.panel-left .panel-status-button:hover, .panel-right .panel-button:hover, +.panel-right .panel-status-button:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.04); +} + +.panel-top .panel-button:active, +.panel-top .panel-status-button:active, .panel-bottom .panel-button:active, +.panel-bottom .panel-status-button:active, .panel-left .panel-button:active, +.panel-left .panel-status-button:active, .panel-right .panel-button:active, +.panel-right .panel-status-button:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.panel-dummy { + background-color: rgba(244, 67, 54, 0.5); +} + +.panel-dummy:entered { + background-color: rgba(244, 67, 54, 0.6); +} + +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + height: 22px; + color: rgba(255, 255, 255, 0.7); +} + +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + transition-duration: 100ms; + color: rgba(255, 255, 255, 0.7); +} + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; +} + +#overview { + spacing: 12px; +} + +.window-caption { + background-color: rgba(38, 41, 46, 0.9); + border: 1px solid rgba(38, 41, 46, 0.9); + color: #FFFFFF; + spacing: 25px; + border-radius: 6px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; +} + +#selected.window-caption { + background-color: #5b9bf8; + color: #FFFFFF; + border: 1px solid #5b9bf8; + spacing: 25px; +} + +.expo-workspaces-name-entry, +#selected.expo-workspaces-name-entry { + height: 15px; + border-radius: 6px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid transparent; +} + +.expo-workspaces-name-entry:focus, +#selected.expo-workspaces-name-entry:focus { + border: 1px solid #5b9bf8; + background-color: #5b9bf8; + color: #FFFFFF; + font-style: italic; + transition-duration: 300; + selection-background-color: #FFFFFF; + selected-color: #5b9bf8; +} + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 6px; +} + +#active.expo-workspace-thumbnail-frame { + border: 4px solid #5b9bf8; + background-color: black; + border-radius: 6px; +} + +.expo-background { + background-color: #26292e; +} + +.workspace-thumbnails { + spacing: 26px; +} + +.workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; +} + +.workspace-add-button { + background-image: url("assets/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; +} + +.workspace-add-button:hover { + background-image: url("assets/add-workspace-hover.svg"); + transition-duration: 100; +} + +.workspace-add-button:active { + background-image: url("assets/add-workspace-active.svg"); + transition-duration: 100; +} + +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); +} + +.window-close, +.workspace-close-button { + background-image: url("assets/close.svg"); + background-size: 48px; + height: 48px; + width: 48px; + -cinnamon-close-overlap: 24px; +} + +.window-close:hover, +.workspace-close-button:hover { + background-image: url("assets/close-hover.svg"); + background-size: 48px; + height: 48px; + width: 48px; +} + +.window-close:active, +.workspace-close-button:active { + background-image: url("assets/close-active.svg"); + background-size: 48px; + height: 48px; + width: 48px; +} + +.workspace-thumbnail-indicator { + outline: 2px solid red; + border: 1px solid green; +} + +.window-close:rtl { + -st-background-image-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); +} + +.window-close-area { + background-image: url("assets/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 rgba(255, 255, 255, 0.12); + border-radius: 6px; + background-color: #25292f; + 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; +} + +#LookingGlassDialog { + background-color: #25292f; + spacing: 6px; + padding: 6px; + margin: 32px; + border-radius: 12px; + color: #FFFFFF; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); + border: none; +} + +.calendar-main-box { + margin: 0 6px; +} + +.calendar { + padding: 6px 12px; + spacing-rows: 0px; + spacing-columns: 0px; +} + +.calendar-today-home-button, +.calendar-today-home-button-enabled { + margin: 6px 0; + padding: 6px; +} + +.calendar-today-day-label { + font-size: 1.75em; + color: rgba(255, 255, 255, 0.7); + font-weight: bold; + text-align: center; + padding-bottom: .1em; +} + +.calendar-today-date-label { + font-size: 1.1em; + color: rgba(255, 255, 255, 0.4); + font-weight: bold; + text-align: center; +} + +.calendar-month-label { + color: #FFFFFF; + font-weight: bold; + margin: 0 2px; + padding: 2px; +} + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 24px; + height: 24px; + margin: 0; + padding: 0; + border-radius: 9999px; +} + +.calendar-change-month-back:focus, .calendar-change-month-back:hover, +.calendar-change-month-forward:focus, +.calendar-change-month-forward:hover { + background-color: rgba(255, 255, 255, 0.1); +} + +.calendar-change-month-back:active, +.calendar-change-month-forward:active { + background-color: rgba(255, 255, 255, 0.25); +} + +.calendar-change-month-back { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-change-month-back:rtl { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward:rtl { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: normal; + text-align: center; + font-size: 14px; + color: #FFFFFF; + border-radius: 6px; +} + +.calendar-day-base { + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 9999px; +} + +.calendar-day-base:hover { + background-color: rgba(255, 255, 255, 0.04); +} + +.calendar-day-base:active { + background-color: rgba(255, 255, 255, 0.12); +} + +.calendar-day-heading { + color: rgba(255, 255, 255, 0.7); + margin-top: 1em; +} + +.calendar-day { + border-width: 0; + color: rgba(255, 255, 255, 0.7); +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: #FFFFFF; + background-color: transparent; + font-weight: bold; +} + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #FFFFFF; + background-color: #5b9bf8; + border-width: 0; +} + +.calendar-other-month-day { + color: rgba(255, 255, 255, 0.7); + opacity: 1; +} + +.calendar-week-number { + width: 20px; + height: 20px; + margin: 6px 0; + color: rgba(255, 255, 255, 0.26); + font-weight: bold; + background-color: rgba(255, 255, 255, 0.04); + border-radius: 9999px; +} + +.calendar-week-number StLabel { + padding: 0; + margin-top: 3px; +} + +.calendar-events-main-box { + height: 300px; + margin: 8px 0.8em 0 0; + padding: 8px; + min-width: 350px; + border: none; + border-radius: 6px; + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 255, 255, 0.04); + background-gradient-end: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); +} + +.calendar-events-no-events-button { + margin: 6px 0; + padding: 6px; + border-radius: 6px; +} + +.calendar-events-no-events-button:hover { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 255, 255, 0.04); + background-gradient-end: rgba(255, 255, 255, 0.04); + box-shadow: none; +} + +.calendar-events-no-events-icon { + color: rgba(255, 255, 255, 0.4); +} + +.calendar-events-no-events-label { + font-size: 1.1em; + color: rgba(255, 255, 255, 0.4); + font-weight: bold; + text-align: center; + margin-top: 9px; +} + +.calendar-events-date-label { + padding: 3px 0 12px 3px; + font-size: 1.1em; + color: rgba(255, 255, 255, 0.7); + font-weight: bold; + text-align: center; +} + +.calendar-events-event-container { + padding: 2px; +} + +.calendar-events-main-box .separator { + -margin-horizontal: 1em; + -gradient-height: 1px; + -gradient-start: rgba(255, 255, 255, 0.12); + -gradient-end: rgba(255, 255, 255, 0.12); +} + +.calendar-event-button { + margin: 6px 0 6px 0; + border-radius: 6px; +} + +.calendar-event-button:hover { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 255, 255, 0.04); + background-gradient-end: rgba(255, 255, 255, 0.04); + box-shadow: none; +} + +.calendar-event-color-strip { + width: 4px; + border-radius: 4px 0 0 4px; +} + +.calendar-event-row-content { + margin: 6px; +} + +.calendar-event-time-past { + color: rgba(255, 255, 255, 0.3); + font-weight: bold; + text-align: left; + margin-bottom: .6em; +} + +.calendar-event-time-present { + font-weight: bold; + text-align: left; + margin-bottom: .6em; +} + +.calendar-event-time-present:all-day { + color: rgba(102, 187, 106, 0.6); +} + +.calendar-event-time-future { + text-align: left; + margin-bottom: .6em; +} + +.calendar-event-countdown { + color: rgba(255, 255, 255, 0.4); + font-weight: bold; + text-align: right; + margin-bottom: .6em; +} + +.calendar-event-countdown:soon { + color: white; +} + +.calendar-event-countdown:imminent { + color: rgba(251, 192, 45, 0.6); +} + +.calendar-event-countdown:current { + color: rgba(102, 187, 106, 0.6); +} + +.calendar-event-summary { + color: rgba(255, 255, 255, 0.4); + text-align: left; + width: 200px; +} + +#notification { + border-radius: 12px; + padding: 12px; + spacing-rows: 9px; + spacing-columns: 9px; + margin-from-right-edge-of-screen: 18px; + width: 28em; + color: #FFFFFF; + background-color: rgba(37, 41, 47, 0.97); + box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35); + margin: 7px 12px 17px 12px; +} + +#notification .notification-button, #notification .notification-icon-button { + padding: 6px; +} + +.menu #notification, .popup-menu #notification { + border: none; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.05); + box-shadow: none; + margin: 0; +} + +.menu #notification:hover, .popup-menu #notification:hover { + background-color: rgba(255, 255, 255, 0.1); + box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15); +} + +.menu #notification, .menu #notification.multi-line-notification, .popup-menu #notification, .popup-menu #notification.multi-line-notification { + color: #FFFFFF; +} + +.menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 6px; +} + +#notification.multi-line-notification { + padding-bottom: 12px; + color: #FFFFFF; +} + +#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: 6px; +} + +#notification-actions { + spacing: 9px; +} + +.notification-with-image { + min-height: 159px; + color: #FFFFFF; +} + +.notification-button, .notification-icon-button { + padding: 6px; +} + +.notification-icon-button > StIcon { + icon-size: 36px; +} + +#altTabPopup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + color: #FFFFFF; + background-color: #1a1f26; + border: none; + border-radius: 6px; + padding: 20px; +} + +.switcher-list > StBoxLayout { + padding: 4px; +} + +.switcher-list-item-container { + spacing: 8px; +} + +.switcher-list .item-box { + padding: 8px; + border-radius: 6px; +} + +.switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5b9bf8; +} + +.switcher-list .item-box:selected { + color: #FFFFFF; + background-color: #5b9bf8; + border: 0px solid #5b9bf8; +} + +.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: rgba(0, 0, 0, 0); + color: #FFFFFF; +} + +.switcher-arrow:highlighted { + border-color: rgba(0, 0, 0, 0); + color: rgba(255, 255, 255, 0.7); +} + +.thumbnail-scroll-gradient-left { + background-color: rgba(0, 0, 0, 0); + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; +} + +.thumbnail-scroll-gradient-right { + background-color: rgba(0, 0, 0, 0); + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; +} + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("assets/corner-ripple.svg"); + background-size: contain; +} + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); +} + +.flashspot { + background-color: white; +} + +.modal-dialog { + color: #FFFFFF; + background-color: rgba(31, 33, 37, 0.95); + padding: 0 5px 6px 5px; + border-radius: 6px; + box-shadow: 0 3px 8px rgba(0, 0, 0, 0.75), 0 5px 18px rgba(0, 0, 0, 0.55); +} + +.modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; +} + +.modal-dialog-button-box { + spacing: 0; + margin: 0; + padding: 14px 10px; + background-color: transparent; + border: none; +} + +.modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; +} + +.run-dialog { + padding: 6px 12px; + background-color: rgba(38, 41, 46, 0.9); + border-radius: 6px; + color: #FFFFFF; +} + +.run-dialog > * { + padding: 0; +} + +.run-dialog-label { + font-size: 0; + font-weight: bold; + color: #FFFFFF; + padding-bottom: 0; +} + +.run-dialog-error-label { + color: #F44336; +} + +.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: 3px 12px; + border-radius: 6px; + caret-color: #FFFFFF; + selected-color: #FFFFFF; + selection-background-color: #5b9bf8; + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid transparent; +} + +.run-dialog-entry:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid #5b9bf8; +} + +.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: #FBC02D; +} + +.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(38, 41, 46, 0.9); + 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: 6px; + box-shadow: none; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); +} + +.keyboard-key:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.keyboard-key:active, .keyboard-key:checked { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); +} + +.keyboard-key:grayed { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; +} + +.keyboard-subkeys { + color: #FFFFFF; + padding: 5px; + -arrow-border-radius: 6px; + -arrow-background-color: rgba(38, 41, 46, 0.9); + -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 { + margin: auto; + margin-bottom: 6px; + padding: 6px; + transition-duration: 300; + background-color: rgba(255, 255, 255, 0.05); + border: none; + border-radius: 6px; +} + +.menu-favorites-button { + padding: 9px; + border: none; + border-radius: 6px; +} + +.menu-favorites-button:hover { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.1); +} + +.menu-places-box { + margin: auto; + padding: 9px; + border: 1px solid rgba(0, 0, 0, 0); +} + +.menu-places-button { + padding: 9px; +} + +.menu-categories-box { + padding: 9px 30px; +} + +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 9px 9px 0 9px; +} + +.menu-application-button { + padding: 6px; + border-radius: 6px; + border: none; +} + +.menu-application-button:highlighted { + font-weight: bold; +} + +.menu-application-button-selected { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + padding: 6px; + border-radius: 6px; + border: none; +} + +.menu-application-button-selected:highlighted { + font-weight: bold; +} + +.menu-application-button-label:ltr { + padding-left: 6px; +} + +.menu-application-button-label:rtl { + padding-right: 6px; +} + +.menu StScrollView.menu-application-button { + padding: 3px 0; + border-radius: 6px; + background-color: #31363c; + color: #FFFFFF; +} + +.menu StScrollView.menu-application-button .popup-menu-item { + padding: 0; + spacing: 0; + margin: 0 3px; + border-radius: 6px; + color: #FFFFFF; +} + +.menu StScrollView.menu-application-button .popup-menu-item:ltr { + padding-left: 6px; +} + +.menu StScrollView.menu-application-button .popup-menu-item:rtl { + padding-right: 6px; +} + +.menu StScrollView.menu-application-button .popup-menu-item:active { + border-image: none; + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.menu StScrollView.menu-application-button .popup-menu-item StIcon { + min-width: 22px; +} + +.menu StScrollView.menu-application-button .popup-menu-item StLabel:ltr { + padding: 6px 0 6px 6px; +} + +.menu StScrollView.menu-application-button .popup-menu-item StLabel:rtl { + padding: 6px 6px 6px 0; +} + +.menu-category-button { + padding: 6px; + border-radius: 6px; +} + +.menu-category-button-selected { + padding: 6px; +} + +.menu-category-button-hover, .menu-category-button-selected { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + border-radius: 6px; +} + +.menu-category-button-greyed { + padding: 6px; + color: rgba(255, 255, 255, 0.4); +} + +.menu-category-button-label:ltr { + padding-left: 6px; +} + +.menu-category-button-label:rtl { + padding-right: 6px; +} + +.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; + margin-bottom: 6px; +} + +.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: #FFFFFF; +} + +.menu-search-entry-icon { + icon-size: 1em; + color: #FFFFFF; +} + +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(20, 24, 29, 0.75); +} + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + min-width: 64px; + min-height: 64px; + color: rgba(255, 255, 255, 0.7); + border-radius: 0; + background-color: rgba(20, 24, 29, 0.75); + border: none; +} + +.osd-window .osd-monitor-label { + font-size: 3em; +} + +.osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.35); + border-radius: 6px; + color: #5b9bf8; +} + +.osd-window .level-bar { + border-radius: 6px; + background-color: #5b9bf8; +} + +.window-list-box { + spacing: 2px; +} + +.panel-bottom .window-list-box:ltr, .panel-top .window-list-box:ltr { + padding: 0 0 0 8px; +} + +.panel-bottom .window-list-box:rtl, .panel-top .window-list-box:rtl { + padding: 0 8px 0 0; +} + +.window-list-box.vertical { + padding: 6px 0 0 0; +} + +.window-list-box.vertical #appMenuIcon { + padding-top: 2px; +} + +.window-list-box:highlight { + background-color: rgba(244, 67, 54, 0.5); +} + +.window-list-item-label { + font-weight: normal; + width: 15em; + min-width: 5px; +} + +.window-list-item-box { + font-weight: normal; + background-image: none; + transition-duration: 100ms; + color: rgba(255, 255, 255, 0.9); + border-radius: 0; +} + +.panel-bottom .window-list-item-box StLabel { + padding-left: 6px; +} + +.panel-top .window-list-item-box StLabel { + padding-left: 6px; +} + +.panel-left .window-list-item-box StLabel { + padding-top: 6px; +} + +.panel-right .window-list-item-box StLabel { + padding-top: 6px; +} + +.panel-top .window-list-item-box { + border-top: 2px solid transparent; +} + +.panel-top .window-list-item-box StIcon, .panel-top .window-list-item-box StBin, .panel-top .window-list-item-box #appMenuIcon { + padding: 2px; + padding-top: 0; +} + +.panel-bottom .window-list-item-box { + border-bottom: 2px solid transparent; +} + +.panel-bottom .window-list-item-box StIcon, .panel-bottom .window-list-item-box StBin, .panel-bottom .window-list-item-box #appMenuIcon { + padding: 2px; + padding-bottom: 0; +} + +.panel-left .window-list-item-box { + border-left: 2px solid transparent; +} + +.panel-left .window-list-item-box StIcon, .panel-left .window-list-item-box StBin, .panel-left .window-list-item-box #appMenuIcon { + padding: 2px; + padding-left: 0; +} + +.panel-right .window-list-item-box { + border-right: 2px solid transparent; +} + +.panel-right .window-list-item-box StIcon, .panel-right .window-list-item-box StBin, .panel-right .window-list-item-box #appMenuIcon { + padding: 2px; + padding-right: 0; +} + +.window-list-item-box:hover { + color: #FFFFFF; + background-gradient-direction: none; + background-color: rgba(255, 255, 255, 0.15); +} + +.window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:running { + color: #FFFFFF; + background-gradient-direction: none; + background-color: rgba(255, 255, 255, 0.25); + border-color: rgba(255, 255, 255, 0.26); +} + +.window-list-item-box:active:hover, .window-list-item-box:checked:hover, .window-list-item-box:running:hover { + background-color: rgba(255, 255, 255, 0.3); +} + +.window-list-item-box:focus { + color: #FFFFFF; + background-gradient-direction: none; + background-image: radial-gradient(5px 5px 45deg, circle cover, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%); + border-color: #5b9bf8; + background-color: rgba(255, 255, 255, 0.2); +} + +.window-list-item-box:focus:hover { + background-color: rgba(255, 255, 255, 0.3); +} + +.panel-top .window-list-item-box:focus { + background-position: top center; +} + +.panel-bottom .window-list-item-box:focus { + background-position: bottom center; +} + +.panel-left .window-list-item-box:focus { + background-position: left center; +} + +.panel-right .window-list-item-box:focus { + background-position: right center; +} + +.window-list-item-box.right, .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; +} + +.window-list-item-box .progress { + background-gradient-direction: vertical; + background-gradient-start: #66BB6A; + background-gradient-end: #66BB6A; + border-radius: 6px; + box-shadow: none; +} + +.window-list-item-demands-attention { + background-gradient-start: #FBC02D; + background-gradient-end: #FBC02D; +} + +.window-list-preview { + padding: 6px; + spacing: 6px; + border: none; + background-color: #25292f; + border-radius: 6px; + color: #FFFFFF; + box-shadow: 0 3px 5px rgba(0, 0, 0, 0.35), 0 3px 12px rgba(0, 0, 0, 0.16); +} + +.grouped-window-list-thumbnail-label { + padding-left: 4px; +} + +.grouped-window-list-thumbnail-alert { + background-color: rgba(244, 67, 54, 0.5); +} + +.grouped-window-list-thumbnail-menu { + padding: 6px; + padding: 6px; + margin: 6px; + background-color: #1a1f26; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.08); + border-radius: 12px; +} + +.grouped-window-list-thumbnail-menu .item-box { + padding: 6px; + border-radius: 6px; + spacing: 6px; + margin: 1px; +} + +.grouped-window-list-thumbnail-menu .item-box:outlined { + background-color: rgba(255, 255, 255, 0.1); +} + +.grouped-window-list-thumbnail-menu .item-box:hover { + background-color: rgba(255, 255, 255, 0.15); +} + +.grouped-window-list-thumbnail-menu .thumbnail { + width: 256px; +} + +.grouped-window-list-thumbnail-menu .separator { + width: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +.grouped-window-list-number-label { + z-index: 120; + text-shadow: none; + color: #FFFFFF; + padding: 0; +} + +.grouped-window-list-button-label { + padding-left: 2px; +} + +.grouped-window-list-badge { + border-radius: 256px; + background-color: #5b9bf8; +} + +.grouped-window-list-item-box { + font-weight: normal; + transition-duration: 100ms; + border: none; + margin: 0; + color: rgba(255, 255, 255, 0.3); + border-radius: 0; + spacing: 6px; + border-bottom: 2px solid transparent; +} + +.grouped-window-list-item-box.top, .grouped-window-list-item-box.bottom { + padding: 0 2px; +} + +.grouped-window-list-item-box:hover { + color: #FFFFFF; + background-gradient-direction: none; + background-color: rgba(255, 255, 255, 0.15); +} + +.grouped-window-list-item-box:active { + color: #FFFFFF; + background-gradient-direction: none; + background-color: transparent; + border-color: rgba(255, 255, 255, 0.26); +} + +.grouped-window-list-item-box:active:hover { + background-color: rgba(255, 255, 255, 0.15); +} + +.grouped-window-list-item-box:focus { + color: #FFFFFF; + background-gradient-direction: none; + background-color: rgba(255, 255, 255, 0.2); + border-color: #5b9bf8; +} + +.grouped-window-list-item-box:focus:hover { + background-color: rgba(255, 255, 255, 0.3); +} + +.grouped-window-list-item-box .progress { + background-gradient-direction: vertical; + background-gradient-start: #66BB6A; + background-gradient-end: #66BB6A; + border-radius: 6px; + box-shadow: none; +} + +.grouped-window-list-item-demands-attention { + background-gradient-start: #FBC02D; + background-gradient-end: #FBC02D; +} + +.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 0; + margin-top: 6px; + border-radius: 6px; + background-color: #31363c; + color: #FFFFFF; +} + +.sound-player > StBoxLayout:first-child { + padding: 5px 10px 10px 10px; + spacing: 0.5em; +} + +.sound-player > StBoxLayout:first-child StButton:small { + width: 24px; + height: 24px; + border-radius: 9999px; +} + +.sound-player > StBoxLayout:first-child StButton:small:hover { + background-color: rgba(255, 255, 255, 0.12); +} + +.sound-player > StBoxLayout:first-child StButton:small:active { + background-color: rgba(255, 255, 255, 0.26); +} + +.sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 16px; +} + +.sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); +} + +.sound-player-overlay { + width: 290px; + height: 80px; + padding: 12px 18px; + spacing: 6px; + background-color: rgba(0, 0, 0, 0.45); + border: none; + border-radius: 0 0 6px 6px; + color: #FFFFFF; + text-shadow: none; +} + +.sound-player-overlay StButton { + width: 16px; + height: 16px; + padding: 8px; + margin: 0 6px 6px; + color: #FFFFFF; + border-radius: 9999px; + border: none; + text-shadow: none; +} + +.sound-player-overlay StButton StIcon { + icon-size: 16px; +} + +.sound-player-overlay StButton:hover { + background-color: rgba(255, 255, 255, 0.12); +} + +.sound-player-overlay StButton:active { + background-color: rgba(255, 255, 255, 0.26); +} + +.sound-player-overlay StButton:insensitive { + opacty: 0.35; + color: rgba(255, 255, 255, 0.4); +} + +.sound-player-overlay StLabel { + padding: 0 6px; +} + +.sound-player-overlay StBoxLayout { + padding-top: 2px; +} + +.sound-player .slider { + height: 0.5em; + padding: 0; + border: 0px solid rgba(20, 21, 23, 0.9); + border-bottom: 1px; + -slider-height: 0.5em; + -slider-background-color: #171a1e; + -slider-border-color: rgba(0, 0, 0, 0); + -slider-active-background-color: #5b9bf8; + -slider-active-border-color: rgba(0, 0, 0, 0); + -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: rgba(255, 255, 255, 0.7); + padding: 3px; + padding-top: 4px; + transition-duration: 300; +} + +.workspace-button:outlined, .workspace-button:outlined:hover { + color: #5b9bf8; +} + +.workspace-button:hover { + color: #8cb9fa; +} + +/* 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 #5b9bf8; + background-gradient-direction: none; +} + +.workspace-graph .workspace .windows { + -active-window-background: rgba(51, 61, 74, 0.75); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(51, 61, 74, 0.75); + -inactive-window-border: rgba(0, 0, 0, 0.8); +} + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(62, 74, 89, 0.75); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(30, 36, 44, 0.75); + -inactive-window-border: rgba(0, 0, 0, 0.8); +} + +#panel-launchers-box { + padding: 0 6px; +} + +#panel-launchers-box.vertical { + padding: 3px 0; +} + +.panel-launcher { + padding: 2px; + transition-duration: 200ms; + border-radius: 0; +} + +.panel-launcher:hover { + background-gradient-direction: none; + background-color: rgba(255, 255, 255, 0.1); +} + +.panel-launcher:active { + background-color: rgba(255, 255, 255, 0.2); +} + +.launcher { + padding: 2px; + spacing: 2px; + transition-duration: 0.2s; + border-radius: 0; +} + +.launcher:hover { + background-gradient-direction: none; + background-color: rgba(255, 255, 255, 0.1); +} + +.launcher:active { + background-color: rgba(255, 255, 255, 0.2); +} + +.launcher .icon-box { + padding: 2px; +} + +.applet-separator { + padding: 1px 3px; +} + +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); +} + +.applet-box { + padding: 0 6px; + color: #FFFFFF; + text-shadow: none; + transition-duration: 100ms; + border-radius: 0; +} + +.applet-box.vertical { + padding: 6px 0; +} + +.applet-box:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); +} + +.applet-box:checked, .applet-box:checked:hover { + color: #FFFFFF; + background-color: transparent; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +.applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(244, 67, 54, 0.5); +} + +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.7); +} + +.applet-box:checked .applet-label { + color: #FFFFFF; + text-shadow: none; +} + +.applet-icon { + color: rgba(255, 255, 255, 0.7); + icon-size: 16px; +} + +.applet-box:checked .applet-icon { + color: #FFFFFF; + text-shadow: none; +} + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; +} + +.user-label { + color: #FFFFFF; + font-size: 1em; + font-weight: bold; + margin: 0px; +} + +.desklet { + color: #FFFFFF; +} + +.desklet:highlight { + background-color: rgba(244, 67, 54, 0.5); +} + +.desklet-with-borders { + color: #FFFFFF; + background-color: rgba(38, 41, 46, 0.9); + padding: 12px; + padding-bottom: 16px; +} + +.desklet-with-borders:highlight { + background-color: rgba(244, 67, 54, 0.5); +} + +.desklet-with-borders-and-header { + color: #FFFFFF; + background-color: rgba(38, 41, 46, 0.9); + border-radius: 6px; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; +} + +.desklet-with-borders-and-header:highlight { + background-color: rgba(244, 67, 54, 0.5); +} + +.desklet-header { + color: #FFFFFF; + background-color: rgba(38, 41, 46, 0.9); + border-radius: 0; + border-radius-topleft: 6px; + border-radius-topright: 6px; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; +} + +.desklet-drag-placeholder { + border: 2px solid #5b9bf8; + background-color: rgba(91, 155, 248, 0.3); +} + +.photoframe-box { + color: #FFFFFF; + background-color: rgba(38, 41, 46, 0.9); + padding: 12px; + padding-bottom: 16px; +} + +.workspace-osd { + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; +} + +.notification-applet-padding { + padding: .5em 1em; +} + +.notification-applet-container { + max-height: 9999px; +} + +.tile-preview, .tile-preview.snap, +.tile-hud, .tile-hud.snap { + background-color: rgba(91, 155, 248, 0.3); + border: 1px solid #5b9bf8; +} + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: rgba(0, 0, 0, 0); + border-radius: 0px; +} diff --git a/home-config/themes/Lavanda-Sea-Dark/cinnamon/thumbnail.png b/home-config/themes/Lavanda-Sea-Dark/cinnamon/thumbnail.png new file mode 100644 index 0000000..88de5da Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/cinnamon/thumbnail.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/activities-white.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/activities-white.svg new file mode 100644 index 0000000..5544050 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/activities-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/activities.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/activities.svg new file mode 100644 index 0000000..5544050 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/activities.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-arrow-left.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-arrow-left.svg new file mode 100644 index 0000000..ec8b478 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-arrow-right.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-arrow-right.svg new file mode 100644 index 0000000..6fc5556 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-today.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-today.svg new file mode 100644 index 0000000..5e77084 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/calendar-today.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off-active.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off-active.svg new file mode 100644 index 0000000..9cfdefd --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off-hover.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off-hover.svg new file mode 100644 index 0000000..ef5123a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off-hover.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off.svg new file mode 100644 index 0000000..b00efa6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox.svg new file mode 100644 index 0000000..a07837a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/checkbox.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/dash-placeholder.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/dash-placeholder.svg new file mode 100644 index 0000000..172156a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/dash-placeholder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/no-events.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/no-events.svg new file mode 100644 index 0000000..239177d --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/no-events.svg @@ -0,0 +1,82 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/no-notifications.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/no-notifications.svg new file mode 100644 index 0000000..ae09f92 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/no-notifications.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/noise-texture.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/noise-texture.svg new file mode 100644 index 0000000..484f6c8 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/noise-texture.svg @@ -0,0 +1,78 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/process-working.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/process-working.svg new file mode 100644 index 0000000..0f311b0 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/process-working.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/toggle-off.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/toggle-off.svg new file mode 100644 index 0000000..8522010 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/toggle-off.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/toggle-on.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/toggle-on.svg new file mode 100644 index 0000000..432833b --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/assets/toggle-on.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/gnome-shell.css b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/gnome-shell.css new file mode 100644 index 0000000..4e7c576 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/gnome-shell.css @@ -0,0 +1,4270 @@ +/* This stylesheet is generated, DO NOT EDIT */ +/* 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. + */ +/* General Typography */ +.quick-toggle-menu .header .title { + font-weight: 700; + font-size: 15pt; +} + +.bt-menu-placeholder.popup-menu-item { + font-weight: 700; + font-size: 13pt; +} + +.background-app-item .title { + font-weight: 700; + font-size: 11pt; +} + +.quick-toggle-menu .header .subtitle, .app-menu .popup-inactive-menu-item:first-child > StLabel { + font-weight: 700; + font-size: 9pt; +} + +.icon-label-button-container, .background-app-item .subtitle { + font-weight: 400; + font-size: 9pt; +} + +.ripple-pointer-location { + width: 48px; + height: 48px; + border-radius: 24px; + background-color: rgba(238, 244, 254, 0.3); + box-shadow: 0 0 2px 2px #bdd7fc; +} + +.pie-timer { + width: 60px; + height: 60px; + -pie-border-width: 3px; + -pie-border-color: #5b9bf8; + -pie-background-color: rgba(255, 255, 255, 0.3); +} + +.magnifier-zoom-region { + border: 2px solid #5b9bf8; +} + +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* App Icons */ +.show-apps .overview-icon, +.app-well-app .overview-icon, +.grid-search-result .overview-icon { + color: rgba(255, 255, 255, 0.7); + border-radius: 16px; + padding: 6px; + border: none; + transition-duration: 100ms; + text-align: center; +} + +.show-apps:hover .overview-icon, .show-apps:focus .overview-icon, .show-apps:selected .overview-icon, +.app-well-app:hover .overview-icon, +.app-well-app:focus .overview-icon, +.app-well-app:selected .overview-icon, +.grid-search-result:hover .overview-icon, +.grid-search-result:focus .overview-icon, +.grid-search-result:selected .overview-icon { + background-color: rgba(255, 255, 255, 0.12); + border-image: none; + background-image: none; +} + +.show-apps:active .overview-icon, .show-apps:checked .overview-icon, +.app-well-app:active .overview-icon, +.app-well-app:checked .overview-icon, +.grid-search-result:active .overview-icon, +.grid-search-result:checked .overview-icon { + background-color: rgba(255, 255, 255, 0.26); + box-shadow: none; +} + +.show-apps:active .overview-icon { + background-color: #5b9bf8 !important; + color: #FFFFFF !important; +} + +.show-apps:checked .overview-icon { + background-color: #297dff !important; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + color: #FFFFFF !important; +} + +.app-well-app.app-folder { + border-radius: 16px; +} + +.app-well-app.app-folder, .app-well-app.app-folder:hover, .app-well-app.app-folder:active { + background-color: transparent; +} + +.app-well-app.app-folder .overview-icon { + background-color: rgba(255, 255, 255, 0.12); + border-radius: 16px; +} + +.app-well-app.app-folder:hover .overview-icon { + background-color: rgba(255, 255, 255, 0.2); +} + +.app-well-app.app-folder:active .overview-icon { + background-color: rgba(255, 255, 255, 0.26); +} + +.app-folder-dialog { + border-radius: 36px; + padding: 12px; + background-color: #25292f; + border: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.app-folder-dialog .folder-name-container { + padding: 24px 36px 0; + spacing: 12px; + /* FIXME: this is to keep the label in sync with the entry */ +} + +.app-folder-dialog .folder-name-container .folder-name-label, .app-folder-dialog .folder-name-container .folder-name-entry { + font-size: 18pt; + font-weight: bold; +} + +.app-folder-dialog .folder-name-container .folder-name-entry { + width: 300px; + border: none; + caret-color: #FFFFFF; +} + +.app-folder-dialog .folder-name-container .folder-name-entry:focus { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.app-folder-dialog .folder-name-container .folder-name-label { + padding: 9px 8px; + color: rgba(255, 255, 255, 0.7); +} + +.app-folder-dialog .folder-name-container .edit-folder-button { + background-color: rgba(255, 255, 255, 0.06); + color: rgba(255, 255, 255, 0.7); + border: none; + padding: 0; + width: 36px; + height: 36px; + border-radius: 9999px; +} + +.app-folder-dialog .folder-name-container .edit-folder-button > StIcon { + icon-size: 16px; +} + +.app-folder-dialog .folder-name-container .edit-folder-button:hover { + background-color: rgba(255, 255, 255, 0.12); +} + +.app-folder-dialog .folder-name-container .edit-folder-button:checked, .app-folder-dialog .folder-name-container .edit-folder-button:active { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.app-folder-dialog .icon-grid { + row-spacing: 12px; + column-spacing: 24px; + page-padding-top: 0; + page-padding-bottom: 0; + page-padding-left: 0; + page-padding-right: 0; +} + +.app-folder-dialog .page-indicators { + margin-bottom: 18px; +} + +.app-folder-dialog-container { + padding: 6px; + width: 720px; + height: 720px; +} + +.app-well-app-running-dot { + width: 6px; + height: 3px; + border-radius: 2px; + background-color: rgba(255, 255, 255, 0.26); + margin-bottom: 0; +} + +StWidget.focused .app-well-app-running-dot { + width: 24px; + background-color: #5b9bf8 !important; +} + +.app-menu, +.app-well-menu { + max-width: 27.25em; +} + +.rename-folder-popup .rename-folder-popup-item { + spacing: 6px; +} + +.rename-folder-popup .rename-folder-popup-item:ltr, .rename-folder-popup .rename-folder-popup-item:rtl { + padding: 0 12px; +} + +.system-action-icon { + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #25292f; + color: #FFFFFF; + border-radius: 9999px; + icon-size: 48px; +} + +.shell-link { + border-radius: 6px; + color: #3c84f7; +} + +.shell-link:hover { + color: #3c84f7; + background-color: rgba(60, 132, 247, 0.15); +} + +.shell-link:active { + color: #3c84f7; + background-color: rgba(60, 132, 247, 0.25); +} + +.lowres-icon { + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); +} + +.icon-dropshadow { + icon-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); +} + +/* Buttons */ +.quick-settings-system-item .icon-button, .quick-settings-system-item .background-app-item .close-button, .background-app-item .quick-settings-system-item .close-button, .hotplug-notification-item, .button { + color: #FFFFFF; + background-color: #25292f; + box-shadow: none !important; +} + +.quick-settings-system-item .icon-button:focus, .quick-settings-system-item .background-app-item .close-button:focus, .background-app-item .quick-settings-system-item .close-button:focus, .hotplug-notification-item:focus, .button:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); + box-shadow: none !important; +} + +.quick-settings-system-item .icon-button:hover, .quick-settings-system-item .background-app-item .close-button:hover, .background-app-item .quick-settings-system-item .close-button:hover, .hotplug-notification-item:hover, .button:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none !important; +} + +.quick-settings-system-item .icon-button:active, .quick-settings-system-item .background-app-item .close-button:active, .background-app-item .quick-settings-system-item .close-button:active, .hotplug-notification-item:active, .button:active { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.quick-settings-system-item .icon-button:insensitive, .quick-settings-system-item .background-app-item .close-button:insensitive, .background-app-item .quick-settings-system-item .close-button:insensitive, .hotplug-notification-item:insensitive, .button:insensitive { + color: rgba(255, 255, 255, 0.35); + background-color: #25292f; + box-shadow: none !important; +} + +.lg-obj-inspector-button, .candidate-page-button, .modal-dialog-linked-button, .icon-button, .background-app-item .close-button, .popup-menu .button { + color: #FFFFFF; + background-color: transparent; + box-shadow: none !important; +} + +.lg-obj-inspector-button:focus, .candidate-page-button:focus, .modal-dialog-linked-button:focus, .icon-button:focus, .background-app-item .close-button:focus, .popup-menu .button:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); + box-shadow: none !important; +} + +.lg-obj-inspector-button:hover, .candidate-page-button:hover, .modal-dialog-linked-button:hover, .icon-button:hover, .background-app-item .close-button:hover, .popup-menu .button:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.lg-obj-inspector-button:active, .candidate-page-button:active, .modal-dialog-linked-button:active, .icon-button:active, .background-app-item .close-button:active, .popup-menu .button:active { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.lg-obj-inspector-button:insensitive, .candidate-page-button:insensitive, .modal-dialog-linked-button:insensitive, .icon-button:insensitive, .background-app-item .close-button:insensitive, .popup-menu .button:insensitive { + background-color: transparent; + color: rgba(255, 255, 255, 0.35); + box-shadow: none !important; +} + +.button { + min-height: 20px; + padding: 6px 12px; + border-radius: 6px; + border: none; +} + +.icon-button, .background-app-item .close-button { + min-height: 20px; + min-width: 20px; + padding: 6px; + border-radius: 9999px; +} + +.screenshot-ui-show-pointer-button, .screenshot-ui-type-button { + color: #FFFFFF; + background-color: transparent; + box-shadow: none !important; +} + +.screenshot-ui-show-pointer-button:insensitive, .screenshot-ui-type-button:insensitive { + color: rgba(255, 255, 255, 0.35); + background-color: #25292f; + box-shadow: none !important; +} + +.screenshot-ui-show-pointer-button:focus, .screenshot-ui-type-button:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); + box-shadow: none !important; +} + +.screenshot-ui-show-pointer-button:hover, .screenshot-ui-type-button:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none !important; +} + +.screenshot-ui-show-pointer-button:active, .screenshot-ui-type-button:active { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.screenshot-ui-show-pointer-button:checked, .screenshot-ui-type-button:checked { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.screenshot-ui-show-pointer-button:outlined, .screenshot-ui-type-button:outlined, .screenshot-ui-show-pointer-button:checked, .screenshot-ui-type-button:checked { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +/* Date/Time Menu */ +.popup-menu .message, .world-clocks-button, +.weather-button, +.events-button { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + border-radius: 6px; + border: none; + box-shadow: none; + text-shadow: none; +} + +.popup-menu .message:hover, .world-clocks-button:hover, +.weather-button:hover, +.events-button:hover, .popup-menu .message:focus, .world-clocks-button:focus, +.weather-button:focus, +.events-button:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +.popup-menu .message:active, .world-clocks-button:active, +.weather-button:active, +.events-button:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.2); + box-shadow: none; +} + +#calendarArea { + padding: 6px 0; +} + +.datemenu-calendar-column { + spacing: 6px; + border: 0 solid rgba(255, 255, 255, 0.12); + padding: 0 4px 0 12px; +} + +.datemenu-calendar-column:ltr { + margin-right: 8px; + border-left-width: 0; +} + +.datemenu-calendar-column:rtl { + margin-left: 8px; + border-right-width: 0; +} + +.datemenu-calendar-column .datemenu-displays-section { + padding-bottom: 0; +} + +.datemenu-calendar-column .datemenu-displays-box { + spacing: 6px; +} + +.world-clocks-header, +.weather-header, +.events-section-title { + color: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +.datemenu-today-button, +.datemenu-displays-box { + margin: 4px 6px; +} + +/* today button (the date) */ +.datemenu-today-button { + border: none; + box-shadow: none; + background: none; + padding: 6px; + margin: 0 12px; + text-shadow: none; + color: rgba(255, 255, 255, 0.7); + border-radius: 6px; +} + +.datemenu-today-button:hover, .datemenu-today-button:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.datemenu-today-button:active { + background-color: rgba(255, 255, 255, 0.2); +} + +.datemenu-today-button .day-label { + font-size: 12pt; + font-weight: bold; +} + +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: normal; +} + +/* Calendar */ +.calendar { + border: none; + box-shadow: none; + background-color: transparent; + padding: 0; + margin: 0; + text-shadow: none; +} + +.calendar .calendar-month-label { + padding: 6px 0; + color: rgba(255, 255, 255, 0.7); + font-weight: bold; + text-align: center; + text-shadow: none; + font-size: 12pt; +} + +.calendar .calendar-change-month-back, +.calendar .calendar-change-month-forward { + padding: 0 0 !important; + margin: 3px 0 !important; +} + +.calendar .calendar-change-month-back StIcon, +.calendar .calendar-change-month-forward StIcon { + icon-size: 16px; +} + +.calendar .pager-button { + width: 32px; + height: 32px; + margin: 2px; + border-radius: 9999px; + background-color: transparent; + color: #FFFFFF; +} + +.calendar .pager-button:hover, .calendar .pager-button:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.calendar .pager-button:active { + background-color: rgba(255, 255, 255, 0.26); +} + +.calendar .calendar-day-base { + font-size: 10pt; + text-align: center; + width: 34px !important; + height: 34px !important; + padding: 0 !important; + margin: 2px !important; + border-radius: 9999px; + color: rgba(255, 255, 255, 0.7); + border: none; + font-feature-settings: "tnum"; +} + +.calendar .calendar-day-base:hover, .calendar .calendar-day-base:focus { + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +.calendar .calendar-day-base:active, .calendar .calendar-day-base:selected { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); + border-color: transparent; +} + +.calendar .calendar-day-base.calendar-day-heading { + margin-top: 1em; + color: rgba(255, 255, 255, 0.4); + font-size: 10pt; +} + +.calendar .calendar-day { + border-width: 0; +} + +.calendar .calendar-day-top { + border-top-width: 0; +} + +.calendar .calendar-day-left { + border-left-width: 0; +} + +.calendar .calendar-nonwork-day { + color: rgba(255, 255, 255, 0.4); + font-weight: bold; +} + +.calendar .calendar-today { + font-weight: bold; + color: rgba(255, 255, 255, 0.7) !important; + background-color: rgba(255, 255, 255, 0.06); + border: none; +} + +.calendar .calendar-today:hover, .calendar .calendar-today:focus { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF !important; +} + +.calendar .calendar-today:active { + background-color: #438cf7; + color: #FFFFFF !important; +} + +.calendar .calendar-today:selected { + background-color: #5b9bf8; + color: #FFFFFF !important; +} + +.calendar .calendar-today:selected:hover, .calendar .calendar-today:selected:focus { + background-color: #82b3fa; + color: #FFFFFF !important; +} + +.calendar .calendar-day-with-events { + color: rgba(255, 255, 255, 0.7); + background-image: url("assets/calendar-today.svg"); +} + +.calendar .calendar-day-with-events.calendar-work-day { + color: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +.calendar .calendar-other-month-day { + color: rgba(255, 255, 255, 0.3); + opacity: 0.5; +} + +.calendar .calendar-week-number { + width: 26px !important; + height: 26px !important; + margin: 6px 0 6px 6px !important; + padding: 0 !important; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +.world-clocks-button, +.weather-button, +.events-button { + padding: 12px !important; + margin: 2px 0 !important; +} + +.events-button .events-box { + spacing: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.events-button .events-list { + spacing: 12px; + text-shadow: none; + color: rgba(255, 255, 255, 0.7); +} + +.events-button .events-title { + color: rgba(255, 255, 255, 0.4); + font-weight: bold; + text-shadow: none; +} + +.events-button .event-time { + color: rgba(255, 255, 255, 0.4); + font-feature-settings: "tnum"; + font-size: 10pt; +} + +.world-clocks-button .world-clocks-city { + color: rgba(255, 255, 255, 0.4); + font-weight: bold; + font-size: 11pt; +} + +.world-clocks-button .world-clocks-time { + color: rgba(255, 255, 255, 0.4); + font-feature-settings: "tnum"; + font-size: 11pt; +} + +.world-clocks-button .world-clocks-time:ltr { + text-align: right; +} + +.world-clocks-button .world-clocks-time:rtl { + text-align: left; +} + +.world-clocks-button .world-clocks-timezone { + color: rgba(255, 255, 255, 0.4); + font-feature-settings: "tnum"; + font-size: 10pt; +} + +.world-clocks-grid, +.weather-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} + +.weather-button { + margin-bottom: 6px !important; +} + +.weather-button .weather-box { + spacing: 10px; +} + +.weather-button .weather-header-box { + spacing: 6px; +} + +.weather-button .weather-header { + color: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +.weather-button .weather-header.location { + font-weight: normal; + color: rgba(255, 255, 255, 0.4); + font-size: 10pt; +} + +.weather-button .weather-grid { + spacing-rows: 6px; + spacing-columns: 12px; +} + +.weather-button .weather-forecast-time { + color: rgba(255, 255, 255, 0.7); + font-feature-settings: "tnum"; + font-size: 9pt; + font-weight: normal; + padding-top: 0.2em; + padding-bottom: 0.4em; +} + +.weather-button .weather-forecast-icon { + icon-size: 32px; +} + +.weather-button .weather-forecast-temp { + font-weight: bold; +} + +/* Check Boxes */ +.check-box StBoxLayout { + spacing: .8em; +} + +.check-box StBin { + width: 24px; + height: 24px; + padding: 3px; +} + +.check-box StBin, .check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:hover StBin { + background-image: url("assets/checkbox-off-hover.svg"); +} + +.check-box:active StBin { + background-image: url("assets/checkbox-off-active.svg"); +} + +.check-box:checked StBin, .check-box:focus:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +/* Activities Ripple */ +.ripple-box { + background-color: rgba(91, 155, 248, 0.35); + box-shadow: 0 0 2px 2px #bdd7fc; + width: 52px; + height: 52px; + border-radius: 0 0 52px 0; +} + +.ripple-box:rtl { + border-radius: 0 0 0 52px; +} + +/* Dash */ +#dash { + font-size: 9pt; +} + +#dash .empty-dash-drop-target { + width: 32px; + height: 32px; +} + +.dash-label { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(0, 0, 0, 0.75); + border-radius: 9999px; + padding: 6px 12px; + box-shadow: none; + border: none; + text-align: center; + -y-offset: 12px; + -x-offset: 8px; +} + +/* Modal Dialogs */ +.modal-dialog { + background-color: #1a1f26; + border-radius: 15px; + border: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.modal-dialog-linked-button:last-child { + color: #FFFFFF; + background-color: #5b9bf8; +} + +.modal-dialog-linked-button:hover:last-child { + color: #FFFFFF; + background-color: #87b6fa; +} + +.modal-dialog-linked-button:active:last-child { + color: #FFFFFF; + background-color: #438cf7; +} + +.modal-dialog-linked-button:insensitive:last-child { + background-color: rgba(91, 155, 248, 0.05); + color: rgba(91, 155, 248, 0.35); +} + +.headline { + font-size: 12pt; +} + +.modal-dialog { + color: rgba(255, 255, 255, 0.7); + padding: 0 6px 6px; +} + +.modal-dialog-linked-button { + min-height: 32px !important; + padding: 6px !important; + margin: 3px !important; + border: none !important; + border-radius: 6px; +} + +.modal-dialog-linked-button:first-child { + background-color: rgba(255, 255, 255, 0.04); +} + +.modal-dialog-linked-button:first-child:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); + box-shadow: none !important; +} + +.modal-dialog-linked-button:first-child:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.modal-dialog-linked-button:first-child:active { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.modal-dialog .modal-dialog-content-box { + margin: 30px 42px; + spacing: 30px; + max-width: 28em; +} + +.end-session-dialog { + width: 30em; +} + +.end-session-dialog .end-session-dialog-battery-warning, +.end-session-dialog .dialog-list-title { + color: #FBC02D; +} + +.message-dialog-content { + spacing: 18px; +} + +.message-dialog-content .message-dialog-title { + text-align: center; + font-size: 18pt; + font-weight: 800; +} + +.message-dialog-content .message-dialog-title.lightweight { + font-size: 13pt; + font-weight: 800; +} + +.message-dialog-content .message-dialog-description { + text-align: center; +} + +.dialog-list { + spacing: 18px; +} + +.dialog-list .dialog-list-title { + text-align: center; + font-weight: bold; +} + +.dialog-list .dialog-list-scrollview { + max-height: 200px; +} + +.dialog-list .dialog-list-box { + spacing: 1em; +} + +.dialog-list .dialog-list-box .dialog-list-item { + spacing: 1em; +} + +.dialog-list .dialog-list-box .dialog-list-item .dialog-list-item-title { + font-weight: bold; +} + +.dialog-list .dialog-list-box .dialog-list-item .dialog-list-item-description { + color: rgba(255, 255, 255, 0.7); + font-size: 10pt; +} + +.run-dialog .modal-dialog-content-box { + margin-top: 24px; + margin-bottom: 12px; +} + +.run-dialog .run-dialog-entry { + width: 20em; +} + +.run-dialog .run-dialog-description { + text-align: center; + color: rgba(255, 255, 255, 0.7); + font-size: 10pt; +} + +.prompt-dialog { + width: 28em; +} + +.prompt-dialog .modal-dialog-content-box { + margin-bottom: 24px; +} + +.prompt-dialog-password-grid { + spacing-rows: 8px; + spacing-columns: 4px; +} + +.prompt-dialog-password-grid .prompt-dialog-password-entry { + width: auto; +} + +.prompt-dialog-password-grid .prompt-dialog-password-entry:ltr { + margin-left: 20px; +} + +.prompt-dialog-password-grid .prompt-dialog-password-entry:rtl { + margin-right: 20px; +} + +.prompt-dialog-password-layout { + spacing: 8px; +} + +.prompt-dialog-password-entry { + width: 20em; +} + +.prompt-dialog-error-label, +.prompt-dialog-info-label, +.prompt-dialog-null-label { + text-align: center; + font-size: 10pt; + margin: 6px; +} + +.prompt-dialog-error-label { + color: #F44336; +} + +.prompt-dialog-info-label, +.prompt-dialog-null-label { + color: rgba(255, 255, 255, 0.4); +} + +.polkit-dialog-user-layout { + text-align: center; + spacing: 8px; + margin-bottom: 6px; +} + +.polkit-dialog-user-layout .polkit-dialog-user-root-label { + color: #FBC02D; +} + +.audio-device-selection-dialog .modal-dialog-content-box { + margin-bottom: 28px; +} + +.audio-device-selection-dialog .audio-selection-box { + spacing: 20px; +} + +.audio-selection-device { + border: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 6px; +} + +.audio-selection-device:hover, .audio-selection-device:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.audio-selection-device:active { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.audio-selection-device-box { + padding: 18px; + spacing: 18px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +.welcome-dialog-image { + background-image: url("resource:///org/gnome/shell/theme/gnome-shell-start.svg"); + background-size: contain; + height: 300px; + width: 300px; +} + +/* Entries */ +StEntry, .popup-menu .search-entry { + min-height: 32px; + padding: 2px 12px; + margin: 2px; + border-width: 0; + border-radius: 6px; + caret-color: #FFFFFF; + selection-background-color: #5b9bf8; + selected-color: #FFFFFF; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid transparent; + box-shadow: none; +} + +StEntry:hover, .popup-menu .search-entry:hover { + color: #FFFFFF; + border-color: rgba(255, 255, 255, 0.26); + background-color: rgba(255, 255, 255, 0.04); +} + +StEntry:focus, .popup-menu .search-entry:focus { + color: #FFFFFF; + border-color: #5b9bf8; + background-color: rgba(255, 255, 255, 0.04); + box-shadow: none; +} + +StEntry:insensitive, .popup-menu .search-entry:insensitive { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.3); + border-color: transparent; +} + +StEntry StIcon.capslock-warning, .popup-menu .search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #FBC02D; + padding: 0 0; +} + +StEntry StIcon.peek-password, .popup-menu .search-entry StIcon.peek-password { + icon-size: 16px; + padding: 0 4px; +} + +StEntry StLabel.hint-text, .popup-menu .search-entry StLabel.hint-text { + margin-left: 2px; + color: rgba(255, 255, 255, 0.4); +} + +.hotplug-notification-item { + padding: 12px; + border-style: solid; + border-width: 0; + border-left-width: 0; + border-bottom-width: 0; +} + +.hotplug-notification-item:first-child { + border-radius: 0 0 0 6px; +} + +.hotplug-notification-item:last-child { + border-right-width: 0; + border-radius: 0 0 6px 0; +} + +.hotplug-notification-item:first-child:last-child { + border-radius: 0 0 6px 6px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 0 4px; +} + +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; +} + +.candidate-popup-content { + background-color: #1a1f26; + border-radius: 12px; + color: rgba(255, 255, 255, 0.7); + box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2); + border: none; + margin: 3px 8px 10px; + padding: 6px; + spacing: 6px; +} + +.candidate-index { + padding: 0 0.5em 0 0; + color: rgba(255, 255, 255, 0.7); +} + +.candidate-box:selected .candidate-index { + color: rgba(255, 255, 255, 0.7); +} + +.candidate-box { + padding: 0.3em 0.5em 0.3em 0.5em; + margin-right: 2px; + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.candidate-box:hover { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.candidate-box:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +.candidate-box:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.candidate-box:last-child { + margin-right: 0; +} + +.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 8px; +} + +.candidate-page-button-previous, +.candidate-page-button-next { + border-radius: 6px; +} + +.candidate-page-button-icon { + icon-size: 1em; +} + +/* On-screen Keyboard */ +#keyboard { + background-color: #1d1d1d; + box-shadow: none; +} + +#keyboard .page-indicator { + padding: 6px; +} + +#keyboard .page-indicator .page-indicator-icon { + width: 8px; + height: 8px; +} + +.key-container, +.keyboard-layout { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + font-size: 16pt; + font-weight: bold; + min-height: 1.2em; + min-width: 1.2em; + padding: 0 !important; + border-radius: 9px; + border: none; + color: rgba(255, 255, 255, 0.7); + background-color: #707070; + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); +} + +.keyboard-key:focus, .keyboard-key:hover { + color: #FFFFFF; + background-color: #656565; +} + +.keyboard-key:checked, .keyboard-key:active { + color: #FFFFFF; + background-color: #717171; +} + +.keyboard-key:grayed { + background-color: #4b4b4b; + color: rgba(255, 255, 255, 0.7); +} + +.keyboard-key.default-key { + background-color: #4b4b4b; + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); +} + +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover { + color: #FFFFFF; + background-color: #585858; +} + +.keyboard-key.default-key:checked, .keyboard-key.default-key:active { + color: #FFFFFF; + background-color: #6a6a6a; +} + +.keyboard-key.enter-key { + color: #FFFFFF; + background-color: #5b9bf8; +} + +.keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { + color: #FFFFFF; + background-color: #73aaf9; +} + +.keyboard-key.enter-key:checked, .keyboard-key.enter-key:active { + color: #FFFFFF; + background-color: #2a7df6; +} + +.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active { + color: #5b9bf8; +} + +.keyboard-key StIcon { + icon-size: 1.125em; +} + +.keyboard-subkeys { + color: inherit; + -arrow-border-radius: 12px; + -arrow-background-color: #343434; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 6px; + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); +} + +.emoji-page .keyboard-key { + background-color: transparent; + border: none; + color: initial; +} + +.emoji-panel .keyboard-key:latched { + border: none; + background-color: #5b9bf8; +} + +.word-suggestions { + font-size: 14pt; + spacing: 12px; + min-height: 20pt; +} + +/* Login Dialog */ +#lockDialogGroup { + background-color: #25292f; +} + +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog, +.unlock-dialog { + border: none; + background-color: transparent; +} + +.login-dialog StEntry, +.unlock-dialog StEntry { + selection-background-color: #5b9bf8; + selected-color: #FFFFFF; + padding: 4px 8px; + min-height: 26px; + border-radius: 9999px; + caret-color: #FFFFFF; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid transparent; + box-shadow: none; +} + +.login-dialog StEntry:focus, +.unlock-dialog StEntry:focus { + color: #FFFFFF; + border-color: #5b9bf8; + background-color: rgba(255, 255, 255, 0.04); + box-shadow: none; +} + +.login-dialog StEntry:insensitive, +.unlock-dialog StEntry:insensitive { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.3); + border-color: transparent; +} + +.login-dialog StEntry StLabel.hint-text, +.unlock-dialog StEntry StLabel.hint-text { + color: rgba(255, 255, 255, 0.4); +} + +.login-dialog .modal-dialog-button-box, +.unlock-dialog .modal-dialog-button-box { + spacing: 3px; +} + +.login-dialog .modal-dialog-button, +.unlock-dialog .modal-dialog-button { + padding: 0 16px; + border: none; + color: #FFFFFF; + background-color: transparent; + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:hover, .login-dialog .modal-dialog-button:focus, +.unlock-dialog .modal-dialog-button:hover, +.unlock-dialog .modal-dialog-button:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:active, +.unlock-dialog .modal-dialog-button:active { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:insensitive, +.unlock-dialog .modal-dialog-button:insensitive { + color: rgba(255, 255, 255, 0.35); + background-color: #25292f; + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:default, +.unlock-dialog .modal-dialog-button:default { + color: #FFFFFF; + background-color: #25292f; + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus, +.unlock-dialog .modal-dialog-button:default:hover, +.unlock-dialog .modal-dialog-button:default:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:default:active, +.unlock-dialog .modal-dialog-button:default:active { + background-color: #297dff; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + box-shadow: none !important; +} + +.login-dialog .modal-dialog-button:default:insensitive, +.unlock-dialog .modal-dialog-button:default:insensitive { + color: rgba(255, 255, 255, 0.35); + background-color: #25292f; + box-shadow: none !important; +} + +.login-dialog .cancel-button, +.login-dialog .switch-user-button, +.login-dialog .login-dialog-session-list-button, +.unlock-dialog .cancel-button, +.unlock-dialog .switch-user-button, +.unlock-dialog .login-dialog-session-list-button { + padding: 0; + border-radius: 100px; + width: 32px; + height: 32px; + border: none; + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.login-dialog .cancel-button StIcon, +.login-dialog .switch-user-button StIcon, +.login-dialog .login-dialog-session-list-button StIcon, +.unlock-dialog .cancel-button StIcon, +.unlock-dialog .switch-user-button StIcon, +.unlock-dialog .login-dialog-session-list-button StIcon { + icon-size: 16px; +} + +.login-dialog .login-dialog-message-warning, +.unlock-dialog .login-dialog-message-warning { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-logo-bin { + padding: 24px 0px; +} + +.login-dialog-banner { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; +} + +.login-dialog-message { + text-align: center; +} + +.login-dialog-message-warning { + color: #FBC02D; +} + +.login-dialog-message-hint { + padding-top: 0; + padding-bottom: 20px; +} + +.login-dialog-user-selection-box { + padding: 100px 0px; +} + +.login-dialog-not-listed-label { + padding-left: 2px; +} + +.login-dialog-not-listed-button:focus .login-dialog-not-listed-label, .login-dialog-not-listed-button:hover .login-dialog-not-listed-label { + color: #FFFFFF; +} + +.login-dialog-not-listed-label { + font-size: 1em; + font-weight: bold; + color: rgba(255, 255, 255, 0.7); + padding-top: 1em; +} + +.login-dialog-not-listed-label:hover { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-not-listed-label:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.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:selected, .login-dialog-user-list:expanded .login-dialog-user-list-item:hover, .login-dialog-user-list:expanded .login-dialog-user-list-item:active { + background-color: rgba(255, 255, 255, 0.26); + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #5b9bf8; +} + +.login-dialog-user-list-item { + border-radius: 12px; + padding: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-user-list-item:ltr .user-widget { + padding-right: 1em; +} + +.login-dialog-user-list-item:rtl .user-widget { + padding-left: 1em; +} + +.login-dialog-user-list-item:focus { + background-color: rgba(255, 255, 255, 0.04) !important; +} + +.login-dialog-user-list-item:hover, .login-dialog-user-list-item:focus:hover { + background-color: rgba(255, 255, 255, 0.12) !important; + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-user-list-item:active, .login-dialog-user-list-item:focus:active { + background-color: rgba(255, 255, 255, 0.26) !important; + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin: 6px 0 0 0; + background-color: rgba(255, 255, 255, 0.12) !important; +} + +.user-widget-label { + color: rgba(255, 255, 255, 0.7); +} + +.user-widget.horizontal .user-widget-label { + font-size: 13pt; + font-weight: bold; + padding-left: 15px; +} + +.user-widget.horizontal .user-widget-label:ltr { + padding-left: 14px; + text-align: left; +} + +.user-widget.horizontal .user-widget-label:rtl { + padding-right: 14px; + text-align: right; +} + +.user-widget.vertical .user-widget-label { + font-size: 16pt; + text-align: center; + font-weight: normal; + padding-top: 16px; +} + +.login-dialog-prompt-layout { + padding-top: 24px; + padding-bottom: 12px; + spacing: 12px; + width: 23em; +} + +.login-dialog-prompt-entry { + height: 1.5em; +} + +.login-dialog-prompt-label { + color: rgba(255, 255, 255, 0.7); + font-size: 12pt; + padding-top: 1em; +} + +/* Looking Glass */ +#LookingGlassDialog { + background-color: #25292f; + spacing: 4px; + padding: 0; + border: none; + border-radius: 6px; + box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25); + color: #FFFFFF; +} + +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: none; + border-radius: 0; + background-color: #22262c; + box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12); +} + +#LookingGlassDialog .labels { + spacing: 0; +} + +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: rgba(255, 255, 255, 0.4); + padding-left: 16px; + padding-right: 16px; + min-height: 32px; + padding: 0 32px; + transition-duration: 100ms; + border-bottom-width: 0; +} + +#LookingGlassDialog .notebook-tab:hover { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + text-shadow: none; +} + +#LookingGlassDialog .notebook-tab:selected { + border-color: transparent; + background-color: rgba(255, 255, 255, 0.12); + box-shadow: inset 0 -2px 0px #5b9bf8; + color: #FFFFFF; + text-shadow: none; +} + +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 4px; + spacing: 4px; +} + +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog StEntry { + min-height: 22px; + selection-background-color: #5b9bf8; + selected-color: #FFFFFF; +} + +.lg-dialog .shell-link { + color: #3c84f7; +} + +.lg-dialog .shell-link:hover { + color: #6da3f9; +} + +.lg-dialog .shell-link:active { + color: #0b65f5; +} + +.lg-dialog .actor-link { + color: rgba(255, 255, 255, 0.7); +} + +.lg-dialog .actor-link:hover { + color: #FFFFFF; +} + +.lg-dialog .actor-link:active { + color: rgba(255, 255, 255, 0.7); +} + +.lg-completions-text { + font-size: .9em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 6px; +} + +.lg-obj-inspector-button { + padding: 0 16px; + border: none; + border-radius: 6px; +} + +.lg-obj-inspector-button:hover { + border: none; +} + +#lookingGlassExtensions { + padding: 6px; +} + +.lg-extensions-list { + padding: 6px; + spacing: 6px; +} + +.lg-extension { + border: none; + border-radius: 6px; + background-color: #22262c; + padding: 12px; +} + +.lg-extension-name { + font-weight: bold; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + color: rgba(255, 255, 255, 0.7); + background: #25292f; + border: none; + border-radius: 6px; + padding: 6px; + margin: 5px 8px 11px; + box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25); +} + +/* Message List */ +.message-list { + width: 31.5em; + text-shadow: none; + border: none; + padding: 4px 0; +} + +.message-list:ltr { + margin-left: 0; + margin-right: 0; + padding-right: 0; + border-right-width: 0; +} + +.message-list:rtl { + margin-right: 0; + margin-left: 0; + padding-left: 0; + border-left-width: 0; +} + +.message-list .message-list-placeholder { + spacing: 12px; +} + +.message-list .message-list-placeholder > StIcon { + icon-size: 48px; + margin-bottom: 12px; + -st-icon-style: symbolic; +} + +.message-list-sections { + margin: 0 8px 0 16px; +} + +.message-list-section, +.message-list-sections, +.message-list-section-list { + spacing: 6px; +} + +.message { + margin: 3px 0; +} + +.message .message-icon-bin { + padding: 18px; +} + +.message .message-icon-bin:ltr { + padding-right: 6px; +} + +.message .message-icon-bin:rtl { + padding-left: 6px; +} + +.message .message-icon-bin > StIcon { + icon-size: 32px; + -st-icon-style: symbolic; +} + +.message .message-icon-bin > .fallback-app-icon { + width: 16px; + height: 16px; +} + +.message .message-secondary-bin { + padding: 0 8px; +} + +.message .message-secondary-bin > .event-time { + color: rgba(255, 255, 255, 0.4); + font-size: 9pt; + text-align: right; + padding-bottom: 0.12em; +} + +.message .message-secondary-bin > .event-time:ltr { + text-align: right; +} + +.message .message-secondary-bin > .event-time:rtl { + text-align: left; +} + +.message .message-title { + color: #FFFFFF; + font-weight: bold; +} + +.message .message-content { + padding: 9px; + margin-bottom: 8px; + spacing: 4px; + color: rgba(255, 255, 255, 0.4); +} + +.message .message-close-button { + color: rgba(255, 255, 255, 0.7); + padding: 0; + height: 24px; + width: 24px; + border-radius: 9999px; +} + +.message .message-close-button:hover, .message .message-close-button:active { + color: #FFFFFF; +} + +.message .message-close-button:hover, .message .message-close-button:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.message .message-close-button:active { + background-color: rgba(255, 255, 255, 0.26); +} + +.message .message-body { + color: rgba(255, 255, 255, 0.4); +} + +.url-highlighter { + link-color: #3c84f7; +} + +.message-media-control { + border-radius: 9999px; + color: rgba(255, 255, 255, 0.7); + min-height: 16px; + min-width: 16px; +} + +.message-media-control:last-child:ltr { + margin-right: 16px !important; +} + +.message-media-control:last-child:rtl { + margin-left: 16px !important; +} + +.message-media-control:hover, .message-media-control:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.message-media-control:active { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.26); +} + +.message-media-control:insensitive { + color: rgba(255, 255, 255, 0.3); +} + +.media-message-cover-icon { + icon-size: 48px !important; + border-radius: 6px; +} + +.media-message-cover-icon.fallback { + icon-size: 32px !important; + border: none; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.12); + color: rgba(255, 255, 255, 0.4); +} + +.select-area-rubberband { + background-color: rgba(91, 155, 248, 0.3); + border: 1px solid #5b9bf8; + border-radius: 6px; +} + +.user-icon { + background-size: contain; + color: rgba(255, 255, 255, 0.7); + border-radius: 9999px; + border: none; + box-shadow: none; + icon-size: 64px; +} + +.modal-dialog .user-icon { + box-shadow: none; +} + +.user-icon:hover { + color: #FFFFFF; +} + +.user-icon StIcon { + background-color: #FFFFFF; + border-radius: 9999px; + padding: 12px; + width: 40px; + height: 40px; +} + +.user-icon.user-avatar { + border: 2px solid #5b9bf8; +} + +.user-widget.vertical .user-icon { + icon-size: 96px; +} + +.user-widget.vertical .user-icon StIcon { + padding: 20px; + padding-top: 18px; + padding-bottom: 22px; + width: 88px; + height: 88px; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.hidden { + color: rgba(0, 0, 0, 0); +} + +.caps-lock-warning-label { + text-align: center; + padding-bottom: 8px; + font-size: 10pt; + color: #FBC02D; +} + +/* Network Dialogs */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-header-hbox { + spacing: 10px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + font-weight: bold; + text-align: center; +} + +.nm-dialog-airplane-text { + color: #FFFFFF; +} + +.nm-dialog-header { + font-weight: bold; +} + +.nm-dialog-header-icon { + icon-size: 32px; +} + +.nm-dialog-header-hbox { + spacing: 10px; +} + +.nm-dialog-scroll-view { + border: none; + padding: 0; + background-color: rgba(255, 255, 255, 0.04); + border-radius: 6px; +} + +.nm-dialog-item { + font-size: 11pt; + border-bottom: none; + padding: 12px; + spacing: 0px; +} + +.nm-dialog-item:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.nm-dialog-item:hover, .nm-dialog-item:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.nm-dialog-item:active { + background-color: rgba(255, 255, 255, 0.26); +} + +.nm-dialog-icon { + icon-size: 16px; +} + +.nm-dialog-icons { + spacing: 12px; +} + +.no-networks-label { + color: rgba(255, 255, 255, 0.4); +} + +.no-networks-box { + spacing: 6px; +} + +/* Notifications & Message Tray */ +.notification-banner { + width: 34em; + min-height: 64px; + margin: 12px 6px 8px !important; + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); + background-color: #1a1f26; + border: none; + text-shadow: none; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18); + border-radius: 12px; +} + +.notification-banner:hover { + color: #FFFFFF; + background-color: #1a1f26; + box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); + margin: 12px 10px 12px !important; +} + +.notification-banner:focus { + color: #FFFFFF; + background-color: #1a1f26; +} + +.notification-banner .notification-actions { + background-color: transparent; + padding-top: 0; + border-top: 1px solid rgba(255, 255, 255, 0.12); + spacing: 0; +} + +.notification-banner .notification-button { + min-height: 44px; + padding: 0 18px; + background-color: transparent; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; + border-width: 0; +} + +.notification-banner .notification-button:first-child { + border-radius: 0 0 0 12px; +} + +.notification-banner .notification-button:last-child { + border-radius: 0 0 12px 0; +} + +.notification-banner .notification-button:only-child, .notification-banner .notification-button:first-child:last-child { + border-radius: 0 0 12px 12px; +} + +.notification-banner .notification-button:focus { + background-color: transparent; + color: #FFFFFF; + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12) !important; +} + +.notification-banner .notification-button:hover, .notification-banner .notification-button:focus:hover { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; + box-shadow: none !important; +} + +.notification-banner .notification-button:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +.summary-source-counter { + font-size: fontsize(10); + font-weight: bold; + height: 1.6em; + width: 1.6em; + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + background-color: #5b9bf8; + color: #FFFFFF; + border: 2px solid rgba(255, 255, 255, 0.26); + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); + border-radius: 0.9em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: rgba(255, 255, 255, 0.7); +} + +.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: rgba(255, 255, 255, 0.7); +} + +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + font-size: 9pt; + color: rgba(255, 255, 255, 0.4); +} + +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +/* OSD */ +.screenshot-ui-panel, .workspace-switcher-container, .switcher-list, .resize-popup, .osd-window { + color: rgba(255, 255, 255, 0.7); + background-color: #25292f; + border: none; + box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25); + margin: 5px 8px 11px; + border-radius: 12px; + padding: 12px; +} + +.osd-window { + text-align: center; + font-weight: bold; +} + +.osd-window .osd-monitor-label { + font-size: 3em; +} + +.osd-window .level { + height: 2px; + border-radius: 2px; + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; + -barlevel-height: 2px; + -barlevel-background-color: rgba(255, 255, 255, 0.12); + -barlevel-active-background-color: #5b9bf8; + -barlevel-overdrive-color: #F44336; + -barlevel-overdrive-separator-width: 2px; + -barlevel-border-width: 0; + -barlevel-border-color: rgba(255, 255, 255, 0.12); +} + +.osd-window .level-bar { + background-color: white; + border-radius: 2px; +} + +.pad-osd-window { + padding: 32px; + background-color: #25292f; +} + +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} + +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +#overview StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.12); +} + +#overview StScrollBar StButton#vhandle, #overview StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.4); +} + +#overview StScrollBar StButton#vhandle:hover, #overview StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.7); +} + +#overview StScrollBar StButton#vhandle:active, #overview StScrollBar StButton#hhandle:active { + background-color: #FFFFFF; +} + +#overview { + spacing: 24px; +} + +.overview-controls { + padding-bottom: 30px; +} + +/* Top Bar */ +#panel { + background-color: rgba(20, 24, 29, 0.75); + font-weight: bold; + height: 2.4em; + color: rgba(255, 255, 255, 0.7); + font-feature-settings: "tnum"; + transition-duration: 250ms; + border: none; + box-shadow: none; +} + +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: rgba(20, 24, 29, 0.75); + -panel-corner-border-width: 2px; + -panel-corner-border-color: transparent; + -panel-corner-opacity: 1; + transition-duration: 250ms; +} + +#panel .panel-button { + -natural-hpadding: 12px; + -minimum-hpadding: 12px; + font-weight: bold; + color: rgba(255, 255, 255, 0.7); + transition-duration: 150ms; + border-radius: 9999px; + text-shadow: none; + border: 3px solid transparent; + background-gradient-direction: horizontal; + background-gradient-start: transparent; + background-gradient-end: transparent; +} + +#panel .panel-button.clock-display .clock { + transition-duration: 150ms; + border: 3px solid transparent; + border-radius: 9999px; + background-gradient-direction: horizontal; + background-gradient-start: transparent; + background-gradient-end: transparent; +} + +#panel .panel-button:hover { + color: #FFFFFF; + background-color: transparent; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); + background-gradient-start: rgba(255, 255, 255, 0.12); + background-gradient-end: rgba(255, 255, 255, 0.12); +} + +#panel .panel-button.clock-display:hover { + box-shadow: none; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + background-gradient-start: transparent; + background-gradient-end: transparent; +} + +#panel .panel-button.clock-display:hover .clock { + color: #FFFFFF; + background-color: transparent; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); + background-gradient-start: rgba(255, 255, 255, 0.12); + background-gradient-end: rgba(255, 255, 255, 0.12); +} + +#panel .panel-button:active, #panel .panel-button:active:hover, #panel .panel-button:overview, #panel .panel-button:overview:hover, #panel .panel-button:focus, #panel .panel-button:focus:hover, #panel .panel-button:checked, #panel .panel-button:checked:hover { + color: #FFFFFF; + background-color: transparent; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08); + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +#panel .panel-button.clock-display:active, #panel .panel-button.clock-display:overview, #panel .panel-button.clock-display:focus, #panel .panel-button.clock-display:checked { + box-shadow: none; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + background-gradient-start: transparent; + background-gradient-end: transparent; +} + +#panel .panel-button.clock-display:active .clock, #panel .panel-button.clock-display:overview .clock, #panel .panel-button.clock-display:focus .clock, #panel .panel-button.clock-display:checked .clock { + color: #FFFFFF; + background-color: transparent; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08); + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +.unlock-screen #panel .panel-button, .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .login-screen #panel .panel-button, .login-screen #panel .panel-button:focus, .login-screen #panel .panel-button:hover, .lock-screen #panel .panel-button, .lock-screen #panel .panel-button:focus, .lock-screen #panel .panel-button:hover { + color: #FFFFFF; +} + +#panel .panel-button .system-status-icon { + icon-size: 16px; + padding: 6px; + margin: 0; + -st-icon-style: symbolic; +} + +#panel .panel-button .appindicator-trayicons-box { + margin: 0 6px; +} + +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; +} + +#panel #panelActivities.panel-button { + -natural-hpadding: 18px !important; + -minimum-hpadding: 18px !important; + background-image: url("assets/activities.svg"); + background-position: center center; + background-size: 24px 24px; + width: 24px; + height: 24px; + background-gradient-direction: none; + font-size: 0; +} + +#panel #panelActivities.panel-button > * { + width: 24px; +} + +#panel #panelActivities.panel-button, #panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { + color: transparent; +} + +#panel #panelActivities.panel-button:overview { + background-color: transparent; +} + +#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { + background-color: transparent; + box-shadow: none; +} + +#panel:overview StLabel, #panel:overview StIcon, #panel.unlock-screen StLabel, #panel.unlock-screen StIcon, #panel.login-screen StLabel, #panel.login-screen StIcon, #panel.lock-screen StLabel, #panel.lock-screen StIcon { + color: rgba(255, 255, 255, 0.7); +} + +#panel:overview .panel-button:hover, #panel.unlock-screen .panel-button:hover, #panel.login-screen .panel-button:hover, #panel.lock-screen .panel-button:hover { + color: #FFFFFF; + background-color: transparent; + box-shadow: none; + background-gradient-start: rgba(255, 255, 255, 0.12); + background-gradient-end: rgba(255, 255, 255, 0.12); +} + +#panel:overview .panel-button.clock-display:hover, #panel.unlock-screen .panel-button.clock-display:hover, #panel.login-screen .panel-button.clock-display:hover, #panel.lock-screen .panel-button.clock-display:hover { + box-shadow: none; + color: #FFFFFF; + background-color: transparent; + background-gradient-start: transparent; + background-gradient-end: transparent; +} + +#panel:overview .panel-button.clock-display:hover .clock, #panel.unlock-screen .panel-button.clock-display:hover .clock, #panel.login-screen .panel-button.clock-display:hover .clock, #panel.lock-screen .panel-button.clock-display:hover .clock { + color: #FFFFFF; + box-shadow: none; + background-color: transparent; + background-gradient-start: rgba(255, 255, 255, 0.12); + background-gradient-end: rgba(255, 255, 255, 0.12); +} + +#panel:overview .panel-button:active, #panel:overview .panel-button:overview, #panel:overview .panel-button:focus, #panel:overview .panel-button:checked, #panel.unlock-screen .panel-button:active, #panel.unlock-screen .panel-button:overview, #panel.unlock-screen .panel-button:focus, #panel.unlock-screen .panel-button:checked, #panel.login-screen .panel-button:active, #panel.login-screen .panel-button:overview, #panel.login-screen .panel-button:focus, #panel.login-screen .panel-button:checked, #panel.lock-screen .panel-button:active, #panel.lock-screen .panel-button:overview, #panel.lock-screen .panel-button:focus, #panel.lock-screen .panel-button:checked { + color: #FFFFFF; + background-color: transparent; + box-shadow: none; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +#panel:overview .panel-button.clock-display:active, #panel:overview .panel-button.clock-display:overview, #panel:overview .panel-button.clock-display:focus, #panel:overview .panel-button.clock-display:checked, #panel.unlock-screen .panel-button.clock-display:active, #panel.unlock-screen .panel-button.clock-display:overview, #panel.unlock-screen .panel-button.clock-display:focus, #panel.unlock-screen .panel-button.clock-display:checked, #panel.login-screen .panel-button.clock-display:active, #panel.login-screen .panel-button.clock-display:overview, #panel.login-screen .panel-button.clock-display:focus, #panel.login-screen .panel-button.clock-display:checked, #panel.lock-screen .panel-button.clock-display:active, #panel.lock-screen .panel-button.clock-display:overview, #panel.lock-screen .panel-button.clock-display:focus, #panel.lock-screen .panel-button.clock-display:checked { + box-shadow: none; + color: #FFFFFF; + background-color: transparent; + background-gradient-start: transparent; + background-gradient-end: transparent; +} + +#panel:overview .panel-button.clock-display:active .clock, #panel:overview .panel-button.clock-display:overview .clock, #panel:overview .panel-button.clock-display:focus .clock, #panel:overview .panel-button.clock-display:checked .clock, #panel.unlock-screen .panel-button.clock-display:active .clock, #panel.unlock-screen .panel-button.clock-display:overview .clock, #panel.unlock-screen .panel-button.clock-display:focus .clock, #panel.unlock-screen .panel-button.clock-display:checked .clock, #panel.login-screen .panel-button.clock-display:active .clock, #panel.login-screen .panel-button.clock-display:overview .clock, #panel.login-screen .panel-button.clock-display:focus .clock, #panel.login-screen .panel-button.clock-display:checked .clock, #panel.lock-screen .panel-button.clock-display:active .clock, #panel.lock-screen .panel-button.clock-display:overview .clock, #panel.lock-screen .panel-button.clock-display:focus .clock, #panel.lock-screen .panel-button.clock-display:checked .clock { + box-shadow: none; + color: #FFFFFF; + background-color: transparent; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +#panel:overview .panel-corner, #panel.unlock-screen .panel-corner, #panel.login-screen .panel-corner, #panel.lock-screen .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; +} + +#panel Gjs_arcmenu_arcmenu_com_menuButton_Arc_Menu_MenuButton.panel-button, +#panel Gjs_arcmenu_arcmenu_com_menuButton_ArcMenu_MenuButton.panel-button, +#panel Gjs_arcmenu_arcmenu_com_menuButton_ArcMenuMenuButton.panel-button { + -natural-hpadding: 24px !important; + -minimum-hpadding: 24px !important; +} + +#panel Gjs_arcmenu_arcmenu_com_menuButton_Arc_Menu_MenuButton.panel-button .panel-status-menu-box, +#panel Gjs_arcmenu_arcmenu_com_menuButton_ArcMenu_MenuButton.panel-button .panel-status-menu-box, +#panel Gjs_arcmenu_arcmenu_com_menuButton_ArcMenuMenuButton.panel-button .panel-status-menu-box { + spacing: 0; + padding: 0; + margin: 0; +} + +#panel Gjs_status_keyboard_InputSourceIndicator.panel-button, +#panel Gjs_appindicatorsupport_rgcjonas_gmail_com_indicatorStatusIcon_AppIndicatorsIndicatorStatusIcon.panel-button { + -natural-hpadding: 18px !important; + -minimum-hpadding: 18px !important; +} + +#panel .screencast-indicator, +#panel .remote-access-indicator { + color: #FBC02D; +} + +/* Popovers/Menus */ +.popup-menu-boxpointer { + -arrow-border-radius: 9px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 12px; + -arrow-rise: 6px; + -arrow-box-shadow: none; + background: transparent; +} + +.popup-menu { + min-width: 12em; + color: rgba(255, 255, 255, 0.7) !important; + padding: 0; + font-weight: normal; + border-radius: 12px; + box-shadow: none; + margin: 0; + font-size: 10pt; +} + +.popup-menu .popup-menu-content { + padding: 6px; + background-color: #1a1f26; + border-radius: 12px; + margin: 0 6px 6px; + font-weight: normal; + border: none; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08); +} + +.popup-menu .popup-menu-item { + spacing: 6px; + color: rgba(255, 255, 255, 0.7) !important; + text-shadow: none; + border-radius: 6px; + margin: 0; + transition-duration: 100ms; + font-weight: normal; + background-color: transparent; +} + +.popup-menu .popup-menu-item:checked { + font-weight: normal; + border: none; + box-shadow: none; + color: #FFFFFF !important; + background-color: #297dff !important; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; + border-radius: 6px 6px 0 0 !important; +} + +.popup-menu .popup-menu-item:checked:focus, .popup-menu .popup-menu-item:checked:hover, .popup-menu .popup-menu-item.selected:checked { + background-color: #297dff !important; + color: #FFFFFF !important; +} + +.popup-menu .popup-menu-item:checked:active { + background-color: #31c4b6 !important; + color: #FFFFFF !important; +} + +.popup-menu .popup-menu-item:checked:insensitive { + color: rgba(255, 255, 255, 0.4) !important; +} + +.popup-menu .popup-menu-item:focus, .popup-menu .popup-menu-item:hover, .popup-menu .popup-menu-item.selected { + color: #FFFFFF !important; + background-color: rgba(255, 255, 255, 0.12) !important; + transition-duration: 0; +} + +.popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected:active { + color: #FFFFFF !important; + background-color: #297dff !important; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +.popup-menu .popup-menu-item:insensitive { + color: rgba(255, 255, 255, 0.3) !important; +} + +.popup-menu .popup-sub-menu { + background-color: rgba(255, 255, 255, 0.12) !important; + color: rgba(255, 255, 255, 0.7) !important; + border: none; + box-shadow: none; + margin: 0; + border-radius: 0 0 6px 6px !important; +} + +.popup-menu .popup-sub-menu .popup-menu-item { + margin: 0; +} + +.popup-menu .popup-sub-menu .popup-menu-item:focus, .popup-menu .popup-sub-menu .popup-menu-item:hover, .popup-menu .popup-sub-menu .popup-menu-item.selected { + color: #FFFFFF !important; + background-color: rgba(255, 255, 255, 0.12) !important; +} + +.popup-menu .popup-sub-menu .popup-menu-item:active, .popup-menu .popup-sub-menu .popup-menu-item.selected:active { + color: #FFFFFF !important; + background-color: rgba(255, 255, 255, 0.26) !important; +} + +.popup-menu .popup-sub-menu .popup-menu-item:insensitive { + color: rgba(255, 255, 255, 0.3) !important; +} + +.popup-menu .popup-inactive-menu-item { + color: rgba(255, 255, 255, 0.7) !important; +} + +.popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(255, 255, 255, 0.3) !important; +} + +.popup-menu.panel-menu { + -boxpointer-gap: 4px; + margin-bottom: 1.75em; +} + +.popup-menu-arrow, +.popup-menu-icon { + icon-size: 16px; +} + +.popup-menu-ornament { + width: 1.2em; +} + +.popup-menu-ornament:ltr { + text-align: right; +} + +.popup-menu-ornament:rtl { + text-align: left; +} + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0px; +} + +.aggregate-menu { + min-width: 20em; +} + +.aggregate-menu .popup-menu-icon { + padding: 0; + margin: 0 3px; + -st-icon-style: symbolic; +} + +.app-menu { + max-width: 27.25em; +} + +.app-menu .popup-menu-ornament { + width: 0 !important; +} + +.app-menu .popup-inactive-menu-item:first-child > StLabel:ltr { + margin-right: 8px; +} + +.app-menu .popup-inactive-menu-item:first-child > StLabel:rtl { + margin-left: 8px; +} + +/* Screen Shield */ +.unlock-dialog-clock { + color: white; + font-weight: 300; + text-align: center; + spacing: 24px; + padding-bottom: 2.5em; +} + +.unlock-dialog-clock-time { + font-size: 64pt; + padding-top: 42px; + font-feature-settings: "tnum"; +} + +.unlock-dialog-clock-date { + font-size: 16pt; + font-weight: normal; +} + +.unlock-dialog-clock-hint { + font-weight: normal; + padding-top: 48px; +} + +.unlock-dialog-notifications-container { + margin: 12px 0; + spacing: 6px; + width: 23em; + background-color: transparent; +} + +.unlock-dialog-notifications-container .summary-notification-stack-scrollview { + padding-top: 0; + padding-bottom: 0; +} + +.unlock-dialog-notifications-container .notification, +.unlock-dialog-notifications-container .unlock-dialog-notification-source { + padding: 12px 6px; + border: none; + background-color: #25292f; + color: #FFFFFF; + border-radius: 12px; +} + +.unlock-dialog-notifications-container .notification.critical, +.unlock-dialog-notifications-container .unlock-dialog-notification-source.critical { + background-color: #373d46; +} + +.unlock-dialog-notification-label { + padding: 0px 0px 0px 12px; +} + +.unlock-dialog-notification-count-text { + weight: bold; + padding: 0 6px; + color: #FFFFFF; + background-color: #5b9bf8; + border-radius: 9999px; + margin-right: 12px; +} + +.screen-shield-background { + background: black; + box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15); +} + +#unlockDialogNotifications StButton#vhandle, #unlockDialogNotifications StButton#hhandle { + background-color: rgba(34, 38, 44, 0.3); +} + +#unlockDialogNotifications StButton#vhandle:hover, #unlockDialogNotifications StButton#vhandle:focus, #unlockDialogNotifications StButton#hhandle:hover, #unlockDialogNotifications StButton#hhandle:focus { + background-color: rgba(34, 38, 44, 0.5); +} + +#unlockDialogNotifications StButton#vhandle:active, #unlockDialogNotifications StButton#hhandle:active { + background-color: rgba(91, 155, 248, 0.5); +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} + +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} + +StScrollView StScrollBar { + min-width: 12px; + min-height: 12px; +} + +StScrollBar StBin#trough { + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.12); + margin: 3px; +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.4); + border: 3px solid transparent; + margin: 3px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.7); +} + +StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #FFFFFF; +} + +.search-entry { + width: 320px; + min-height: 32px; + padding: 0 12px; + transition-duration: 150ms; + border-radius: 6px; + caret-color: #FFFFFF; + selection-background-color: rgba(255, 255, 255, 0.12); + selected-color: #FFFFFF !important; + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + border: 2px solid transparent; + box-shadow: none; +} + +.search-entry:hover { + color: #FFFFFF; + border-color: rgba(255, 255, 255, 0.26); + background-color: rgba(255, 255, 255, 0.04); +} + +.search-entry:focus { + color: #FFFFFF; + border-color: #5b9bf8; + background-color: rgba(255, 255, 255, 0.04); + box-shadow: none; +} + +.search-entry:insensitive { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.3); + border-color: transparent; +} + +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 0; + color: rgba(255, 255, 255, 0.3); +} + +.search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { + color: rgba(255, 255, 255, 0.7); +} + +.search-entry StLabel.hint-text { + color: rgba(255, 255, 255, 0.4); +} + +.popup-menu .search-entry .search-entry-icon { + color: rgba(255, 255, 255, 0.3); +} + +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: rgba(255, 255, 255, 0.7); +} + +.popup-menu .search-entry StLabel.hint-text { + color: rgba(255, 255, 255, 0.4); +} + +/* Search */ +.list-search-result, .search-provider-icon { + border-radius: 6px; + padding: 6px; + transition-duration: 100ms; + text-align: center; +} + +.list-search-result:focus, .search-provider-icon:focus, .list-search-result:hover, .search-provider-icon:hover, .list-search-result:selected, .search-provider-icon:selected { + background-color: rgba(255, 255, 255, 0.12); + transition-duration: 200ms; +} + +.list-search-result:active, .search-provider-icon:active, .list-search-result:checked, .search-provider-icon:checked { + background-color: rgba(255, 255, 255, 0.2); +} + +#searchResultsContent { + max-width: 1024px; + spacing: 8px; +} + +.search-section { + spacing: 8px; + background: none; +} + +.search-section .search-section-separator { + height: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +.search-section-content { + spacing: 8px; + border-radius: 0; + padding: 18px; + border: none; + box-shadow: none; + background: none; + text-shadow: none; + color: rgba(255, 255, 255, 0.7); +} + +.search-statustext { + font-size: 2em; + font-weight: bold; + color: rgba(255, 255, 255, 0.4); +} + +.grid-search-results { + spacing: 36px; +} + +.search-provider-icon .list-search-provider-content { + spacing: 12px; +} + +.search-provider-icon .list-search-provider-content .list-search-provider-details { + width: 120px; + margin-top: 0; + color: rgba(255, 255, 255, 0.4); +} + +.list-search-results { + spacing: 6px; +} + +.list-search-result .list-search-result-content { + spacing: 6px; +} + +.list-search-result .list-search-result-title { + spacing: 12px; +} + +.list-search-result .list-search-result-description { + color: rgba(255, 255, 255, 0.7); +} + +/* Slider */ +.slider { + height: 20px; + color: #25292f; + -slider-height: 2px; + -slider-background-color: rgba(255, 255, 255, 0.26); + -slider-border-color: #31c4b6; + -slider-active-background-color: #31c4b6; + -slider-active-border-color: #31c4b6; + -slider-border-width: 2px; + -slider-handle-radius: 8px; + -slider-handle-border-width: 2px; + -slider-handle-border-color: #31c4b6; + -barlevel-height: 2px; + -barlevel-background-color: rgba(255, 255, 255, 0.26); + -barlevel-border-color: transparent; + -barlevel-active-background-color: #31c4b6; + -barlevel-active-border-color: transparent; + -barlevel-overdrive-color: #F44336; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -barlevel-border-width: 0; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 24px; +} + +.switcher-list .item-box { + padding: 8px; + border-radius: 6px; + border: 1px solid transparent; +} + +.switcher-list .item-box:outlined { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.switcher-list .item-box:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 6px; +} + +.switcher-list .thumbnail { + width: 256px; +} + +.switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.12); +} + +.switcher-list .switcher-list-item-container { + spacing: 12px; +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(255, 255, 255, 0.4); +} + +.switcher-arrow:highlighted { + color: #FFFFFF; +} + +.input-source-switcher-symbol { + font-size: 34pt; + width: 96px; + height: 96px; +} + +.cycler-highlight { + border: 5px solid #5b9bf8; +} + +/* Switches */ +.toggle-switch { + width: 46px; + height: 24px; + background-size: contain; + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* Tiled window previews */ +.tile-preview { + background-color: rgba(91, 155, 248, 0.3); + border: 1px solid #5b9bf8; +} + +.tile-preview-left.on-primary { + border-radius: 7px 0 0 0; +} + +.tile-preview-right.on-primary { + border-radius: 0 7px 0 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 7px 7px 0 0; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 12px; +} + +.workspace-switcher { + background: transparent; + border: none; + border-radius: 0; + padding: 0; + spacing: 12px; +} + +.ws-switcher-box { + background: transparent; + height: 50px; + background-size: 32px; + background: rgba(255, 255, 255, 0.12); + border-radius: 6px; +} + +.ws-switcher-active-up, +.ws-switcher-active-down, +.ws-switcher-active-left, +.ws-switcher-active-right { + height: 52px; + background-color: #5b9bf8; + color: #FFFFFF; + border-radius: 9px; + border: none; +} + +.icon-grid { + row-spacing: 12px; + column-spacing: 12px; + max-row-spacing: 72px; + max-column-spacing: 72px; + page-padding-top: 24px; + page-padding-bottom: 24px; + page-padding-left: 12px; + page-padding-right: 12px; +} + +.page-indicator { + padding: 6px 12px 0; +} + +.page-indicator .page-indicator-icon { + width: 10px; + height: 10px; + border-radius: 10px; + background-color: white; +} + +.apps-scroll-view { + padding: 0; +} + +.page-navigation-hint { + width: 300px; +} + +.page-navigation-hint.dnd { + background: rgba(255, 255, 255, 0.1); +} + +.page-navigation-hint.next:ltr, .page-navigation-hint.previous:rtl { + background-gradient-start: rgba(255, 255, 255, 0.05); + background-gradient-end: transparent; + background-gradient-direction: horizontal; + border-radius: 15px 0px 0px 15px; +} + +.page-navigation-hint.previous:ltr, .page-navigation-hint.next:rtl { + background-gradient-start: transparent; + background-gradient-end: rgba(255, 255, 255, 0.05); + background-gradient-direction: horizontal; + border-radius: 0px 15px 15px 0px; +} + +.page-navigation-arrow { + margin: 6px; + padding: 18px; + width: 24px; + height: 24px; + border-radius: 9999px; + color: rgba(255, 255, 255, 0.7); +} + +.page-navigation-arrow:insensitive { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); +} + +.page-navigation-arrow:hover { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.page-navigation-arrow:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +#dash { + margin-top: 12px; + padding: 0 10px; +} + +#dash .placeholder { + background-image: none; + background-size: contain; + height: 32px; +} + +#dash .overview-icon { + padding: 5px; +} + +.dash-background { + background-color: rgba(255, 255, 255, 0.12); + margin-bottom: 16px; + padding: 10px 6px; + border-radius: 24px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.dash-item-container .app-well-app, .show-apps { + padding: 10px 2px 26px; +} + +.dash-separator { + width: 1px; + margin: 0 7px 16px; + background-color: rgba(255, 255, 255, 0.12); +} + +.workspace-animation { + background-color: #25292f; +} + +.calendar .calendar-change-month-back, +.calendar .calendar-change-month-forward { + padding: 0 2px; +} + +.message-list-controls { + padding: 6px 6px 6px 30px !important; + spacing: 6px; + font-weight: normal; +} + +.message-list-controls .dnd-button { + font-weight: normal; +} + +.message-media-control { + margin: 26px 6px !important; + padding: 12px !important; +} + +.media-message-cover-icon.fallback { + padding: 12px; +} + +.controls-manager, .secondary-monitor-workspaces { + spacing: 12px; +} + +#overviewGroup { + background-color: #25292f; +} + +.osd-window { + spacing: 12px; + padding: 12px 18px; + margin-bottom: 4em; +} + +.osd-window > * { + spacing: 8px; +} + +.osd-window StIcon { + icon-size: 32px; +} + +.osd-window StLabel:ltr { + margin-right: 6px; +} + +.osd-window StLabel:rtl { + margin-left: 6px; +} + +#appMenu { + spacing: 6px; +} + +#appMenu .label-shadow { + color: transparent; +} + +#appMenu .panel-status-menu-box { + padding: 0 6px; + spacing: 6px; +} + +.popup-menu .popup-menu-item { + padding: 6px 12px; +} + +.popup-menu .popup-menu-item:ltr { + padding-right: 9px !important; + padding-left: 0 !important; +} + +.popup-menu .popup-menu-item:rtl { + padding-right: 0 !important; + padding-left: 9px !important; +} + +.popup-separator-menu-item { + padding: 0; +} + +.popup-separator-menu-item .popup-menu-ornament { + width: 0 !important; +} + +.popup-separator-menu-item .popup-separator-menu-item-separator { + height: 1px; + background-color: rgba(255, 255, 255, 0.12); + margin: 6px 32px; +} + +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { + padding: 0; + margin: 0 32px 0 0; + height: 1px; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + padding-left: 18px !important; + margin-left: 0 !important; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + padding-right: 18px !important; + margin-right: 0 !important; +} + +.app-menu .popup-menu-item > :first-child:ltr { + padding-left: 6px; + margin-left: 0; +} + +.app-menu .popup-menu-item > :first-child:rtl { + padding-right: 6px; + margin-right: 0; +} + +.app-menu .popup-inactive-menu-item:first-child > StLabel { + font-weight: bold; + font-size: 11; +} + +.app-menu .popup-inactive-menu-item:first-child > StLabel:ltr { + margin-right: 0; +} + +.app-menu .popup-inactive-menu-item:first-child > StLabel:rtl { + margin-left: 0; +} + +.app-menu .popup-inactive-menu-item:first-child .popup-separator-menu-item-separator { + height: 0; + background-color: transparent; +} + +.quick-settings { + padding: 18px !important; + border-radius: 38px !important; + margin-top: 4px !important; +} + +.quick-settings .icon-button, .quick-settings .background-app-item .close-button, .background-app-item .quick-settings .close-button, .quick-settings .button { + padding: 9px; +} + +.quick-settings .icon-button > StIcon, .quick-settings .background-app-item .close-button > StIcon, .background-app-item .quick-settings .close-button > StIcon, .quick-settings .button > StIcon { + -st-icon-style: symbolic; + icon-size: 16px; +} + +.quick-settings-grid { + spacing-rows: 12px; + spacing-columns: 12px; +} + +.quick-toggle, .quick-menu-toggle { + border-radius: 9999px; + min-width: 12em; + max-width: 12em; + min-height: 40px; + border: none; +} + +.quick-toggle { + background-color: rgba(255, 255, 255, 0.04) !important; + /* Move padding into the box; this is to allow menu arrows + to extend to the border */ +} + +.quick-toggle:hover { + background-color: rgba(255, 255, 255, 0.12) !important; +} + +.quick-toggle:active, .quick-toggle:checked { + background-color: #5b9bf8 !important; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +.quick-toggle:active:hover, .quick-toggle:checked:hover { + background-color: #65a1f8 !important; + color: #FFFFFF; +} + +.quick-toggle:active:active, .quick-toggle:checked:active { + background-color: #74aaf9 !important; + color: #FFFFFF; +} + +.quick-toggle > StBoxLayout { + spacing: 6px; +} + +.quick-toggle.button { + padding: 0; +} + +.quick-toggle > StBoxLayout { + padding: 0 12px; +} + +.quick-toggle:ltr > StBoxLayout { + padding-left: 15px; +} + +.quick-toggle:rtl > StBoxLayout { + padding-right: 15px; +} + +.quick-toggle .quick-toggle-title { + font-weight: bold; +} + +.quick-toggle StBoxLayout > .quick-toggle-subtitle { + font-weight: normal; + font-size: 12px; +} + +.quick-toggle .quick-toggle-icon { + icon-size: 16px; +} + +.quick-menu-toggle .quick-toggle { + min-width: auto; + max-width: auto; +} + +.quick-menu-toggle .quick-toggle:ltr { + border-radius: 9999px 0 0 9999px; +} + +.quick-menu-toggle .quick-toggle:ltr > StBoxLayout { + padding-right: 9px; +} + +.quick-menu-toggle .quick-toggle:rtl { + border-radius: 0 9999px 9999px 0; +} + +.quick-menu-toggle .quick-toggle:rtr > StBoxLayout { + padding-left: 9px; +} + +.quick-menu-toggle .quick-toggle:ltr:last-child { + border-radius: 9999px; +} + +.quick-menu-toggle .quick-toggle:rtl:last-child { + border-radius: 9999px; +} + +.quick-menu-toggle .quick-toggle-arrow { + background-color: rgba(255, 255, 255, 0.06) !important; + padding: 6px 10.5px; + border-width: 0; +} + +.quick-menu-toggle .quick-toggle-arrow:hover { + background-color: rgba(255, 255, 255, 0.12) !important; +} + +.quick-menu-toggle .quick-toggle-arrow:active { + background-color: #5b9bf8 !important; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +.quick-menu-toggle .quick-toggle-arrow:checked { + background-color: #31c4b6 !important; + color: #FFFFFF; +} + +.quick-menu-toggle .quick-toggle-arrow:checked:hover { + background-color: #3dc8ba !important; + color: #FFFFFF; +} + +.quick-menu-toggle .quick-toggle-arrow:checked:active { + background-color: #50cdc1 !important; + color: #FFFFFF; +} + +.quick-menu-toggle .quick-toggle-arrow:ltr { + border-radius: 0 9999px 9999px 0; + border-left-width: 0; +} + +.quick-menu-toggle .quick-toggle-arrow:rtl { + border-radius: 9999px 0 0 9999px; + border-right-width: 0; +} + +.quick-slider { + padding: 0 6px; +} + +.quick-slider > StBoxLayout { + spacing: 6px; +} + +.quick-slider .slider-bin { + min-height: 16px; + padding: 6px; + border-radius: 9999px; +} + +.quick-slider .slider-bin:focus { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.08); + box-shadow: none !important; +} + +.quick-slider .quick-toggle-icon { + icon-size: 16px; +} + +.quick-slider .icon-button, .quick-slider .background-app-item .close-button, .background-app-item .quick-slider .close-button { + padding: 6px; +} + +.quick-toggle-menu { + background-color: #1a1f26 !important; + color: #FFFFFF !important; + border-radius: 18px !important; + padding: 12px; + margin: 12px 24px 0 !important; +} + +.quick-toggle-menu .popup-menu-item { + border-radius: 6px !important; +} + +.quick-toggle-menu .popup-menu-item:focus, .quick-toggle-menu .popup-menu-item:hover, .quick-toggle-menu .popup-menu-item.selected { + color: #FFFFFF !important; + background-color: rgba(255, 255, 255, 0.1) !important; +} + +.quick-toggle-menu .popup-menu-item:active { + color: #FFFFFF !important; + background-color: rgba(255, 255, 255, 0.2) !important; +} + +.quick-toggle-menu .popup-menu-item > StIcon { + -st-icon-style: symbolic; +} + +.quick-toggle-menu .header { + spacing-rows: 3px; + spacing-columns: 12px; + padding-bottom: 12px; +} + +.quick-toggle-menu .header .icon { + icon-size: 24px; + border-radius: 9999px; + padding: 9px; + background-color: rgba(255, 255, 255, 0.12) !important; +} + +.quick-toggle-menu .header .icon.active { + background-color: #5b9bf8 !important; + color: #FFFFFF; + background-gradient-direction: horizontal; + background-gradient-start: #297dff; + background-gradient-end: #31c4b6; +} + +.quick-settings-system-item > StBoxLayout { + spacing: 12px; +} + +.quick-settings-system-item .icon-button, .quick-settings-system-item .background-app-item .close-button, .background-app-item .quick-settings-system-item .close-button { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + border-radius: 9999px; +} + +.quick-settings-system-item .icon-button > StIcon, .quick-settings-system-item .background-app-item .close-button > StIcon, .background-app-item .quick-settings-system-item .close-button > StIcon { + -st-icon-style: symbolic; + icon-size: 16px; +} + +.quick-settings-system-item .power-item { + min-height: 0; + min-width: 0; +} + +.quick-settings-system-item .power-item:insensitive { + color: #FFFFFF; + background-color: #25292f; + box-shadow: none !important; + background-color: transparent; +} + +.nm-network-item .wireless-secure-icon { + icon-size: 8px; +} + +.bt-device-item .popup-menu-icon { + -st-icon-style: symbolic; +} + +.bt-menu-placeholder.popup-menu-item { + text-align: center; + padding: 2em 4em; +} + +.device-subtitle { + color: rgba(255, 255, 255, 0.4); +} + +.background-apps-quick-toggle { + min-height: 40px; + background-color: transparent; +} + +.background-apps-quick-toggle StIcon { + icon-size: 16px !important; +} + +.background-app-item .popup-menu-icon { + icon-size: 32px !important; + -st-icon-style: regular !important; +} + +.background-app-item .close-button { + padding: 6px; +} + +.background-app-item.popup-inactive-menu-item { + color: #FFFFFF; +} + +.search-entry { + margin-top: 24px; + margin-bottom: 6px; +} + +.icon-label-button-container { + spacing: 6px; +} + +.icon-label-button-container StIcon { + icon-size: 32px; +} + +.screenshot-ui-panel { + border-radius: 36px; + padding: 18px; + padding-bottom: 12px; + margin-bottom: 4em; + spacing: 12px; +} + +.screenshot-ui-close-button { + padding: 6px !important; + margin-top: 12px; + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15); +} + +.screenshot-ui-close-button.left { + margin-left: 12px; +} + +.screenshot-ui-close-button.right { + margin-right: 12px; +} + +.screenshot-ui-type-button { + min-width: 48px; + padding: 12px 18px !important; + border-radius: 18px; +} + +.screenshot-ui-capture-button { + width: 36px; + height: 36px; + border-radius: 9999px; + border: 4px #FFFFFF; + padding: 4px; +} + +.screenshot-ui-capture-button .screenshot-ui-capture-button-circle { + background-color: #FFFFFF; + transition-duration: 200ms; + border-radius: 9999px; +} + +.screenshot-ui-capture-button .screenshot-ui-capture-button-circle:hover, .screenshot-ui-capture-button .screenshot-ui-capture-button-circle:focus { + background-color: rgba(255, 255, 255, 0.12); +} + +.screenshot-ui-capture-button:hover .screenshot-ui-capture-button-circle, .screenshot-ui-capture-button:focus .screenshot-ui-capture-button-circle { + background-color: #d9d9d9; +} + +.screenshot-ui-capture-button:active .screenshot-ui-capture-button-circle { + background-color: gray; +} + +.screenshot-ui-capture-button:cast .screenshot-ui-capture-button-circle { + background-color: #F44336; +} + +.screenshot-ui-capture-button:cast:hover .screenshot-ui-capture-button-circle, .screenshot-ui-capture-button:cast:focus .screenshot-ui-capture-button-circle { + background-color: #f55a4e; +} + +.screenshot-ui-capture-button:cast:active .screenshot-ui-capture-button-circle { + background-color: #f22314; +} + +.screenshot-ui-shot-cast-container { + background-color: #30353d; + border-radius: 15px; + padding: 3px; + spacing: 3px; +} + +.screenshot-ui-shot-cast-container:ltr { + margin-left: 3px; +} + +.screenshot-ui-shot-cast-container:rtl { + margin-right: 3px; +} + +.screenshot-ui-shot-cast-button { + padding: 6px 12px; + background-color: transparent; + border-radius: 12px; +} + +.screenshot-ui-shot-cast-button:hover, .screenshot-ui-shot-cast-button:focus { + background-color: #3b424c; +} + +.screenshot-ui-shot-cast-button:active { + background-color: rgba(255, 255, 255, 0.26); +} + +.screenshot-ui-shot-cast-button:checked { + background-color: white; + color: black; +} + +.screenshot-ui-shot-cast-button:insensitive { + color: rgba(255, 255, 255, 0.5); +} + +.screenshot-ui-shot-cast-button StIcon { + icon-size: 16px; +} + +.screenshot-ui-show-pointer-button { + border-radius: 9999px; + padding: 12px !important; +} + +.screenshot-ui-show-pointer-button StIcon { + icon-size: 16px; +} + +.screenshot-ui-area-indicator-shade { + background-color: rgba(0, 0, 0, 0.3); +} + +.screenshot-ui-area-selector .screenshot-ui-area-indicator-shade { + background-color: rgba(0, 0, 0, 0.5); +} + +.screenshot-ui-area-selector .screenshot-ui-area-indicator-selection { + border: 2px white; +} + +.screenshot-ui-area-selector-handle { + border-radius: 9999px; + background-color: white; + box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.2); + width: 24px; + height: 24px; +} + +.screenshot-ui-window-selector { + background-color: #2d3036; +} + +.screenshot-ui-window-selector .screenshot-ui-window-selector-window-container { + margin: 100px; +} + +.screenshot-ui-window-selector:primary-monitor .screenshot-ui-window-selector-window-container { + margin-bottom: 200px; +} + +.screenshot-ui-window-selector-window-border { + transition-duration: 200ms; + border-radius: 15px; + border: 6px transparent; +} + +.screenshot-ui-window-selector-check { + transition-duration: 200ms; + color: transparent; + border-radius: 99px; + border-width: 12px; + icon-size: 24px; +} + +.screenshot-ui-window-selector-window:hover .screenshot-ui-window-selector-window-border { + border-color: #126ef5; +} + +.screenshot-ui-window-selector-window:checked .screenshot-ui-window-selector-window-border { + border-color: #5b9bf8; + background-color: rgba(91, 155, 248, 0.2); +} + +.screenshot-ui-window-selector-window:checked .screenshot-ui-window-selector-check { + color: #FFFFFF; + background-color: #5b9bf8; +} + +.screenshot-ui-screen-selector { + transition-duration: 200ms; + background-color: rgba(0, 0, 0, 0.5); +} + +.screenshot-ui-screen-selector:hover { + background-color: rgba(0, 0, 0, 0.3); +} + +.screenshot-ui-screen-selector:active { + background-color: rgba(0, 0, 0, 0.7); +} + +.screenshot-ui-screen-selector:checked { + background-color: transparent; + border: 2px white; +} + +.screenshot-ui-tooltip { + color: #FFFFFF; + background-color: #25292f; + border-radius: 9999px; + padding: 6px 12px; + text-align: center; + -y-offset: 24px; +} + +.window-picker { + spacing: 6px; +} + +.window-caption { + color: #FFFFFF; + background-color: #25292f; + border-radius: 9999px; + padding: 6px 12px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + border: none; + outline: none; +} + +.window-close, .screenshot-ui-close-button { + background-color: #2d3036; + color: #FFFFFF; + border-radius: 21px; + padding: 3px; + height: 30px; + width: 30px; + box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.5); + transition-duration: 300ms; +} + +.window-close:hover, .screenshot-ui-close-button:hover { + color: #FFFFFF; + background-color: #297dff; +} + +.window-close:active, .screenshot-ui-close-button:active { + color: #FFFFFF; + background-color: #31c4b6; +} + +.workspace-background { + border-radius: 30px; + background-color: #25292f; + box-shadow: 0 4px 16px 4px rgba(0, 0, 0, 0.3); +} + +/* Workspace pager */ +.workspace-thumbnails { + visible-width: 32px; + spacing: 6px; + padding: 6px; +} + +.workspace-thumbnails .workspace-thumbnail { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.12); + border: none; + border-radius: 6px; +} + +.workspace-thumbnails .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + width: 18px; + height: 24px; +} + +.workspace-thumbnail-indicator { + border: 3px solid #5b9bf8; + border-radius: 9px; + padding: 0px; +} + +.bottom #dashtodockDashScrollview, +.top #dashtodockDashScrollview { + -st-hfade-offset: 24px; +} + +.left #dashtodockDashScrollview, +.right #dashtodockDashScrollview { + -st-vfade-offset: 24px; +} + +#dashtodockContainer { + background-color: transparent; +} + +#dashtodockContainer .number-overlay { + color: #FFFFFF; + background-color: rgba(0, 0, 0, 0.75); + text-align: center; +} + +#dashtodockContainer .notification-badge { + color: #FFFFFF; + background-color: #5b9bf8; + box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25); + border-radius: 9999px; + margin: 2px; + padding: 0.2em 0.6em; + font-weight: bold; + text-align: center; +} + +#dashtodockContainer.straight-corner #dash, #dashtodockContainer.shrink.straight-corner #dash { + border-radius: 0; + margin: 0; +} + +#dashtodockContainer.straight-corner #dash .dash-background, #dashtodockContainer.shrink.straight-corner #dash .dash-background { + border-radius: 0; +} + +#dashtodockContainer.extended.top #dash, #dashtodockContainer.extended.bottom #dash, #dashtodockContainer.extended.right #dash, #dashtodockContainer.extended.left #dash { + margin-left: 0; + margin-right: 0; + margin-top: 0; + margin-bottom: 0; + padding: 0 0; +} + +#dashtodockContainer.extended.top #dash .dash-background, #dashtodockContainer.extended.bottom #dash .dash-background, #dashtodockContainer.extended.right #dash .dash-background, #dashtodockContainer.extended.left #dash .dash-background { + border-radius: 0; + margin-left: 0; + margin-right: 0; + margin-top: 0; + margin-bottom: 0; +} + +#dashtodockContainer.left #dash, #dashtodockContainer.right #dash { + margin-top: 0; + padding: 10px 0; +} + +#dashtodockContainer.left #dash .dash-background, #dashtodockContainer.right #dash .dash-background { + margin-bottom: 0; +} + +#dashtodockContainer.left .dash-item-container .app-well-app, #dashtodockContainer.left .show-apps, #dashtodockContainer.right .dash-item-container .app-well-app, #dashtodockContainer.right .show-apps { + padding: 6px; +} + +#dashtodockContainer.left #dash { + margin-left: 6px; +} + +#dashtodockContainer.right #dash { + margin-right: 6px; +} + +#dashtodockContainer.dashtodock #dash .dash-background { + background-color: rgba(20, 24, 29, 0.75); +} + +#dashtodockContainer #dash .dash-background { + background-color: rgba(20, 24, 29, 0.75); +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: rgba(255, 255, 255, 0.26) !important; +} + +#dashtodockContainer StWidget.focused .app-well-app-running-dot { + background-color: #5b9bf8 !important; +} + +#dashtodockContainer:overview #dash .app-well-app-running-dot { + background-color: rgba(255, 255, 255, 0.26) !important; +} + +#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot { + background-color: #5b9bf8 !important; +} + +#dashtodockContainer .dash-separator { + background-color: rgba(255, 255, 255, 0.12) !important; +} + +#dashtodockContainer:overview #dash .dash-separator { + background-color: rgba(255, 255, 255, 0.12) !important; +} + +#dashtodockContainer .app-well-app .overview-icon { + color: rgba(255, 255, 255, 0.7); +} + +#dashtodockContainer .app-well-app:hover .overview-icon, #dashtodockContainer .app-well-app:focus .overview-icon, #dashtodockContainer .app-well-app:selected .overview-icon { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer .app-well-app:active .overview-icon, #dashtodockContainer .app-well-app:checked .overview-icon { + background-color: rgba(255, 255, 255, 0.26); +} + +#dashtodockContainer .show-apps .overview-icon { + color: rgba(255, 255, 255, 0.7); +} + +#dashtodockContainer .show-apps:hover .overview-icon, #dashtodockContainer .show-apps:focus .overview-icon, #dashtodockContainer .show-apps:selected .overview-icon { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer:overview #dash .show-apps .overview-icon, #dashtodockContainer:overview #dash .app-well-app .overview-icon { + color: rgba(255, 255, 255, 0.7); +} + +#dashtodockContainer:overview #dash .show-apps:hover .overview-icon, #dashtodockContainer:overview #dash .show-apps:focus .overview-icon, #dashtodockContainer:overview #dash .show-apps:selected .overview-icon, #dashtodockContainer:overview #dash .app-well-app:hover .overview-icon, #dashtodockContainer:overview #dash .app-well-app:focus .overview-icon, #dashtodockContainer:overview #dash .app-well-app:selected .overview-icon { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer:overview #dash .show-apps:active .overview-icon, #dashtodockContainer:overview #dash .show-apps:checked .overview-icon, #dashtodockContainer:overview #dash .app-well-app:active .overview-icon, #dashtodockContainer:overview #dash .app-well-app:checked .overview-icon { + background-color: rgba(255, 255, 255, 0.26); +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: rgba(255, 255, 255, 0.26); +} + +#dashtodockContainer StWidget.focused .app-well-app-running-dot { + background-color: #5b9bf8; +} + +#dashtodockContainer.opaque #dash .dash-background { + background-color: rgba(20, 24, 29, 0.75); +} + +#dashtodockContainer.transparent #dash .dash-background { + background-color: rgba(20, 24, 29, 0.35); +} + +#dashtodockContainer:overview #dash .dash-background { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer.opaque:overview #dash .dash-background, #dashtodockContainer.transparent:overview #dash .dash-background { + background-color: transparent !important; + box-shadow: none !important; +} + +#dashtodockContainer.extended:overview #dash .dash-background, #dashtodockContainer.opaque.extended:overview #dash .dash-background, #dashtodockContainer.transparent.extended:overview #dash .dash-background { + background-color: rgba(20, 24, 29, 0.75); +} + +#dashtodockContainer.running-dots .dash-item-container > StButton, #dashtodockContainer.dashtodock .dash-item-container > StButton { + transition-duration: 250ms; + background-size: contain; +} + +#dashtodockContainer.extended .app-well-app .overview-icon, +#dashtodockContainer.extended .show-apps .overview-icon, #dashtodockContainer.extended:overview .app-well-app .overview-icon, +#dashtodockContainer.extended:overview .show-apps .overview-icon { + border-radius: 6px; +} + +#dashtodockContainer .metro .overview-icon { + border-radius: 0; +} + +.dashtodock-app-well-preview-menu-item { + padding: 1em 1em 0.5em 1em; +} + +#dashtodockPreviewSeparator.popup-separator-menu-item-horizontal { + width: 1px; + height: auto; + border-right-width: 1px; + margin: 32px 0; +} + +.openweather-button, .openweather-button-action, .openweather-menu-button-container, .openweather-button-box { + border: 1px solid transparent; +} + +.openweather-provider { + padding: 0 16px; + font-weight: 500; + border: 1px solid transparent; +} + +.openweather-current-icon, .openweather-current-summary, .openweather-current-summarybox { + background: none; + color: #FFFFFF; +} + +.openweather-current-databox-values { + background: none; + color: rgba(255, 255, 255, 0.4); +} + +.openweather-current-databox-captions { + background: none; + color: rgba(255, 255, 255, 0.4); +} + +.openweather-forecast-icon, .openweather-forecast-summary { + background: none; + color: rgba(255, 255, 255, 0.7); +} + +.openweather-forecast-day, .openweather-forecast-temperature { + background: none; + color: rgba(255, 255, 255, 0.4); +} + +.openweather-sunrise-icon, .openweather-sunset-icon, .openweather-build-icon { + color: rgba(255, 255, 255, 0.7); +} + +.cosmic-dock #dock { + border-radius: 16px !important; + border: none !important; + margin: 6px !important; + background-color: rgba(255, 255, 255, 0.12) !important; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08) !important; +} + +.cosmic-dock #dock .dash-background { + background-color: transparent !important; + margin-bottom: 0 !important; + padding: 0; + box-shadow: none !important; +} + +.cosmic-application-dialog { + border-radius: 12px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08); + background-color: #1a1f26; + color: #FFFFFF; +} + +.cosmic-application-dialog .overview-icon { + color: #FFFFFF; +} + +.cosmic-applications-separator { + background: rgba(255, 255, 255, 0.12); +} + +.cosmic-folder-edit-button { + box-shadow: none; + border-radius: 6px; + border-width: 0; + color: #FFFFFF; + background: rgba(255, 255, 255, 0.04); +} + +.cosmic-folder-edit-button .cosmic-folder-edit-button:hover { + background: rgba(255, 255, 255, 0.12); +} + +.cosmic-applications-icon { + color: rgba(255, 255, 255, 0.7); +} + +.cosmic-applications-folder-title { + color: rgba(255, 255, 255, 0.7); +} + +.cosmic-applications-available { + color: #FFFFFF; +} + +.pop-shell-active-hint { + border-style: solid; + border-color: #FBC02D; + border-radius: 6px; + box-shadow: none; +} + +.pop-shell-overlay { + background-color: rgba(91, 155, 248, 0.3); +} + +.pop-shell-search-element:select { + background: rgba(255, 255, 255, 0.12); + border-radius: 6px; + color: #FFFFFF; +} + +.pop-shell-tab { + border: 1px solid rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +.pop-shell-tab-active { + background: #FBC02D; +} + +.pop-shell-tab-inactive { + background: rgba(251, 192, 45, 0.35); +} + +.pop-shell-tab-urgent { + background: #F44336; +} diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/no-events.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/no-events.svg new file mode 120000 index 0000000..d2fcad0 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/no-events.svg @@ -0,0 +1 @@ +assets/no-events.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/no-notifications.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/no-notifications.svg new file mode 120000 index 0000000..175731c --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/no-notifications.svg @@ -0,0 +1 @@ +assets/no-notifications.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/pad-osd.css b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/pad-osd.css new file mode 100644 index 0000000..31c2377 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/pad-osd.css @@ -0,0 +1,30 @@ +.Leader { + stroke-width: .5 !important; + stroke: #535353; + fill: none !important; +} + +.Button { + stroke-width: .25; + stroke: #ededed; + fill: #ededed; +} + +.Ring { + stroke-width: .5 !important; + stroke: #535353 !important; + fill: none !important; +} + +.Label { + stroke: none !important; + stroke-width: .1 !important; + font-size: .1 !important; + fill: transparent !important; +} + +.TouchStrip, .TouchRing { + stroke-width: .1 !important; + stroke: #ededed !important; + fill: #535353 !important; +} diff --git a/home-config/themes/Lavanda-Sea-Dark/gnome-shell/process-working.svg b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/process-working.svg new file mode 120000 index 0000000..a6586c3 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gnome-shell/process-working.svg @@ -0,0 +1 @@ +assets/process-working.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/apps.rc b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/apps.rc new file mode 100644 index 0000000..530e72f --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/apps.rc @@ -0,0 +1,92 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g. +# custom widgets, programs giving us a chance to alter their UI to fit more with +# the theme or stuff that is supposed to look different, like panels. + +# TODO: This could really look nicer +style "gimp_spin_scale" { + # Spin background + bg[NORMAL] = @base_color + + engine "pixmap" { + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + } + } +} + +style "chrome_gtk_frame" { + ChromeGtkFrame::frame-color = @titlebar_bg_color + ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::frame-gradient-size = 0 +} + +# Disable spin button assets for GimpSpinScale +class "GimpSpinScale" style "gimp_spin_scale" + +# Chromium lets us define some colours and settings for better integration +class "ChromeGtkFrame" style "chrome_gtk_frame" diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/border.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/border.png new file mode 100644 index 0000000..20d503b Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/border.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..ca25ccc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-disabled.png new file mode 100644 index 0000000..6578ba7 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..66e1fdd Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button.png new file mode 100644 index 0000000..3fe12c7 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/button.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-active.png new file mode 100644 index 0000000..b26ab33 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-disabled.png new file mode 100644 index 0000000..5924383 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-hover.png new file mode 100644 index 0000000..4327364 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..c6106a8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-checked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-active.png new file mode 100644 index 0000000..b558f5f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png new file mode 100644 index 0000000..ef9f2c8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-hover.png new file mode 100644 index 0000000..9892b6c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..f7e364a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-mixed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-active.png new file mode 100644 index 0000000..ebab8ae Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png new file mode 100644 index 0000000..6370fc6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png new file mode 100644 index 0000000..a575169 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..3f1f558 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-active.png new file mode 100644 index 0000000..b353d2d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-disabled.png new file mode 100644 index 0000000..6a9d9dd Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-hover.png new file mode 100644 index 0000000..c65ced0 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry.png new file mode 100644 index 0000000..255e3dc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-left-entry.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-active.png new file mode 100644 index 0000000..fa53667 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-disabled.png new file mode 100644 index 0000000..67cfcc7 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-hover.png new file mode 100644 index 0000000..8d643bd Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry.png new file mode 100644 index 0000000..5d23233 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/combo-right-entry.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-active.png new file mode 100644 index 0000000..fc235ea Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-background-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-background-disabled.png new file mode 100644 index 0000000..ce14ba8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-background-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-background.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-background.png new file mode 100644 index 0000000..fdf26ab Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-background.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-disabled.png new file mode 100644 index 0000000..6578ba7 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-hover.png new file mode 100644 index 0000000..5733239 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry.png new file mode 100644 index 0000000..3fe12c7 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/entry.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-active.png new file mode 100644 index 0000000..ca25ccc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-disabled.png new file mode 100644 index 0000000..96f9995 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-hover.png new file mode 100644 index 0000000..66e1fdd Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button.png new file mode 100644 index 0000000..96f9995 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/flat-button.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/focus.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/focus.png new file mode 100644 index 0000000..3e8d13d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/focus.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame-inline.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame-inline.png new file mode 100644 index 0000000..3bf2f90 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame-inline.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame-notebook.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame-notebook.png new file mode 100644 index 0000000..1562a81 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame-notebook.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..1562a81 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/frame.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz-active.png new file mode 100644 index 0000000..f1c519e Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz-hover.png new file mode 100644 index 0000000..e7e40d6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz.png new file mode 100644 index 0000000..ef1738d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-horz.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert-active.png new file mode 100644 index 0000000..0cec1dc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert-hover.png new file mode 100644 index 0000000..600fb08 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert.png new file mode 100644 index 0000000..377fdf0 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/handle-vert.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png new file mode 100644 index 0000000..d107a9d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-checked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..caf764a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png new file mode 100644 index 0000000..a075800 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-mixed.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-mixed.png new file mode 100644 index 0000000..27d76b4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-mixed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png new file mode 100644 index 0000000..82a4787 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..899f034 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png new file mode 100644 index 0000000..64811df Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-checked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..9b8474d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png new file mode 100644 index 0000000..a075800 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-mixed.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-mixed.png new file mode 100644 index 0000000..27d76b4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-mixed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png new file mode 100644 index 0000000..82a4787 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-unchecked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..899f034 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-alt-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-alt-disabled.png new file mode 100644 index 0000000..11a6985 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-alt-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-alt.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-alt.png new file mode 100644 index 0000000..974686c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-alt.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-disabled.png new file mode 100644 index 0000000..8aa6331 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down.png new file mode 100644 index 0000000..2f28e41 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-down.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-alt-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-alt-disabled.png new file mode 100644 index 0000000..44e26b6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-alt-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-alt.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-alt.png new file mode 100644 index 0000000..529b5e4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-alt.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-disabled.png new file mode 100644 index 0000000..ff7c852 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-semi.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-semi.png new file mode 100644 index 0000000..955e801 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left-semi.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left.png new file mode 100644 index 0000000..c9cb53a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-left.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-alt-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-alt-disabled.png new file mode 100644 index 0000000..42e5877 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-alt-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-alt.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-alt.png new file mode 100644 index 0000000..d740506 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-alt.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-disabled.png new file mode 100644 index 0000000..e8e14e8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-semi.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-semi.png new file mode 100644 index 0000000..d7d5af0 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right-semi.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right.png new file mode 100644 index 0000000..6cf201d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-right.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-alt-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-alt-disabled.png new file mode 100644 index 0000000..56a417c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-alt-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-alt.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-alt.png new file mode 100644 index 0000000..5df7be8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-alt.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-disabled.png new file mode 100644 index 0000000..d3ae511 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up.png new file mode 100644 index 0000000..a99f7cf Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/pan-up.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/progressbar-progress.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/progressbar-progress.png new file mode 100644 index 0000000..8426704 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/progressbar-progress.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/progressbar-trough.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/progressbar-trough.png new file mode 100644 index 0000000..0ab5001 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/progressbar-trough.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-active.png new file mode 100644 index 0000000..ede0f7a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-disabled.png new file mode 100644 index 0000000..108d852 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-hover.png new file mode 100644 index 0000000..672b010 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..7209a41 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-checked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-active.png new file mode 100644 index 0000000..b558f5f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-disabled.png new file mode 100644 index 0000000..ef9f2c8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-hover.png new file mode 100644 index 0000000..9892b6c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed.png new file mode 100644 index 0000000..f7e364a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-mixed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-active.png new file mode 100644 index 0000000..ebab8ae Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-disabled.png new file mode 100644 index 0000000..6370fc6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-hover.png new file mode 100644 index 0000000..a575169 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..3f1f558 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/radio-unchecked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough-active.png new file mode 100644 index 0000000..1a8017a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png new file mode 100644 index 0000000..10cf142 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough.png new file mode 100644 index 0000000..8a0adf1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-horz-trough.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-active.png new file mode 100644 index 0000000..e532b51 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-disabled.png new file mode 100644 index 0000000..e127ead Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-hover.png new file mode 100644 index 0000000..e4b9fc0 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider.png new file mode 100644 index 0000000..f80b4c6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough-active.png new file mode 100644 index 0000000..72e150c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png new file mode 100644 index 0000000..7e38ad6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough.png new file mode 100644 index 0000000..6c6d336 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scale-vert-trough.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png new file mode 100644 index 0000000..9b3802a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png new file mode 100644 index 0000000..a0e78e2 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png new file mode 100644 index 0000000..c44bf53 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider.png new file mode 100644 index 0000000..7d45347 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-trough.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-trough.png new file mode 100644 index 0000000..7ee3682 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-horz-trough.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png new file mode 100644 index 0000000..86a7e94 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png new file mode 100644 index 0000000..e1bd86a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png new file mode 100644 index 0000000..0eab6ab Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png new file mode 100644 index 0000000..bd8227a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png new file mode 100644 index 0000000..71b8d3b Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png new file mode 100644 index 0000000..f219ede Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png new file mode 100644 index 0000000..e8cf326 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png new file mode 100644 index 0000000..fc02be4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png new file mode 100644 index 0000000..8ab9c68 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png new file mode 100644 index 0000000..a7f7881 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-active.png new file mode 100644 index 0000000..fde3839 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png new file mode 100644 index 0000000..19139fd Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-hover.png new file mode 100644 index 0000000..64e8a4c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down.png new file mode 100644 index 0000000..020deb5 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-down.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-active.png new file mode 100644 index 0000000..574f6e4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png new file mode 100644 index 0000000..dcf55af Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-hover.png new file mode 100644 index 0000000..4631e6f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up.png new file mode 100644 index 0000000..f9b8eb6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-ltr-up.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-active.png new file mode 100644 index 0000000..8bb4149 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png new file mode 100644 index 0000000..4c5e3b1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-hover.png new file mode 100644 index 0000000..af6410e Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down.png new file mode 100644 index 0000000..7eae428 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-down.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-active.png new file mode 100644 index 0000000..e9547ee Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png new file mode 100644 index 0000000..e229de4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-hover.png new file mode 100644 index 0000000..ed0c0ce Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up.png new file mode 100644 index 0000000..e3a59e8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/spin-rtl-up.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/tab.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/tab.png new file mode 100644 index 0000000..ab3756e Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/tab.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button-active.png new file mode 100644 index 0000000..45da44f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png new file mode 100644 index 0000000..a240cb6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button.png new file mode 100644 index 0000000..cc77fcc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-ltr-button.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button-active.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button-active.png new file mode 100644 index 0000000..a5a46b9 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png new file mode 100644 index 0000000..810a277 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button.png b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button.png new file mode 100644 index 0000000..cc77fcc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/assets/treeview-rtl-button.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/gtkrc b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/gtkrc new file mode 100644 index 0000000..810ceb7 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/gtkrc @@ -0,0 +1,36 @@ +# Based on Bridge by ScionicSpectre and Adwaita by GNOME +# vim:set ts=2 sw=2 sts=2 ai et: +# +# This is the GTK 2 version of Materia. It's whole purpose is to look as the +# GTK 3 version as much as possible until GTK 2 dies completely. +# +# Note: comments for explaining styles are on the bottom of each file beside the +# widget matches. + +# Declare the colours used throughout the theme. +# There shouldn't be any fiddling with them in the theme files themselves in +# order to not mess up the dark theme. + +# Text/base +gtk-color-scheme = "text_color:#FFFFFF\nbase_color:#22262c" +# Foreground/background +gtk-color-scheme = "fg_color:#FFFFFF\nbg_color:#22262c" +# Selected foreground/background +gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#7b88ff" +# Titlebar foreground/background +gtk-color-scheme = "titlebar_fg_color:#FFFFFF\ntitlebar_bg_color:#1b1e24" +# Menus +gtk-color-scheme = "menu_color:#2d3036" +# Tooltips foreground/background +gtk-color-scheme = "tooltip_fg_color:#FFFFFF\ntooltip_bg_color:#2d3036" +# Links +gtk-color-scheme = "link_color:#8AB4F8\nvisited_link_color:#CE93D8" + +# Set GTK settings +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +# And hand over the control to the theme files +include "main.rc" +include "apps.rc" +include "hacks.rc" diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/hacks.rc b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/hacks.rc new file mode 100644 index 0000000..c288da3 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/hacks.rc @@ -0,0 +1,36 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file contains horrible hacks to make this theme work with some programs +# This is mostly due to the limitations of GTK 2 but sometimes its the fault of +# the programs themselves. Not going to point fingers. +# +# Either way, it's a WONTFIX for both, hence this horrible file. + +style "toplevel_hack" { + engine "adwaita" {} +} + +style "chrome_entry" { + base[NORMAL] = @base_color + base[INSENSITIVE] = @base_color +} + +style "vim_notebook" { + bg[NORMAL] = @base_color + bg[ACTIVE] = @bg_color +} + +# Vim puts an eventbox between the tab and the label and colours it, +# we need to handle that +widget "vim-main-window*GtkNotebook.GtkEventBox" style "vim_notebook" + +# (he)xchat input box +class "SexySpellEntry" style:highest "normal_entry" + +# Chromium uses base as the fill colour of its own entries +# This would be fine but GTK uses it to fill the surrounding space, so its set to bg +# That results in Chromium using it for the fill, so we need to handle that +widget_class "*Chrom*" style "chrome_entry" + +# Hack to be able to match widgets in LibreOffice +class "GtkWindow" style "toplevel_hack" diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/main.rc b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/main.rc new file mode 100644 index 0000000..8349b0e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-2.0/main.rc @@ -0,0 +1,2708 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This is the main theme file, handling all the default widgets and theme +# properties. Since GTK 2 is old, we need to overcome some of its limitations, +# which is also mostly done in this file. Sadly not all of them can be overcome +# so there will always be a visible difference between the GTK 2 and 3 theme. + +style "default" { + xthickness = 1 + ythickness = 1 + + #################### + # Style Properties # + #################### + + GtkWidget::focus-padding = 0 + GtkWidget::focus-line-width = 2 + GtkWidget::focus-line-pattern = "\2\1" + + GtkToolbar::space-size = 5 # 1 + 2*2 (separator + margins) + GtkToolbar::internal-padding = 2 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 4 + GtkWidget::tooltip-alpha = 230 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @visited_link_color + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkHTML::vlink-color = @visited_link_color + GtkIMHtml::hyperlink-color = @link_color + GtkIMHtml::hyperlink-visited-color = @visited_link_color + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 3 + + GtkButton::child-displacement-y = 0 + + GtkButton::default-border = {0, 0, 0, 0} + GtkButton::default-outside-border = {0, 0, 0, 0} + GtkButton::inner-border = {0, 0, 0, 0} + + GtkEntry::state-hint = 1 + GtkEntry::inner-border = {0, 0, 0, 0} + + GtkPaned::handle-size = 8 + GtkHPaned::handle-size = 8 + GtkVPaned::handle-size = 8 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 17 + GtkRange::stepper-size = 0 + GtkRange::activate-slider = 1 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 # 24 + 2*4 (margins) + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 24 + GtkScale::slider_width = 24 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 4 + GtkProgressBar::min-vertical-bar-width = 4 + GtkProgressBar::xspacing = 4 + GtkProgressBar::yspacing = 4 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + # TODO: find out what this comment means: + # ( every window is misaligned for the sake of menus ): + GtkMenuBar::internal-padding = 0 + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 4 + GtkMenu::double-arrows = 0 + GtkMenuItem::arrow-scaling = 1 + GtkMenuItem::toggle-spacing = 12 + + GtkCheckButton::indicator-size = 24 + GtkCheckButton::indicator_spacing = 2 + GtkOptionMenu::indicator_spacing = {8, 8, 4, 4} + + GtkTreeView::expander-size = 16 + GtkTreeView::vertical-separator = 0 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 0 + # Set this because some apps read it + GtkTreeView::odd-row-color = @base_color + GtkTreeView::even-row-color = @base_color + + GtkExpander::expander-size = 16 + + GtkNotebook::tab-overlap = 0 + + ########## + # Colors # + ########## + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[SELECTED] = mix (0.24, @selected_bg_color, @bg_color) + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = @bg_color + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = mix (0.5, @fg_color, @bg_color) + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = mix (0.5, @text_color, @base_color) + text[ACTIVE] = @text_color + + base[NORMAL] = @base_color + base[PRELIGHT] = mix (0.08, @text_color, @base_color) + base[SELECTED] = mix (0.24, @selected_bg_color, @base_color) + base[INSENSITIVE] = mix (0.5, @base_color, @bg_color) + base[ACTIVE] = mix (0.24, @selected_bg_color, @base_color) + + # For succinctness, all reasonable pixmap options remain here + + # Draw frame around menu in a non-compositied environment + # This needs to go before pixmap because we need to override some stuff + engine "adwaita" {} + + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-disabled.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-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-active.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-disabled.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-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked-active.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-disabled.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-active.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-disabled.png" + overlay_stretch = FALSE + } + + ########## + # Arrows # + ########## + + # Overrides + + # Disable arrows in spinbuttons + image { + function = ARROW + detail = "spinbutton" + } + + # Disable arrows for qt in scrollbars + + image { + function = ARROW + detail = "vscrollbar" + } + + image { + function = ARROW + detail = "hscrollbar" + } + + # Menu arrows + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/pan-left-disabled.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/pan-right-disabled.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_up" + overlay_file = "assets/pan-up-disabled.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_down" + overlay_file = "assets/pan-down-disabled.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + # Regular arrows + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-left-alt.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-left-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-right-alt.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-right-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + ###################### + # Option Menu Arrows # + ###################### + + image { + function = TAB + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + } + + ######### + # Lines # + ######### + + image { + function = VLINE + file = "assets/border.png" + border = {1, 0, 0, 0} + } + + image { + function = HLINE + file = "assets/border.png" + border = {0, 0, 1, 0} + } + + ######### + # Focus # + ######### + + image { + function = FOCUS + file = "assets/focus.png" + border = {5, 5, 5, 5} # Super strange, {4, 4, 4, 4} does not work properly... + stretch = TRUE + } + + ########### + # Handles # + ########### + + image { + function = HANDLE + detail = "handlebox" + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + } + + image { + function = HANDLE + state = NORMAL + overlay_file = "assets/handle-horz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = PRELIGHT + overlay_file = "assets/handle-horz-hover.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = ACTIVE + overlay_file = "assets/handle-horz-active.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = NORMAL + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = HANDLE + state = PRELIGHT + overlay_file = "assets/handle-vert-hover.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = HANDLE + state = ACTIVE + overlay_file = "assets/handle-vert-active.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = RESIZE_GRIP + } + + ############# + # Expanders # + ############# + + image { + function = EXPANDER + expander_style = EXPANDED + state = NORMAL + file = "assets/pan-down-alt.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = PRELIGHT + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = ACTIVE + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = INSENSITIVE + file = "assets/pan-down-alt-disabled.png" + } + + # LTR + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-right-alt.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-right-alt-disabled.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-right-semi.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-right-semi.png" + direction = LTR + } + + # RTL + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-left-alt.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-left-alt-disabled.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-left-semi.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-left-semi.png" + direction = RTL + } + + ############# + # Notebooks # + ############# + + # Left + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 1, 0, 0} + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + gap_side = RIGHT + } + + # Right + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {1, 0, 0, 0} + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + gap_side = LEFT + } + + # Up + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 0, 1} + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + gap_side = BOTTOM + } + + # Down + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 1, 0} + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + gap_side = TOP + } + + # Inner frame + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {1, 0, 0, 0} + gap_side = LEFT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 1, 0, 0} + gap_side = RIGHT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 1, 0} + gap_side = TOP + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 0, 1} + gap_side = BOTTOM + } + + # Standalone frame + image { + function = BOX + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-horz-trough.png" + border = {0, 0, 1, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-ltr-trough.png" + border = {1, 0, 0, 0} + orientation = VERTICAL + direction = LTR + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-rtl-trough.png" + border = {0, 1, 0, 0} + orientation = VERTICAL + direction = RTL + } + + # Horizontal sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-horz-slider.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-horz-slider-hover.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-active.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-disabled.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + # Vertical sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-hover.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-active.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-disabled.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + # RTL + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-hover.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-active.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-disabled.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + ########## + # Scales # + ########## + + # Troughs, overrided later on. We set them here too because some widgets + # don't specify their orientation. + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-horz-trough-disabled.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-horz-trough-disabled.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-vert-trough-disabled.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-vert-trough-disabled.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + detail = "hscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "hscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "hscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "hscale" + file = "assets/scale-slider-disabled.png" + } + + image { + function = SLIDER + state = NORMAL + detail = "vscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "vscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "vscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "vscale" + file = "assets/scale-slider-disabled.png" + } + + ########### + # Menubar # + ########### + + image { + function = BOX + detail = "menubar" + file = "assets/border.png" + border = {0, 0, 0, 1} + } + + ######### + # Menus # + ######### + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_up" + file = "assets/border.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_up" + file = "assets/border.png" + border = {0, 0, 0, 1} + } + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_down" + file = "assets/border.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_down" + file = "assets/border.png" + border = {0, 0, 1, 0} + } + + ########### + # Entries # + ########### + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.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" + } + + ######### + # Spins # + ######### + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/spin-ltr-up.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-ltr-up-hover.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-active.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-disabled.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/spin-rtl-up.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-disabled.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/spin-ltr-down.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-ltr-down-hover.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-active.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-disabled.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/spin-rtl-down.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-rtl-down-hover.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-active.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-disabled.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + direction = RTL + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-progress.png" + stretch = TRUE + border = {0, 0, 0, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-progress.png" + stretch = TRUE + border = {0, 0, 0, 0} + orientation = VERTICAL + } + + ############# + # Treeviews # + ############# + + # Disable active the column highlight + # We need to match specific cells or we break stuff + # Looking at you deadbeef + + image { + function = FLAT_BOX + detail = "cell_even_sorted" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "cell_odd_sorted" + state = NORMAL + } + + # Disable all the other shadows + # This prevents the Raleigh effect + image { + function = SHADOW + } + } +} + +style "menubar" { + bg[NORMAL] = @titlebar_bg_color + fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color) + fg[PRELIGHT] = @titlebar_fg_color + fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color) + bg[INSENSITIVE] = @bg_color + # Needed to fix Firefox's menubar text + bg[SELECTED] = mix(0.12, @titlebar_fg_color, @titlebar_bg_color) + fg[SELECTED] = @titlebar_fg_color +} + +style "menubar_item" { + xthickness = 3 + ythickness = 4 + + fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color) + bg[PRELIGHT] = mix(0.12, @titlebar_fg_color, @titlebar_bg_color) + fg[PRELIGHT] = @titlebar_fg_color + fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color) +} + +style "menu" { + xthickness = 0 + ythickness = 0 + + bg[NORMAL] = @menu_color + bg[INSENSITIVE] = @menu_color + bg[PRELIGHT] = @menu_color + bg[SELECTED] = mix(0.08, @fg_color, @menu_color) +} + +style "menu_item" { + xthickness = 4 + ythickness = 4 + + bg[PRELIGHT] = mix(0.08, @fg_color, @menu_color) + fg[PRELIGHT] = @fg_color + # Chromium uses this setting + bg[SELECTED] = mix(0.08, @fg_color, @menu_color) + text[SELECTED] = @fg_color + # Some widgets use text, we need to handle that + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + + # Unfortunately we can't tell regular and menu checks/radios apart + # Without the heirarchy + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed-disabled.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.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-disabled.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.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-disabled.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed-disabled.png" + overlay_stretch = FALSE + } + } +} + +style "separator_menu_item" { + xthickness = 0 + ythickness = 2 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + border = {0, 0, 0, 1} + } + } +} + +style "button_label" { + # fg[NORMAL] = mix(0.7, @fg_color, @bg_color) + # fg[INSENSITIVE] = mix(0.3, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "normal_button_label" { + # fg[NORMAL] = @fg_color + # fg[INSENSITIVE] = mix(0.5, @fg_color, @bg_color) + + font_name = "Regular" +} + +style "button" { + xthickness = 6 + ythickness = 6 + + # For the sake of sanity style buttons this way + engine "pixmap" { + + ########### + # Buttons # + ########### + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/button-hover.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/button-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + } +} + +style "link_button" { + # Disable the button effect, leave just the link + engine "pixmap" { + image { + function = BOX + } + } +} + +style "entry" { + base[NORMAL] = @bg_color + base[SELECTED] = mix (0.24, @selected_bg_color, @bg_color) + base[INSENSITIVE] = @bg_color + base[ACTIVE] = mix (0.24, @selected_bg_color, @bg_color) + + # We set this same as the border of the border of the entry + # This way there's no overlap + xthickness = 6 + ythickness = 6 +} + +style "combobox" { + xthickness = 6 + ythickness = 6 + + # This affects only the button beside an entry + GtkButton::inner-border = {0, 0, 0, 0} + + # For the sake of sanity style buttons this way + engine "pixmap" { + + ########### + # Buttons # + ########### + + image { + function = BOX + state = NORMAL + file = "assets/entry.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/entry-hover.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/entry-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/entry-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + } +} + +style "combobox_cellview" { + # text[NORMAL] = mix(0.7, @fg_color, @bg_color) + # text[INSENSITIVE] = mix(0.3, @fg_color, @bg_color) +} + +style "combobox_entry" { + # Since one side of the button is missing, we need to shift the arrow a little to the right + GtkButton::inner-border = {0, 2, 0, 0} + + base[NORMAL] = @base_color + base[ACTIVE] = @base_color + + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-left-entry.png" + border = {6, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-left-entry-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-left-entry-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-right-entry.png" + border = {6, 6, 6, 6} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-right-entry-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-right-entry-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + direction = RTL + } + + ############## + # LTR button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-right-entry.png" + border = {0, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-right-entry-hover.png" + border = {0, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-right-entry-active.png" + border = {0, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-right-entry-disabled.png" + border = {0, 6, 6, 6} + stretch = TRUE + direction = LTR + } + + ############## + # RTL button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-left-entry.png" + border = {6, 0, 6, 6} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-left-entry-hover.png" + border = {6, 0, 6, 6} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-left-entry-active.png" + border = {6, 0, 6, 6} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-left-entry-disabled.png" + border = {6, 0, 6, 6} + stretch = TRUE + direction = RTL + } + } +} + +style "combo_button_padding" { + # Since one side of the button is missing, we need to shift the arrow a + # little to the right. + # This is the same thing we've done above but the combo, unlike the combobox, + # uses padding the same way as a button. + GtkButton::inner-border = {3, 6, 3, 3} +} + +style "notebook" { + xthickness = 3 + ythickness = 3 + bg[NORMAL] = @base_color +} + +style "notebook_tab_label" { + fg[ACTIVE] = mix(0.7, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "notebook_viewport" { + bg[NORMAL] = @base_color +} + +style "notebook_bg" { + bg[NORMAL] = @base_color + bg[PRELIGHT] = @base_color + bg[INSENSITIVE] = @base_color +} + +style "notebook_entry" { + base[NORMAL] = @base_color + base[SELECTED] = mix (0.24, @selected_bg_color, @base_color) + base[INSENSITIVE] = @base_color + base[ACTIVE] = mix (0.24, @selected_bg_color, @base_color) +} + +style "normal_bg" { + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[INSENSITIVE] = @bg_color +} + +style "normal_entry" { + base[NORMAL] = @bg_color + base[SELECTED] = mix (0.24, @selected_bg_color, @bg_color) + base[INSENSITIVE] = @bg_color + base[ACTIVE] = mix (0.24, @selected_bg_color, @bg_color) +} + +style "textview" { + bg[NORMAL] = @base_color +} + +style "scale_horz" { + engine "pixmap" { + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {6, 6, 0, 0} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {6, 6, 0, 0} + stretch = TRUE + } + } +} + +style "scale_vert" { + engine "pixmap" { + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 6, 6} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 6, 6} + stretch = TRUE + } + } +} + +style "progressbar" { + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + image { + function = BOX + detail = "trough" + file = "assets/progressbar-trough.png" + border = {0, 0, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/progressbar-trough.png" + border = {0, 0, 0, 0} + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "treeview_header" { + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = mix(0.7, @fg_color, @base_color) + fg[PRELIGHT] = @fg_color + + font_name = "Medium" + + GtkButton::inner-border = {4, 4, 0, 2} + + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/treeview-ltr-button.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-ltr-button-hover.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-ltr-button-active.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = NORMAL + file = "assets/treeview-rtl-button.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-rtl-button-hover.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-rtl-button-active.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + } +} + +style "scrolled_window" { + engine "pixmap" { + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + } +} + +style "frame" { + engine "pixmap" { + image { + function = SHADOW + shadow = NONE + } + + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_start_file = "assets/border.png" + gap_end_file = "assets/border.png" + } + } +} + +style "tool_button" { + GtkButton::inner-border = {2, 2, 2, 2} + + # For the sake of sanity style buttons this way + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/flat-button.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/flat-button-hover.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/flat-button-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/flat-button-active.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = OUT + file = "assets/flat-button-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = IN + file = "assets/button-disabled.png" + border = {6, 6, 6, 6} + stretch = TRUE + } + } +} + +style "toolbar_separator" { + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 1 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + } + } +} + +style "inline_toolbar" { + # GtkToolbar::button-relief = GTK_RELIEF_NORMAL + bg[NORMAL] = @base_color + + engine "pixmap" { + image { + function = BOX + file = "assets/frame-inline.png" + border = {1, 1, 0, 1} + stretch = TRUE + } + } +} + +style "tooltip" { + xthickness = 8 + ythickness = 8 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color +} + +style "disable_text_shadow" { + engine "murrine" { + textstyle = 0 + } +} + +style "disable_separator" { + xthickness = 0 + ythickness = 0 + + GtkWidget::wide-separators = 1 +} + +# Default style, containing theme properties and trying to match every widget as +# much as possible, which is not only faster than trying to match every widget +# by its own but also less bug-prune and more consistent. However there is some +# widget specific stuff that needs to be taken care of, which is the point of +# every other style below. +class "GtkWidget" style "default" + +###################################### +# Override padding, style and colour # +###################################### + +class "GtkButton" style "button" +class "GtkLinkButton" style "link_button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkNotebook" style "notebook" +class "GtkHScale" style "scale_horz" +class "GtkVScale" style "scale_vert" +class "GtkProgressBar" style "progressbar" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkSeparatorToolItem" style "toolbar_separator" +class "GtkMenuBar" style "menubar" +class "GtkMenu" style "menu" +class "GtkTextView" style "textview" + +# Menu and menubar items +widget_class "**" style "menu_item" +widget_class "*.*" style "menubar_item" +widget_class "**" style "separator_menu_item" + +# Treeview buttons +widget_class "***" style "treeview_header" + +# Give the file chooser toolbar a border +widget_class "**" style "inline_toolbar" + +# Fix padding on regular comboboxes +widget_class "*." style "combobox" +widget_class "*" style "combobox" + +# And disable separators on them +widget_class "*.*" style "disable_separator" +widget_class "**" style "disable_separator" +widget_class "**" style "disable_separator" + +# Join together the ComboBoxEntry entry and button +widget_class "**" style "combobox_entry" + +# Join the Combo entry and button +widget_class "**" style "combobox_entry" + +# Tweak the padding on the button a little bit because it +# uses it a bit differently +widget_class "*." style "combo_button_padding" + +# Alas we cannot do the same for ComboBoxText because there +# isn't a way to apply the style to only the comboboxes that +# have an entry inside + +# Tool buttons have different styles +widget_class "**" style "tool_button" +widget_class "**.*" style "tool_button" + +# Notebooks +widget_class "*." style "notebook_tab_label" +widget_class "*.." style "notebook_tab_label" + +# Notebooks are white, act accordingly +widget_class "**" style "notebook_entry" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "***" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "*.*" style "notebook_bg" + +# However, stuff inside eventboxes inside notebooks is grey +# again, react +widget_class "***" style "normal_entry" +widget_class "***" style "normal_bg" +widget_class "***" style "normal_bg" + +# Button labels +widget_class "*." style "button_label" + +# Normalize button labels +widget_class "*." style "normal_button_label" +widget_class "*." style "normal_button_label" + +# ComboBoxes tend to draw the button label with text[] +# instead of fg[], we need to fix that +widget_class "**" style "combobox_cellview" + +# Disable white text shadows +widget_class "*" style "disable_text_shadow" +widget_class "*" style "disable_text_shadow" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltip" diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic.svg new file mode 100644 index 0000000..7b89e88 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic@2.svg new file mode 100644 index 0000000..17e3c4a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic@2.svg @@ -0,0 +1,44 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..b4808a6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic@2.svg new file mode 100644 index 0000000..3ea0541 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic@2.svg @@ -0,0 +1,44 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/close-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/close-symbolic.svg new file mode 100644 index 0000000..06201c3 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/close-symbolic.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/close-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/close-symbolic@2.svg new file mode 100644 index 0000000..a26e6ff --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/close-symbolic@2.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/cursor-handle-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/cursor-handle-symbolic.svg new file mode 100644 index 0000000..e2a252b --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/cursor-handle-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/maximize-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/maximize-symbolic.svg new file mode 100644 index 0000000..39316eb --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/maximize-symbolic.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/maximize-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/maximize-symbolic@2.svg new file mode 100644 index 0000000..8095f75 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/maximize-symbolic@2.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/minimize-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/minimize-symbolic.svg new file mode 100644 index 0000000..f3683b9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/minimize-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/minimize-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/minimize-symbolic@2.svg new file mode 100644 index 0000000..741534b --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/minimize-symbolic@2.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic.svg new file mode 100644 index 0000000..67beb46 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic.svg @@ -0,0 +1,42 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic@2.svg new file mode 100644 index 0000000..bf51d9e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic@2.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg new file mode 120000 index 0000000..79b7355 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg @@ -0,0 +1 @@ +checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg new file mode 120000 index 0000000..b68859d --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg @@ -0,0 +1 @@ +checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg new file mode 100644 index 0000000..de0d789 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg new file mode 100644 index 0000000..7f0235f --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg @@ -0,0 +1,47 @@ + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic.svg new file mode 100644 index 0000000..4b00bc1 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg new file mode 100644 index 0000000..37d9c04 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg new file mode 100644 index 0000000..1bc5cb6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic.svg new file mode 100644 index 0000000..4759e32 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic@2.svg new file mode 100644 index 0000000..a44f5c9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic@2.svg @@ -0,0 +1,44 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..d621934 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,42 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg new file mode 100644 index 0000000..91c7006 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic.svg new file mode 100644 index 0000000..f2c9cf9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic@2.svg new file mode 100644 index 0000000..a06db4c --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic@2.svg @@ -0,0 +1,39 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg new file mode 120000 index 0000000..86dfcec --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg @@ -0,0 +1 @@ +small-checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg new file mode 120000 index 0000000..bafb558 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg @@ -0,0 +1 @@ +small-checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/unmaximize-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/unmaximize-symbolic.svg new file mode 100644 index 0000000..492d47a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/unmaximize-symbolic.svg @@ -0,0 +1,46 @@ + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/unmaximize-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/unmaximize-symbolic@2.svg new file mode 100644 index 0000000..85f4f3a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scalable/unmaximize-symbolic@2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png new file mode 100644 index 0000000..71f7669 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png new file mode 100644 index 0000000..b498a2a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png new file mode 100644 index 0000000..e7703d6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png new file mode 100644 index 0000000..822cb84 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 0000000..b6fd776 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 0000000..fe0f72a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png new file mode 100644 index 0000000..aa938e6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 0000000..06dfeb3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png new file mode 100644 index 0000000..bf71dcf Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png new file mode 100644 index 0000000..1cb2a90 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png new file mode 100644 index 0000000..e8f3de1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png new file mode 100644 index 0000000..f4548a1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 0000000..361a345 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 0000000..6d9642d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png new file mode 100644 index 0000000..709d382 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 0000000..0a00e73 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png new file mode 100644 index 0000000..8bd197d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png new file mode 100644 index 0000000..9985499 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png new file mode 100644 index 0000000..c88d39f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png new file mode 100644 index 0000000..94e4f36 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 0000000..c3ac16f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 0000000..8589740 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png new file mode 100644 index 0000000..e25dbc4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 0000000..9a6d436 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png new file mode 100644 index 0000000..91fddf3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png new file mode 100644 index 0000000..25fc18c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png new file mode 100644 index 0000000..e7910b9 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png new file mode 100644 index 0000000..3952f2c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 0000000..5730e0d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 0000000..ecacf01 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png new file mode 100644 index 0000000..4b04f60 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 0000000..2dd58bf Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png new file mode 100644 index 0000000..edc667f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png new file mode 100644 index 0000000..2099abc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png new file mode 100644 index 0000000..a4a9740 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 0000000..b6c4042 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png new file mode 100644 index 0000000..2388f3c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..e94c123 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 0000000..3f3200a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 0000000..938a24d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/gtk-dark.css b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..f30e8af --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/gtk-dark.css @@ -0,0 +1,8636 @@ +@keyframes ripple { + to { + background-size: 1000% 1000%; + } +} + +@keyframes ripple-on-slider { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes ripple-on-headerbar { + from { + background-image: radial-gradient(circle, #5b9bf8 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #5b9bf8 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #F44336; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 6; + -GtkDialog-action-area-border: 6; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 6px; + -gtk-secondary-caret-color: #5b9bf8; +} + +*:focus { + outline-color: alpha(currentColor, 0.1); +} + +calendar.raven-calendar:selected, box.vertical > widget > widget:selected, calendar:selected, modelbutton.flat:selected, +.menuitem.button.flat:selected { + color: #FFFFFF; + background-color: alpha(currentColor, 0.1); +} + +.nemo-window .view selection, .nemo-window .view:selected, XfdesktopIconView.view:active, .nautilus-window notebook .view:not(treeview) selection, .nautilus-window notebook .view:not(treeview):selected, .nautilus-window flowboxchild:selected .icon-item-background, .csd treeview.view:selected, flowbox flowboxchild:selected, .background.csd .view:selected { + color: #31c4b6; + background-color: rgba(49, 196, 182, 0.2); +} + +.nemo-window .nemo-window-pane widget.entry:selected, window.background.csd evview.view.content-view:selected, window.background.csd evview.view.content-view:selected:backdrop, .nautilus-window.background.csd notebook widget.view:selected, spinbutton.vertical selection, spinbutton:not(.vertical) selection, +entry selection, label selection, textview text selection:focus, textview text selection, widget.view:selected, .view:selected { + color: #FFFFFF; + background-color: #5b9bf8; +} + +.linked:not(.vertical) > button, .linked:not(.vertical) > spinbutton.vertical, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry { + border-radius: 0; +} + +.linked:not(.vertical) > button:not(:first-child), .linked:not(.vertical) > spinbutton.vertical:not(:first-child), .linked:not(.vertical) > spinbutton:not(:first-child):not(.vertical), .linked:not(.vertical) > entry:not(:first-child) { + margin-left: 1px; +} + +.linked:not(.vertical) > button:first-child, .linked:not(.vertical) > spinbutton.vertical:first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +.linked:not(.vertical) > button:last-child, .linked:not(.vertical) > spinbutton.vertical:last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.linked:not(.vertical) > button:only-child, .linked:not(.vertical) > spinbutton.vertical:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child { + border-radius: 6px; +} + +.linked.vertical > button, .linked.vertical > spinbutton.vertical, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry { + border-radius: 0; +} + +.linked.vertical > button:not(:first-child), .linked.vertical > spinbutton.vertical:not(:first-child), .linked.vertical > spinbutton:not(:first-child):not(.vertical), .linked.vertical > entry:not(:first-child) { + margin-top: 1px; +} + +.linked.vertical > button:first-child, .linked.vertical > spinbutton.vertical:first-child, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +.linked.vertical > button:last-child, .linked.vertical > spinbutton.vertical:last-child, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +.linked.vertical > button:only-child, .linked.vertical > spinbutton.vertical:only-child, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child { + border-radius: 6px; +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #22262c; + color: #FFFFFF; +} + +.background.csd { + border-radius: 0 0 12px 12px; +} + +.background.maximized, .background.solid-csd { + border-radius: 0; +} + +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #22262c; + color: #FFFFFF; +} + +.gtkstyle-fallback:hover { + background-color: #171a1e; + color: #FFFFFF; +} + +.gtkstyle-fallback:active { + background-color: #0c0d0f; + color: #FFFFFF; +} + +.gtkstyle-fallback:disabled { + background-color: #22262c; + color: rgba(255, 255, 255, 0.4); +} + +.gtkstyle-fallback:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.view { + background-color: #25292f; + color: #FFFFFF; +} + +.view:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +.view:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.view:selected:hover { + box-shadow: none; +} + +window.background.csd > stack.view { + border-radius: 0 0 12px 12px; +} + +textview text { + background-color: #25292f; +} + +textview border { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +iconview:hover, iconview:selected { + border-radius: 6px; +} + +.rubberband, +rubberband, +XfdesktopIconView.view .rubberband, +.content-view rubberband, +.content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view .rubberband, +.content-view treeview.view rubberband, +.content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view .rubberband, +treeview.view .content-view rubberband, +treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view .rubberband, +treeview.view rubberband, +treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .rubberband, +treeview.view .content-view rubberband, +treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view .rubberband, +.content-view treeview.view rubberband, +.content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view .rubberband, +.content-view treeview.view rubberband, +.content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view .rubberband, +treeview.view .content-view rubberband, +treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view .content-view .rubberband, +.content-view treeview.view .rubberband, +treeview.view flowbox rubberband, +treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox treeview.view rubberband, +treeview.view .content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox treeview.view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox .rubberband, +flowbox treeview.view rubberband, +flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +flowbox .content-view treeview.view flowbox rubberband, +flowbox .content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view flowbox .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view .rubberband, +flowbox rubberband, +flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .rubberband, +flowbox .content-view rubberband, +flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view .rubberband, +.content-view flowbox rubberband, +.content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox .content-view .rubberband, +.content-view flowbox .rubberband, +flowbox treeview.view rubberband, +flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +flowbox .content-view treeview.view flowbox rubberband, +flowbox .content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view flowbox .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view .rubberband, +treeview.view flowbox rubberband, +treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox treeview.view rubberband, +treeview.view .content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox treeview.view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox .rubberband, +treeview.view flowbox rubberband, +treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox treeview.view rubberband, +treeview.view .content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox treeview.view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox .rubberband, +flowbox treeview.view rubberband, +flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +flowbox .content-view treeview.view flowbox rubberband, +flowbox .content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view flowbox .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view .rubberband { + border: 1px solid #5b9bf8; + background-color: rgba(91, 155, 248, 0.3); +} + +flowbox flowboxchild { + padding: 3px; + border-radius: 6px; + color: #FFFFFF; +} + +flowbox flowboxchild button.osd.remove-button { + min-height: 28px; + min-width: 28px; + padding: 0; + margin: 6px; +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: rgba(255, 255, 255, 0.7); +} + +label:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar label:disabled, tab label:disabled, button label:disabled { + color: inherit; +} + +label.osd { + border-radius: 6px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; +} + +.dim-label { + color: rgba(255, 255, 255, 0.7); +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 36px; + padding: 0 12px; + color: rgba(255, 255, 255, 0.4); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: #FFFFFF; +} + +/********************* + * Spinner Animation * + *********************/ +@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; +} + +/**************** + * Text Entries * + ****************/ +spinbutton.vertical, spinbutton:not(.vertical), +entry { + min-height: 36px; + padding: 0 8px; + border-radius: 6px; + caret-color: currentColor; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +spinbutton.vertical:hover, spinbutton:hover:not(.vertical), +entry:hover { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +spinbutton.vertical:focus, spinbutton:focus:not(.vertical), +entry:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #5b9bf8; +} + +spinbutton.vertical:drop(active), spinbutton:drop(active):not(.vertical), +entry:drop(active) { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +spinbutton.vertical:disabled, spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.flat.vertical, spinbutton.flat:not(.vertical), +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} + +spinbutton.vertical image, spinbutton:not(.vertical) image, +entry image { + color: rgba(255, 255, 255, 0.7); +} + +spinbutton.vertical image:hover, spinbutton:not(.vertical) image:hover, spinbutton.vertical image:active, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #FFFFFF; +} + +spinbutton.vertical image:disabled, spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.vertical image.left, spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 2px; + margin-right: 6px; +} + +spinbutton.vertical image.right, spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 2px; +} + +spinbutton.vertical undershoot.left, spinbutton:not(.vertical) undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton.vertical undershoot.right, spinbutton:not(.vertical) undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton.error.vertical, spinbutton.error:not(.vertical), +entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +spinbutton.error.vertical:focus, spinbutton.error:focus:not(.vertical), +entry.error:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #F44336; +} + +spinbutton.error.vertical:disabled, spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.warning.vertical, spinbutton.warning:not(.vertical), +entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +spinbutton.warning.vertical:focus, spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #FBC02D; +} + +spinbutton.warning.vertical:disabled, spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.vertical progress, spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -8px; + border-bottom: 2px solid #5b9bf8; + background-color: transparent; +} + +treeview entry.flat, treeview entry { + background-color: #25292f; +} + +treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .photos-entry-tag, .documents-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); + color: #FFFFFF; +} + +.entry-tag:hover, .photos-entry-tag:hover, .documents-entry-tag:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +:dir(ltr) .entry-tag, :dir(ltr) .photos-entry-tag, :dir(ltr) .documents-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .photos-entry-tag, :dir(rtl) .documents-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button, .button.photos-entry-tag, .button.documents-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs-attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#5b9bf8), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5b9bf8), to(transparent)); + } +} + +.raven-mpris button.image-button, .mate-panel-menu-bar button, tabbar tabbox > tab:checked button.tab-close-button, infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, notebook > header > tabs > tab:checked button.flat, notebook > header > tabs > tab:checked button.close-button { + color: rgba(255, 255, 255, 0.7); +} + +.raven-mpris button.image-button:focus, .mate-panel-menu-bar button:focus, tabbar tabbox > tab:checked button.tab-close-button:focus, infobar.warning > revealer > box button:focus, notebook > header > tabs > tab:checked button.flat:focus, notebook > header > tabs > tab:checked button.close-button:focus, .raven-mpris button.image-button:hover, .mate-panel-menu-bar button:hover, tabbar tabbox > tab:checked button.tab-close-button:hover, infobar.warning > revealer > box button:hover, notebook > header > tabs > tab:checked button.flat:hover, notebook > header > tabs > tab:checked button.close-button:hover, .raven-mpris button.image-button:active, .mate-panel-menu-bar button:active, tabbar tabbox > tab:checked button.tab-close-button:active, infobar.warning > revealer > box button:active, notebook > header > tabs > tab:checked button.flat:active, notebook > header > tabs > tab:checked button.close-button:active, .raven-mpris button.image-button:checked, .mate-panel-menu-bar button:checked, tabbar tabbox > tab:checked button.tab-close-button:checked, infobar.warning > revealer > box button:checked, notebook > header > tabs > tab:checked button.flat:checked, notebook > header > tabs > tab:checked button.close-button:checked { + color: #FFFFFF; +} + +.raven-mpris button.image-button:disabled, .mate-panel-menu-bar button:disabled, tabbar tabbox > tab:checked button.tab-close-button:disabled, infobar.warning > revealer > box button:disabled, notebook > header > tabs > tab:checked button.flat:disabled, notebook > header > tabs > tab:checked button.close-button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.raven-mpris button.image-button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, tabbar tabbox > tab:checked button.tab-close-button:checked:disabled, infobar.warning > revealer > box button:checked:disabled, notebook > header > tabs > tab:checked button.flat:checked:disabled, notebook > header > tabs > tab:checked button.close-button:checked:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button, actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action), toolbar .linked > button, button { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms; + outline: none; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:focus, actionbar > revealer > box .linked > button:focus:not(.suggested-action):not(.destructive-action), toolbar .linked > button:focus, button:focus { + box-shadow: 0 0 0 2px rgba(91, 155, 248, 0.35); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:hover, actionbar > revealer > box .linked > button:hover:not(.suggested-action):not(.destructive-action), toolbar .linked > button:hover, button:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:active, actionbar > revealer > box .linked > button:active:not(.suggested-action):not(.destructive-action), toolbar .linked > button:active, button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:disabled, actionbar > revealer > box .linked > button:disabled:not(.suggested-action):not(.destructive-action), toolbar .linked > button:disabled, button:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:checked, actionbar > revealer > box .linked > button:checked:not(.suggested-action):not(.destructive-action), toolbar .linked > button:checked, button:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:checked:disabled, actionbar > revealer > box .linked > button:checked:disabled:not(.suggested-action):not(.destructive-action), button:checked:disabled { + background-image: none; + background-color: rgba(91, 155, 248, 0.5); + color: rgba(255, 255, 255, 0.4); +} + +.raven .expander-button, window.background > box.vertical > toolbar.primary-toolbar > toolitem > box.horizontal:not(.linked) > button.toggle, +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button:not(.toggle):not(.raised):not(.flat), window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, .nautilus-window headerbar revealer > button, button.titlebutton:not(.suggested-action):not(.destructive-action), filechooser #pathbarbox > stack > box > button, button.close, button.circular, .inline-toolbar button:not(.text-button) { + border-radius: 9999px; +} + +.raven .expander-button label, window.background > box.vertical > toolbar.primary-toolbar > toolitem > box.horizontal:not(.linked) > button.toggle label, +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button:not(.toggle):not(.raised):not(.flat) label, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button label, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button label, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button label, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button label, .nautilus-window headerbar revealer > button label, button.titlebutton:not(.suggested-action):not(.destructive-action) label, filechooser #pathbarbox > stack > box > button label, button.close label, button.circular label, .inline-toolbar button:not(.text-button) label { + padding: 0; +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat, .gedit-document-panel row button.flat, .nautilus-window .floating-bar button, placessidebar.sidebar row button.sidebar-button, notebook > header > tabs > tab button.flat, spinbutton.vertical button, spinbutton:not(.vertical) button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +button { + min-height: 24px; + min-width: 16px; + padding: 6px 10px; + border-radius: 6px; + font-weight: 500; +} + +button:drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +.budgie-session-dialog .linked.horizontal > button, +.budgie-polkit-dialog .linked.horizontal > button, +.budgie-run-dialog .linked.horizontal > button, .drop-shadow button, .budgie-panel button, .budgie-popover row button, .budgie-settings-window buttonbox.inline-toolbar button, #mate-menu button, #MatePanelPopupWindow button, popover.messagepopover .popover-action-area button, tabbar tabbox > tab button.tab-close-button, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button, calendar.button, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular, treeview.view header button button.circular, row.activatable button.circular, scrollbar button, notebook > header > tabs > arrow, spinbutton.vertical button, spinbutton:not(.vertical) button, modelbutton.flat, +.menuitem.button.flat, .nemo-window .toolbar button, #buttonbox_frame button, .xfce4-panel.background button, .raven stackswitcher.linked > button, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button, .lock-dialog button, .mate-panel-menu-bar button, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button, layouttabbar button, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button, filechooser #pathbarbox > stack > box > button, messagedialog .dialog-action-box button, messagedialog .dialog-action-box .linked:not(.vertical) > button, .app-notification button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), popover.background.menu button, +popover.background button.model, toolbar button, combobox > .linked:not(.vertical) > button:not(:only-child), button.flat { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: transparent; + background-image: none; + box-shadow: none; + color: rgba(255, 255, 255, 0.7); +} + +.budgie-session-dialog .linked.horizontal > button:focus, +.budgie-polkit-dialog .linked.horizontal > button:focus, +.budgie-run-dialog .linked.horizontal > button:focus, .drop-shadow button:focus, .budgie-panel button:focus, .budgie-popover row button:focus, .budgie-settings-window buttonbox.inline-toolbar button:focus, #mate-menu button:focus, #MatePanelPopupWindow button:focus, popover.messagepopover .popover-action-area button:focus, tabbar tabbox > tab button.tab-close-button:focus, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:focus:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:focus, calendar.button:focus, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:focus, treeview.view header button button.circular:focus, row.activatable button.circular:focus, scrollbar button:focus, notebook > header > tabs > arrow:focus, spinbutton.vertical button:focus, spinbutton:not(.vertical) button:focus, modelbutton.flat:focus, +.menuitem.button.flat:focus, .nemo-window .toolbar button:focus, #buttonbox_frame button:focus, .xfce4-panel.background button:focus, .raven stackswitcher.linked > button:focus, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:focus, .lock-dialog button:focus, .mate-panel-menu-bar button:focus, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:focus, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:focus, layouttabbar button:focus, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:focus, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:focus, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:focus, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:focus, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:focus, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:focus, filechooser #pathbarbox > stack > box > button:focus, messagedialog .dialog-action-box button:focus, messagedialog .dialog-action-box .linked:not(.vertical) > button:focus, .app-notification button:focus, actionbar > revealer > box button:focus:not(.suggested-action):not(.destructive-action), popover.background.menu button:focus, +popover.background button.model:focus, toolbar button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), button.flat:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); + color: #FFFFFF; +} + +.budgie-session-dialog .linked.horizontal > button:hover, +.budgie-polkit-dialog .linked.horizontal > button:hover, +.budgie-run-dialog .linked.horizontal > button:hover, .drop-shadow button:hover, .budgie-panel button:hover, .budgie-popover row button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, #mate-menu button:hover, #MatePanelPopupWindow button:hover, popover.messagepopover .popover-action-area button:hover, tabbar tabbox > tab button.tab-close-button:hover, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:hover:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:hover, calendar.button:hover, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:hover, treeview.view header button button.circular:hover, row.activatable button.circular:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) button:hover, modelbutton.flat:hover, +.menuitem.button.flat:hover, .nemo-window .toolbar button:hover, #buttonbox_frame button:hover, .xfce4-panel.background button:hover, .raven stackswitcher.linked > button:hover, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:hover, .lock-dialog button:hover, .mate-panel-menu-bar button:hover, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:hover, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:hover, layouttabbar button:hover, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:hover, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:hover, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:hover, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:hover, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:hover, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:hover, filechooser #pathbarbox > stack > box > button:hover, messagedialog .dialog-action-box button:hover, messagedialog .dialog-action-box .linked:not(.vertical) > button:hover, .app-notification button:hover, actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action), popover.background.menu button:hover, +popover.background button.model:hover, toolbar button:hover, combobox > .linked:not(.vertical) > button:hover:not(:only-child), button.flat:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +.budgie-session-dialog .linked.horizontal > button:active, +.budgie-polkit-dialog .linked.horizontal > button:active, +.budgie-run-dialog .linked.horizontal > button:active, .drop-shadow button:active, .budgie-panel button:active, .budgie-popover row button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, #mate-menu button:active, #MatePanelPopupWindow button:active, popover.messagepopover .popover-action-area button:active, tabbar tabbox > tab button.tab-close-button:active, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:active:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:active, calendar.button:active, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:active, treeview.view header button button.circular:active, row.activatable button.circular:active, scrollbar button:active, notebook > header > tabs > arrow:active, spinbutton.vertical button:active, spinbutton:not(.vertical) button:active, modelbutton.flat:active, +.menuitem.button.flat:active, .nemo-window .toolbar button:active, #buttonbox_frame button:active, .xfce4-panel.background button:active, .raven stackswitcher.linked > button:active, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:active, .lock-dialog button:active, .mate-panel-menu-bar button:active, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:active, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:active, layouttabbar button:active, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:active, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:active, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:active, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:active, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:active, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:active, filechooser #pathbarbox > stack > box > button:active, messagedialog .dialog-action-box button:active, messagedialog .dialog-action-box .linked:not(.vertical) > button:active, .app-notification button:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action), popover.background.menu button:active, +popover.background button.model:active, toolbar button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), button.flat:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +.budgie-session-dialog .linked.horizontal > button:disabled, +.budgie-polkit-dialog .linked.horizontal > button:disabled, +.budgie-run-dialog .linked.horizontal > button:disabled, .drop-shadow button:disabled, .budgie-panel button:disabled, .budgie-popover row button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, #mate-menu button:disabled, #MatePanelPopupWindow button:disabled, popover.messagepopover .popover-action-area button:disabled, tabbar tabbox > tab button.tab-close-button:disabled, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:disabled:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:disabled, calendar.button:disabled, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:disabled, treeview.view header button button.circular:disabled, row.activatable button.circular:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) button:disabled, modelbutton.flat:disabled, +.menuitem.button.flat:disabled, .nemo-window .toolbar button:disabled, #buttonbox_frame button:disabled, .xfce4-panel.background button:disabled, .raven stackswitcher.linked > button:disabled, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:disabled, .lock-dialog button:disabled, .mate-panel-menu-bar button:disabled, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:disabled, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:disabled, layouttabbar button:disabled, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:disabled, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:disabled, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:disabled, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:disabled, filechooser #pathbarbox > stack > box > button:disabled, messagedialog .dialog-action-box button:disabled, messagedialog .dialog-action-box .linked:not(.vertical) > button:disabled, .app-notification button:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:disabled, +popover.background button.model:disabled, toolbar button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +.nemo-window .toolbar button:checked, #buttonbox_frame button:checked, .xfce4-panel.background button:checked, .raven stackswitcher.linked > button:checked, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:checked, .lock-dialog button:checked, .mate-panel-menu-bar button:checked, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked, layouttabbar button:checked, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:checked, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:checked, filechooser #pathbarbox > stack > box > button:checked, messagedialog .dialog-action-box button:checked, messagedialog .dialog-action-box .linked:not(.vertical) > button:checked, .app-notification button:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked, +popover.background button.model:checked, toolbar button:checked, combobox > .linked:not(.vertical) > button:checked:not(:only-child), window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:checked:hover, button.flat:checked, button.flat:checked:hover { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +.nemo-window .toolbar button:checked:disabled, #buttonbox_frame button:checked:disabled, .xfce4-panel.background button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:checked:disabled, .lock-dialog button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked:disabled, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked:disabled, layouttabbar button:checked:disabled, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:checked:disabled, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked:disabled, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked:disabled, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, messagedialog .dialog-action-box button:checked:disabled, .app-notification button:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:disabled, +popover.background button.model:checked:disabled, toolbar button:checked:disabled, combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), button.flat:checked:disabled { + background-color: alpha(currentColor, 0.1); + color: rgba(255, 255, 255, 0.4); +} + +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} + +button.image-button { + min-width: 24px; + padding: 6px; +} + +button.text-button.image-button { + min-width: 24px; + padding: 6px; + border-radius: 6px; +} + +button.text-button.image-button label:first-child { + margin-left: 10px; +} + +button.text-button.image-button label:last-child { + margin-right: 10px; +} + +button.text-button.image-button.flat label:first-child { + margin-left: 6px; +} + +button.text-button.image-button.flat label:last-child { + margin-right: 6px; +} + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +.linked:not(.vertical) > button.flat:not(:only-child), .linked.vertical > button.flat:not(:only-child) { + border-radius: 6px; +} + +button.osd { + min-width: 24px; + min-width: 24px; + padding: 6px; + background-color: #25292f; + color: #FFFFFF; +} + +button.osd:focus { + box-shadow: none; +} + +button.osd:hover { + background-color: #46494e; + color: #FFFFFF; +} + +button.osd:active { + background-color: #5c5f63; + color: #FFFFFF; +} + +button.osd:disabled { + opacity: 0; +} + +button.osd.image-button, button.osd.circular { + padding: 12px; +} + +button.osd.image-button > image, button.osd.circular > image { + padding: 0; +} + +button.suggested-action { + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: none; +} + +button.suggested-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.suggested-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(91, 155, 248, 0.2), 0 4px 3px 0 rgba(91, 155, 248, 0.14), 0 1px 6px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:checked { + background-color: #8cb9fa; +} + +button.suggested-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(91, 155, 248, 0.3), 0 2px 3px -1px rgba(91, 155, 248, 0.24), 0 2px 5px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:focus { + box-shadow: 0 0 0 2px rgba(91, 155, 248, 0.35); +} + +button.suggested-action.flat { + background-color: transparent; + color: #5b9bf8; +} + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.suggested-action.flat:checked { + background-color: rgba(91, 155, 248, 0.3); +} + +button.destructive-action { + background-color: #F44336; + color: #FFFFFF; + box-shadow: none; +} + +button.destructive-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.destructive-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(244, 67, 54, 0.2), 0 4px 3px 0 rgba(244, 67, 54, 0.14), 0 1px 6px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:checked { + background-color: #f77b72; +} + +button.destructive-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(244, 67, 54, 0.3), 0 2px 3px -1px rgba(244, 67, 54, 0.24), 0 2px 5px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:focus { + box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.35); +} + +button.destructive-action.flat { + background-color: transparent; + color: #F44336; +} + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.destructive-action.flat:checked { + background-color: rgba(244, 67, 54, 0.3); +} + +.stack-switcher > button > label { + margin: 0 -6px; + padding: 0 6px; +} + +.stack-switcher > button > image { + margin: -3px -6px; + padding: 3px 6px; +} + +.stack-switcher > button.needs-attention:checked > label, +.stack-switcher > button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar button { + -gtk-icon-shadow: none; +} + +button.close, button.circular { + min-width: 24px; + padding: 6px; +} + +stacksidebar.sidebar row.needs-attention > label, .stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image { + animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +stacksidebar.sidebar row.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > label:dir(rtl), +.stack-switcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px; +} + +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 6px; + color: #FFFFFF; +} + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 6px; +} + +/********* + * Links * + *********/ +*:link { + color: #3c84f7; +} + +*:visited { + color: #BA68C8; +} + +button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { + color: #3c84f7; +} + +button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { + color: #BA68C8; +} + +button.link > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +spinbutton:not(.vertical) entry { + min-width: 32px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 6px transparent; +} + +spinbutton:not(.vertical) button:focus:not(:hover):not(:active):not(:disabled) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(255, 255, 255, 0.7); +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -3px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -3px; +} + +spinbutton.vertical { + padding: 0; +} + +spinbutton.vertical:disabled { + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.vertical entry { + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; + min-height: 36px; + min-width: 42px; + padding: 0; +} + +spinbutton.vertical button { + padding: 0; + border: solid 6px transparent; +} + +spinbutton.vertical button:focus:not(:hover):not(:active) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(255, 255, 255, 0.7); +} + +spinbutton.vertical button.up { + margin: 0 3px; +} + +spinbutton.vertical button.down { + margin: 0 3px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: -2px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: -2px; +} + +combobox.linked button:nth-child(2):dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +combobox.linked button:nth-child(2):dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -36px; + padding-right: 36px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -36px; + padding-left: 36px; +} + +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 6px; + padding: 4px; + border-radius: 9999px; +} + +combobox > .linked > button.combo { + padding: 6px 10px; +} + +.linked:not(.vertical) > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > combobox:not(:last-child) > box > button.combo { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > combobox:not(:last-child) > box > button.combo { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +button.combo:only-child { + border-radius: 6px; + font-weight: normal; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +button.combo:only-child:focus { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.26); +} + +button.combo:only-child:hover { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +button.combo:only-child:checked { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #5b9bf8; + background-image: none; +} + +button.combo:only-child:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #22262c; +} + +.osd toolbar { + background-color: transparent; +} + +frame.documents-dropdown, .app-notification, toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +frame.documents-dropdown:backdrop, .app-notification:backdrop, toolbar.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +frame.left.documents-dropdown, .left.app-notification, frame.right.documents-dropdown, .right.app-notification, frame.top.documents-dropdown, .top.app-notification, frame.bottom.documents-dropdown, .bottom.app-notification, toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { + border-radius: 0; +} + +frame.bottom.documents-dropdown, .bottom.app-notification, toolbar.osd.bottom { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4)); +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +.inline-toolbar { + padding: 6px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #2d3036; +} + +searchbar > revealer > box, +.location-bar { + padding: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #22262c; + background-clip: border-box; +} + +searchbar > revealer > box { + margin: -6px; +} + +/*************** + * Header bars * + ***************/ +.nemo-window .primary-toolbar button, headerbar button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +.nemo-window .primary-toolbar button:focus, headerbar button:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:hover, headerbar button:hover:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +.nemo-window .primary-toolbar button:hover, headerbar button:hover:not(.suggested-action):not(.destructive-action) { + background-color: alpha(currentColor, 0.1); + box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.1); +} + +.nemo-window .primary-toolbar button:active, headerbar button:active:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +.nemo-window .primary-toolbar button:checked, headerbar button:checked:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +.nemo-window .primary-toolbar button:disabled, headerbar button:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); + background-color: alpha(currentColor, 0.05); +} + +.nemo-window .primary-toolbar button:backdrop, headerbar button:backdrop:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); +} + +.nemo-window .primary-toolbar button:backdrop:focus, headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:hover, headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:active, headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +.nemo-window .primary-toolbar button:backdrop:checked, headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +.nemo-window .primary-toolbar button:backdrop:disabled, headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.12); +} + +.nemo-window .primary-toolbar entry, .titlebar entry { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +.nemo-window .primary-toolbar entry:hover, .titlebar entry:hover { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04), inset 0 0 0 2px rgba(255, 255, 255, 0.26); +} + +.nemo-window .primary-toolbar entry:focus, .titlebar entry:focus { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04), inset 0 0 0 2px #5b9bf8; +} + +.nemo-window .primary-toolbar entry:disabled, .titlebar entry:disabled { + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +.nemo-window .primary-toolbar entry image, .titlebar entry image { + color: rgba(255, 255, 255, 0.7); +} + +.nemo-window .primary-toolbar entry image:hover, .titlebar entry image:hover, .nemo-window .primary-toolbar entry image:active, .titlebar entry image:active { + color: #FFFFFF; +} + +.nemo-window .primary-toolbar entry image:disabled, .titlebar entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #1b1e24; + color: #FFFFFF; + border-radius: 12px 12px 0 0; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.titlebar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.csd .titlebar:backdrop { + background-color: #22262c; +} + +.titlebar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar .titlebar, .titlebar headerbar { + background-color: transparent; + box-shadow: none; +} + +.titlebar + separator, .titlebar + separator.sidebar { + background-color: #1b1e24; + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.titlebar + separator:backdrop, .titlebar + separator.sidebar:backdrop { + background-color: #22262c; +} + +.titlebar.selection-mode + separator, .titlebar.selection-mode + separator.sidebar, .selection-mode .titlebar + separator, .selection-mode .titlebar + separator.sidebar { + background-color: #5b9bf8; +} + +.titlebar.selection-mode + separator:backdrop, .titlebar.selection-mode + separator.sidebar:backdrop, .selection-mode .titlebar + separator:backdrop, .selection-mode .titlebar + separator.sidebar:backdrop { + background-color: #438cf7; +} + +.background.csd.unified .titlebar + separator, .background.csd.unified .titlebar + separator.sidebar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.titlebar stackswitcher, +.titlebar .stack-switcher { + margin: 6px 0; + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +.titlebar .path-bar button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 0; + padding-left: 6px; + padding-right: 6px; +} + +.titlebar.selection-mode { + transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); + animation: ripple-on-headerbar 225ms cubic-bezier(0, 0, 0.2, 1); + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.7); + background-color: #438cf7; +} + +.titlebar.selection-mode .subtitle:link { + color: #FFFFFF; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:not(.titlebutton) { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.titlebar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar, .tiled-top .titlebar, .tiled-right .titlebar, .tiled-bottom .titlebar, .tiled-left .titlebar, .maximized .titlebar, .fullscreen .titlebar { + border-radius: 0; +} + +.titlebar.default-decoration { + min-height: 24px; + padding: 6px 12px; + border-radius: 12px 12px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.tiled .titlebar.default-decoration, .maximized .titlebar.default-decoration, .fullscreen .titlebar.default-decoration { + box-shadow: none; + border-radius: 0; +} + +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} + +.background.csd .titlebar.default-decoration { + padding: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.background:not(.csd) .titlebar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +.solid-csd .titlebar:dir(rtl), .solid-csd .titlebar:dir(ltr) { + border-radius: 0; + box-shadow: none; +} + +headerbar { + min-height: 48px; + padding: 0 6px; +} + +box.vertical:not(.titlebar) headerbar { + background-color: #1b1e24; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 6px; + margin-bottom: 6px; +} + +headerbar button, headerbar button.image-button { + border-radius: 6px; +} + +headerbar > box.left, +headerbar > box.right { + padding: 0 6px; +} + +headerbar separator.titlebutton, headerbar separator.sidebar { + margin-top: 12px; + margin-bottom: 12px; + background-color: transparent; +} + +headerbar switch { + margin-top: 12px; + margin-bottom: 12px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +headerbar .entry-tag, headerbar .photos-entry-tag, headerbar .documents-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 0; + margin: 0; + min-width: 120px; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), transparent 0%, transparent 0%) 0 0 0/0 0 0px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):hover { + color: #FFFFFF; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + background-image: none; + box-shadow: none; + box-shadow: inset 0 -2px #224e92; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):active { + color: #FFFFFF; + background-image: none; + box-shadow: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #31c4b6 100%, #224e92 0%) 0 0 2/0 0 2px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; + background-image: none; + box-shadow: none; + border-image: linear-gradient(to right, #297dff, #31c4b6) 0 0 2/0 0 2px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):checked:disabled, headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):checked:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):disabled, headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.3); +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action) > stack > box { + padding: 0 12px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):focus:not(:hover) { + box-shadow: none; +} + +headerbar.windowhandle > button.popup label, headerbar.windowhandle > button.popup image { + min-height: 0; +} + +headerbar.windowhandle viewswitchertitle > squeezer { + margin-top: 0; + margin-bottom: 0; + background: none; +} + +headerbar.windowhandle viewswitchertitle > squeezer > viewswitcher { + margin: 0 0; + background: none; +} + +headerbar.windowhandle viewswitchertitle > squeezer > viewswitcher > box.horizontal > button.radio { + margin: 0; + padding: 0; + border-radius: 0; +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar.linked:not(.vertical) > button { + padding-left: 6px; + padding-right: 6px; + border-radius: 3px; + margin-left: 1px; + margin-right: 1px; +} + +.caja-pathbar button:first-child, +.path-bar.linked:not(.vertical) > button:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +.caja-pathbar button:last-child, +.path-bar.linked:not(.vertical) > button:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.caja-pathbar button label, .caja-pathbar button image, +.path-bar.linked:not(.vertical) > button label, +.path-bar.linked:not(.vertical) > button image { + margin-left: 3px; + margin-right: 3px; +} + +.caja-pathbar button.slider-button, +.path-bar.linked:not(.vertical) > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: rgba(255, 255, 255, 0.26); + border-top-color: rgba(255, 255, 255, 0.12); +} + +* { + -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; +} + +.csd treeview.view:not(:selected):not(:hover):not(.progressbar):not(.expander):not(.trough):not(.separator) { + background-color: transparent; +} + +treeview.view:selected { + background-image: image(alpha(currentColor, 0.1)); + background-color: #25292f; + color: #FFFFFF; +} + +.csd treeview.view:selected { + background-image: none; +} + +treeview.view.separator { + min-height: 6px; + color: rgba(255, 255, 255, 0.12); +} + +treeview.view:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: alpha(currentColor, 0.08); +} + +treeview.view.after:drop(active) { + border-top-style: none; +} + +treeview.view.before:drop(active) { + border-bottom-style: none; +} + +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(255, 255, 255, 0.7); +} + +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, treeview.view.expander:active { + color: #FFFFFF; +} + +treeview.view.expander:disabled { + color: rgba(255, 255, 255, 0.3); +} + +treeview.view.progressbar { + border: none; + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to right, #297dff, #31c4b6); + border-radius: 9999px; + color: #FFFFFF; + transition: background-image 225ms cubic-bezier(0, 0, 0.2, 1); +} + +treeview.view.progressbar:selected, treeview.view.progressbar:selected:hover, treeview.view.progressbar:selected:focus { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to right, #438cff, #3fcfc1); + color: #FFFFFF; +} + +treeview.view.progressbar:selected:backdrop, treeview.view.progressbar:selected:hover:backdrop, treeview.view.progressbar:selected:focus:backdrop { + color: #FFFFFF; +} + +treeview.view.progressbar:backdrop, treeview.view.progressbar:selected:backdrop { + background-color: transparent; + background-image: image(rgba(255, 255, 255, 0.26)); +} + +treeview.view.trough { + border: none; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); + background-image: none; + border-radius: 9999px; + padding: 0; + margin: 0; +} + +treeview.view.trough:selected, treeview.view.trough:selected:hover, treeview.view.trough:selected:focus { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); +} + +treeview.view.trough:backdrop, treeview.view.trough:selected:backdrop { + background-color: rgba(255, 255, 255, 0.12); +} + +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button:not(:focus):not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +treeview.view header button, treeview.view header button:disabled { + background-color: #25292f; +} + +treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #25292f; + background-clip: border-box; + color: #5b9bf8; +} + +treeview.view acceleditor > label { + background-color: #5b9bf8; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #1b1e24; + color: #FFFFFF; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +menubar:backdrop, +.menubar:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +.csd menubar, .csd .menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.csd menubar:backdrop, .csd .menubar:backdrop { + background-color: #22262c; +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(255, 255, 255, 0.7); + border-radius: 6px; +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.1); + color: #FFFFFF; +} + +menubar > menuitem:backdrop, +.menubar > menuitem:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +menubar > menuitem > window.popup.background > menu menuitem, +.menubar > menuitem > window.popup.background > menu menuitem { + transition: none; +} + +.background.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 6px; + padding: 6px; + background-color: #2d3036; + background-clip: border-box; + border-radius: 12px; + border: 1px solid #3f4348; +} + +.csd menu, .csd .menu, .csd .context-menu { + border: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 24px; + min-width: 40px; + padding: 3px 6px; + color: #FFFFFF; + font: initial; + text-shadow: none; + border-radius: 6px; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + background-color: alpha(currentColor, 0.08); +} + +menu menuitem:active, +.menu menuitem:active, +.context-menu menuitem:active { + background-color: alpha(currentColor, 0.12); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(255, 255, 255, 0.4); +} + +menu menuitem accelerator, +.menu menuitem accelerator, +.context-menu menuitem accelerator { + color: rgba(255, 255, 255, 0.4); +} + +menu menuitem:disabled accelerator, +.menu menuitem:disabled accelerator, +.context-menu menuitem:disabled accelerator { + color: rgba(255, 255, 255, 0.12); +} + +menu menuitem > image, +.menu menuitem > image, +.context-menu menuitem > image { + margin-left: 6px; +} + +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; +} + +menu menuitem arrow:dir(ltr), +.menu menuitem arrow:dir(ltr), +.context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 6px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 6px; +} + +menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), +.menu menuitem label:dir(rtl), +.menu menuitem label:dir(ltr), +.context-menu menuitem label:dir(rtl), +.context-menu menuitem label:dir(ltr) { + color: inherit; +} + +menu .view:selected, +.menu .view:selected, +.context-menu .view:selected { + background-color: #42454a; +} + +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 6px; + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin: 0; + border-radius: 6px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin: 11px 0 -12px; + border-radius: 6px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(alpha(currentColor, 0.08)); + color: #FFFFFF; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 3px 0; +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 0; + background-color: #2d3036; + border-radius: 12px; +} + +popover.background, .csd popover.background { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.1); + background-clip: border-box; + border: none; +} + +popover.background:backdrop, .csd popover.background:backdrop { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +popover.background > stack { + margin: -2px; +} + +popover.background > toolbar { + margin: 0; +} + +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background > scrolledwindow > viewport.frame > list { + background-color: transparent; + padding: 6px; +} + +popover.background > scrolledwindow > viewport.frame > list > row { + border-radius: 6px; + padding: 6px; +} + +popover.background .view:not(:selected), +popover.background toolbar { + background-color: #2d3036; +} + +popover.background .linked > button:not(.radio) { + border-radius: 6px; +} + +popover.background .linked > button:not(.radio):first-child { + border-radius: 6px; +} + +popover.background .linked > button:not(.radio):last-child { + border-radius: 6px; +} + +popover.background .linked > button:not(.radio):only-child { + border-radius: 6px; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 6px; +} + +popover.background separator { + margin: 3px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +tabbar tabbox > tab, notebook > header > tabs > tab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + padding: 3px 6px; + border: none; + outline: none; + background-clip: padding-box; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; + border-radius: 6px; +} + +tabbar tabbox > tab:hover, notebook > header > tabs > tab:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +tabbar tabbox > tab:active, notebook > header > tabs > tab:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +tabbar tabbox > tab:disabled, notebook > header > tabs > tab:disabled { + color: rgba(255, 255, 255, 0.3); +} + +tabbar tabbox > tab:checked, notebook > header > tabs > tab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +tabbar tabbox > tab:checked:disabled, notebook > header > tabs > tab:checked:disabled { + color: rgba(255, 255, 255, 0.4); +} + +notebook { + background-color: #25292f; +} + +frame > paned > notebook > header, notebook.frame > header { + background-color: rgba(255, 255, 255, 0.04); +} + +notebook.frame { + border-radius: 12px; +} + +notebook.frame frame > border { + border: none; + border-radius: 6px; +} + +notebook.frame frame > list row.activatable { + border-radius: 6px; +} + +notebook > header { + border: none; + background-color: rgba(255, 255, 255, 0.04); + padding: 3px; + margin: 3px; + border-radius: 9px; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: 0; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: 0; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: 0; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 6px; +} + +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -6px -12px; + padding: 6px 12px; +} + +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +notebook > header > tabs > tab label { + padding: 0 6px; +} + +notebook > header > tabs > tab button.flat:last-child { + margin-left: 6px; + margin-right: 0; +} + +notebook > header > tabs > tab button.flat:first-child { + margin-left: 0; + margin-right: 6px; +} + +notebook > header > tabs > tab button.close-button { + min-width: 24px; + min-height: 24px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + border-style: solid; +} + +notebook > button.circular.image-button { + min-width: 24px; + min-height: 24px; + padding: 3px; +} + +notebook > stack:not(:only-child) { + background-color: transparent; + border-radius: 6px; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 200ms cubic-bezier(0, 0, 0.2, 1); + background-color: transparent; + box-shadow: none; + outline: none; + border: none; + margin: 0; + padding: 0; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar trough { + background-color: rgba(255, 255, 255, 0.12); + padding: 0; + margin: 3px; + outline: none; + border: none; + border-radius: 9999px; + transition: all 200ms cubic-bezier(0, 0, 0.2, 1); +} + +scrollbar trough > slider { + transition: all 200ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + margin: 0; + padding: 0; + border: none; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(255, 255, 255, 0.4); + box-shadow: none; + outline: none; +} + +scrollbar trough > slider:hover { + background-color: #31c4b6; +} + +scrollbar trough > slider:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.vertical trough > slider:active { + background-image: linear-gradient(to top, #297dff, #31c4b6); +} + +scrollbar.horizontal trough > slider:active { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scrollbar.dragging trough, scrollbar.hovering trough { + margin: 6px; +} + +scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0; +} + +scrollbar.overlay-indicator:not(.fine-tune) slider { + transition-property: background-color, min-height, min-width; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.4); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) slider { + min-width: 24px; +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) button { + min-width: 8px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) slider { + min-height: 24px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) button { + min-height: 8px; +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +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-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.26); + background-clip: padding-box; + font-size: 0; + color: transparent; +} + +switch:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + color: transparent; +} + +switch:disabled { + opacity: 0.35; +} + +switch slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 18px; + min-height: 18px; + margin: 3px; + border-radius: 9999px; + outline: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); + background-color: white; + border: none; + color: transparent; +} + +switch:focus slider, switch:hover slider, switch:focus:hover slider { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 20px; + min-width: 20px; + margin: 3px; + padding: 0; + border-radius: 9999px; + color: transparent; + background-color: rgba(255, 255, 255, 0.12); + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); +} + +check:hover, +radio:hover { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04); + background-color: rgba(255, 255, 255, 0.15); +} + +check:active, +radio:active { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); + background-color: rgba(255, 255, 255, 0.2); +} + +check:disabled, +radio:disabled { + background-color: rgba(255, 255, 255, 0.04); +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +check:checked:hover, check:indeterminate:hover, +radio:checked:hover, +radio:indeterminate:hover { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.15); + background-color: #8cb9fa; +} + +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.2); + background-color: #5b9bf8; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(91, 155, 248, 0.35); + background-image: none; +} + +popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat radio, popover modelbutton.flat radio:focus, popover modelbutton.flat radio:hover, popover modelbutton.flat radio:focus:hover, popover modelbutton.flat radio:active, popover modelbutton.flat radio:disabled { + transition: none; + box-shadow: none; +} + +popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat radio.left:dir(rtl) { + margin-left: -3px; + margin-right: 6px; +} + +popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat radio.right:dir(ltr) { + margin-left: 6px; + margin-right: -3px; +} + +menu menuitem check, menu menuitem radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem radio:dir(ltr) { + margin-right: 6px; + margin-left: 0; +} + +menu menuitem check:dir(rtl), menu menuitem radio:dir(rtl) { + margin-left: 6px; + margin-right: 0; +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem check:checked:hover, menu menuitem check:indeterminate:hover, menu menuitem radio, menu menuitem radio:hover, menu menuitem radio:disabled, menu menuitem radio:checked:hover, menu menuitem radio:indeterminate:hover { + box-shadow: none; +} + + +check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")); +} + + +radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; +} + +#MozillaGtkWidget > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; +} + +#MozillaGtkWidget > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +check:not(:checked):indeterminate:active, +radio:not(:checked):indeterminate:active { + -gtk-icon-transform: scaleX(-1); +} + +treeview.view radio, treeview.view check { + padding: 0; + margin: 0; +} + +treeview.view radio:not(:hover):not(:disabled):not(:checked):not(:indeterminate), treeview.view check:not(:hover):not(:disabled):not(:checked):not(:indeterminate) { + background-color: rgba(255, 255, 255, 0.12); +} + +treeview.view radio, treeview.view radio:hover, treeview.view radio:disabled, treeview.view radio:checked:hover, treeview.view radio:indeterminate:hover, treeview.view check, treeview.view check:hover, treeview.view check:disabled, treeview.view check:checked:hover, treeview.view check:indeterminate:hover { + box-shadow: none; +} + +treeview.view radio:checked, treeview.view radio:indeterminate, treeview.view check:checked, treeview.view check:indeterminate { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.background.csd treeview.view radio:checked, .background.csd treeview.view radio:indeterminate, .background.csd treeview.view check:checked, .background.csd treeview.view check:indeterminate { + background-color: #5b9bf8; + color: #FFFFFF; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 17px 12px; +} + +scale.vertical { + padding: 12px 17px; +} + +scale slider { + min-height: 18px; + min-width: 18px; + margin: -8px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 9999px; + color: #5b9bf8; + background-color: #25292f; + box-shadow: inset 0 0 0 2px #31c4b6; +} + +scale slider:hover { + box-shadow: inset 0 0 0 2px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale slider:active { + box-shadow: inset 0 0 0 4px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale slider:disabled { + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3); +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 16px; + padding-bottom: 16px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 16px; + padding-right: 16px; +} + +scale.fine-tune slider { + margin: -7px; +} + +scale trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(255, 255, 255, 0.26); +} + +scale trough:disabled { + background-color: rgba(255, 255, 255, 0.14); +} + +scale highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); +} + +scale highlight:disabled { + background-color: transparent; +} + +scale.horizontal highlight { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scale.horizontal highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale.vertical highlight { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +scale.vertical highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(255, 255, 255, 0.26); +} + +scale fill:disabled { + background-color: transparent; +} + +scale marks, +scale value { + color: rgba(255, 255, 255, 0.7); +} + +scale indicator { + background-color: rgba(255, 255, 255, 0.26); + color: transparent; +} + +scale.horizontal marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale.horizontal.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.horizontal marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale.horizontal.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.vertical marks.top { + margin-right: 7px; + margin-left: -15px; +} + +scale.vertical.fine-tune marks.top { + margin-right: 6px; + margin-left: -14px; +} + +scale.vertical marks.bottom { + margin-left: 7px; + margin-right: -15px; +} + +scale.vertical.fine-tune marks.bottom { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-before:not(.marks-after) slider, scale.horizontal.marks-before:not(.marks-after) slider:hover, scale.horizontal.marks-before:not(.marks-after) slider:active, scale.horizontal.marks-before:not(.marks-after) slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-before:not(.marks-after) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-after:not(.marks-before) slider, scale.horizontal.marks-after:not(.marks-before) slider:hover, scale.horizontal.marks-after:not(.marks-before) slider:active, scale.horizontal.marks-after:not(.marks-before) slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-after:not(.marks-before) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-before:not(.marks-after) slider, scale.vertical.marks-before:not(.marks-after) slider:hover, scale.vertical.marks-before:not(.marks-after) slider:active, scale.vertical.marks-before:not(.marks-after) slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-before:not(.marks-after) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-after:not(.marks-before) slider, scale.vertical.marks-after:not(.marks-before) slider:hover, scale.vertical.marks-after:not(.marks-before) slider:active, scale.vertical.marks-after:not(.marks-before) slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-after:not(.marks-before) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -13.5px; + margin-top: 11.5px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -13.5px; + margin-right: 11.5px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -13.5px; + margin-left: 11.5px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 6px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 6px; +} + +progressbar trough { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.14); +} + +progressbar progress { + border-radius: 6px; + background-color: transparent; +} + +progressbar.horizontal progress { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +progressbar.vertical progress { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +progressbar.osd { + min-width: 6px; + min-height: 6px; + background-color: transparent; +} + +progressbar.osd trough { + background-color: transparent; +} + +progressbar.osd progress { + background-color: #5b9bf8; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 6px; +} + +levelbar.horizontal.discrete block { + min-width: 36px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 6px; +} + +levelbar.vertical.discrete block { + min-height: 36px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + border-radius: 6px; +} + +levelbar block.low { + background-color: #FBC02D; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #5b9bf8; +} + +levelbar block.full { + background-color: #66BB6A; +} + +levelbar block.empty { + background-color: rgba(255, 255, 255, 0.14); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + color: #FFFFFF; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, .frame { + margin: 0; + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; +} + +.frame.view { + border-radius: 6px; +} + +.frame.flat { + border-style: none; +} + +frame.flat > border, frame > border.flat, statusbar frame > border { + border: none; +} + +actionbar > revealer > box { + padding: 6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + background-clip: border-box; +} + +.background.csd box.vertical > actionbar > revealer > box .background.csd box.vertical > revealer > actionbar > revealer > box { + border-radius: 0 0 12px 12px; +} + +scrolledwindow viewport.frame { + border: none; +} + +stack scrolledwindow.frame viewport.frame list { + border: none; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #25292f; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +preferences stacksidebar.sidebar list separator, hdyleaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) separator, leaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) separator, box.horizontal > stack.background > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) separator, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list separator, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list separator, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list separator, .tweak-categories separator, placessidebar.sidebar list > separator, stacksidebar.sidebar + separator.vertical, +stacksidebar.sidebar separator.horizontal, button.font separator, button.file separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, preferencesgroup list, .geary-accounts-editor-pane list, window.background.csd.unified > deck > deck > deck list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet stack.background scrolledwindow > viewport list, hdyleaflet overlay scrolledwindow > viewport list, leaflet stack.background scrolledwindow > viewport list, leaflet overlay scrolledwindow > viewport list, box.horizontal > stack.background stack.background scrolledwindow > viewport list, box.horizontal > stack.background overlay scrolledwindow > viewport list, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list), list.tweak-group list, .tweak-group-startup, list.content:not(.conversation-listbox) { + border-radius: 6px; + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08); + border: none; +} + +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, preferencesgroup list > separator, .geary-accounts-editor-pane list > separator, window.background.csd.unified > deck > deck > deck list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet stack.background scrolledwindow > viewport list > separator, hdyleaflet overlay scrolledwindow > viewport list > separator, leaflet stack.background scrolledwindow > viewport list > separator, leaflet overlay scrolledwindow > viewport list > separator, box.horizontal > stack.background stack.background scrolledwindow > viewport list > separator, box.horizontal > stack.background overlay scrolledwindow > viewport list > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator, list.tweak-group list > separator, .tweak-group-startup > separator, list.content:not(.conversation-listbox) > separator { + background: none; + min-height: 0; +} + +window.background.csd stack stack stack frame > list row, +window.background.csd > stack > stack > box > frame > list row, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list row, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list row, window.background.csd > stack > list row, +window.background.csd > stack > scrolledwindow > viewport > box > list row, preferencesgroup list row, .geary-accounts-editor-pane list row, window.background.csd.unified > deck > deck > deck list row, hdyleaflet list.view row, hdyleaflet list.frame row, leaflet list.view row, leaflet list.frame row, box.horizontal > stack.background list.view row, box.horizontal > stack.background list.frame row, hdyleaflet stack.background scrolledwindow > viewport list row, hdyleaflet overlay scrolledwindow > viewport list row, leaflet stack.background scrolledwindow > viewport list row, leaflet overlay scrolledwindow > viewport list row, box.horizontal > stack.background stack.background scrolledwindow > viewport list row, box.horizontal > stack.background overlay scrolledwindow > viewport list row, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row, leaflet frame:not(.view) list:not(.contacts-contact-list) row, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row, list.tweak-group list row, .tweak-group-startup row, list.content:not(.conversation-listbox) > row { + border-radius: 0; +} + +window.background.csd stack stack stack frame > list row:not(:first-child), window.background.csd > stack > list row:not(:first-child), preferencesgroup list row:not(:first-child), .geary-accounts-editor-pane list row:not(:first-child), window.background.csd.unified > deck > deck > deck list row:not(:first-child), hdyleaflet list.view row:not(:first-child), hdyleaflet list.frame row:not(:first-child), leaflet list.view row:not(:first-child), leaflet list.frame row:not(:first-child), box.horizontal > stack.background list.view row:not(:first-child), box.horizontal > stack.background list.frame row:not(:first-child), hdyleaflet stack.background scrolledwindow > viewport list row:not(:first-child), hdyleaflet overlay scrolledwindow > viewport list row:not(:first-child), leaflet stack.background scrolledwindow > viewport list row:not(:first-child), leaflet overlay scrolledwindow > viewport list row:not(:first-child), box.horizontal > stack.background stack.background scrolledwindow > viewport list row:not(:first-child), box.horizontal > stack.background overlay scrolledwindow > viewport list row:not(:first-child), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:not(:first-child), leaflet frame:not(.view) list:not(.contacts-contact-list) row:not(:first-child), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:not(:first-child), list.tweak-group list row:not(:first-child), .tweak-group-startup row:not(:first-child), list.content:not(.conversation-listbox) > row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.2); +} + +window.background.csd stack stack stack frame > list row:first-child, window.background.csd > stack > list row:first-child, preferencesgroup list row:first-child, .geary-accounts-editor-pane list row:first-child, window.background.csd.unified > deck > deck > deck list row:first-child, hdyleaflet list.view row:first-child, hdyleaflet list.frame row:first-child, leaflet list.view row:first-child, leaflet list.frame row:first-child, box.horizontal > stack.background list.view row:first-child, box.horizontal > stack.background list.frame row:first-child, hdyleaflet stack.background scrolledwindow > viewport list row:first-child, hdyleaflet overlay scrolledwindow > viewport list row:first-child, leaflet stack.background scrolledwindow > viewport list row:first-child, leaflet overlay scrolledwindow > viewport list row:first-child, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:first-child, box.horizontal > stack.background overlay scrolledwindow > viewport list row:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:first-child, list.tweak-group list row:first-child, .tweak-group-startup row:first-child, list.content:not(.conversation-listbox) > row:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} + +window.background.csd stack stack stack frame > list row:last-child, window.background.csd > stack > list row:last-child, preferencesgroup list row:last-child, .geary-accounts-editor-pane list row:last-child, window.background.csd.unified > deck > deck > deck list row:last-child, hdyleaflet list.view row:last-child, hdyleaflet list.frame row:last-child, leaflet list.view row:last-child, leaflet list.frame row:last-child, box.horizontal > stack.background list.view row:last-child, box.horizontal > stack.background list.frame row:last-child, hdyleaflet stack.background scrolledwindow > viewport list row:last-child, hdyleaflet overlay scrolledwindow > viewport list row:last-child, leaflet stack.background scrolledwindow > viewport list row:last-child, leaflet overlay scrolledwindow > viewport list row:last-child, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:last-child, box.horizontal > stack.background overlay scrolledwindow > viewport list row:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:last-child, list.tweak-group list row:last-child, .tweak-group-startup row:last-child, list.content:not(.conversation-listbox) > row:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +window.background.csd stack stack stack frame > list row:only-child, window.background.csd > stack > list row:only-child, preferencesgroup list row:only-child, .geary-accounts-editor-pane list row:only-child, window.background.csd.unified > deck > deck > deck list row:only-child, hdyleaflet list.view row:only-child, hdyleaflet list.frame row:only-child, leaflet list.view row:only-child, leaflet list.frame row:only-child, box.horizontal > stack.background list.view row:only-child, box.horizontal > stack.background list.frame row:only-child, hdyleaflet stack.background scrolledwindow > viewport list row:only-child, hdyleaflet overlay scrolledwindow > viewport list row:only-child, leaflet stack.background scrolledwindow > viewport list row:only-child, leaflet overlay scrolledwindow > viewport list row:only-child, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:only-child, box.horizontal > stack.background overlay scrolledwindow > viewport list row:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:only-child, list.tweak-group list row:only-child, .tweak-group-startup row:only-child, list.content:not(.conversation-listbox) > row:only-child { + border-radius: 6px; +} + +window.background.csd stack stack stack frame > list row:focus, window.background.csd > stack > list row:focus, preferencesgroup list row:focus, .geary-accounts-editor-pane list row:focus, window.background.csd.unified > deck > deck > deck list row:focus, hdyleaflet list.view row:focus, hdyleaflet list.frame row:focus, leaflet list.view row:focus, leaflet list.frame row:focus, box.horizontal > stack.background list.view row:focus, box.horizontal > stack.background list.frame row:focus, hdyleaflet stack.background scrolledwindow > viewport list row:focus, hdyleaflet overlay scrolledwindow > viewport list row:focus, leaflet stack.background scrolledwindow > viewport list row:focus, leaflet overlay scrolledwindow > viewport list row:focus, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:focus, box.horizontal > stack.background overlay scrolledwindow > viewport list row:focus, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:focus, leaflet frame:not(.view) list:not(.contacts-contact-list) row:focus, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:focus, list.tweak-group list row:focus, .tweak-group-startup row:focus, list.content:not(.conversation-listbox) > row:focus { + box-shadow: inset 0 0 0 1000px alpha(currentColor, 0.05); +} + +list { + border-color: rgba(255, 255, 255, 0.12); + background-color: #2d3036; +} + +list row { + padding: 3px; +} + +list.content:not(.conversation-listbox) > row.row > box > row { + border: none; +} + +list.content:not(.conversation-listbox) > row.expander { + padding: 0; +} + +list.content:not(.conversation-listbox) > row.expander:focus { + box-shadow: none; +} + +list.content:not(.conversation-listbox) > row.expander:first-child:not(:last-child) list > row.header, list.content:not(.conversation-listbox) > row.expander:only-child:checked list > row.header { + border-radius: 6px 6px 0 0; +} + +list.content:not(.conversation-listbox) > row.expander:not(:first-child):not(:last-child) list > row.header { + border-radius: 0; +} + +list.content:not(.conversation-listbox) > row.expander list { + box-shadow: none; + background-color: transparent; +} + +list.content:not(.conversation-listbox) > row.expander list.nested { + border-radius: 0 0 6px 6px; +} + +list.content:not(.conversation-listbox) > row.expander list.nested > row { + background-color: transparent; + border-top: 1px solid rgba(0, 0, 0, 0.2); +} + +list.content:not(.conversation-listbox) > row.expander list.nested > row:first-child { + border-radius: 0; +} + +list.navigation-sidebar { + padding: 3px; +} + +list.navigation-sidebar > row { + border-radius: 6px; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable, treeview.view header button, row.activatable { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable:focus, treeview.view header button:focus, row.activatable:focus { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable:hover, treeview.view header button:hover, row.activatable:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms, background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.has-open-popup.activatable, treeview.view header button.has-open-popup, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable:active, treeview.view header button:active, row.activatable.has-open-popup, row.activatable:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); + background-image: radial-gradient(circle, alpha(currentColor, 0.05) 10%, transparent 0%); + background-size: 0% 0%; +} + +row:selected { + color: inherit; + background-color: alpha(currentColor, 0.06); +} + +row:selected image, +row:selected label { + color: #FFFFFF; +} + +row:selected button image, +row:selected button label { + color: inherit; +} + +row:selected:disabled image, +row:selected:disabled label { + color: rgba(255, 255, 255, 0.4); +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 6px 6px 10px; +} + +.app-notification button.text-button:not(:disabled) { + color: #5b9bf8; +} + +.app-notification > box > label { + margin-left: 9px; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander title > arrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(255, 255, 255, 0.7); +} + +expander title > arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander title > arrow:checked { + -gtk-icon-transform: unset; +} + +expander title > arrow:hover, expander title > arrow:active { + color: #FFFFFF; +} + +expander title > arrow:disabled { + color: rgba(255, 255, 255, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 3px; + border: 1px solid rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +calendar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +calendar:selected { + border-radius: 7px; +} + +calendar.header { + border-style: none none solid; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +calendar.highlight { + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(255, 255, 255, 0.3); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #2d3036; +} + +messagedialog.background.csd { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +messagedialog.background .titlebar, messagedialog.background.csd .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; + color: #FFFFFF; +} + +messagedialog.background .titlebar:backdrop, messagedialog.background.csd .titlebar:backdrop { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.4); +} + +messagedialog .dialog-action-box { + margin-top: -6px; +} + +messagedialog .dialog-action-box button, messagedialog .dialog-action-box button:first-child, messagedialog .dialog-action-box button:last-child, messagedialog .dialog-action-box .linked:not(.vertical) > button, messagedialog .dialog-action-box .linked:not(.vertical) > button:first-child, messagedialog .dialog-action-box .linked:not(.vertical) > button:last-child { + border-radius: 6px; +} + +messagedialog .dialog-action-box button:not(:last-child), messagedialog .dialog-action-box .linked:not(.vertical) > button:not(:last-child) { + margin-right: 6px; +} + +messagedialog .dialog-action-box button.suggested-action:not(:disabled), messagedialog .dialog-action-box .linked:not(.vertical) > button.suggested-action:not(:disabled) { + color: #5b9bf8; +} + +messagedialog .dialog-action-box button.destructive-action:not(:disabled), messagedialog .dialog-action-box .linked:not(.vertical) > button.destructive-action:not(:disabled) { + color: #F44336; +} + +.csd filechooser { + background-color: #25292f; + border-radius: 0 0 12px 12px; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +filechooser stack.view { + background-color: transparent; + padding: 0; +} + +filechooser stack.view scrolledwindow { + background-color: transparent; + border-radius: 0 0 12px 0; +} + +filechooser stack.view scrolledwindow list { + background-color: transparent; +} + +filechooser stack.view > placesview { + background-color: transparent; +} + +filechooser stack.view > placesview > actionbar, filechooser stack.view > placesview > actionbar > revealer > box { + background-color: transparent; +} + +filechooser stack.view frame > border { + border: none; +} + +.csd filechooser placessidebar { + background: none; + border-bottom-left-radius: 12px; +} + +filechooser actionbar, filechooser actionbar > revealer > box { + background-color: transparent; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar.left:not(separator) { + border-right: 1px solid rgba(255, 255, 255, 0.12); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar.right:not(separator) { + border-left: 1px solid rgba(255, 255, 255, 0.12); + 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.sidebar list { + padding: 3px; + background-color: #25292f; +} + +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 3px; + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms; + outline: none; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; + background-color: transparent; +} + +stacksidebar.sidebar row:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +stacksidebar.sidebar row:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; +} + +stacksidebar.sidebar row:active image, stacksidebar.sidebar row:active label { + color: #FFFFFF; +} + +stacksidebar.sidebar row:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + font-weight: 500; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +stacksidebar.sidebar row:selected image, stacksidebar.sidebar row:selected label { + color: #FFFFFF; +} + +stacksidebar.sidebar row + row { + margin-top: 3px; +} + +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; + color: inherit; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +row image.sidebar-icon:disabled { + color: rgba(255, 255, 255, 0.3); +} + +placessidebar.sidebar > viewport.frame { + border-style: none; +} + +placessidebar.sidebar list { + padding: 6px; +} + +placessidebar.sidebar row { + min-height: 32px; + margin: 0; + padding: 0; + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms; + outline: none; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; + background-color: transparent; +} + +placessidebar.sidebar row:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +placessidebar.sidebar row:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; +} + +placessidebar.sidebar row:active image, placessidebar.sidebar row:active label { + color: #FFFFFF; +} + +placessidebar.sidebar row:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + font-weight: 500; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +placessidebar.sidebar row:selected image, placessidebar.sidebar row:selected label { + color: #FFFFFF; +} + +placessidebar.sidebar row > revealer { + padding: 0 8px 0 16px; +} + +placessidebar.sidebar row:disabled { + color: rgba(255, 255, 255, 0.4); +} + +placessidebar.sidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar.sidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar.sidebar row label.sidebar-label { + color: inherit; +} + +placessidebar.sidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: alpha(currentColor, 0.08); +} + +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #5b9bf8; +} + +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #5b9bf8; +} + +placessidebar.sidebar row:drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms, background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(255, 255, 255, 0.12)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #22262c; + background-image: image(rgba(255, 255, 255, 0.12)), image(rgba(255, 255, 255, 0.12)); + 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; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border: none; + margin-bottom: 0; +} + +infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box { + background-color: #25292f; +} + +infobar.info > revealer > box link:link, infobar.info:hover > revealer > box link:link, infobar.info:backdrop > revealer > box link:link { + color: #FFFFFF; +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action) { + color: #5b9bf8; + background-color: alpha(currentColor, 0.15); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover { + color: #5b9bf8; + background-color: alpha(currentColor, 0.25); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; +} + +infobar.info > revealer > box button:focus, infobar.info:hover > revealer > box button:focus, infobar.info:backdrop > revealer > box button:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { + background-color: #5b9bf8; + color: #FFFFFF; +} + +infobar.action > revealer > box link:link, infobar.action:backdrop > revealer > box link:link, infobar.question > revealer > box link:link, infobar.question:backdrop > revealer > box link:link { + color: #FFFFFF; +} + +infobar.action > revealer > box button, infobar.action > revealer > box button:hover, infobar.action > revealer > box button:focus, infobar.action > revealer > box button:active, infobar.action > revealer > box button:checked, infobar.action > revealer > box button.text-button:not(:disabled), infobar.action:backdrop > revealer > box button, infobar.action:backdrop > revealer > box button:hover, infobar.action:backdrop > revealer > box button:focus, infobar.action:backdrop > revealer > box button:active, infobar.action:backdrop > revealer > box button:checked, infobar.action:backdrop > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button, infobar.question > revealer > box button:hover, infobar.question > revealer > box button:focus, infobar.question > revealer > box button:active, infobar.question > revealer > box button:checked, infobar.question > revealer > box button.text-button:not(:disabled), infobar.question:backdrop > revealer > box button, infobar.question:backdrop > revealer > box button:hover, infobar.question:backdrop > revealer > box button:focus, infobar.question:backdrop > revealer > box button:active, infobar.question:backdrop > revealer > box button:checked, infobar.question:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { + background-color: #438cf7; +} + +infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box link:link, infobar.warning:backdrop > revealer > box link:link { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box button, infobar.warning > revealer > box button:hover, infobar.warning > revealer > box button:focus, infobar.warning > revealer > box button:active, infobar.warning > revealer > box button:checked, infobar.warning > revealer > box button.text-button:not(:disabled), infobar.warning:backdrop > revealer > box button, infobar.warning:backdrop > revealer > box button:hover, infobar.warning:backdrop > revealer > box button:focus, infobar.warning:backdrop > revealer > box button:active, infobar.warning:backdrop > revealer > box button:checked, infobar.warning:backdrop > revealer > box button.text-button:not(:disabled) { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning:hover > revealer > box { + background-color: #fbb814; +} + +infobar.error > revealer > box, infobar.error:backdrop > revealer > box { + background-color: #F44336; + color: #FFFFFF; +} + +infobar.error > revealer > box link:link, infobar.error:backdrop > revealer > box link:link { + color: #FFFFFF; +} + +infobar.error > revealer > box button, infobar.error > revealer > box button:hover, infobar.error > revealer > box button:focus, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error > revealer > box button.text-button:not(:disabled), infobar.error:backdrop > revealer > box button, infobar.error:backdrop > revealer > box button:hover, infobar.error:backdrop > revealer > box button:focus, infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.error:hover > revealer > box { + background-color: #f32c1e; +} + +/************ + * Tooltips * + ************/ +tooltip { + box-shadow: none; +} + +tooltip.background { + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; + border-radius: 6px; +} + +tooltip.background.csd { + border-radius: 6px; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +tooltip decoration { + background-color: transparent; +} + +tooltip > box { + margin: -6px; + min-height: 24px; + padding: 4px 8px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.top overlay { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.bottom { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.dark { + color: #FFFFFF; +} + +colorswatch.light { + color: rgba(0, 0, 0, 0.87); +} + +colorswatch overlay { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); +} + +colorswatch overlay:hover { + box-shadow: 0 0 0 2px #5b9bf8; +} + +colorswatch#add-color-button { + border-radius: 6px 0 0 6px; +} + +colorswatch#add-color-button:only-child { + border-radius: 6px; +} + +colorswatch#add-color-button overlay { + background-color: rgba(255, 255, 255, 0.04); +} + +colorswatch#add-color-button overlay:hover { + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +colorswatch#add-color-button overlay:active { + background-color: rgba(255, 255, 255, 0.26); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 12px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 12px; +} + +colorswatch#editor-color-sample overlay:hover { + box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.15); +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #22262c; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 12px; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 0 36px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 0 36px transparent; +} + +.maximized decoration, .fullscreen decoration, .tiled decoration, .tiled-top decoration, .tiled-right decoration, .tiled-bottom decoration, .tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; + border: none; +} + +.ssd decoration { + border: none; + border-radius: 12px 12px 0 0; + box-shadow: none; +} + +.metacity decoration { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: none; +} + +.csd.popup decoration { + border-radius: 12px; + border: none; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1); +} + +tooltip.csd decoration { + border-radius: 6px; + box-shadow: none; + border: none; +} + +messagedialog.csd decoration { + border-radius: 12px; +} + +.solid-csd decoration { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + background-color: #1b1e24; + border: 1px solid #3f4348; +} + +.solid-csd decoration:backdrop { + background-color: #22262c; +} + +button.titlebutton:not(.suggested-action):not(.destructive-action) { + min-height: 22px; + min-width: 22px; + padding: 0; + margin: 0 4px; +} + +button.minimize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.minimize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.close.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.close.titlebutton:active:not(.suggested-action):not(.destructive-action) { + color: white; +} + +button.minimize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.close.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 10%, rgba(255, 255, 255, 0.15) 0%); +} + +button.minimize.titlebutton:backdrop:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:backdrop:not(.suggested-action):not(.destructive-action), button.close.titlebutton:backdrop:not(.suggested-action):not(.destructive-action) { + opacity: 0.65; +} + +button.minimize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.minimize.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +button.maximize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +button.close.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.close.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-color: #31c4b6; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + color: #5b9bf8; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg")); +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + -gtk-icon-transform: unset; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + padding-top: 6px; + -gtk-icon-transform: rotate(45deg); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(255, 255, 255, 0.12); + border-radius: 7px; + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.12); + background-color: #2d3036; + color: #FFFFFF; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + caret-color: #5b9bf8; +} + +stackswitcher, +.stack-switcher { + min-height: 0; + padding: 3px; + border-radius: 9px; + background-color: rgba(255, 255, 255, 0.04); + border: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { + margin: 0; + background-color: transparent; + border-radius: 6px; + padding: 3px 10px; + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button.text-button:not(.suggested-action):not(.destructive-action), +.stack-switcher.linked:not(.vertical) > button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 100px; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus, +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus { + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover, +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover { + background-color: alpha(currentColor, 0.1); + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked, +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +stackswitcher button.text-button, +.stack-switcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular, +.stack-switcher button.circular, +.stack-switcher button.text-button.circular { + min-width: 36px; + min-height: 36px; + padding: 0; +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +button.emoji-section { + margin: 4px; +} + +button.emoji-section:checked { + color: #5b9bf8; +} + +button.emoji-section:not(:last-child) { + margin-right: 0; +} + +popover.emoji-picker .emoji { + min-width: 3em; + min-height: 3em; + padding: 0 8px; +} + +popover.emoji-picker .emoji widget { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; +} + +popover.emoji-picker .emoji widget:hover { + background-color: alpha(currentColor, 0.08); +} + +popover.emoji-completion { + padding: 8px 0; +} + +popover.emoji-completion arrow { + border: none; + background: none; +} + +popover.emoji-completion .emoji-completion-row { + min-height: 28px; + padding: 0 12px; +} + +popover.emoji-completion .emoji:hover { + background-color: alpha(currentColor, 0.08); +} + +/************ + * Nautilus * + ************/ +.nautilus-window.background.csd { + border-radius: 0 0 12px 12px; + background-color: #2d3036; +} + +.nautilus-window.background.csd:backdrop { + background-color: #25292f; +} + +.nautilus-window.background.csd > grid.horizontal > paned.horizontal > separator, +.nautilus-window.background.csd > deck > box.vertical > paned.horizontal > separator { + margin-left: 0; +} + +.nautilus-window.background.csd placessidebar > viewport.frame > list > separator { + background: none; +} + +.nautilus-window.background.csd.unified notebook { + border-radius: 0; +} + +.nautilus-window.background.csd:not(.unified) .nautilus-list-view { + background-color: transparent; + border-bottom-right-radius: 12px; +} + +.nautilus-window.background.csd:not(.unified) notebook { + background-color: #25292f; + border-radius: 0 0 12px 12px; +} + +.nautilus-window.background.csd:not(.unified) notebook > stack { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) notebook scrolledwindow > .view:not(:selected):not(:hover):not(:checked) { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) notebook placesview > stack > frame > scrolledwindow > viewport > list { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) notebook placesview > actionbar { + background-color: transparent; + border-radius: 0 0 12px 12px; +} + +.nautilus-window.background.csd:not(.unified) notebook placesview > actionbar > revealer > box { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) paned > separator.wide { + min-width: 12px; + box-shadow: 12px 0 #25292f; + background-color: #25292f; + background-image: image(#46494e); +} + +.nautilus-window.maximized, .nautilus-window.maximized placessidebar { + border-radius: 0; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + margin: 6px; + border: none; + border-radius: 6px; + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +.nautilus-window .floating-bar button { + margin: 4px; + color: #FFFFFF; +} + +.nautilus-canvas-item.dim-label, +.nautilus-list-dim-label { + color: rgba(255, 255, 255, 0.7); +} + +.nemo-desktop.nemo-canvas-item, .caja-desktop.caja-canvas-item, +.nautilus-desktop.nautilus-canvas-item { + color: #FFFFFF; +} + +@keyframes nautilus-operations-button-needs-attention { + to { + background-color: alpha(currentColor, 0.08); + } +} + +.nautilus-operations-button-needs-attention { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 6 alternate; +} + +.path-bar-box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.path-bar-box button { + margin: 0; +} + +.path-bar-box.width-maximized { + background-color: alpha(currentColor, 0.05); +} + +.path-bar-box.background.frame { + border-style: none; + background-color: alpha(currentColor, 0.05); +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { + padding-left: 12px; + padding-right: 12px; + margin-left: 1px; + margin-right: 1px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):first-child { + margin-left: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):last-child { + margin-right: 0; +} + +.path-bar-box .linked.nautilus-path-bar button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 0; +} + +.path-bar-box .linked.nautilus-path-bar button.text-button.image-button:not(.suggested-action):not(.destructive-action) image:not(:only-child) { + margin: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):first-child:dir(rtl) { + background-color: rgba(255, 255, 255, 0.08); +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):last-child:dir(ltr):disabled, .path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):first-child:dir(rtl):disabled { + background-color: transparent; + color: rgba(255, 255, 255, 0.4); +} + +.windowhandle .linked.nautilus-path-bar { + background-color: alpha(currentColor, 0.05); + border-radius: 6px; + margin: 6px 0; + color: #FFFFFF; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box { + padding: 2px; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box button:not(.suggested-action):not(.destructive-action) { + min-height: 20px; + margin: 0; + border-radius: 4px; + background-color: transparent; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box button.current-dir:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box button.current-dir:not(.suggested-action):not(.destructive-action):hover, .windowhandle .linked.nautilus-path-bar .path-buttons-box button.current-dir:not(.suggested-action):not(.destructive-action):active { + background: none; + box-shadow: none; +} + +.windowhandle .linked.nautilus-path-bar > button { + margin: 0; +} + +.windowhandle .linked.nautilus-path-bar > button:hover { + background-color: alpha(currentColor, 0.1); +} + +.disk-space-display.unknown { + background-color: rgba(255, 255, 255, 0.26); + color: rgba(255, 255, 255, 0.26); +} + +.disk-space-display.used { + background-color: #5b9bf8; + color: #5b9bf8; +} + +.disk-space-display.free { + background-color: rgba(255, 255, 255, 0.14); + color: rgba(255, 255, 255, 0.14); +} + +.search-information { + padding: 2px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + color: #FFFFFF; +} + +.conflict-row:not(:selected) { + background-color: #65562e; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 6px; +} + +.nautilus-window flowboxchild:selected { + background-color: transparent; +} + +.nautilus-window notebook .view:not(treeview) { + border-radius: 6px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame { + border-style: none; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child { + margin: -6px 0 0 -6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label { + margin: 0 8px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button { + border-radius: 0; +} + +.nautilus-window > popover.menu:not(:last-child) { + padding: 3px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box { + margin-top: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box { + margin-bottom: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked { + margin-top: 1px; +} + +.nautilus-window > popover.menu:not(:last-child) separator { + margin-bottom: -2px; +} + +.nautilus-menu-sort-heading { + margin: 1px 3px; + font-weight: 500; +} + +.nautilus-menu-sort-heading:disabled { + color: rgba(255, 255, 255, 0.7); +} + +.nautilus-window paned > separator { + background-color: #2d3036; +} + +window.csd.background > deck > box.view > notebook > box > stack > button { + margin: 2px; +} + +/********* + * gedit * + *********/ +window.org-gnome-gedit > paned.titlebar > separator { + background-color: transparent; +} + +window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned > box.vertical > stack > grid.horizontal > box.horizontal { + margin: 4px 0; +} + +window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned > box.vertical > stack > grid.horizontal > scrolledwindow { + border-bottom-left-radius: 12px; +} + +window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned stack scrolledwindow viewport.frame list.gedit-document-panel { + background: none; +} + +.open-document-selector-path-label { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +.open-document-selector-match { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-document-panel { + background-color: #2d3036; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0 0 12px 12px; +} + +.gedit-search-slider { + margin: 0 6px 10px; + padding: 6px; + background-color: #2d3036; + border-radius: 0 0 12px 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.1); +} + +.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 6px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 6px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:not(.error) { + background-color: #2d3036; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover, .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { + color: #FFFFFF; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/********** + * Tweaks * + **********/ +.csd .tweak-categories { + background-color: transparent; + border-bottom-left-radius: 12px; +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#25292f); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#25292f); +} + +.tweak-group-startup { + background-image: image(#25292f); +} + +.tweak-group-startup row.tweak-startup { + border-radius: 6px; + background-color: transparent; + background-image: none; +} + +row#Focus, +row#ClickMethod, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + margin-top: 4px; +} + +leaflet.titlebar > .titlebar.tweak-titlebar-left, +leaflet.titlebar > .titlebar.tweak-titlebar-right, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right { + background-color: inherit; + box-shadow: inherit; + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); +} + +/************************ + * Gnome Control Center * + ************************/ +window.background.csd > headerbar.titlebar > leaflet > headerbar:first-child:not(:only-child), +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:not(:only-child) { + border-top-left-radius: 12px; +} + +window.background.csd > headerbar.titlebar > leaflet > headerbar:last-child:not(:only-child), +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:not(:only-child) { + border-top-right-radius: 12px; +} + +window.background.csd > headerbar.titlebar > leaflet > headerbar:first-child:only-child, window.background.csd > headerbar.titlebar > leaflet > headerbar:last-child:only-child, +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:only-child, +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:only-child { + border-top-right-radius: 12px; + border-top-left-radius: 12px; +} + +window.background.csd > stack:not(.titlebar) > stack.background { + border-radius: 0 0 12px 12px; +} + +window.background.csd > leaflet > stack.background, +window.background.csd > hdyleaflet > stack.background, +window.background.csd > box.horizontal > stack.background { + background: none; +} + +window.background.csd > leaflet > stack.background frame > border, +window.background.csd > hdyleaflet > stack.background frame > border, +window.background.csd > box.horizontal > stack.background frame > border { + border: none; +} + +window.background.csd > leaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame, +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame { + background-color: #25292f; + border-bottom-right-radius: 12px; +} + +window.background.csd > leaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view, +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view { + background: none; +} + +window.background.csd > leaflet frame.view, +window.background.csd > hdyleaflet frame.view, +window.background.csd > box.horizontal frame.view { + border-radius: 6px; + background: none; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view { + background-color: #25292f; + border-bottom-left-radius: 12px; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack { + background-color: transparent; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list { + background-color: transparent; + padding: 3px; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable { + border-radius: 6px; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected) { + background-color: transparent; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical > list { + border-top-width: 0; + border-bottom-width: 0; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical > list, window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical > list > row { + border-radius: 0; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:first-child > list { + border-top-width: 1px; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:first-child > list, window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:first-child > list > row { + border-radius: 6px 6px 0 0; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:last-child > list { + border-bottom-width: 1px; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:last-child > list, window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:last-child > list > row { + border-radius: 0 0 6px 6px; +} + +window.background.csd hdycolumn stack frame.view > stack > stack list > separator { + background-color: rgba(255, 255, 255, 0.12); +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack > box.horizontal > notebook > stack { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > scrolledwindow > viewport.frame > list { + background: none; +} + +dialog.background.csd > box.vertical.dialog-vbox > scrolledwindow > viewport.frame > list > row:not(:hover):not(:active):not(:selected) { + background-color: transparent; +} + +hdyleaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group), leaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group), box.horizontal > stack.background > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) { + padding: 3px; +} + +hdyleaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) row.activatable, leaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) row.activatable, box.horizontal > stack.background > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) row.activatable { + border-radius: 6px; +} + +/************************ + * Gnome system monitor * + ************************/ +window#gnome-system-monitor.background.csd > box.vertical > stack { + background-color: #25292f; + border-radius: 0 0 12px 12px; +} + +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > revealer > actionbar > revealer > box { + border-radius: 0 0 12px 12px; +} + +window#gnome-system-monitor.background:not(.csd) > box.vertical > headerbar { + box-shadow: none; +} + +/************************ + * Gnome Sound Recorder * + ************************/ +stack > grid.vertical > scrolledwindow { + border: none; + border-radius: 0 0 12px 12px; +} + +stack > grid.vertical > scrolledwindow > viewport.frame list { + border-radius: 0 0 12px 12px; +} + +stack > grid.vertical scrolledwindow.frame.emptyGrid { + border: none; +} + +/****************** + * Gnome Contacts * + ******************/ +window.background.csd scrolledwindow.contacts-contact-form { + border-bottom-right-radius: 12px; +} + +/************************ + * Epiphany (Gnome Web) * + ************************/ +tabbar > revealer > box { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: rgba(255, 255, 255, 0.04); + padding: 0; + margin: 0; + border-radius: 0; +} + +tabbar tabbox { + padding: 3px; + margin: 0; + background: none; +} + +tabbar tabbox > tab button.tab-close-button { + min-height: 24px; + min-width: 24px; + border-radius: 9999px; + border: none; + padding: 0; + margin-right: 0; +} + +tabbar .end-action { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +tabbar .end-action button { + border-radius: 0; +} + +window.preferences preferencespage clamp > box > preferencesgroup > box { + padding: 6px; +} + +window.preferences preferencespage clamp > box > preferencesgroup > box > box > widget > list { + margin: 4px; +} + +/***************** + * Gnome Weather * + *****************/ +#weather-page, +#weekly-forecast-frame { + border-bottom-right-radius: 12px; +} + +#weather-page-content-view { + border-bottom-right-radius: 12px; + border-bottom-left-radius: 12px; +} + +/*************** + * Gnome Music * + ***************/ +window.background.csd box.vertical > overlay > stack.background { + border-radius: 0 0 12px 12px; +} + +/**************** + * Gnome Clocks * + ****************/ +/************* + * Rhythmbox * + *************/ +window.background > box.vertical > toolbar.primary-toolbar > toolitem > box.horizontal:not(.linked) > button.toggle, +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button:not(.toggle):not(.raised):not(.flat), window.background > box.vertical > toolbar.primary-toolbar > toolitem button.flat.scale, window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button { + min-height: 24px; + min-width: 24px; + padding: 6px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button { + border-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button:not(:first-child), .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button:not(:last-child) { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button.image-button:not(.text-button):first-child { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button.image-button:not(.text-button):last-child { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button > widget > box > image { + padding: 0; +} + +window.csd > box.vertical > box.vertical > toolbar.horizontal, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal { + padding: 6px; + margin: -1px 0; + border-bottom: none; + border-top: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: transparent; +} + +window.csd > box.vertical > box.vertical > frame, +window.solid-csd > box.vertical > box.vertical > frame { + margin: -1px 0; + padding: 0; +} + +window.csd > box.vertical > box.vertical > frame > border, +window.solid-csd > box.vertical > box.vertical > frame > border { + border: none; +} + +window.background > box.vertical > toolbar.primary-toolbar { + padding: 0 6px; +} + +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised { + border-radius: 6px; +} + +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised > widget > box > image { + padding: 0; +} + +/********** + * Polari * + **********/ +.polari-room-list .sidebar { + background: none; +} + +.polari-room-list .sidebar > row.activatable:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +stack.view.polari-entry-area { + background-color: #22262c; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-bottom-right-radius: 12px; +} + +stack.view.polari-entry-area:disabled { + background-image: image(#22262c); +} + +/*********** + * Builder * + ***********/ +layouttabbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +layouttabbar > box > button { + margin: 2px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.2); + box-shadow: inset 0 -2px #5b9bf8; + background-color: #25292f; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(0, 0, 0, 0.2); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #F44336; + color: #FFFFFF; +} + +window.workbench treeview.image { + color: rgba(255, 255, 255, 0.7); +} + +popover.popover-selector list { + padding: 6px; +} + +popover.popover-selector list row { + border-radius: 6px; +} + +popover.popover-selector list row image:dir(ltr) { + margin-right: 6px; +} + +popover.popover-selector list row image:dir(rtl) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(ltr) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(rtl) { + margin-right: 6px; +} + +omnibar.linked:not(.vertical) entry { + border-radius: 6px; +} + +omnibar:not(:hover):not(:active) entry { + color: rgba(255, 255, 255, 0.7); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +entry.preferences-search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: #25292f; +} + +preferences stacksidebar.sidebar list { + background-color: #2d3036; +} + +preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { + border-style: none; +} + +preferences > box > box:dir(ltr) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.messagepopover.background { + padding: 0; +} + +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +popover.messagepopover .popover-action-area button:first-child { + border-bottom-left-radius: 6px; +} + +popover.messagepopover .popover-action-area button:last-child { + border-bottom-right-radius: 6px; +} + +popover.messagepopover .popover-content-area { + margin: 16px; +} + +popover.transfers list { + background-color: transparent; +} + +popover.transfers list row:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(0, 0, 0, 0.2); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(0, 0, 0, 0.2); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +docktab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + margin-bottom: -1px; + padding: 6px 6px; + border-width: 1px; + border-color: transparent; + box-shadow: inset 0 -2px transparent; + background-image: radial-gradient(circle, #5b9bf8 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +docktab:hover { + background-color: alpha(currentColor, 0.08); + color: #FFFFFF; +} + +docktab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 225ms cubic-bezier(0, 0, 0.2, 1), background-image 525ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #5b9bf8; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #FFFFFF; +} + +dockoverlayedge { + background-color: #22262c; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #5b9bf8; +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #5b9bf8; +} + +pillbox { + background-color: #22262c; + border-radius: 6px; +} + +layoutpane entry.search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: #25292f; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; + background-color: transparent; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +window.workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +button.run-arrow-button { + padding-left: 10px; + padding-right: 10px; +} + +button.dzlmenubutton image { + min-width: 30px; +} + +button.dzlmenubutton image.arrow { + min-width: 27px; +} + +button.dzlmenubuttonitem { + color: #FFFFFF; + font-weight: normal; +} + +button.dzlmenubuttonitem:disabled { + color: rgba(255, 255, 255, 0.4); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +idelayoutstackheader button:checked { + color: #FFFFFF; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #22262c; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button { + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:active { + background-image: radial-gradient(circle, rgba(91, 155, 248, 0.7) 10%, transparent 0%); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: #FFFFFF; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #5b9bf8; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #5b9bf8; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #5b9bf8; + color: #FFFFFF; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +button.photos-filter-preview { + color: #FFFFFF; + font-weight: normal; +} + +button.photos-filter-preview:checked { + background-color: alpha(currentColor, 0.06); + color: #FFFFFF; +} + +button.photos-filter-preview:checked image { + color: #FFFFFF; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.side-panel .view { + background-image: image(#2d3036); +} + +.side-panel .view:hover { + background-image: image(#3e4146); +} + +.side-panel .view:selected { + background-image: image(#5b9bf8); +} + +.side-panel .view:selected:hover { + background-image: image(#68a3f9); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-clip: border-box; +} + +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/************* + * Documents * + *************/ +.documents-scrolledwin { + background-color: transparent; +} + +.documents-scrolledwin .content-view:not(:selected):not(:hover) { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view:not(:selected):not(:hover) { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view:not(:selected):not(:hover) border { + border: none; +} + +window.background.csd > stack > box > revealer > actionbar > revealer > box { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +/******************* + * Document Viewer * + *******************/ +window.background.csd evview.view.content-view { + border-radius: 0 0 12px 12px; +} + +/********************************* + * Archive Manager (File roller) * + *********************************/ +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow { + border-radius: 0 0 12px 12px; + background-color: #25292f; +} + +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow > treeview.view:not(:hover):not(:selected):not(:selected):not(:hover):not(.progressbar):not(.expander):not(.trough):not(.separator) { + background-color: #25292f; +} + +.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow { + border-radius: 0 0 0 12px; + background-color: #22262c; +} + +/************ + * Terminal * + ************/ +terminal-window decoration { + border-radius: 12px 12px 0 0; +} + +terminal-window.background.csd, terminal-window.background.csd.maximized { + border-radius: 0; +} + +terminal-window notebook > header > box { + margin: -2px -2px -2px 1px; +} + +terminal-window notebook > header > box button { + min-height: 24px; + min-width: 24px; + padding: 3px; +} + +window.background > box.vertical > box.horizontal > frame > border { + border-width: 0 1px 0 0; +} + +window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list { + border-bottom-left-radius: 12px; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame { + border-width: 0; + border-radius: 0 0 12px 0; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame > stack { + border-bottom-right-radius: 12px; +} + +.terminal-window { + background-color: #22262c; +} + +.terminal-window tabbar tabbox { + background-color: #2d3036; + margin: 0; + border-radius: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-clip: border-box; +} + +/********* + * To Do * + *********/ +task-list-view taskrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -8px; +} + +task-list-view taskrow:hover { + transition: none; +} + +task-list-view taskrow label { + margin: 0 8px; +} + +task-list-view taskrow image.dim-label { + min-width: 16px; +} + +task-list-view > box > revealer > box > button { + margin: -6px; +} + +task-list-view > box > revealer > box > button .dim-label { + color: inherit; +} + +tasklistview taskrow { + outline: none; +} + +tasklistview taskrow entry, tasklistview taskrow entry:focus, tasklistview taskrow entry:disabled { + box-shadow: none; +} + +tasklistview taskrow image.dim-label { + min-width: 16px; +} + +tasklistview > box > revealer > box > button { + margin: -6px; +} + +tasklistview > box > revealer > box > button .dim-label { + color: inherit; +} + +/******* + * Eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/*********** + * Fractal * + ***********/ +.background.csd.main-window .sidebar.rooms-sidebar { + border-bottom-left-radius: 12px; +} + +/******** + * Gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(0, 0, 0, 0.2); +} + +list.categories { + background-image: image(#2d3036); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 6px; + background-color: #2d3036; + color: #FFFFFF; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 36px; +} + +/********* + * Geary * + *********/ +window.background.csd.geary-main-window > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical, +window#GearyMainWindow.background.csd > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical { + border-bottom-left-radius: 12px; +} + +window.background.csd.geary-main-window > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical statusbar, +window#GearyMainWindow.background.csd > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical statusbar { + border-bottom-left-radius: 12px; +} + +window.background.csd.geary-main-window stack#conversation_viewer, +window#GearyMainWindow.background.csd stack#conversation_viewer { + border-bottom-right-radius: 12px; +} + +window.background.csd.geary-main-window stack#conversation_viewer scrolledwindow.geary-conversation-scroller viewport.frame list.conversation-listbox, +window#GearyMainWindow.background.csd stack#conversation_viewer scrolledwindow.geary-conversation-scroller viewport.frame list.conversation-listbox { + background: none; + border-bottom-right-radius: 12px; +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded { + animation: none; + background-image: none; +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed actionbar > revealer > box, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed actionbar > revealer > box { + border-radius: 0; +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar { + color: #FFFFFF; + background-color: #22262c; + box-shadow: none; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-composer-box actionbar > revealer > box, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-composer-box actionbar > revealer > box { + border-bottom-left-radius: 0; +} + +.geary-accounts-editor-pane frame:not(.geary-signature) > border, +.geary-accounts-editor-pane scrolledwindow.frame { + border: none; +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout { + background-color: #25292f; +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > headerbar, +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > headerbar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > separator.sidebar, +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > separator.sidebar { + background-color: #1b1e24; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > separator.sidebar:backdrop, +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > separator.sidebar:backdrop { + background-color: #22262c; +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > box.vertical + separator.sidebar { + min-width: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +.geary-main-window.unified frame.geary-conversation-frame scrolledwindow { + padding: 3px; +} + +.geary-main-window.unified frame.geary-conversation-frame scrolledwindow treeview.view { + border: 1px solid transparent; + border-radius: 6px; + padding: 6px; +} + +.geary-main-window.unified frame.geary-conversation-frame scrolledwindow treeview.view:selected, .geary-main-window.unified frame.geary-conversation-frame scrolledwindow treeview.view:active { + border-radius: 6px; + background-color: #5b9bf8; + color: #FFFFFF; +} + +.geary-main-window.unified separator.geary-sidebar-pane-separator { + min-width: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content > row.activatable { + border: 1px solid rgba(255, 255, 255, 0.12); + border-bottom-width: 0; + background-color: #25292f; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content > row.activatable:first-child { + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content .geary-attachment-pane { + border-radius: 0 0 8px 8px; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content .geary-attachment-pane actionbar.background { + background-color: transparent; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content .geary-attachment-pane actionbar.background > revealer > box { + border-radius: 0 0 6px 6px; +} + +/************** + * Extensions * + **************/ +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + +window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list { + padding: 0 0; +} + +/*********** + * Dialogs * + ***********/ +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:first-child { + border-radius: 0 0 0 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:last-child { + border-radius: 0 0 12px 0; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow, +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow { + border-radius: 0 0 12px 12px; + background-color: #25292f; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active), +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list row.activatable:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack toolbar.toolbar { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd stack scrolledwindow.frame { + border-radius: 6px; +} + +dialog.background.csd stack scrolledwindow.frame > viewport.frame.view { + border-radius: 6px; +} + +dialog.background.csd stack scrolledwindow.frame textview.view { + border-radius: 6px; +} + +dialog.background.csd stack scrolledwindow.frame textview.view > text { + background: none; +} + +window.background.csd.unified { + background-color: #22262c; +} + +window.background.csd.unified headerbar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +window.background.csd.unified > decoration-overlay { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +window.background.csd.unified, +window.background.csd.unified > decoration, +window.background.csd.unified > decoration-overlay { + border-radius: 12px; +} + +window.background.csd.unified.tiled > decoration-overlay, window.background.csd.unified.tiled-top > decoration-overlay, window.background.csd.unified.tiled-right > decoration-overlay, window.background.csd.unified.tiled-bottom > decoration-overlay, window.background.csd.unified.tiled-left > decoration-overlay, window.background.csd.unified.maximized > decoration-overlay, window.background.csd.unified.fullscreen > decoration-overlay { + box-shadow: none; +} + +window.background.csd.unified.tiled, +window.background.csd.unified.tiled > decoration, +window.background.csd.unified.tiled > decoration-overlay, window.background.csd.unified.tiled-top, +window.background.csd.unified.tiled-top > decoration, +window.background.csd.unified.tiled-top > decoration-overlay, window.background.csd.unified.tiled-right, +window.background.csd.unified.tiled-right > decoration, +window.background.csd.unified.tiled-right > decoration-overlay, window.background.csd.unified.tiled-bottom, +window.background.csd.unified.tiled-bottom > decoration, +window.background.csd.unified.tiled-bottom > decoration-overlay, window.background.csd.unified.tiled-left, +window.background.csd.unified.tiled-left > decoration, +window.background.csd.unified.tiled-left > decoration-overlay, window.background.csd.unified.maximized, +window.background.csd.unified.maximized > decoration, +window.background.csd.unified.maximized > decoration-overlay, window.background.csd.unified.fullscreen, +window.background.csd.unified.fullscreen > decoration, +window.background.csd.unified.fullscreen > decoration-overlay { + border-radius: 0; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#2d3036); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 32px; +} + +notebook.tilix-background tab > box > stack { + margin: -6px; +} + +button.flat.tilix-small-button { + min-height: 20px; + min-width: 16px; +} + +/************** + * Terminator * + **************/ +.terminator-terminal-window paned > separator { + background-color: #22262c; +} + +.terminator-terminal-window notebook.frame { + border-style: none; +} + +/************* + * Ubitquity * + *************/ +#live_installer .menubar progressbar trough { + border-radius: 4px; + background-color: rgba(255, 255, 255, 0.14); +} + +/********* + * Meld * + ********/ +.meld-notebook, .meld-notebook > stack { + background: none; + border-radius: 0 0 12px 12px; +} + +.meld-notebook-child { + background-color: #2d3036; + border-radius: 0 0 12px 12px; +} + +statusbar.meld-status-bar { + background: none; +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 6px; +} + +/************ + * Chromium * + ************/ +window.background.chromium { + background-color: #2d3036; +} + +window.background.chromium entry, +window.background.chromium > button { + border: 1px solid #3f4348; +} + +window.background.chromium > button { + color: #5b9bf8; +} + +window.background.chromium > button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +window.background.chromium menubar, +window.background.chromium headerbar { + color: rgba(255, 255, 255, 0.7); +} + +window.background.chromium headerbar button:active { + background-color: alpha(currentColor, 0.12); +} + +window.background.chromium spinner { + color: #5b9bf8; +} + +window.background.chromium textview.view { + background-color: transparent; +} + +window.background.chromium treeview.view.cell:selected:focus { + background-color: #5b9bf8; + color: #FFFFFF; +} + +window.background.chromium treeview.view button { + border: 1px solid rgba(255, 255, 255, 0.26); + background-color: #25292f; +} + +window.background.chromium menu { + border-color: #464e5a; +} + +window.background.chromium menu menuitem { + border-radius: 0; +} + +tooltip.background.chromium { + background-color: #26292e; +} + +/*********** + * Firefox * + ***********/ +#MozillaGtkWidget decoration { + border: none; +} + +#MozillaGtkWidget > widget text { + background-color: #2d3036; +} + +#MozillaGtkWidget > widget text:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +#MozillaGtkWidget > widget > separator { + color: #3f4348; +} + +#MozillaGtkWidget > widget > scrollbar { + background-clip: border-box; +} + +#MozillaGtkWidget > widget > frame > border { + border-color: #3f4348; +} + +#MozillaGtkWidget > widget > entry, +#MozillaGtkWidget > widget > button > button { + border: 1px solid #3f4348; + border-radius: 6px; + box-shadow: none; +} + +#MozillaGtkWidget > widget > entry:disabled, +#MozillaGtkWidget > widget > button > button:disabled { + border-color: rgba(255, 255, 255, 0.14); +} + +#MozillaGtkWidget > widget > entry { + min-height: 30px; + background-color: #25292f; +} + +#MozillaGtkWidget > widget > entry:focus { + border-color: #5b9bf8; + box-shadow: inset 0 0 0 1px #5b9bf8; +} + +#MozillaGtkWidget > widget > entry:disabled { + background-color: #2d3036; +} + +#MozillaGtkWidget > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +#MozillaGtkWidget > widget > button > button:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +#MozillaGtkWidget > widget > button > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +#MozillaGtkWidget > widget > checkbutton > check, +#MozillaGtkWidget > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate), +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate) { + color: #464646; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):hover, #MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):active, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):hover, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):active { + color: #727272; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { + color: rgba(70, 70, 70, 0.5); +} + +#MozillaGtkWidget menu { + border: none; +} + +#MozillaGtkWidget > widget > menubar { + color: rgba(255, 255, 255, 0.7); +} + +#MozillaGtkWidget > widget > menubar:hover { + color: #FFFFFF; +} + +#MozillaGtkWidget > widget > menubar:disabled { + color: rgba(255, 255, 255, 0.3); +} + +#MozillaGtkWidget > widget > frame { + color: #3f4348; +} + +#MozillaGtkWidget menu > separator { + color: #3f4348; +} + +window.background:not(.csd) > window > menu menuitem { + transition: none; +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +scrolledwindow#DialogNotebook > viewport.frame > notebook.frame button.close-button image { + padding: 4px; +} + +/*********** + * Synapse * + ***********/ +/*************** + * Libreoffice * + ***************/ +window.background > grid > widget > widget > scrolledwindow > viewport > grid > box > box > frame > box { + background-color: #25292f; +} + +/********* + * Pamac * + *********/ +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > list, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > scrolledwindow > viewport.frame > list, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > box.vertical > stack > scrolledwindow > viewport.frame > list { + border: none; + border-radius: 0; +} + +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > list > row.activatable, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > scrolledwindow > viewport.frame > list > row.activatable, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > box.vertical > stack > scrolledwindow > viewport.frame > list > row.activatable { + border-radius: 6px; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #5b9bf8; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 12px 12px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #1b1e24; + color: #FFFFFF; +} + +UnityDecoration .top:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +UnityDecoration .menuitem { + color: rgba(255, 255, 255, 0.7); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #FFFFFF; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.15); +} + +.background:not(.csd) headerbar.inline-toolbar:not(.titlebar) { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #14181d; + color: #FFFFFF; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #FFFFFF; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #5b9bf8; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: rgba(20, 24, 29, 0.75); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(255, 255, 255, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + color: #FFFFFF; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #5b9bf8; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #5b9bf8; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow calendar { + border-style: none; +} + +#MatePanelPopupWindow calendar:not(:selected) { + background-color: transparent; +} + +#MatePanelPopupWindow calendar + box { + margin-top: -5px; + padding-top: 5px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +#MatePanelPopupWindow expander > title { + min-height: 32px; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(255, 255, 255, 0.12); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: alpha(currentColor, 0.1); + color: #FFFFFF; +} + +#mate-menu { + border: 1px solid rgba(0, 0, 0, 0.2); + background-color: #2d3036; +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #FFFFFF; + font-weight: normal; +} + +#mate-menu button:not(.flat) { + background-color: alpha(currentColor, 0.1); +} + +#mate-menu button image, +#mate-menu button label + label { + color: rgba(255, 255, 255, 0.7); +} + +#mate-menu entry { + margin: 0 0 4px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 4px; + padding: 6px; +} + +.brisk-menu { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.brisk-menu entry { + margin-bottom: -2px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.brisk-menu entry + box > box:dir(ltr) { + margin-right: -2px; + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +.brisk-menu entry + box > box:dir(rtl) { + margin-left: -2px; + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +.brisk-menu .categories-list { + padding-top: 4px; +} + +.brisk-menu .categories-list button { + margin: 0 4px; +} + +.brisk-menu .categories-list button:checked { + color: #5b9bf8; +} + +.brisk-menu .session-button { + padding: 12px; +} + +.brisk-menu .frame { + border-style: none; +} + +.brisk-menu .apps-list { + padding: 4px 0; + background-color: transparent; +} + +.brisk-menu .apps-list row { + padding: 0; +} + +.brisk-menu .apps-list row:hover { + box-shadow: none; +} + +.brisk-menu .apps-list button { + border-radius: 0; + color: #FFFFFF; + font-weight: normal; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 6px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button.slider-button { + min-width: 24px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #25292f; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-canvas-item { + border-radius: 6px; +} + +.caja-desktop.view .entry, +.caja-navigation-window .view .entry { + border: none; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + color: #FFFFFF; +} + +.caja-desktop.view .entry:selected, +.caja-navigation-window .view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-desktop.view .entry { + background-color: #22262c; + color: #FFFFFF; + caret-color: currentColor; +} + +.caja-desktop.view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 7px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.lock-dialog frame > border { + border-style: none; +} + +.lock-dialog button:not(:disabled) { + color: #5b9bf8; +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 6px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; +} + +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(255, 255, 255, 0.14); +} + +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #5b9bf8; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window list.sidebar { + background: none; + border-radius: 0 0 0 12px; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 6px; +} + +.budgie-popover { + border: 0 none transparent; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-clip: padding-box; + background-color: #1a1f26; + border-radius: 12px; +} + +.budgie-popover .container { + padding: 6px; +} + +.budgie-popover .container .container, .budgie-popover .container list, .budgie-popover .container row { + padding: 0; +} + +.budgie-popover box > separator { + margin: 3px 0; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row:hover { + box-shadow: none; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) { + background-color: rgba(255, 255, 255, 0.04); + border-right: none; + border-bottom-left-radius: 12px; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable { + padding: 6px 8px; +} + +.budgie-popover treeview.view.sidebar { + border-right: none; + background: none; +} + +.budgie-popover treeview.view.sidebar:hover { + background-color: alpha(currentColor, 0.08); +} + +.budgie-popover treeview.view.sidebar:selected { + background-color: alpha(currentColor, 0.12); +} + +.budgie-popover.bottom scrolledwindow.sidebar:not(.categories) { + padding-top: 12px; + border-top-left-radius: 12px; + border-bottom-left-radius: 0; +} + +.budgie-popover > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.bottom > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack { + border-top: none; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.budgie-menu .sidebar, +.budgie-popover.budgie-menu scrollbar, +.budgie-popover.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-popover.budgie-menu entry.search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-popover.budgie-menu scrolledwindow.sidebar.categories { + background-color: rgba(255, 255, 255, 0.04); + padding-bottom: 12px; +} + +.budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button { + border-radius: 0; +} + +.budgie-popover.budgie-menu scrolledwindow > viewport.frame > list > row.activatable > button.flat { + border-radius: 0; +} + +.budgie-popover.budgie-menu list.left-overlay-menu { + border-radius: 12px; + margin: 6px; + padding: 6px; + background-color: #1a1f26; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.budgie-popover.budgie-menu .budgie-menu-footer { + padding: 6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.budgie-menu .budgie-menu-footer button { + border-radius: 9999px; +} + +.budgie-popover.user-menu list, +.budgie-popover.user-menu row { + border: none; + background: none; + box-shadow: none; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child { + margin-bottom: 0; + outline-width: 0; + border-radius: 6px; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child button.indicator-item { + transition: none; + animation: none; +} + +.budgie-popover.sound-popover .container { + padding: 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 3px; +} + +.budgie-popover.night-light-indicator .view-header { + margin: 0 6px; +} + +.budgie-popover.places-menu .name-button image:dir(ltr) { + margin-right: 3px; +} + +.budgie-popover.places-menu .name-button image:dir(rtl) { + margin-left: 3px; +} + +.budgie-popover.places-menu .unmount-button { + margin: 2px; + padding: 0; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 3px; + padding-top: 3px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.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(255, 255, 255, 0.12); +} + +.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 { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: alpha(currentColor, 0.1); +} + +.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: 6px; +} + +.budgie-panel { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(20, 24, 29, 0.75); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.budgie-panel.transparent { + background-color: rgba(20, 24, 29, 0.75); +} + +.bottom .budgie-panel.dock-mode { + border-radius: 12px 12px 0 0; +} + +.bottom .budgie-panel.dock-mode .icon-tasklist button.launcher:checked, .bottom .budgie-panel.dock-mode .icon-tasklist button.launcher:active { + color: #FFFFFF; +} + +.bottom .budgie-panel.dock-mode .icon-tasklist > box > revealer:first-child > button.launcher { + border-top-left-radius: 12px; +} + +.bottom .budgie-panel.dock-mode .icon-tasklist > box > revealer:last-child > button.launcher { + border-top-right-radius: 12px; +} + +.left .budgie-panel.dock-mode { + border-radius: 0 12px 12px 0; +} + +.left .budgie-panel.dock-mode .icon-tasklist > box > revealer:first-child > button.launcher { + border-top-right-radius: 12px; +} + +.left .budgie-panel.dock-mode .icon-tasklist > box > revealer:last-child > button.launcher { + border-bottom-right-radius: 12px; +} + +.right .budgie-panel.dock-mode { + border-radius: 12px 0 0 12px; +} + +.right .budgie-panel.dock-mode .icon-tasklist > box > revealer:first-child > button.launcher { + border-top-left-radius: 12px; +} + +.right .budgie-panel.dock-mode .icon-tasklist > box > revealer:last-child > button.launcher { + border-bottom-left-radius: 12px; +} + +.budgie-panel button { + color: rgba(255, 255, 255, 0.7); + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button:hover { + color: #FFFFFF; +} + +.budgie-panel button:active { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.budgie-menu-launcher { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.budgie-menu-launcher:focus { + box-shadow: none; + border: none; + color: #FFFFFF; +} + +.budgie-panel button.raven-trigger { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel.horizontal button { + padding: 0 6px; +} + +.budgie-panel.vertical button { + padding: 6px 0; +} + +.budgie-panel widget > separator { + background-color: rgba(255, 255, 255, 0.26); +} + +.budgie-panel .alert { + color: #F44336; +} + +.budgie-panel .lock-keys image:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.budgie-panel .titlebar:not(headerbar) { + min-height: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + color: #FFFFFF; +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active { + color: #FFFFFF; +} + +.budgie-panel menubar, +.budgie-panel .menubar { + color: rgba(255, 255, 255, 0.7); + box-shadow: none; + border: none; +} + +.budgie-panel menubar > menuitem, +.budgie-panel .menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel menubar > menuitem:hover, .budgie-panel menubar > menuitem:active, +.budgie-panel .menubar > menuitem:hover, +.budgie-panel .menubar > menuitem:active { + color: #FFFFFF; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(255, 255, 255, 0.4); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(255, 255, 255, 0.3); +} + +.top .budgie-panel .unpinned button.flat.launcher:checked, .top .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel .unpinned button.flat.launcher:checked, .bottom .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel .unpinned button.flat.launcher:checked, .left .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel .unpinned button.flat.launcher:checked, .right .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #2d3036; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.raven > box { + margin-bottom: -10px; +} + +.raven stackswitcher.linked { + margin: 6px 16px; +} + +.raven stackswitcher.linked > button:focus { + box-shadow: none; +} + +.raven .raven-header { + min-height: 36px; + padding: 3px; +} + +.raven .raven-header.top { + padding: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.raven .raven-header.top stackswitcher button { + margin: -4px 0 -5px; + padding: 0 16px; + min-height: 24px; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.raven stack .raven-header { + margin-top: -6px; +} + +.raven stack scrolledwindow .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #25292f; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(255, 255, 255, 0.12); +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 12px; + border-radius: 9999px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +.raven .audio-widget scale.marks-after { + padding-top: 0; + padding-bottom: 0; +} + +.raven .audio-widget scale.marks-after label { + font-size: 90%; + padding: 0; + margin: -10px 0 0 6px; +} + +.raven .audio-widget button.flat.expander-button { + margin-top: 4px; + margin-bottom: 4px; +} + +.raven .audio-widget list { + background-color: transparent; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked { + background-color: rgba(255, 255, 255, 0.06); + color: #FFFFFF; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected label, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked label { + color: #FFFFFF; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable label { + padding-left: 12px; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 6px; +} + +.raven-mpris { + background-color: #2d3036; + color: #FFFFFF; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 12px; +} + +image.raven-mpris { + background-color: rgba(255, 255, 255, 0.12); + color: rgba(255, 255, 255, 0.7); + border-radius: 6px; +} + +.raven-notifications-view > .raven-background > viewport.frame { + padding: 0; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable { + margin-left: -6px; + margin-right: -3px; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable .raven-notifications-group-header { + padding: 0 12px; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list { + padding: 6px; + background: none; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list > row.activatable { + border: none; + padding: 6px; + padding-left: 12px; + margin: 3px; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list > row.activatable:hover, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list > row.activatable:selected { + background-color: rgba(255, 255, 255, 0.12); +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:selected, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:selected:hover, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:hover, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:active, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:focus { + background: none; + box-shadow: none; +} + +.drop-shadow { + margin: 5px 9px; + padding: 6px; + border-radius: 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.drop-shadow .linked > button { + border-radius: 12px; +} + +.budgie-notification-window, .budgie-switcher-window, .budgie-osd-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-notification .notification-body, .budgie-switcher .notification-body { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.budgie-session-dialog, +.budgie-polkit-dialog, +.budgie-run-dialog { + background-color: #2d3036; + border: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.budgie-session-dialog > box > grid, +.budgie-polkit-dialog > box > grid, +.budgie-run-dialog > box > grid { + padding: 24px; +} + +.budgie-session-dialog.background, .budgie-session-dialog > decoration, +.budgie-polkit-dialog.background, +.budgie-polkit-dialog > decoration, +.budgie-run-dialog.background, +.budgie-run-dialog > decoration { + border-radius: 12px; +} + +.budgie-session-dialog > decoration, +.budgie-polkit-dialog > decoration, +.budgie-run-dialog > decoration { + border: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title, +.budgie-polkit-dialog label:not(:last-child), +.budgie-polkit-dialog .dialog-title, +.budgie-run-dialog label:not(:last-child), +.budgie-run-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button, +.budgie-polkit-dialog .linked.horizontal > button, +.budgie-run-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child, +.budgie-polkit-dialog .linked.horizontal > button:first-child, +.budgie-run-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 12px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child, +.budgie-polkit-dialog .linked.horizontal > button:last-child, +.budgie-run-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 12px; +} + +.budgie-polkit-dialog .message { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-polkit-dialog .failure { + color: #F44336; +} + +.budgie-polkit-dialog > box > grid { + padding-bottom: 0; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 6px 14px; + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.budgie-run-dialog list .dim-label { + color: #FFFFFF; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-power-dialog .titlebar, .budgie-power-dialog decoration { + background: none; +} + +/************** + * Xfce4 Apps * + **************/ +.XfceHeading { + background-color: #25292f; +} + +/*************** + * xfce4-panel * + ***************/ +.xfce4-panel.background { + border: none; + background-color: rgba(20, 24, 29, 0.75); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.xfce4-panel.background button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(255, 255, 255, 0.7); +} + +.xfce4-panel.background button:hover, .xfce4-panel.background button:active, .xfce4-panel.background button:checked { + color: #FFFFFF; +} + +.xfce4-panel.background button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.xfce4-panel.background .tasklist button image { + padding: 6px; +} + +wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +wnck-pager:selected { + background-color: #5b9bf8; +} + +XfdesktopIconView.view { + border-radius: 6px; + background-color: transparent; + color: #FFFFFF; +} + +XfdesktopIconView.view:active { + box-shadow: none; +} + +XfdesktopIconView.view .rubberband { + border-radius: 0; +} + +window#whiskermenu-window { + border-radius: 0; + background-color: #22262c; + border: none; +} + +window#whiskermenu-window entry.search:focus { + background-color: #25292f; +} + +window#whiskermenu-window > frame > border { + border-radius: 12px; + padding: 6px 8px 6px 9px; + margin: 6px; + border: none; + background-color: #1a1f26; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); +} + +window#whiskermenu-window box.categories > button.radio { + padding: 3px 6px; + margin: 1px 0; +} + +window#whiskermenu-window box.categories > button.radio:hover { + background-color: rgba(255, 255, 255, 0.12); +} + +window#whiskermenu-window box.categories > button.radio:checked, window#whiskermenu-window box.categories > button.radio:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +window#whiskermenu-window box.categories > button.radio:checked:hover, window#whiskermenu-window box.categories > button.radio:active:hover { + background-image: none; +} + +window#whiskermenu-window scrolledwindow.frame { + padding: 3px; + background-color: #25292f; + border-radius: 6px; +} + +window#whiskermenu-window scrolledwindow.frame treeview.view { + border-radius: 6px; +} + +window#whiskermenu-window scrolledwindow.frame treeview.view:not(:hover):not(:selected) { + background: none; +} + +window#whiskermenu-window scrolledwindow.frame treeview.view:selected:hover { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +window#whiskermenu-window .title-area > .commands-area > button.flat.command-button:checked, window#whiskermenu-window .title-area > .commands-area > button.flat.command-button:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +#XfceNotifyWindow { + box-shadow: none; + border: none; + border-radius: 12px; +} + +#XfceNotifyWindow buttonbox { + padding: 0; +} + +#XfceNotifyWindow label#summary { + font-weight: bold; +} + +#xfwm-tabwin { + padding: 12px; + border-radius: 6px; + -XfwmTabwinWidget-icon-size: 64px; + -XfwmTabwinWidget-preview-size: 64px; +} + +/********** + * Thunar * + **********/ +.thunar toolbar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); + padding: 6px; +} + +.thunar .standard-view.frame, +.thunar .sidebar.frame { + border: none; +} + +.thunar .sidebar .view:not(:selected) { + background-color: transparent; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button { + margin-left: 2px; + margin-right: 2px; +} + +.thunar statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-top: none; +} + +window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-bottom-left-radius: 12px; +} + +menubar.-vala-panel-appmenu-private, +menubar.-vala-panel-background { + background: none; + border: none; + box-shadow: none; + animation: none; +} + +menubar.-vala-panel-appmenu-private > menuitem, +menubar.-vala-panel-background > menuitem { + color: rgba(255, 255, 255, 0.7); + font-weight: normal; +} + +menubar.-vala-panel-appmenu-private > menuitem:hover, +menubar.-vala-panel-background > menuitem:hover { + color: #FFFFFF; + border-radius: 0; +} + +menubar.-vala-panel-appmenu-private > menuitem:disabled, +menubar.-vala-panel-background > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar.-vala-panel-appmenu-private > menuitem > window.popup, +menubar.-vala-panel-background > menuitem > window.popup { + margin: 6px; +} + +dialog.xfsm-logout-dialog { + box-shadow: none; + border: none; + background-color: #25292f; +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: #22262c; + color: #FFFFFF; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: #FFFFFF; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(255, 255, 255, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +#content_frame { + padding-bottom: 16px; +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame > box, +#buttonbox_frame > buttonbox { + margin: -16px; +} + +#buttonbox_frame button:not(:disabled) { + color: #5b9bf8; +} + +/******** + * Nemo * + ********/ +.nemo-window .primary-toolbar { + background-color: #1b1e24; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + padding: 3px; +} + +.nemo-window .primary-toolbar entry { + min-height: 24px; + padding: 2px 8px; + margin: 0; +} + +.nemo-window .primary-toolbar button { + margin: 2px 1px; +} + +.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button { + border-radius: 3px; +} + +.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} + +.nemo-window scrolledwindow.frame { + border-style: none; +} + +.nemo-window scrolledwindow.frame .view:not(:selected) { + background-color: transparent; +} + +.nemo-window .nemo-inactive-pane .view:not(:selected) { + background-color: #2d3036; +} + +.nemo-window .nemo-window-pane widget.entry { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); +} + +.nemo-window .toolbar { + padding: 0; +} + +.nemo-window .toolbar button { + margin: 3px 0; + padding: 3px; +} + +.nemo-window .toolbar separator { + margin: 6px 0; +} + +.places-treeview { + -NemoPlacesTreeView-disk-full-bg-color: #64676b; + -NemoPlacesTreeView-disk-full-fg-color: #5b9bf8; + -NemoPlacesTreeView-disk-full-bar-width: 2px; + -NemoPlacesTreeView-disk-full-bar-radius: 0; + -NemoPlacesTreeView-disk-full-bottom-padding: 1px; + -NemoPlacesTreeView-disk-full-max-length: 80px; + padding-top: 3px; + padding-bottom: 3px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #FFFFFF; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #FFFFFF; +/* +widget base background color */ +@define-color theme_bg_color #22262c; +/* +text widgets and the like base background color */ +@define-color theme_base_color #25292f; +/* +base background color of selections */ +@define-color theme_selected_bg_color #5b9bf8; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #FFFFFF; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #22262c; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(255, 255, 255, 0.4); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2d3036; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #FFFFFF; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #FFFFFF; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #22262c; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #25292f; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #5b9bf8; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #FFFFFF; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(255, 255, 255, 0.4); +/* +widgets main borders color */ +@define-color borders rgba(255, 255, 255, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(255, 255, 255, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FBC02D; +@define-color error_color #F44336; +@define-color success_color #66BB6A; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #FFFFFF; +@define-color wm_unfocused_title rgba(255, 255, 255, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.08); +@define-color wm_border #070809; +@define-color wm_bg #1b1e24; +@define-color wm_unfocused_bg #22262c; +@define-color wm_button_icon white; +@define-color wm_button_close_hover_bg #31c4b6; +@define-color wm_button_close_active_bg #259389; +@define-color wm_button_max_hover_bg #5b9bf8; +@define-color wm_button_max_active_bg #2077f5; +@define-color wm_button_min_hover_bg #5b9bf8; +@define-color wm_button_min_active_bg #2077f5; +/* +FIXME this is really an API */ +@define-color content_view_bg #25292f; +@define-color placeholder_text_color #bebfc1; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #25292f; +@define-color budgie_tasklist_indicator_color rgba(255, 255, 255, 0.26); +@define-color budgie_tasklist_indicator_color_active #5b9bf8; +@define-color budgie_tasklist_indicator_color_active_window rgba(67, 111, 174, 0.885); +@define-color budgie_tasklist_indicator_color_attention #FBC02D; +@define-color STRAWBERRY_100 #FF9262; +@define-color STRAWBERRY_300 #FF793E; +@define-color STRAWBERRY_500 #F15D22; +@define-color STRAWBERRY_700 #CF3B00; +@define-color STRAWBERRY_900 #AC1800; +@define-color ORANGE_100 #FFDB91; +@define-color ORANGE_300 #FFCA40; +@define-color ORANGE_500 #FAA41A; +@define-color ORANGE_700 #DE8800; +@define-color ORANGE_900 #C26C00; +@define-color BANANA_100 #FFFFA8; +@define-color BANANA_300 #FFFA7D; +@define-color BANANA_500 #FFCE51; +@define-color BANANA_700 #D1A023; +@define-color BANANA_900 #A27100; +@define-color LIME_100 #A2F3BE; +@define-color LIME_300 #8ADBA6; +@define-color LIME_500 #73C48F; +@define-color LIME_700 #479863; +@define-color LIME_900 #1C6D38; +@define-color BLUEBERRY_100 #94A6FF; +@define-color BLUEBERRY_300 #6A7CE0; +@define-color BLUEBERRY_500 #3F51B5; +@define-color BLUEBERRY_700 #213397; +@define-color BLUEBERRY_900 #031579; +@define-color GRAPE_100 #D25DE6; +@define-color GRAPE_300 #B84ACB; +@define-color GRAPE_500 #9C27B0; +@define-color GRAPE_700 #830E97; +@define-color GRAPE_900 #6A007E; +@define-color COCOA_100 #9F9792; +@define-color COCOA_300 #7B736E; +@define-color COCOA_500 #574F4A; +@define-color COCOA_700 #463E39; +@define-color COCOA_900 #342C27; +@define-color SILVER_100 #EEE; +@define-color SILVER_300 #CCC; +@define-color SILVER_500 #AAA; +@define-color SILVER_700 #888; +@define-color SILVER_900 #666; +@define-color SLATE_100 #888; +@define-color SLATE_300 #666; +@define-color SLATE_500 #444; +@define-color SLATE_700 #222; +@define-color SLATE_900 #111; +@define-color BLACK_100 #474341; +@define-color BLACK_300 #403C3A; +@define-color BLACK_500 #393634; +@define-color BLACK_700 #33302F; +@define-color BLACK_900 #2B2928; diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/gtk.css b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/gtk.css new file mode 100644 index 0000000..f30e8af --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/gtk.css @@ -0,0 +1,8636 @@ +@keyframes ripple { + to { + background-size: 1000% 1000%; + } +} + +@keyframes ripple-on-slider { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes ripple-on-headerbar { + from { + background-image: radial-gradient(circle, #5b9bf8 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #5b9bf8 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #F44336; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 6; + -GtkDialog-action-area-border: 6; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 6px; + -gtk-secondary-caret-color: #5b9bf8; +} + +*:focus { + outline-color: alpha(currentColor, 0.1); +} + +calendar.raven-calendar:selected, box.vertical > widget > widget:selected, calendar:selected, modelbutton.flat:selected, +.menuitem.button.flat:selected { + color: #FFFFFF; + background-color: alpha(currentColor, 0.1); +} + +.nemo-window .view selection, .nemo-window .view:selected, XfdesktopIconView.view:active, .nautilus-window notebook .view:not(treeview) selection, .nautilus-window notebook .view:not(treeview):selected, .nautilus-window flowboxchild:selected .icon-item-background, .csd treeview.view:selected, flowbox flowboxchild:selected, .background.csd .view:selected { + color: #31c4b6; + background-color: rgba(49, 196, 182, 0.2); +} + +.nemo-window .nemo-window-pane widget.entry:selected, window.background.csd evview.view.content-view:selected, window.background.csd evview.view.content-view:selected:backdrop, .nautilus-window.background.csd notebook widget.view:selected, spinbutton.vertical selection, spinbutton:not(.vertical) selection, +entry selection, label selection, textview text selection:focus, textview text selection, widget.view:selected, .view:selected { + color: #FFFFFF; + background-color: #5b9bf8; +} + +.linked:not(.vertical) > button, .linked:not(.vertical) > spinbutton.vertical, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry { + border-radius: 0; +} + +.linked:not(.vertical) > button:not(:first-child), .linked:not(.vertical) > spinbutton.vertical:not(:first-child), .linked:not(.vertical) > spinbutton:not(:first-child):not(.vertical), .linked:not(.vertical) > entry:not(:first-child) { + margin-left: 1px; +} + +.linked:not(.vertical) > button:first-child, .linked:not(.vertical) > spinbutton.vertical:first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +.linked:not(.vertical) > button:last-child, .linked:not(.vertical) > spinbutton.vertical:last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.linked:not(.vertical) > button:only-child, .linked:not(.vertical) > spinbutton.vertical:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child { + border-radius: 6px; +} + +.linked.vertical > button, .linked.vertical > spinbutton.vertical, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry { + border-radius: 0; +} + +.linked.vertical > button:not(:first-child), .linked.vertical > spinbutton.vertical:not(:first-child), .linked.vertical > spinbutton:not(:first-child):not(.vertical), .linked.vertical > entry:not(:first-child) { + margin-top: 1px; +} + +.linked.vertical > button:first-child, .linked.vertical > spinbutton.vertical:first-child, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +.linked.vertical > button:last-child, .linked.vertical > spinbutton.vertical:last-child, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +.linked.vertical > button:only-child, .linked.vertical > spinbutton.vertical:only-child, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child { + border-radius: 6px; +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #22262c; + color: #FFFFFF; +} + +.background.csd { + border-radius: 0 0 12px 12px; +} + +.background.maximized, .background.solid-csd { + border-radius: 0; +} + +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #22262c; + color: #FFFFFF; +} + +.gtkstyle-fallback:hover { + background-color: #171a1e; + color: #FFFFFF; +} + +.gtkstyle-fallback:active { + background-color: #0c0d0f; + color: #FFFFFF; +} + +.gtkstyle-fallback:disabled { + background-color: #22262c; + color: rgba(255, 255, 255, 0.4); +} + +.gtkstyle-fallback:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.view { + background-color: #25292f; + color: #FFFFFF; +} + +.view:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +.view:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.view:selected:hover { + box-shadow: none; +} + +window.background.csd > stack.view { + border-radius: 0 0 12px 12px; +} + +textview text { + background-color: #25292f; +} + +textview border { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +iconview:hover, iconview:selected { + border-radius: 6px; +} + +.rubberband, +rubberband, +XfdesktopIconView.view .rubberband, +.content-view rubberband, +.content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view .rubberband, +.content-view treeview.view rubberband, +.content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view .rubberband, +treeview.view .content-view rubberband, +treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view .rubberband, +treeview.view rubberband, +treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .rubberband, +treeview.view .content-view rubberband, +treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view .rubberband, +.content-view treeview.view rubberband, +.content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view .rubberband, +.content-view treeview.view rubberband, +.content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view .rubberband, +treeview.view .content-view rubberband, +treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view .content-view .rubberband, +.content-view treeview.view .rubberband, +treeview.view flowbox rubberband, +treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox treeview.view rubberband, +treeview.view .content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox treeview.view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox .rubberband, +flowbox treeview.view rubberband, +flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +flowbox .content-view treeview.view flowbox rubberband, +flowbox .content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view flowbox .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view .rubberband, +flowbox rubberband, +flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .rubberband, +flowbox .content-view rubberband, +flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view .rubberband, +.content-view flowbox rubberband, +.content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox .content-view .rubberband, +.content-view flowbox .rubberband, +flowbox treeview.view rubberband, +flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +flowbox .content-view treeview.view flowbox rubberband, +flowbox .content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view flowbox .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view .rubberband, +treeview.view flowbox rubberband, +treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox treeview.view rubberband, +treeview.view .content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox treeview.view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox .rubberband, +treeview.view flowbox rubberband, +treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox rubberband, +treeview.view .content-view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox .rubberband, +.content-view treeview.view flowbox rubberband, +.content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox .rubberband, +treeview.view flowbox .content-view rubberband, +treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox .content-view .rubberband, +treeview.view .content-view flowbox treeview.view rubberband, +treeview.view .content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view .content-view flowbox treeview.view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +treeview.view flowbox .content-view .rubberband, +.content-view treeview.view flowbox .rubberband, +flowbox treeview.view rubberband, +flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox .content-view treeview.view rubberband, +flowbox .content-view treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +flowbox .content-view treeview.view flowbox rubberband, +flowbox .content-view treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox .content-view treeview.view flowbox .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +.content-view flowbox treeview.view rubberband, +.content-view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view .rubberband, +flowbox treeview.view .content-view rubberband, +flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view .content-view .rubberband, +.content-view treeview.view flowbox treeview.view rubberband, +.content-view treeview.view flowbox treeview.view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view treeview.view flowbox treeview.view .rubberband, +treeview.view flowbox treeview.view .content-view rubberband, +treeview.view flowbox treeview.view .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view treeview.view flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view flowbox rubberband, +.content-view flowbox treeview.view flowbox XfdesktopIconView.view .rubberband, +XfdesktopIconView.view .content-view flowbox treeview.view flowbox .rubberband, +flowbox treeview.view flowbox .content-view rubberband, +flowbox treeview.view flowbox .content-view XfdesktopIconView.view .rubberband, +XfdesktopIconView.view flowbox treeview.view flowbox .content-view .rubberband, +flowbox treeview.view .content-view .rubberband, +.content-view flowbox treeview.view .rubberband { + border: 1px solid #5b9bf8; + background-color: rgba(91, 155, 248, 0.3); +} + +flowbox flowboxchild { + padding: 3px; + border-radius: 6px; + color: #FFFFFF; +} + +flowbox flowboxchild button.osd.remove-button { + min-height: 28px; + min-width: 28px; + padding: 0; + margin: 6px; +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: rgba(255, 255, 255, 0.7); +} + +label:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar label:disabled, tab label:disabled, button label:disabled { + color: inherit; +} + +label.osd { + border-radius: 6px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; +} + +.dim-label { + color: rgba(255, 255, 255, 0.7); +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 36px; + padding: 0 12px; + color: rgba(255, 255, 255, 0.4); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: #FFFFFF; +} + +/********************* + * Spinner Animation * + *********************/ +@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; +} + +/**************** + * Text Entries * + ****************/ +spinbutton.vertical, spinbutton:not(.vertical), +entry { + min-height: 36px; + padding: 0 8px; + border-radius: 6px; + caret-color: currentColor; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +spinbutton.vertical:hover, spinbutton:hover:not(.vertical), +entry:hover { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +spinbutton.vertical:focus, spinbutton:focus:not(.vertical), +entry:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #5b9bf8; +} + +spinbutton.vertical:drop(active), spinbutton:drop(active):not(.vertical), +entry:drop(active) { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +spinbutton.vertical:disabled, spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.flat.vertical, spinbutton.flat:not(.vertical), +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} + +spinbutton.vertical image, spinbutton:not(.vertical) image, +entry image { + color: rgba(255, 255, 255, 0.7); +} + +spinbutton.vertical image:hover, spinbutton:not(.vertical) image:hover, spinbutton.vertical image:active, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #FFFFFF; +} + +spinbutton.vertical image:disabled, spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.vertical image.left, spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 2px; + margin-right: 6px; +} + +spinbutton.vertical image.right, spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 2px; +} + +spinbutton.vertical undershoot.left, spinbutton:not(.vertical) undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton.vertical undershoot.right, spinbutton:not(.vertical) undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton.error.vertical, spinbutton.error:not(.vertical), +entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +spinbutton.error.vertical:focus, spinbutton.error:focus:not(.vertical), +entry.error:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #F44336; +} + +spinbutton.error.vertical:disabled, spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.warning.vertical, spinbutton.warning:not(.vertical), +entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +spinbutton.warning.vertical:focus, spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #FBC02D; +} + +spinbutton.warning.vertical:disabled, spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.vertical progress, spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -8px; + border-bottom: 2px solid #5b9bf8; + background-color: transparent; +} + +treeview entry.flat, treeview entry { + background-color: #25292f; +} + +treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .photos-entry-tag, .documents-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); + color: #FFFFFF; +} + +.entry-tag:hover, .photos-entry-tag:hover, .documents-entry-tag:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +:dir(ltr) .entry-tag, :dir(ltr) .photos-entry-tag, :dir(ltr) .documents-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .photos-entry-tag, :dir(rtl) .documents-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button, .button.photos-entry-tag, .button.documents-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs-attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#5b9bf8), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5b9bf8), to(transparent)); + } +} + +.raven-mpris button.image-button, .mate-panel-menu-bar button, tabbar tabbox > tab:checked button.tab-close-button, infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, notebook > header > tabs > tab:checked button.flat, notebook > header > tabs > tab:checked button.close-button { + color: rgba(255, 255, 255, 0.7); +} + +.raven-mpris button.image-button:focus, .mate-panel-menu-bar button:focus, tabbar tabbox > tab:checked button.tab-close-button:focus, infobar.warning > revealer > box button:focus, notebook > header > tabs > tab:checked button.flat:focus, notebook > header > tabs > tab:checked button.close-button:focus, .raven-mpris button.image-button:hover, .mate-panel-menu-bar button:hover, tabbar tabbox > tab:checked button.tab-close-button:hover, infobar.warning > revealer > box button:hover, notebook > header > tabs > tab:checked button.flat:hover, notebook > header > tabs > tab:checked button.close-button:hover, .raven-mpris button.image-button:active, .mate-panel-menu-bar button:active, tabbar tabbox > tab:checked button.tab-close-button:active, infobar.warning > revealer > box button:active, notebook > header > tabs > tab:checked button.flat:active, notebook > header > tabs > tab:checked button.close-button:active, .raven-mpris button.image-button:checked, .mate-panel-menu-bar button:checked, tabbar tabbox > tab:checked button.tab-close-button:checked, infobar.warning > revealer > box button:checked, notebook > header > tabs > tab:checked button.flat:checked, notebook > header > tabs > tab:checked button.close-button:checked { + color: #FFFFFF; +} + +.raven-mpris button.image-button:disabled, .mate-panel-menu-bar button:disabled, tabbar tabbox > tab:checked button.tab-close-button:disabled, infobar.warning > revealer > box button:disabled, notebook > header > tabs > tab:checked button.flat:disabled, notebook > header > tabs > tab:checked button.close-button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.raven-mpris button.image-button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, tabbar tabbox > tab:checked button.tab-close-button:checked:disabled, infobar.warning > revealer > box button:checked:disabled, notebook > header > tabs > tab:checked button.flat:checked:disabled, notebook > header > tabs > tab:checked button.close-button:checked:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button, actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action), toolbar .linked > button, button { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms; + outline: none; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:focus, actionbar > revealer > box .linked > button:focus:not(.suggested-action):not(.destructive-action), toolbar .linked > button:focus, button:focus { + box-shadow: 0 0 0 2px rgba(91, 155, 248, 0.35); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:hover, actionbar > revealer > box .linked > button:hover:not(.suggested-action):not(.destructive-action), toolbar .linked > button:hover, button:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:active, actionbar > revealer > box .linked > button:active:not(.suggested-action):not(.destructive-action), toolbar .linked > button:active, button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:disabled, actionbar > revealer > box .linked > button:disabled:not(.suggested-action):not(.destructive-action), toolbar .linked > button:disabled, button:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:checked, actionbar > revealer > box .linked > button:checked:not(.suggested-action):not(.destructive-action), toolbar .linked > button:checked, button:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button:checked:disabled, actionbar > revealer > box .linked > button:checked:disabled:not(.suggested-action):not(.destructive-action), button:checked:disabled { + background-image: none; + background-color: rgba(91, 155, 248, 0.5); + color: rgba(255, 255, 255, 0.4); +} + +.raven .expander-button, window.background > box.vertical > toolbar.primary-toolbar > toolitem > box.horizontal:not(.linked) > button.toggle, +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button:not(.toggle):not(.raised):not(.flat), window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, .nautilus-window headerbar revealer > button, button.titlebutton:not(.suggested-action):not(.destructive-action), filechooser #pathbarbox > stack > box > button, button.close, button.circular, .inline-toolbar button:not(.text-button) { + border-radius: 9999px; +} + +.raven .expander-button label, window.background > box.vertical > toolbar.primary-toolbar > toolitem > box.horizontal:not(.linked) > button.toggle label, +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button:not(.toggle):not(.raised):not(.flat) label, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button label, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button label, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button label, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button label, .nautilus-window headerbar revealer > button label, button.titlebutton:not(.suggested-action):not(.destructive-action) label, filechooser #pathbarbox > stack > box > button label, button.close label, button.circular label, .inline-toolbar button:not(.text-button) label { + padding: 0; +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat, .gedit-document-panel row button.flat, .nautilus-window .floating-bar button, placessidebar.sidebar row button.sidebar-button, notebook > header > tabs > tab button.flat, spinbutton.vertical button, spinbutton:not(.vertical) button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +button { + min-height: 24px; + min-width: 16px; + padding: 6px 10px; + border-radius: 6px; + font-weight: 500; +} + +button:drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +.budgie-session-dialog .linked.horizontal > button, +.budgie-polkit-dialog .linked.horizontal > button, +.budgie-run-dialog .linked.horizontal > button, .drop-shadow button, .budgie-panel button, .budgie-popover row button, .budgie-settings-window buttonbox.inline-toolbar button, #mate-menu button, #MatePanelPopupWindow button, popover.messagepopover .popover-action-area button, tabbar tabbox > tab button.tab-close-button, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button, calendar.button, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular, treeview.view header button button.circular, row.activatable button.circular, scrollbar button, notebook > header > tabs > arrow, spinbutton.vertical button, spinbutton:not(.vertical) button, modelbutton.flat, +.menuitem.button.flat, .nemo-window .toolbar button, #buttonbox_frame button, .xfce4-panel.background button, .raven stackswitcher.linked > button, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button, .lock-dialog button, .mate-panel-menu-bar button, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button, layouttabbar button, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button, filechooser #pathbarbox > stack > box > button, messagedialog .dialog-action-box button, messagedialog .dialog-action-box .linked:not(.vertical) > button, .app-notification button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), popover.background.menu button, +popover.background button.model, toolbar button, combobox > .linked:not(.vertical) > button:not(:only-child), button.flat { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: transparent; + background-image: none; + box-shadow: none; + color: rgba(255, 255, 255, 0.7); +} + +.budgie-session-dialog .linked.horizontal > button:focus, +.budgie-polkit-dialog .linked.horizontal > button:focus, +.budgie-run-dialog .linked.horizontal > button:focus, .drop-shadow button:focus, .budgie-panel button:focus, .budgie-popover row button:focus, .budgie-settings-window buttonbox.inline-toolbar button:focus, #mate-menu button:focus, #MatePanelPopupWindow button:focus, popover.messagepopover .popover-action-area button:focus, tabbar tabbox > tab button.tab-close-button:focus, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:focus:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:focus, calendar.button:focus, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:focus, treeview.view header button button.circular:focus, row.activatable button.circular:focus, scrollbar button:focus, notebook > header > tabs > arrow:focus, spinbutton.vertical button:focus, spinbutton:not(.vertical) button:focus, modelbutton.flat:focus, +.menuitem.button.flat:focus, .nemo-window .toolbar button:focus, #buttonbox_frame button:focus, .xfce4-panel.background button:focus, .raven stackswitcher.linked > button:focus, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:focus, .lock-dialog button:focus, .mate-panel-menu-bar button:focus, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:focus, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:focus, layouttabbar button:focus, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:focus, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:focus, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:focus, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:focus, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:focus, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:focus, filechooser #pathbarbox > stack > box > button:focus, messagedialog .dialog-action-box button:focus, messagedialog .dialog-action-box .linked:not(.vertical) > button:focus, .app-notification button:focus, actionbar > revealer > box button:focus:not(.suggested-action):not(.destructive-action), popover.background.menu button:focus, +popover.background button.model:focus, toolbar button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), button.flat:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); + color: #FFFFFF; +} + +.budgie-session-dialog .linked.horizontal > button:hover, +.budgie-polkit-dialog .linked.horizontal > button:hover, +.budgie-run-dialog .linked.horizontal > button:hover, .drop-shadow button:hover, .budgie-panel button:hover, .budgie-popover row button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, #mate-menu button:hover, #MatePanelPopupWindow button:hover, popover.messagepopover .popover-action-area button:hover, tabbar tabbox > tab button.tab-close-button:hover, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:hover:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:hover, calendar.button:hover, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:hover, treeview.view header button button.circular:hover, row.activatable button.circular:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) button:hover, modelbutton.flat:hover, +.menuitem.button.flat:hover, .nemo-window .toolbar button:hover, #buttonbox_frame button:hover, .xfce4-panel.background button:hover, .raven stackswitcher.linked > button:hover, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:hover, .lock-dialog button:hover, .mate-panel-menu-bar button:hover, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:hover, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:hover, layouttabbar button:hover, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:hover, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:hover, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:hover, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:hover, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:hover, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:hover, filechooser #pathbarbox > stack > box > button:hover, messagedialog .dialog-action-box button:hover, messagedialog .dialog-action-box .linked:not(.vertical) > button:hover, .app-notification button:hover, actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action), popover.background.menu button:hover, +popover.background button.model:hover, toolbar button:hover, combobox > .linked:not(.vertical) > button:hover:not(:only-child), button.flat:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +.budgie-session-dialog .linked.horizontal > button:active, +.budgie-polkit-dialog .linked.horizontal > button:active, +.budgie-run-dialog .linked.horizontal > button:active, .drop-shadow button:active, .budgie-panel button:active, .budgie-popover row button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, #mate-menu button:active, #MatePanelPopupWindow button:active, popover.messagepopover .popover-action-area button:active, tabbar tabbox > tab button.tab-close-button:active, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:active:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:active, calendar.button:active, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:active, treeview.view header button button.circular:active, row.activatable button.circular:active, scrollbar button:active, notebook > header > tabs > arrow:active, spinbutton.vertical button:active, spinbutton:not(.vertical) button:active, modelbutton.flat:active, +.menuitem.button.flat:active, .nemo-window .toolbar button:active, #buttonbox_frame button:active, .xfce4-panel.background button:active, .raven stackswitcher.linked > button:active, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:active, .lock-dialog button:active, .mate-panel-menu-bar button:active, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:active, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:active, layouttabbar button:active, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:active, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:active, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:active, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:active, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:active, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:active, filechooser #pathbarbox > stack > box > button:active, messagedialog .dialog-action-box button:active, messagedialog .dialog-action-box .linked:not(.vertical) > button:active, .app-notification button:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action), popover.background.menu button:active, +popover.background button.model:active, toolbar button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), button.flat:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +.budgie-session-dialog .linked.horizontal > button:disabled, +.budgie-polkit-dialog .linked.horizontal > button:disabled, +.budgie-run-dialog .linked.horizontal > button:disabled, .drop-shadow button:disabled, .budgie-panel button:disabled, .budgie-popover row button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, #mate-menu button:disabled, #MatePanelPopupWindow button:disabled, popover.messagepopover .popover-action-area button:disabled, tabbar tabbox > tab button.tab-close-button:disabled, .windowhandle .linked.nautilus-path-bar .path-buttons-box button:disabled:not(.suggested-action):not(.destructive-action), placessidebar.sidebar row button.sidebar-button:disabled, calendar.button:disabled, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable button.circular:disabled, treeview.view header button button.circular:disabled, row.activatable button.circular:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) button:disabled, modelbutton.flat:disabled, +.menuitem.button.flat:disabled, .nemo-window .toolbar button:disabled, #buttonbox_frame button:disabled, .xfce4-panel.background button:disabled, .raven stackswitcher.linked > button:disabled, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:disabled, .lock-dialog button:disabled, .mate-panel-menu-bar button:disabled, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:disabled, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:disabled, layouttabbar button:disabled, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:disabled, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:disabled, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:disabled, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:disabled, filechooser #pathbarbox > stack > box > button:disabled, messagedialog .dialog-action-box button:disabled, messagedialog .dialog-action-box .linked:not(.vertical) > button:disabled, .app-notification button:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:disabled, +popover.background button.model:disabled, toolbar button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +.nemo-window .toolbar button:checked, #buttonbox_frame button:checked, .xfce4-panel.background button:checked, .raven stackswitcher.linked > button:checked, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:checked, .lock-dialog button:checked, .mate-panel-menu-bar button:checked, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked, layouttabbar button:checked, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:checked, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:checked, filechooser #pathbarbox > stack > box > button:checked, messagedialog .dialog-action-box button:checked, messagedialog .dialog-action-box .linked:not(.vertical) > button:checked, .app-notification button:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked, +popover.background button.model:checked, toolbar button:checked, combobox > .linked:not(.vertical) > button:checked:not(:only-child), window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:checked:hover, button.flat:checked, button.flat:checked:hover { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +.nemo-window .toolbar button:checked:disabled, #buttonbox_frame button:checked:disabled, .xfce4-panel.background button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button:checked:disabled, .lock-dialog button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked:disabled, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar button:checked:disabled, layouttabbar button:checked:disabled, window.background > box.vertical > toolbar.primary-toolbar > toolitem .linked > button:checked:disabled, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked:disabled, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button:checked:disabled, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button:checked:disabled, .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar .linked > button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, messagedialog .dialog-action-box button:checked:disabled, .app-notification button:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:disabled, +popover.background button.model:checked:disabled, toolbar button:checked:disabled, combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), button.flat:checked:disabled { + background-color: alpha(currentColor, 0.1); + color: rgba(255, 255, 255, 0.4); +} + +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} + +button.image-button { + min-width: 24px; + padding: 6px; +} + +button.text-button.image-button { + min-width: 24px; + padding: 6px; + border-radius: 6px; +} + +button.text-button.image-button label:first-child { + margin-left: 10px; +} + +button.text-button.image-button label:last-child { + margin-right: 10px; +} + +button.text-button.image-button.flat label:first-child { + margin-left: 6px; +} + +button.text-button.image-button.flat label:last-child { + margin-right: 6px; +} + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +.linked:not(.vertical) > button.flat:not(:only-child), .linked.vertical > button.flat:not(:only-child) { + border-radius: 6px; +} + +button.osd { + min-width: 24px; + min-width: 24px; + padding: 6px; + background-color: #25292f; + color: #FFFFFF; +} + +button.osd:focus { + box-shadow: none; +} + +button.osd:hover { + background-color: #46494e; + color: #FFFFFF; +} + +button.osd:active { + background-color: #5c5f63; + color: #FFFFFF; +} + +button.osd:disabled { + opacity: 0; +} + +button.osd.image-button, button.osd.circular { + padding: 12px; +} + +button.osd.image-button > image, button.osd.circular > image { + padding: 0; +} + +button.suggested-action { + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: none; +} + +button.suggested-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.suggested-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(91, 155, 248, 0.2), 0 4px 3px 0 rgba(91, 155, 248, 0.14), 0 1px 6px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:checked { + background-color: #8cb9fa; +} + +button.suggested-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(91, 155, 248, 0.3), 0 2px 3px -1px rgba(91, 155, 248, 0.24), 0 2px 5px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:focus { + box-shadow: 0 0 0 2px rgba(91, 155, 248, 0.35); +} + +button.suggested-action.flat { + background-color: transparent; + color: #5b9bf8; +} + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.suggested-action.flat:checked { + background-color: rgba(91, 155, 248, 0.3); +} + +button.destructive-action { + background-color: #F44336; + color: #FFFFFF; + box-shadow: none; +} + +button.destructive-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.destructive-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(244, 67, 54, 0.2), 0 4px 3px 0 rgba(244, 67, 54, 0.14), 0 1px 6px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:checked { + background-color: #f77b72; +} + +button.destructive-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(244, 67, 54, 0.3), 0 2px 3px -1px rgba(244, 67, 54, 0.24), 0 2px 5px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:focus { + box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.35); +} + +button.destructive-action.flat { + background-color: transparent; + color: #F44336; +} + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.destructive-action.flat:checked { + background-color: rgba(244, 67, 54, 0.3); +} + +.stack-switcher > button > label { + margin: 0 -6px; + padding: 0 6px; +} + +.stack-switcher > button > image { + margin: -3px -6px; + padding: 3px 6px; +} + +.stack-switcher > button.needs-attention:checked > label, +.stack-switcher > button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar button { + -gtk-icon-shadow: none; +} + +button.close, button.circular { + min-width: 24px; + padding: 6px; +} + +stacksidebar.sidebar row.needs-attention > label, .stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image { + animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +stacksidebar.sidebar row.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > label:dir(rtl), +.stack-switcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px; +} + +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 6px; + color: #FFFFFF; +} + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 6px; +} + +/********* + * Links * + *********/ +*:link { + color: #3c84f7; +} + +*:visited { + color: #BA68C8; +} + +button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { + color: #3c84f7; +} + +button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { + color: #BA68C8; +} + +button.link > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +spinbutton:not(.vertical) entry { + min-width: 32px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 6px transparent; +} + +spinbutton:not(.vertical) button:focus:not(:hover):not(:active):not(:disabled) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(255, 255, 255, 0.7); +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -3px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -3px; +} + +spinbutton.vertical { + padding: 0; +} + +spinbutton.vertical:disabled { + color: rgba(255, 255, 255, 0.4); +} + +spinbutton.vertical entry { + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; + min-height: 36px; + min-width: 42px; + padding: 0; +} + +spinbutton.vertical button { + padding: 0; + border: solid 6px transparent; +} + +spinbutton.vertical button:focus:not(:hover):not(:active) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(255, 255, 255, 0.7); +} + +spinbutton.vertical button.up { + margin: 0 3px; +} + +spinbutton.vertical button.down { + margin: 0 3px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: -2px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: -2px; +} + +combobox.linked button:nth-child(2):dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +combobox.linked button:nth-child(2):dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -36px; + padding-right: 36px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -36px; + padding-left: 36px; +} + +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 6px; + padding: 4px; + border-radius: 9999px; +} + +combobox > .linked > button.combo { + padding: 6px 10px; +} + +.linked:not(.vertical) > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > combobox:not(:last-child) > box > button.combo { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > combobox:not(:last-child) > box > button.combo { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +button.combo:only-child { + border-radius: 6px; + font-weight: normal; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +button.combo:only-child:focus { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.26); +} + +button.combo:only-child:hover { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +button.combo:only-child:checked { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #5b9bf8; + background-image: none; +} + +button.combo:only-child:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #22262c; +} + +.osd toolbar { + background-color: transparent; +} + +frame.documents-dropdown, .app-notification, toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +frame.documents-dropdown:backdrop, .app-notification:backdrop, toolbar.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +frame.left.documents-dropdown, .left.app-notification, frame.right.documents-dropdown, .right.app-notification, frame.top.documents-dropdown, .top.app-notification, frame.bottom.documents-dropdown, .bottom.app-notification, toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { + border-radius: 0; +} + +frame.bottom.documents-dropdown, .bottom.app-notification, toolbar.osd.bottom { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4)); +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +.inline-toolbar { + padding: 6px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #2d3036; +} + +searchbar > revealer > box, +.location-bar { + padding: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #22262c; + background-clip: border-box; +} + +searchbar > revealer > box { + margin: -6px; +} + +/*************** + * Header bars * + ***************/ +.nemo-window .primary-toolbar button, headerbar button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +.nemo-window .primary-toolbar button:focus, headerbar button:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:hover, headerbar button:hover:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +.nemo-window .primary-toolbar button:hover, headerbar button:hover:not(.suggested-action):not(.destructive-action) { + background-color: alpha(currentColor, 0.1); + box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.1); +} + +.nemo-window .primary-toolbar button:active, headerbar button:active:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +.nemo-window .primary-toolbar button:checked, headerbar button:checked:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +.nemo-window .primary-toolbar button:disabled, headerbar button:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); + background-color: alpha(currentColor, 0.05); +} + +.nemo-window .primary-toolbar button:backdrop, headerbar button:backdrop:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); +} + +.nemo-window .primary-toolbar button:backdrop:focus, headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:hover, headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:active, headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +.nemo-window .primary-toolbar button:backdrop:checked, headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +.nemo-window .primary-toolbar button:backdrop:disabled, headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.12); +} + +.nemo-window .primary-toolbar entry, .titlebar entry { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +.nemo-window .primary-toolbar entry:hover, .titlebar entry:hover { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04), inset 0 0 0 2px rgba(255, 255, 255, 0.26); +} + +.nemo-window .primary-toolbar entry:focus, .titlebar entry:focus { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04), inset 0 0 0 2px #5b9bf8; +} + +.nemo-window .primary-toolbar entry:disabled, .titlebar entry:disabled { + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +.nemo-window .primary-toolbar entry image, .titlebar entry image { + color: rgba(255, 255, 255, 0.7); +} + +.nemo-window .primary-toolbar entry image:hover, .titlebar entry image:hover, .nemo-window .primary-toolbar entry image:active, .titlebar entry image:active { + color: #FFFFFF; +} + +.nemo-window .primary-toolbar entry image:disabled, .titlebar entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #1b1e24; + color: #FFFFFF; + border-radius: 12px 12px 0 0; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.titlebar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.csd .titlebar:backdrop { + background-color: #22262c; +} + +.titlebar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar .titlebar, .titlebar headerbar { + background-color: transparent; + box-shadow: none; +} + +.titlebar + separator, .titlebar + separator.sidebar { + background-color: #1b1e24; + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.titlebar + separator:backdrop, .titlebar + separator.sidebar:backdrop { + background-color: #22262c; +} + +.titlebar.selection-mode + separator, .titlebar.selection-mode + separator.sidebar, .selection-mode .titlebar + separator, .selection-mode .titlebar + separator.sidebar { + background-color: #5b9bf8; +} + +.titlebar.selection-mode + separator:backdrop, .titlebar.selection-mode + separator.sidebar:backdrop, .selection-mode .titlebar + separator:backdrop, .selection-mode .titlebar + separator.sidebar:backdrop { + background-color: #438cf7; +} + +.background.csd.unified .titlebar + separator, .background.csd.unified .titlebar + separator.sidebar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.titlebar stackswitcher, +.titlebar .stack-switcher { + margin: 6px 0; + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +.titlebar .path-bar button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 0; + padding-left: 6px; + padding-right: 6px; +} + +.titlebar.selection-mode { + transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); + animation: ripple-on-headerbar 225ms cubic-bezier(0, 0, 0.2, 1); + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.7); + background-color: #438cf7; +} + +.titlebar.selection-mode .subtitle:link { + color: #FFFFFF; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.4); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:not(.titlebutton) { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.titlebar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar, .tiled-top .titlebar, .tiled-right .titlebar, .tiled-bottom .titlebar, .tiled-left .titlebar, .maximized .titlebar, .fullscreen .titlebar { + border-radius: 0; +} + +.titlebar.default-decoration { + min-height: 24px; + padding: 6px 12px; + border-radius: 12px 12px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.tiled .titlebar.default-decoration, .maximized .titlebar.default-decoration, .fullscreen .titlebar.default-decoration { + box-shadow: none; + border-radius: 0; +} + +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} + +.background.csd .titlebar.default-decoration { + padding: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.background:not(.csd) .titlebar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +.solid-csd .titlebar:dir(rtl), .solid-csd .titlebar:dir(ltr) { + border-radius: 0; + box-shadow: none; +} + +headerbar { + min-height: 48px; + padding: 0 6px; +} + +box.vertical:not(.titlebar) headerbar { + background-color: #1b1e24; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 6px; + margin-bottom: 6px; +} + +headerbar button, headerbar button.image-button { + border-radius: 6px; +} + +headerbar > box.left, +headerbar > box.right { + padding: 0 6px; +} + +headerbar separator.titlebutton, headerbar separator.sidebar { + margin-top: 12px; + margin-bottom: 12px; + background-color: transparent; +} + +headerbar switch { + margin-top: 12px; + margin-bottom: 12px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +headerbar .entry-tag, headerbar .photos-entry-tag, headerbar .documents-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 0; + margin: 0; + min-width: 120px; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), transparent 0%, transparent 0%) 0 0 0/0 0 0px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):hover { + color: #FFFFFF; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + background-image: none; + box-shadow: none; + box-shadow: inset 0 -2px #224e92; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):active { + color: #FFFFFF; + background-image: none; + box-shadow: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #31c4b6 100%, #224e92 0%) 0 0 2/0 0 2px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; + background-image: none; + box-shadow: none; + border-image: linear-gradient(to right, #297dff, #31c4b6) 0 0 2/0 0 2px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):checked:disabled, headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):checked:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):disabled, headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.3); +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action) > stack > box { + padding: 0 12px; +} + +headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not(.destructive-action):focus:not(:hover) { + box-shadow: none; +} + +headerbar.windowhandle > button.popup label, headerbar.windowhandle > button.popup image { + min-height: 0; +} + +headerbar.windowhandle viewswitchertitle > squeezer { + margin-top: 0; + margin-bottom: 0; + background: none; +} + +headerbar.windowhandle viewswitchertitle > squeezer > viewswitcher { + margin: 0 0; + background: none; +} + +headerbar.windowhandle viewswitchertitle > squeezer > viewswitcher > box.horizontal > button.radio { + margin: 0; + padding: 0; + border-radius: 0; +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar.linked:not(.vertical) > button { + padding-left: 6px; + padding-right: 6px; + border-radius: 3px; + margin-left: 1px; + margin-right: 1px; +} + +.caja-pathbar button:first-child, +.path-bar.linked:not(.vertical) > button:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +.caja-pathbar button:last-child, +.path-bar.linked:not(.vertical) > button:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.caja-pathbar button label, .caja-pathbar button image, +.path-bar.linked:not(.vertical) > button label, +.path-bar.linked:not(.vertical) > button image { + margin-left: 3px; + margin-right: 3px; +} + +.caja-pathbar button.slider-button, +.path-bar.linked:not(.vertical) > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: rgba(255, 255, 255, 0.26); + border-top-color: rgba(255, 255, 255, 0.12); +} + +* { + -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; +} + +.csd treeview.view:not(:selected):not(:hover):not(.progressbar):not(.expander):not(.trough):not(.separator) { + background-color: transparent; +} + +treeview.view:selected { + background-image: image(alpha(currentColor, 0.1)); + background-color: #25292f; + color: #FFFFFF; +} + +.csd treeview.view:selected { + background-image: none; +} + +treeview.view.separator { + min-height: 6px; + color: rgba(255, 255, 255, 0.12); +} + +treeview.view:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: alpha(currentColor, 0.08); +} + +treeview.view.after:drop(active) { + border-top-style: none; +} + +treeview.view.before:drop(active) { + border-bottom-style: none; +} + +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(255, 255, 255, 0.7); +} + +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, treeview.view.expander:active { + color: #FFFFFF; +} + +treeview.view.expander:disabled { + color: rgba(255, 255, 255, 0.3); +} + +treeview.view.progressbar { + border: none; + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to right, #297dff, #31c4b6); + border-radius: 9999px; + color: #FFFFFF; + transition: background-image 225ms cubic-bezier(0, 0, 0.2, 1); +} + +treeview.view.progressbar:selected, treeview.view.progressbar:selected:hover, treeview.view.progressbar:selected:focus { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to right, #438cff, #3fcfc1); + color: #FFFFFF; +} + +treeview.view.progressbar:selected:backdrop, treeview.view.progressbar:selected:hover:backdrop, treeview.view.progressbar:selected:focus:backdrop { + color: #FFFFFF; +} + +treeview.view.progressbar:backdrop, treeview.view.progressbar:selected:backdrop { + background-color: transparent; + background-image: image(rgba(255, 255, 255, 0.26)); +} + +treeview.view.trough { + border: none; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); + background-image: none; + border-radius: 9999px; + padding: 0; + margin: 0; +} + +treeview.view.trough:selected, treeview.view.trough:selected:hover, treeview.view.trough:selected:focus { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); +} + +treeview.view.trough:backdrop, treeview.view.trough:selected:backdrop { + background-color: rgba(255, 255, 255, 0.12); +} + +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button:not(:focus):not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +treeview.view header button, treeview.view header button:disabled { + background-color: #25292f; +} + +treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #25292f; + background-clip: border-box; + color: #5b9bf8; +} + +treeview.view acceleditor > label { + background-color: #5b9bf8; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #1b1e24; + color: #FFFFFF; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +menubar:backdrop, +.menubar:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +.csd menubar, .csd .menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.csd menubar:backdrop, .csd .menubar:backdrop { + background-color: #22262c; +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(255, 255, 255, 0.7); + border-radius: 6px; +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.1); + color: #FFFFFF; +} + +menubar > menuitem:backdrop, +.menubar > menuitem:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +menubar > menuitem > window.popup.background > menu menuitem, +.menubar > menuitem > window.popup.background > menu menuitem { + transition: none; +} + +.background.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 6px; + padding: 6px; + background-color: #2d3036; + background-clip: border-box; + border-radius: 12px; + border: 1px solid #3f4348; +} + +.csd menu, .csd .menu, .csd .context-menu { + border: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 24px; + min-width: 40px; + padding: 3px 6px; + color: #FFFFFF; + font: initial; + text-shadow: none; + border-radius: 6px; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + background-color: alpha(currentColor, 0.08); +} + +menu menuitem:active, +.menu menuitem:active, +.context-menu menuitem:active { + background-color: alpha(currentColor, 0.12); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(255, 255, 255, 0.4); +} + +menu menuitem accelerator, +.menu menuitem accelerator, +.context-menu menuitem accelerator { + color: rgba(255, 255, 255, 0.4); +} + +menu menuitem:disabled accelerator, +.menu menuitem:disabled accelerator, +.context-menu menuitem:disabled accelerator { + color: rgba(255, 255, 255, 0.12); +} + +menu menuitem > image, +.menu menuitem > image, +.context-menu menuitem > image { + margin-left: 6px; +} + +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; +} + +menu menuitem arrow:dir(ltr), +.menu menuitem arrow:dir(ltr), +.context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 6px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 6px; +} + +menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), +.menu menuitem label:dir(rtl), +.menu menuitem label:dir(ltr), +.context-menu menuitem label:dir(rtl), +.context-menu menuitem label:dir(ltr) { + color: inherit; +} + +menu .view:selected, +.menu .view:selected, +.context-menu .view:selected { + background-color: #42454a; +} + +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 6px; + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin: 0; + border-radius: 6px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin: 11px 0 -12px; + border-radius: 6px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(alpha(currentColor, 0.08)); + color: #FFFFFF; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 3px 0; +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 0; + background-color: #2d3036; + border-radius: 12px; +} + +popover.background, .csd popover.background { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.1); + background-clip: border-box; + border: none; +} + +popover.background:backdrop, .csd popover.background:backdrop { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +popover.background > stack { + margin: -2px; +} + +popover.background > toolbar { + margin: 0; +} + +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background > scrolledwindow > viewport.frame > list { + background-color: transparent; + padding: 6px; +} + +popover.background > scrolledwindow > viewport.frame > list > row { + border-radius: 6px; + padding: 6px; +} + +popover.background .view:not(:selected), +popover.background toolbar { + background-color: #2d3036; +} + +popover.background .linked > button:not(.radio) { + border-radius: 6px; +} + +popover.background .linked > button:not(.radio):first-child { + border-radius: 6px; +} + +popover.background .linked > button:not(.radio):last-child { + border-radius: 6px; +} + +popover.background .linked > button:not(.radio):only-child { + border-radius: 6px; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 6px; +} + +popover.background separator { + margin: 3px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +tabbar tabbox > tab, notebook > header > tabs > tab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + padding: 3px 6px; + border: none; + outline: none; + background-clip: padding-box; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; + border-radius: 6px; +} + +tabbar tabbox > tab:hover, notebook > header > tabs > tab:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +tabbar tabbox > tab:active, notebook > header > tabs > tab:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +tabbar tabbox > tab:disabled, notebook > header > tabs > tab:disabled { + color: rgba(255, 255, 255, 0.3); +} + +tabbar tabbox > tab:checked, notebook > header > tabs > tab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +tabbar tabbox > tab:checked:disabled, notebook > header > tabs > tab:checked:disabled { + color: rgba(255, 255, 255, 0.4); +} + +notebook { + background-color: #25292f; +} + +frame > paned > notebook > header, notebook.frame > header { + background-color: rgba(255, 255, 255, 0.04); +} + +notebook.frame { + border-radius: 12px; +} + +notebook.frame frame > border { + border: none; + border-radius: 6px; +} + +notebook.frame frame > list row.activatable { + border-radius: 6px; +} + +notebook > header { + border: none; + background-color: rgba(255, 255, 255, 0.04); + padding: 3px; + margin: 3px; + border-radius: 9px; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: 0; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: 0; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: 0; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 6px; +} + +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -6px -12px; + padding: 6px 12px; +} + +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +notebook > header > tabs > tab label { + padding: 0 6px; +} + +notebook > header > tabs > tab button.flat:last-child { + margin-left: 6px; + margin-right: 0; +} + +notebook > header > tabs > tab button.flat:first-child { + margin-left: 0; + margin-right: 6px; +} + +notebook > header > tabs > tab button.close-button { + min-width: 24px; + min-height: 24px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + border-style: solid; +} + +notebook > button.circular.image-button { + min-width: 24px; + min-height: 24px; + padding: 3px; +} + +notebook > stack:not(:only-child) { + background-color: transparent; + border-radius: 6px; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 200ms cubic-bezier(0, 0, 0.2, 1); + background-color: transparent; + box-shadow: none; + outline: none; + border: none; + margin: 0; + padding: 0; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar trough { + background-color: rgba(255, 255, 255, 0.12); + padding: 0; + margin: 3px; + outline: none; + border: none; + border-radius: 9999px; + transition: all 200ms cubic-bezier(0, 0, 0.2, 1); +} + +scrollbar trough > slider { + transition: all 200ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + margin: 0; + padding: 0; + border: none; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(255, 255, 255, 0.4); + box-shadow: none; + outline: none; +} + +scrollbar trough > slider:hover { + background-color: #31c4b6; +} + +scrollbar trough > slider:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.vertical trough > slider:active { + background-image: linear-gradient(to top, #297dff, #31c4b6); +} + +scrollbar.horizontal trough > slider:active { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scrollbar.dragging trough, scrollbar.hovering trough { + margin: 6px; +} + +scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0; +} + +scrollbar.overlay-indicator:not(.fine-tune) slider { + transition-property: background-color, min-height, min-width; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.4); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) slider { + min-width: 24px; +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) button { + min-width: 8px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) slider { + min-height: 24px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) button { + min-height: 8px; +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +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-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.26); + background-clip: padding-box; + font-size: 0; + color: transparent; +} + +switch:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + color: transparent; +} + +switch:disabled { + opacity: 0.35; +} + +switch slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 18px; + min-height: 18px; + margin: 3px; + border-radius: 9999px; + outline: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); + background-color: white; + border: none; + color: transparent; +} + +switch:focus slider, switch:hover slider, switch:focus:hover slider { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 20px; + min-width: 20px; + margin: 3px; + padding: 0; + border-radius: 9999px; + color: transparent; + background-color: rgba(255, 255, 255, 0.12); + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); +} + +check:hover, +radio:hover { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04); + background-color: rgba(255, 255, 255, 0.15); +} + +check:active, +radio:active { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); + background-color: rgba(255, 255, 255, 0.2); +} + +check:disabled, +radio:disabled { + background-color: rgba(255, 255, 255, 0.04); +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +check:checked:hover, check:indeterminate:hover, +radio:checked:hover, +radio:indeterminate:hover { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.15); + background-color: #8cb9fa; +} + +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.2); + background-color: #5b9bf8; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(91, 155, 248, 0.35); + background-image: none; +} + +popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat radio, popover modelbutton.flat radio:focus, popover modelbutton.flat radio:hover, popover modelbutton.flat radio:focus:hover, popover modelbutton.flat radio:active, popover modelbutton.flat radio:disabled { + transition: none; + box-shadow: none; +} + +popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat radio.left:dir(rtl) { + margin-left: -3px; + margin-right: 6px; +} + +popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat radio.right:dir(ltr) { + margin-left: 6px; + margin-right: -3px; +} + +menu menuitem check, menu menuitem radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem radio:dir(ltr) { + margin-right: 6px; + margin-left: 0; +} + +menu menuitem check:dir(rtl), menu menuitem radio:dir(rtl) { + margin-left: 6px; + margin-right: 0; +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem check:checked:hover, menu menuitem check:indeterminate:hover, menu menuitem radio, menu menuitem radio:hover, menu menuitem radio:disabled, menu menuitem radio:checked:hover, menu menuitem radio:indeterminate:hover { + box-shadow: none; +} + + +check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")); +} + + +radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; +} + +#MozillaGtkWidget > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; +} + +#MozillaGtkWidget > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +check:not(:checked):indeterminate:active, +radio:not(:checked):indeterminate:active { + -gtk-icon-transform: scaleX(-1); +} + +treeview.view radio, treeview.view check { + padding: 0; + margin: 0; +} + +treeview.view radio:not(:hover):not(:disabled):not(:checked):not(:indeterminate), treeview.view check:not(:hover):not(:disabled):not(:checked):not(:indeterminate) { + background-color: rgba(255, 255, 255, 0.12); +} + +treeview.view radio, treeview.view radio:hover, treeview.view radio:disabled, treeview.view radio:checked:hover, treeview.view radio:indeterminate:hover, treeview.view check, treeview.view check:hover, treeview.view check:disabled, treeview.view check:checked:hover, treeview.view check:indeterminate:hover { + box-shadow: none; +} + +treeview.view radio:checked, treeview.view radio:indeterminate, treeview.view check:checked, treeview.view check:indeterminate { + background-color: #5b9bf8; + color: #FFFFFF; +} + +.background.csd treeview.view radio:checked, .background.csd treeview.view radio:indeterminate, .background.csd treeview.view check:checked, .background.csd treeview.view check:indeterminate { + background-color: #5b9bf8; + color: #FFFFFF; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 17px 12px; +} + +scale.vertical { + padding: 12px 17px; +} + +scale slider { + min-height: 18px; + min-width: 18px; + margin: -8px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 9999px; + color: #5b9bf8; + background-color: #25292f; + box-shadow: inset 0 0 0 2px #31c4b6; +} + +scale slider:hover { + box-shadow: inset 0 0 0 2px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale slider:active { + box-shadow: inset 0 0 0 4px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale slider:disabled { + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3); +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 16px; + padding-bottom: 16px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 16px; + padding-right: 16px; +} + +scale.fine-tune slider { + margin: -7px; +} + +scale trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(255, 255, 255, 0.26); +} + +scale trough:disabled { + background-color: rgba(255, 255, 255, 0.14); +} + +scale highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); +} + +scale highlight:disabled { + background-color: transparent; +} + +scale.horizontal highlight { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scale.horizontal highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale.vertical highlight { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +scale.vertical highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(255, 255, 255, 0.26); +} + +scale fill:disabled { + background-color: transparent; +} + +scale marks, +scale value { + color: rgba(255, 255, 255, 0.7); +} + +scale indicator { + background-color: rgba(255, 255, 255, 0.26); + color: transparent; +} + +scale.horizontal marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale.horizontal.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.horizontal marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale.horizontal.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.vertical marks.top { + margin-right: 7px; + margin-left: -15px; +} + +scale.vertical.fine-tune marks.top { + margin-right: 6px; + margin-left: -14px; +} + +scale.vertical marks.bottom { + margin-left: 7px; + margin-right: -15px; +} + +scale.vertical.fine-tune marks.bottom { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-before:not(.marks-after) slider, scale.horizontal.marks-before:not(.marks-after) slider:hover, scale.horizontal.marks-before:not(.marks-after) slider:active, scale.horizontal.marks-before:not(.marks-after) slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-before:not(.marks-after) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-after:not(.marks-before) slider, scale.horizontal.marks-after:not(.marks-before) slider:hover, scale.horizontal.marks-after:not(.marks-before) slider:active, scale.horizontal.marks-after:not(.marks-before) slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-after:not(.marks-before) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-before:not(.marks-after) slider, scale.vertical.marks-before:not(.marks-after) slider:hover, scale.vertical.marks-before:not(.marks-after) slider:active, scale.vertical.marks-before:not(.marks-after) slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-before:not(.marks-after) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-after:not(.marks-before) slider, scale.vertical.marks-after:not(.marks-before) slider:hover, scale.vertical.marks-after:not(.marks-before) slider:active, scale.vertical.marks-after:not(.marks-before) slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-after:not(.marks-before) slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -13.5px; + margin-top: 11.5px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -13.5px; + margin-right: 11.5px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -13.5px; + margin-left: 11.5px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 6px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 6px; +} + +progressbar trough { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.14); +} + +progressbar progress { + border-radius: 6px; + background-color: transparent; +} + +progressbar.horizontal progress { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +progressbar.vertical progress { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +progressbar.osd { + min-width: 6px; + min-height: 6px; + background-color: transparent; +} + +progressbar.osd trough { + background-color: transparent; +} + +progressbar.osd progress { + background-color: #5b9bf8; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 6px; +} + +levelbar.horizontal.discrete block { + min-width: 36px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 6px; +} + +levelbar.vertical.discrete block { + min-height: 36px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + border-radius: 6px; +} + +levelbar block.low { + background-color: #FBC02D; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #5b9bf8; +} + +levelbar block.full { + background-color: #66BB6A; +} + +levelbar block.empty { + background-color: rgba(255, 255, 255, 0.14); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + color: #FFFFFF; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, .frame { + margin: 0; + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; +} + +.frame.view { + border-radius: 6px; +} + +.frame.flat { + border-style: none; +} + +frame.flat > border, frame > border.flat, statusbar frame > border { + border: none; +} + +actionbar > revealer > box { + padding: 6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + background-clip: border-box; +} + +.background.csd box.vertical > actionbar > revealer > box .background.csd box.vertical > revealer > actionbar > revealer > box { + border-radius: 0 0 12px 12px; +} + +scrolledwindow viewport.frame { + border: none; +} + +stack scrolledwindow.frame viewport.frame list { + border: none; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(255, 255, 255, 0.07)), to(rgba(255, 255, 255, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #25292f; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +preferences stacksidebar.sidebar list separator, hdyleaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) separator, leaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) separator, box.horizontal > stack.background > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) separator, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list separator, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list separator, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list separator, .tweak-categories separator, placessidebar.sidebar list > separator, stacksidebar.sidebar + separator.vertical, +stacksidebar.sidebar separator.horizontal, button.font separator, button.file separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, preferencesgroup list, .geary-accounts-editor-pane list, window.background.csd.unified > deck > deck > deck list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet stack.background scrolledwindow > viewport list, hdyleaflet overlay scrolledwindow > viewport list, leaflet stack.background scrolledwindow > viewport list, leaflet overlay scrolledwindow > viewport list, box.horizontal > stack.background stack.background scrolledwindow > viewport list, box.horizontal > stack.background overlay scrolledwindow > viewport list, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list), list.tweak-group list, .tweak-group-startup, list.content:not(.conversation-listbox) { + border-radius: 6px; + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08); + border: none; +} + +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, preferencesgroup list > separator, .geary-accounts-editor-pane list > separator, window.background.csd.unified > deck > deck > deck list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet stack.background scrolledwindow > viewport list > separator, hdyleaflet overlay scrolledwindow > viewport list > separator, leaflet stack.background scrolledwindow > viewport list > separator, leaflet overlay scrolledwindow > viewport list > separator, box.horizontal > stack.background stack.background scrolledwindow > viewport list > separator, box.horizontal > stack.background overlay scrolledwindow > viewport list > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator, list.tweak-group list > separator, .tweak-group-startup > separator, list.content:not(.conversation-listbox) > separator { + background: none; + min-height: 0; +} + +window.background.csd stack stack stack frame > list row, +window.background.csd > stack > stack > box > frame > list row, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list row, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list row, window.background.csd > stack > list row, +window.background.csd > stack > scrolledwindow > viewport > box > list row, preferencesgroup list row, .geary-accounts-editor-pane list row, window.background.csd.unified > deck > deck > deck list row, hdyleaflet list.view row, hdyleaflet list.frame row, leaflet list.view row, leaflet list.frame row, box.horizontal > stack.background list.view row, box.horizontal > stack.background list.frame row, hdyleaflet stack.background scrolledwindow > viewport list row, hdyleaflet overlay scrolledwindow > viewport list row, leaflet stack.background scrolledwindow > viewport list row, leaflet overlay scrolledwindow > viewport list row, box.horizontal > stack.background stack.background scrolledwindow > viewport list row, box.horizontal > stack.background overlay scrolledwindow > viewport list row, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row, leaflet frame:not(.view) list:not(.contacts-contact-list) row, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row, list.tweak-group list row, .tweak-group-startup row, list.content:not(.conversation-listbox) > row { + border-radius: 0; +} + +window.background.csd stack stack stack frame > list row:not(:first-child), window.background.csd > stack > list row:not(:first-child), preferencesgroup list row:not(:first-child), .geary-accounts-editor-pane list row:not(:first-child), window.background.csd.unified > deck > deck > deck list row:not(:first-child), hdyleaflet list.view row:not(:first-child), hdyleaflet list.frame row:not(:first-child), leaflet list.view row:not(:first-child), leaflet list.frame row:not(:first-child), box.horizontal > stack.background list.view row:not(:first-child), box.horizontal > stack.background list.frame row:not(:first-child), hdyleaflet stack.background scrolledwindow > viewport list row:not(:first-child), hdyleaflet overlay scrolledwindow > viewport list row:not(:first-child), leaflet stack.background scrolledwindow > viewport list row:not(:first-child), leaflet overlay scrolledwindow > viewport list row:not(:first-child), box.horizontal > stack.background stack.background scrolledwindow > viewport list row:not(:first-child), box.horizontal > stack.background overlay scrolledwindow > viewport list row:not(:first-child), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:not(:first-child), leaflet frame:not(.view) list:not(.contacts-contact-list) row:not(:first-child), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:not(:first-child), list.tweak-group list row:not(:first-child), .tweak-group-startup row:not(:first-child), list.content:not(.conversation-listbox) > row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.2); +} + +window.background.csd stack stack stack frame > list row:first-child, window.background.csd > stack > list row:first-child, preferencesgroup list row:first-child, .geary-accounts-editor-pane list row:first-child, window.background.csd.unified > deck > deck > deck list row:first-child, hdyleaflet list.view row:first-child, hdyleaflet list.frame row:first-child, leaflet list.view row:first-child, leaflet list.frame row:first-child, box.horizontal > stack.background list.view row:first-child, box.horizontal > stack.background list.frame row:first-child, hdyleaflet stack.background scrolledwindow > viewport list row:first-child, hdyleaflet overlay scrolledwindow > viewport list row:first-child, leaflet stack.background scrolledwindow > viewport list row:first-child, leaflet overlay scrolledwindow > viewport list row:first-child, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:first-child, box.horizontal > stack.background overlay scrolledwindow > viewport list row:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:first-child, list.tweak-group list row:first-child, .tweak-group-startup row:first-child, list.content:not(.conversation-listbox) > row:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} + +window.background.csd stack stack stack frame > list row:last-child, window.background.csd > stack > list row:last-child, preferencesgroup list row:last-child, .geary-accounts-editor-pane list row:last-child, window.background.csd.unified > deck > deck > deck list row:last-child, hdyleaflet list.view row:last-child, hdyleaflet list.frame row:last-child, leaflet list.view row:last-child, leaflet list.frame row:last-child, box.horizontal > stack.background list.view row:last-child, box.horizontal > stack.background list.frame row:last-child, hdyleaflet stack.background scrolledwindow > viewport list row:last-child, hdyleaflet overlay scrolledwindow > viewport list row:last-child, leaflet stack.background scrolledwindow > viewport list row:last-child, leaflet overlay scrolledwindow > viewport list row:last-child, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:last-child, box.horizontal > stack.background overlay scrolledwindow > viewport list row:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:last-child, list.tweak-group list row:last-child, .tweak-group-startup row:last-child, list.content:not(.conversation-listbox) > row:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +window.background.csd stack stack stack frame > list row:only-child, window.background.csd > stack > list row:only-child, preferencesgroup list row:only-child, .geary-accounts-editor-pane list row:only-child, window.background.csd.unified > deck > deck > deck list row:only-child, hdyleaflet list.view row:only-child, hdyleaflet list.frame row:only-child, leaflet list.view row:only-child, leaflet list.frame row:only-child, box.horizontal > stack.background list.view row:only-child, box.horizontal > stack.background list.frame row:only-child, hdyleaflet stack.background scrolledwindow > viewport list row:only-child, hdyleaflet overlay scrolledwindow > viewport list row:only-child, leaflet stack.background scrolledwindow > viewport list row:only-child, leaflet overlay scrolledwindow > viewport list row:only-child, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:only-child, box.horizontal > stack.background overlay scrolledwindow > viewport list row:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:only-child, list.tweak-group list row:only-child, .tweak-group-startup row:only-child, list.content:not(.conversation-listbox) > row:only-child { + border-radius: 6px; +} + +window.background.csd stack stack stack frame > list row:focus, window.background.csd > stack > list row:focus, preferencesgroup list row:focus, .geary-accounts-editor-pane list row:focus, window.background.csd.unified > deck > deck > deck list row:focus, hdyleaflet list.view row:focus, hdyleaflet list.frame row:focus, leaflet list.view row:focus, leaflet list.frame row:focus, box.horizontal > stack.background list.view row:focus, box.horizontal > stack.background list.frame row:focus, hdyleaflet stack.background scrolledwindow > viewport list row:focus, hdyleaflet overlay scrolledwindow > viewport list row:focus, leaflet stack.background scrolledwindow > viewport list row:focus, leaflet overlay scrolledwindow > viewport list row:focus, box.horizontal > stack.background stack.background scrolledwindow > viewport list row:focus, box.horizontal > stack.background overlay scrolledwindow > viewport list row:focus, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:focus, leaflet frame:not(.view) list:not(.contacts-contact-list) row:focus, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:focus, list.tweak-group list row:focus, .tweak-group-startup row:focus, list.content:not(.conversation-listbox) > row:focus { + box-shadow: inset 0 0 0 1000px alpha(currentColor, 0.05); +} + +list { + border-color: rgba(255, 255, 255, 0.12); + background-color: #2d3036; +} + +list row { + padding: 3px; +} + +list.content:not(.conversation-listbox) > row.row > box > row { + border: none; +} + +list.content:not(.conversation-listbox) > row.expander { + padding: 0; +} + +list.content:not(.conversation-listbox) > row.expander:focus { + box-shadow: none; +} + +list.content:not(.conversation-listbox) > row.expander:first-child:not(:last-child) list > row.header, list.content:not(.conversation-listbox) > row.expander:only-child:checked list > row.header { + border-radius: 6px 6px 0 0; +} + +list.content:not(.conversation-listbox) > row.expander:not(:first-child):not(:last-child) list > row.header { + border-radius: 0; +} + +list.content:not(.conversation-listbox) > row.expander list { + box-shadow: none; + background-color: transparent; +} + +list.content:not(.conversation-listbox) > row.expander list.nested { + border-radius: 0 0 6px 6px; +} + +list.content:not(.conversation-listbox) > row.expander list.nested > row { + background-color: transparent; + border-top: 1px solid rgba(0, 0, 0, 0.2); +} + +list.content:not(.conversation-listbox) > row.expander list.nested > row:first-child { + border-radius: 0; +} + +list.navigation-sidebar { + padding: 3px; +} + +list.navigation-sidebar > row { + border-radius: 6px; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable, treeview.view header button, row.activatable { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable:focus, treeview.view header button:focus, row.activatable:focus { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable:hover, treeview.view header button:hover, row.activatable:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms, background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.has-open-popup.activatable, treeview.view header button.has-open-popup, .budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable:active, treeview.view header button:active, row.activatable.has-open-popup, row.activatable:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); + background-image: radial-gradient(circle, alpha(currentColor, 0.05) 10%, transparent 0%); + background-size: 0% 0%; +} + +row:selected { + color: inherit; + background-color: alpha(currentColor, 0.06); +} + +row:selected image, +row:selected label { + color: #FFFFFF; +} + +row:selected button image, +row:selected button label { + color: inherit; +} + +row:selected:disabled image, +row:selected:disabled label { + color: rgba(255, 255, 255, 0.4); +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 6px 6px 10px; +} + +.app-notification button.text-button:not(:disabled) { + color: #5b9bf8; +} + +.app-notification > box > label { + margin-left: 9px; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander title > arrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(255, 255, 255, 0.7); +} + +expander title > arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander title > arrow:checked { + -gtk-icon-transform: unset; +} + +expander title > arrow:hover, expander title > arrow:active { + color: #FFFFFF; +} + +expander title > arrow:disabled { + color: rgba(255, 255, 255, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 3px; + border: 1px solid rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +calendar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +calendar:selected { + border-radius: 7px; +} + +calendar.header { + border-style: none none solid; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +calendar.highlight { + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(255, 255, 255, 0.3); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #2d3036; +} + +messagedialog.background.csd { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +messagedialog.background .titlebar, messagedialog.background.csd .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; + color: #FFFFFF; +} + +messagedialog.background .titlebar:backdrop, messagedialog.background.csd .titlebar:backdrop { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.4); +} + +messagedialog .dialog-action-box { + margin-top: -6px; +} + +messagedialog .dialog-action-box button, messagedialog .dialog-action-box button:first-child, messagedialog .dialog-action-box button:last-child, messagedialog .dialog-action-box .linked:not(.vertical) > button, messagedialog .dialog-action-box .linked:not(.vertical) > button:first-child, messagedialog .dialog-action-box .linked:not(.vertical) > button:last-child { + border-radius: 6px; +} + +messagedialog .dialog-action-box button:not(:last-child), messagedialog .dialog-action-box .linked:not(.vertical) > button:not(:last-child) { + margin-right: 6px; +} + +messagedialog .dialog-action-box button.suggested-action:not(:disabled), messagedialog .dialog-action-box .linked:not(.vertical) > button.suggested-action:not(:disabled) { + color: #5b9bf8; +} + +messagedialog .dialog-action-box button.destructive-action:not(:disabled), messagedialog .dialog-action-box .linked:not(.vertical) > button.destructive-action:not(:disabled) { + color: #F44336; +} + +.csd filechooser { + background-color: #25292f; + border-radius: 0 0 12px 12px; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +filechooser stack.view { + background-color: transparent; + padding: 0; +} + +filechooser stack.view scrolledwindow { + background-color: transparent; + border-radius: 0 0 12px 0; +} + +filechooser stack.view scrolledwindow list { + background-color: transparent; +} + +filechooser stack.view > placesview { + background-color: transparent; +} + +filechooser stack.view > placesview > actionbar, filechooser stack.view > placesview > actionbar > revealer > box { + background-color: transparent; +} + +filechooser stack.view frame > border { + border: none; +} + +.csd filechooser placessidebar { + background: none; + border-bottom-left-radius: 12px; +} + +filechooser actionbar, filechooser actionbar > revealer > box { + background-color: transparent; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar.left:not(separator) { + border-right: 1px solid rgba(255, 255, 255, 0.12); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar.right:not(separator) { + border-left: 1px solid rgba(255, 255, 255, 0.12); + 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.sidebar list { + padding: 3px; + background-color: #25292f; +} + +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 3px; + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms; + outline: none; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; + background-color: transparent; +} + +stacksidebar.sidebar row:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +stacksidebar.sidebar row:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; +} + +stacksidebar.sidebar row:active image, stacksidebar.sidebar row:active label { + color: #FFFFFF; +} + +stacksidebar.sidebar row:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + font-weight: 500; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +stacksidebar.sidebar row:selected image, stacksidebar.sidebar row:selected label { + color: #FFFFFF; +} + +stacksidebar.sidebar row + row { + margin-top: 3px; +} + +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; + color: inherit; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +row image.sidebar-icon:disabled { + color: rgba(255, 255, 255, 0.3); +} + +placessidebar.sidebar > viewport.frame { + border-style: none; +} + +placessidebar.sidebar list { + padding: 6px; +} + +placessidebar.sidebar row { + min-height: 32px; + margin: 0; + padding: 0; + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms; + outline: none; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; + background-color: transparent; +} + +placessidebar.sidebar row:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); +} + +placessidebar.sidebar row:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; +} + +placessidebar.sidebar row:active image, placessidebar.sidebar row:active label { + color: #FFFFFF; +} + +placessidebar.sidebar row:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + font-weight: 500; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +placessidebar.sidebar row:selected image, placessidebar.sidebar row:selected label { + color: #FFFFFF; +} + +placessidebar.sidebar row > revealer { + padding: 0 8px 0 16px; +} + +placessidebar.sidebar row:disabled { + color: rgba(255, 255, 255, 0.4); +} + +placessidebar.sidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar.sidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar.sidebar row label.sidebar-label { + color: inherit; +} + +placessidebar.sidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: alpha(currentColor, 0.08); +} + +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #5b9bf8; +} + +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #5b9bf8; +} + +placessidebar.sidebar row:drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms, background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(255, 255, 255, 0.12)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #22262c; + background-image: image(rgba(255, 255, 255, 0.12)), image(rgba(255, 255, 255, 0.12)); + 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; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border: none; + margin-bottom: 0; +} + +infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box { + background-color: #25292f; +} + +infobar.info > revealer > box link:link, infobar.info:hover > revealer > box link:link, infobar.info:backdrop > revealer > box link:link { + color: #FFFFFF; +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action) { + color: #5b9bf8; + background-color: alpha(currentColor, 0.15); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover { + color: #5b9bf8; + background-color: alpha(currentColor, 0.25); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; +} + +infobar.info > revealer > box button:focus, infobar.info:hover > revealer > box button:focus, infobar.info:backdrop > revealer > box button:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { + background-color: #5b9bf8; + color: #FFFFFF; +} + +infobar.action > revealer > box link:link, infobar.action:backdrop > revealer > box link:link, infobar.question > revealer > box link:link, infobar.question:backdrop > revealer > box link:link { + color: #FFFFFF; +} + +infobar.action > revealer > box button, infobar.action > revealer > box button:hover, infobar.action > revealer > box button:focus, infobar.action > revealer > box button:active, infobar.action > revealer > box button:checked, infobar.action > revealer > box button.text-button:not(:disabled), infobar.action:backdrop > revealer > box button, infobar.action:backdrop > revealer > box button:hover, infobar.action:backdrop > revealer > box button:focus, infobar.action:backdrop > revealer > box button:active, infobar.action:backdrop > revealer > box button:checked, infobar.action:backdrop > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button, infobar.question > revealer > box button:hover, infobar.question > revealer > box button:focus, infobar.question > revealer > box button:active, infobar.question > revealer > box button:checked, infobar.question > revealer > box button.text-button:not(:disabled), infobar.question:backdrop > revealer > box button, infobar.question:backdrop > revealer > box button:hover, infobar.question:backdrop > revealer > box button:focus, infobar.question:backdrop > revealer > box button:active, infobar.question:backdrop > revealer > box button:checked, infobar.question:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { + background-color: #438cf7; +} + +infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box link:link, infobar.warning:backdrop > revealer > box link:link { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box button, infobar.warning > revealer > box button:hover, infobar.warning > revealer > box button:focus, infobar.warning > revealer > box button:active, infobar.warning > revealer > box button:checked, infobar.warning > revealer > box button.text-button:not(:disabled), infobar.warning:backdrop > revealer > box button, infobar.warning:backdrop > revealer > box button:hover, infobar.warning:backdrop > revealer > box button:focus, infobar.warning:backdrop > revealer > box button:active, infobar.warning:backdrop > revealer > box button:checked, infobar.warning:backdrop > revealer > box button.text-button:not(:disabled) { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning:hover > revealer > box { + background-color: #fbb814; +} + +infobar.error > revealer > box, infobar.error:backdrop > revealer > box { + background-color: #F44336; + color: #FFFFFF; +} + +infobar.error > revealer > box link:link, infobar.error:backdrop > revealer > box link:link { + color: #FFFFFF; +} + +infobar.error > revealer > box button, infobar.error > revealer > box button:hover, infobar.error > revealer > box button:focus, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error > revealer > box button.text-button:not(:disabled), infobar.error:backdrop > revealer > box button, infobar.error:backdrop > revealer > box button:hover, infobar.error:backdrop > revealer > box button:focus, infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.error:hover > revealer > box { + background-color: #f32c1e; +} + +/************ + * Tooltips * + ************/ +tooltip { + box-shadow: none; +} + +tooltip.background { + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; + border-radius: 6px; +} + +tooltip.background.csd { + border-radius: 6px; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +tooltip decoration { + background-color: transparent; +} + +tooltip > box { + margin: -6px; + min-height: 24px; + padding: 4px 8px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.top overlay { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.bottom { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.dark { + color: #FFFFFF; +} + +colorswatch.light { + color: rgba(0, 0, 0, 0.87); +} + +colorswatch overlay { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); +} + +colorswatch overlay:hover { + box-shadow: 0 0 0 2px #5b9bf8; +} + +colorswatch#add-color-button { + border-radius: 6px 0 0 6px; +} + +colorswatch#add-color-button:only-child { + border-radius: 6px; +} + +colorswatch#add-color-button overlay { + background-color: rgba(255, 255, 255, 0.04); +} + +colorswatch#add-color-button overlay:hover { + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +colorswatch#add-color-button overlay:active { + background-color: rgba(255, 255, 255, 0.26); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 12px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 12px; +} + +colorswatch#editor-color-sample overlay:hover { + box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.15); +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #22262c; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 12px; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 0 36px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 0 36px transparent; +} + +.maximized decoration, .fullscreen decoration, .tiled decoration, .tiled-top decoration, .tiled-right decoration, .tiled-bottom decoration, .tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; + border: none; +} + +.ssd decoration { + border: none; + border-radius: 12px 12px 0 0; + box-shadow: none; +} + +.metacity decoration { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: none; +} + +.csd.popup decoration { + border-radius: 12px; + border: none; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1); +} + +tooltip.csd decoration { + border-radius: 6px; + box-shadow: none; + border: none; +} + +messagedialog.csd decoration { + border-radius: 12px; +} + +.solid-csd decoration { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + background-color: #1b1e24; + border: 1px solid #3f4348; +} + +.solid-csd decoration:backdrop { + background-color: #22262c; +} + +button.titlebutton:not(.suggested-action):not(.destructive-action) { + min-height: 22px; + min-width: 22px; + padding: 0; + margin: 0 4px; +} + +button.minimize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.minimize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.close.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.close.titlebutton:active:not(.suggested-action):not(.destructive-action) { + color: white; +} + +button.minimize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:active:not(.suggested-action):not(.destructive-action), button.close.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 10%, rgba(255, 255, 255, 0.15) 0%); +} + +button.minimize.titlebutton:backdrop:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:backdrop:not(.suggested-action):not(.destructive-action), button.close.titlebutton:backdrop:not(.suggested-action):not(.destructive-action) { + opacity: 0.65; +} + +button.minimize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.minimize.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +button.maximize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +button.close.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.close.titlebutton:active:not(.suggested-action):not(.destructive-action) { + background-color: #31c4b6; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + color: #5b9bf8; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg")); +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + -gtk-icon-transform: unset; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + padding-top: 6px; + -gtk-icon-transform: rotate(45deg); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(255, 255, 255, 0.12); + border-radius: 7px; + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.12); + background-color: #2d3036; + color: #FFFFFF; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + caret-color: #5b9bf8; +} + +stackswitcher, +.stack-switcher { + min-height: 0; + padding: 3px; + border-radius: 9px; + background-color: rgba(255, 255, 255, 0.04); + border: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { + margin: 0; + background-color: transparent; + border-radius: 6px; + padding: 3px 10px; + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button.text-button:not(.suggested-action):not(.destructive-action), +.stack-switcher.linked:not(.vertical) > button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 100px; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus, +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus { + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover, +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover { + background-color: alpha(currentColor, 0.1); + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked, +.stack-switcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +stackswitcher button.text-button, +.stack-switcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular, +.stack-switcher button.circular, +.stack-switcher button.text-button.circular { + min-width: 36px; + min-height: 36px; + padding: 0; +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +button.emoji-section { + margin: 4px; +} + +button.emoji-section:checked { + color: #5b9bf8; +} + +button.emoji-section:not(:last-child) { + margin-right: 0; +} + +popover.emoji-picker .emoji { + min-width: 3em; + min-height: 3em; + padding: 0 8px; +} + +popover.emoji-picker .emoji widget { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; +} + +popover.emoji-picker .emoji widget:hover { + background-color: alpha(currentColor, 0.08); +} + +popover.emoji-completion { + padding: 8px 0; +} + +popover.emoji-completion arrow { + border: none; + background: none; +} + +popover.emoji-completion .emoji-completion-row { + min-height: 28px; + padding: 0 12px; +} + +popover.emoji-completion .emoji:hover { + background-color: alpha(currentColor, 0.08); +} + +/************ + * Nautilus * + ************/ +.nautilus-window.background.csd { + border-radius: 0 0 12px 12px; + background-color: #2d3036; +} + +.nautilus-window.background.csd:backdrop { + background-color: #25292f; +} + +.nautilus-window.background.csd > grid.horizontal > paned.horizontal > separator, +.nautilus-window.background.csd > deck > box.vertical > paned.horizontal > separator { + margin-left: 0; +} + +.nautilus-window.background.csd placessidebar > viewport.frame > list > separator { + background: none; +} + +.nautilus-window.background.csd.unified notebook { + border-radius: 0; +} + +.nautilus-window.background.csd:not(.unified) .nautilus-list-view { + background-color: transparent; + border-bottom-right-radius: 12px; +} + +.nautilus-window.background.csd:not(.unified) notebook { + background-color: #25292f; + border-radius: 0 0 12px 12px; +} + +.nautilus-window.background.csd:not(.unified) notebook > stack { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) notebook scrolledwindow > .view:not(:selected):not(:hover):not(:checked) { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) notebook placesview > stack > frame > scrolledwindow > viewport > list { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) notebook placesview > actionbar { + background-color: transparent; + border-radius: 0 0 12px 12px; +} + +.nautilus-window.background.csd:not(.unified) notebook placesview > actionbar > revealer > box { + background-color: transparent; +} + +.nautilus-window.background.csd:not(.unified) paned > separator.wide { + min-width: 12px; + box-shadow: 12px 0 #25292f; + background-color: #25292f; + background-image: image(#46494e); +} + +.nautilus-window.maximized, .nautilus-window.maximized placessidebar { + border-radius: 0; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + margin: 6px; + border: none; + border-radius: 6px; + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +.nautilus-window .floating-bar button { + margin: 4px; + color: #FFFFFF; +} + +.nautilus-canvas-item.dim-label, +.nautilus-list-dim-label { + color: rgba(255, 255, 255, 0.7); +} + +.nemo-desktop.nemo-canvas-item, .caja-desktop.caja-canvas-item, +.nautilus-desktop.nautilus-canvas-item { + color: #FFFFFF; +} + +@keyframes nautilus-operations-button-needs-attention { + to { + background-color: alpha(currentColor, 0.08); + } +} + +.nautilus-operations-button-needs-attention { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 6 alternate; +} + +.path-bar-box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + border-radius: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.path-bar-box button { + margin: 0; +} + +.path-bar-box.width-maximized { + background-color: alpha(currentColor, 0.05); +} + +.path-bar-box.background.frame { + border-style: none; + background-color: alpha(currentColor, 0.05); +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { + padding-left: 12px; + padding-right: 12px; + margin-left: 1px; + margin-right: 1px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):first-child { + margin-left: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):last-child { + margin-right: 0; +} + +.path-bar-box .linked.nautilus-path-bar button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 0; +} + +.path-bar-box .linked.nautilus-path-bar button.text-button.image-button:not(.suggested-action):not(.destructive-action) image:not(:only-child) { + margin: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):first-child:dir(rtl) { + background-color: rgba(255, 255, 255, 0.08); +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):last-child:dir(ltr):disabled, .path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action):first-child:dir(rtl):disabled { + background-color: transparent; + color: rgba(255, 255, 255, 0.4); +} + +.windowhandle .linked.nautilus-path-bar { + background-color: alpha(currentColor, 0.05); + border-radius: 6px; + margin: 6px 0; + color: #FFFFFF; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box { + padding: 2px; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box button:not(.suggested-action):not(.destructive-action) { + min-height: 20px; + margin: 0; + border-radius: 4px; + background-color: transparent; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box button.current-dir:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +.windowhandle .linked.nautilus-path-bar .path-buttons-box button.current-dir:not(.suggested-action):not(.destructive-action):hover, .windowhandle .linked.nautilus-path-bar .path-buttons-box button.current-dir:not(.suggested-action):not(.destructive-action):active { + background: none; + box-shadow: none; +} + +.windowhandle .linked.nautilus-path-bar > button { + margin: 0; +} + +.windowhandle .linked.nautilus-path-bar > button:hover { + background-color: alpha(currentColor, 0.1); +} + +.disk-space-display.unknown { + background-color: rgba(255, 255, 255, 0.26); + color: rgba(255, 255, 255, 0.26); +} + +.disk-space-display.used { + background-color: #5b9bf8; + color: #5b9bf8; +} + +.disk-space-display.free { + background-color: rgba(255, 255, 255, 0.14); + color: rgba(255, 255, 255, 0.14); +} + +.search-information { + padding: 2px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + color: #FFFFFF; +} + +.conflict-row:not(:selected) { + background-color: #65562e; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 6px; +} + +.nautilus-window flowboxchild:selected { + background-color: transparent; +} + +.nautilus-window notebook .view:not(treeview) { + border-radius: 6px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame { + border-style: none; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child { + margin: -6px 0 0 -6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label { + margin: 0 8px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button { + border-radius: 0; +} + +.nautilus-window > popover.menu:not(:last-child) { + padding: 3px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box { + margin-top: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box { + margin-bottom: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked { + margin-top: 1px; +} + +.nautilus-window > popover.menu:not(:last-child) separator { + margin-bottom: -2px; +} + +.nautilus-menu-sort-heading { + margin: 1px 3px; + font-weight: 500; +} + +.nautilus-menu-sort-heading:disabled { + color: rgba(255, 255, 255, 0.7); +} + +.nautilus-window paned > separator { + background-color: #2d3036; +} + +window.csd.background > deck > box.view > notebook > box > stack > button { + margin: 2px; +} + +/********* + * gedit * + *********/ +window.org-gnome-gedit > paned.titlebar > separator { + background-color: transparent; +} + +window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned > box.vertical > stack > grid.horizontal > box.horizontal { + margin: 4px 0; +} + +window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned > box.vertical > stack > grid.horizontal > scrolledwindow { + border-bottom-left-radius: 12px; +} + +window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned stack scrolledwindow viewport.frame list.gedit-document-panel { + background: none; +} + +.open-document-selector-path-label { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +.open-document-selector-match { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-document-panel { + background-color: #2d3036; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0 0 12px 12px; +} + +.gedit-search-slider { + margin: 0 6px 10px; + padding: 6px; + background-color: #2d3036; + border-radius: 0 0 12px 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.1); +} + +.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 6px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 6px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:not(.error) { + background-color: #2d3036; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover, .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { + color: #FFFFFF; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/********** + * Tweaks * + **********/ +.csd .tweak-categories { + background-color: transparent; + border-bottom-left-radius: 12px; +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#25292f); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#25292f); +} + +.tweak-group-startup { + background-image: image(#25292f); +} + +.tweak-group-startup row.tweak-startup { + border-radius: 6px; + background-color: transparent; + background-image: none; +} + +row#Focus, +row#ClickMethod, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + margin-top: 4px; +} + +leaflet.titlebar > .titlebar.tweak-titlebar-left, +leaflet.titlebar > .titlebar.tweak-titlebar-right, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right { + background-color: inherit; + box-shadow: inherit; + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); +} + +/************************ + * Gnome Control Center * + ************************/ +window.background.csd > headerbar.titlebar > leaflet > headerbar:first-child:not(:only-child), +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:not(:only-child) { + border-top-left-radius: 12px; +} + +window.background.csd > headerbar.titlebar > leaflet > headerbar:last-child:not(:only-child), +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:not(:only-child) { + border-top-right-radius: 12px; +} + +window.background.csd > headerbar.titlebar > leaflet > headerbar:first-child:only-child, window.background.csd > headerbar.titlebar > leaflet > headerbar:last-child:only-child, +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:only-child, +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:only-child { + border-top-right-radius: 12px; + border-top-left-radius: 12px; +} + +window.background.csd > stack:not(.titlebar) > stack.background { + border-radius: 0 0 12px 12px; +} + +window.background.csd > leaflet > stack.background, +window.background.csd > hdyleaflet > stack.background, +window.background.csd > box.horizontal > stack.background { + background: none; +} + +window.background.csd > leaflet > stack.background frame > border, +window.background.csd > hdyleaflet > stack.background frame > border, +window.background.csd > box.horizontal > stack.background frame > border { + border: none; +} + +window.background.csd > leaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame, +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame { + background-color: #25292f; + border-bottom-right-radius: 12px; +} + +window.background.csd > leaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view, +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view { + background: none; +} + +window.background.csd > leaflet frame.view, +window.background.csd > hdyleaflet frame.view, +window.background.csd > box.horizontal frame.view { + border-radius: 6px; + background: none; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view { + background-color: #25292f; + border-bottom-left-radius: 12px; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack { + background-color: transparent; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list { + background-color: transparent; + padding: 3px; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable, +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable { + border-radius: 6px; +} + +window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected) { + background-color: transparent; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical > list { + border-top-width: 0; + border-bottom-width: 0; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical > list, window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical > list > row { + border-radius: 0; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:first-child > list { + border-top-width: 1px; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:first-child > list, window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:first-child > list > row { + border-radius: 6px 6px 0 0; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:last-child > list { + border-bottom-width: 1px; +} + +window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:last-child > list, window.background.csd stack.background clamp.medium frame > box.vertical > box.vertical:last-child > list > row { + border-radius: 0 0 6px 6px; +} + +window.background.csd hdycolumn stack frame.view > stack > stack list > separator { + background-color: rgba(255, 255, 255, 0.12); +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack > box.horizontal > notebook > stack { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > scrolledwindow > viewport.frame > list { + background: none; +} + +dialog.background.csd > box.vertical.dialog-vbox > scrolledwindow > viewport.frame > list > row:not(:hover):not(:active):not(:selected) { + background-color: transparent; +} + +hdyleaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group), leaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group), box.horizontal > stack.background > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) { + padding: 3px; +} + +hdyleaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) row.activatable, leaflet > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) row.activatable, box.horizontal > stack.background > box.vertical > scrolledwindow > viewport.frame list:not(.view):not(.tweak-group) row.activatable { + border-radius: 6px; +} + +/************************ + * Gnome system monitor * + ************************/ +window#gnome-system-monitor.background.csd > box.vertical > stack { + background-color: #25292f; + border-radius: 0 0 12px 12px; +} + +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > revealer > actionbar > revealer > box { + border-radius: 0 0 12px 12px; +} + +window#gnome-system-monitor.background:not(.csd) > box.vertical > headerbar { + box-shadow: none; +} + +/************************ + * Gnome Sound Recorder * + ************************/ +stack > grid.vertical > scrolledwindow { + border: none; + border-radius: 0 0 12px 12px; +} + +stack > grid.vertical > scrolledwindow > viewport.frame list { + border-radius: 0 0 12px 12px; +} + +stack > grid.vertical scrolledwindow.frame.emptyGrid { + border: none; +} + +/****************** + * Gnome Contacts * + ******************/ +window.background.csd scrolledwindow.contacts-contact-form { + border-bottom-right-radius: 12px; +} + +/************************ + * Epiphany (Gnome Web) * + ************************/ +tabbar > revealer > box { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: rgba(255, 255, 255, 0.04); + padding: 0; + margin: 0; + border-radius: 0; +} + +tabbar tabbox { + padding: 3px; + margin: 0; + background: none; +} + +tabbar tabbox > tab button.tab-close-button { + min-height: 24px; + min-width: 24px; + border-radius: 9999px; + border: none; + padding: 0; + margin-right: 0; +} + +tabbar .end-action { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +tabbar .end-action button { + border-radius: 0; +} + +window.preferences preferencespage clamp > box > preferencesgroup > box { + padding: 6px; +} + +window.preferences preferencespage clamp > box > preferencesgroup > box > box > widget > list { + margin: 4px; +} + +/***************** + * Gnome Weather * + *****************/ +#weather-page, +#weekly-forecast-frame { + border-bottom-right-radius: 12px; +} + +#weather-page-content-view { + border-bottom-right-radius: 12px; + border-bottom-left-radius: 12px; +} + +/*************** + * Gnome Music * + ***************/ +window.background.csd box.vertical > overlay > stack.background { + border-radius: 0 0 12px 12px; +} + +/**************** + * Gnome Clocks * + ****************/ +/************* + * Rhythmbox * + *************/ +window.background > box.vertical > toolbar.primary-toolbar > toolitem > box.horizontal:not(.linked) > button.toggle, +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button:not(.toggle):not(.raised):not(.flat), window.background > box.vertical > toolbar.primary-toolbar > toolitem button.flat.scale, window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised, window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > .linked > button, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal > toolitem > box.horizontal > button { + min-height: 24px; + min-width: 24px; + padding: 6px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button { + border-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button:not(:first-child), .sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button:not(:last-child) { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button.image-button:not(.text-button):first-child { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button.image-button:not(.text-button):last-child { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; +} + +.sidebar-paned > box > paned > grid > toolbar.inline-toolbar.sidebar-toolbar button.image-button > widget > box > image { + padding: 0; +} + +window.csd > box.vertical > box.vertical > toolbar.horizontal, +window.solid-csd > box.vertical > box.vertical > toolbar.horizontal { + padding: 6px; + margin: -1px 0; + border-bottom: none; + border-top: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: transparent; +} + +window.csd > box.vertical > box.vertical > frame, +window.solid-csd > box.vertical > box.vertical > frame { + margin: -1px 0; + padding: 0; +} + +window.csd > box.vertical > box.vertical > frame > border, +window.solid-csd > box.vertical > box.vertical > frame > border { + border: none; +} + +window.background > box.vertical > toolbar.primary-toolbar { + padding: 0 6px; +} + +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised { + border-radius: 6px; +} + +window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised > widget > box > image { + padding: 0; +} + +/********** + * Polari * + **********/ +.polari-room-list .sidebar { + background: none; +} + +.polari-room-list .sidebar > row.activatable:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +stack.view.polari-entry-area { + background-color: #22262c; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-bottom-right-radius: 12px; +} + +stack.view.polari-entry-area:disabled { + background-image: image(#22262c); +} + +/*********** + * Builder * + ***********/ +layouttabbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +layouttabbar > box > button { + margin: 2px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.2); + box-shadow: inset 0 -2px #5b9bf8; + background-color: #25292f; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(0, 0, 0, 0.2); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #F44336; + color: #FFFFFF; +} + +window.workbench treeview.image { + color: rgba(255, 255, 255, 0.7); +} + +popover.popover-selector list { + padding: 6px; +} + +popover.popover-selector list row { + border-radius: 6px; +} + +popover.popover-selector list row image:dir(ltr) { + margin-right: 6px; +} + +popover.popover-selector list row image:dir(rtl) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(ltr) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(rtl) { + margin-right: 6px; +} + +omnibar.linked:not(.vertical) entry { + border-radius: 6px; +} + +omnibar:not(:hover):not(:active) entry { + color: rgba(255, 255, 255, 0.7); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +entry.preferences-search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: #25292f; +} + +preferences stacksidebar.sidebar list { + background-color: #2d3036; +} + +preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { + border-style: none; +} + +preferences > box > box:dir(ltr) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.messagepopover.background { + padding: 0; +} + +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +popover.messagepopover .popover-action-area button:first-child { + border-bottom-left-radius: 6px; +} + +popover.messagepopover .popover-action-area button:last-child { + border-bottom-right-radius: 6px; +} + +popover.messagepopover .popover-content-area { + margin: 16px; +} + +popover.transfers list { + background-color: transparent; +} + +popover.transfers list row:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(0, 0, 0, 0.2); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(0, 0, 0, 0.2); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +docktab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + margin-bottom: -1px; + padding: 6px 6px; + border-width: 1px; + border-color: transparent; + box-shadow: inset 0 -2px transparent; + background-image: radial-gradient(circle, #5b9bf8 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +docktab:hover { + background-color: alpha(currentColor, 0.08); + color: #FFFFFF; +} + +docktab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 225ms cubic-bezier(0, 0, 0.2, 1), background-image 525ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #5b9bf8; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #FFFFFF; +} + +dockoverlayedge { + background-color: #22262c; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #5b9bf8; +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #5b9bf8; +} + +pillbox { + background-color: #22262c; + border-radius: 6px; +} + +layoutpane entry.search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: #25292f; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; + background-color: transparent; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +window.workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +button.run-arrow-button { + padding-left: 10px; + padding-right: 10px; +} + +button.dzlmenubutton image { + min-width: 30px; +} + +button.dzlmenubutton image.arrow { + min-width: 27px; +} + +button.dzlmenubuttonitem { + color: #FFFFFF; + font-weight: normal; +} + +button.dzlmenubuttonitem:disabled { + color: rgba(255, 255, 255, 0.4); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +idelayoutstackheader button:checked { + color: #FFFFFF; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #22262c; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button { + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:active { + background-image: radial-gradient(circle, rgba(91, 155, 248, 0.7) 10%, transparent 0%); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: #FFFFFF; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #5b9bf8; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #5b9bf8; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #5b9bf8; + color: #FFFFFF; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +button.photos-filter-preview { + color: #FFFFFF; + font-weight: normal; +} + +button.photos-filter-preview:checked { + background-color: alpha(currentColor, 0.06); + color: #FFFFFF; +} + +button.photos-filter-preview:checked image { + color: #FFFFFF; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.side-panel .view { + background-image: image(#2d3036); +} + +.side-panel .view:hover { + background-image: image(#3e4146); +} + +.side-panel .view:selected { + background-image: image(#5b9bf8); +} + +.side-panel .view:selected:hover { + background-image: image(#68a3f9); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-clip: border-box; +} + +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/************* + * Documents * + *************/ +.documents-scrolledwin { + background-color: transparent; +} + +.documents-scrolledwin .content-view:not(:selected):not(:hover) { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view:not(:selected):not(:hover) { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view:not(:selected):not(:hover) border { + border: none; +} + +window.background.csd > stack > box > revealer > actionbar > revealer > box { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +/******************* + * Document Viewer * + *******************/ +window.background.csd evview.view.content-view { + border-radius: 0 0 12px 12px; +} + +/********************************* + * Archive Manager (File roller) * + *********************************/ +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow { + border-radius: 0 0 12px 12px; + background-color: #25292f; +} + +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow > treeview.view:not(:hover):not(:selected):not(:selected):not(:hover):not(.progressbar):not(.expander):not(.trough):not(.separator) { + background-color: #25292f; +} + +.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow { + border-radius: 0 0 0 12px; + background-color: #22262c; +} + +/************ + * Terminal * + ************/ +terminal-window decoration { + border-radius: 12px 12px 0 0; +} + +terminal-window.background.csd, terminal-window.background.csd.maximized { + border-radius: 0; +} + +terminal-window notebook > header > box { + margin: -2px -2px -2px 1px; +} + +terminal-window notebook > header > box button { + min-height: 24px; + min-width: 24px; + padding: 3px; +} + +window.background > box.vertical > box.horizontal > frame > border { + border-width: 0 1px 0 0; +} + +window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list { + border-bottom-left-radius: 12px; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame { + border-width: 0; + border-radius: 0 0 12px 0; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame > stack { + border-bottom-right-radius: 12px; +} + +.terminal-window { + background-color: #22262c; +} + +.terminal-window tabbar tabbox { + background-color: #2d3036; + margin: 0; + border-radius: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-clip: border-box; +} + +/********* + * To Do * + *********/ +task-list-view taskrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -8px; +} + +task-list-view taskrow:hover { + transition: none; +} + +task-list-view taskrow label { + margin: 0 8px; +} + +task-list-view taskrow image.dim-label { + min-width: 16px; +} + +task-list-view > box > revealer > box > button { + margin: -6px; +} + +task-list-view > box > revealer > box > button .dim-label { + color: inherit; +} + +tasklistview taskrow { + outline: none; +} + +tasklistview taskrow entry, tasklistview taskrow entry:focus, tasklistview taskrow entry:disabled { + box-shadow: none; +} + +tasklistview taskrow image.dim-label { + min-width: 16px; +} + +tasklistview > box > revealer > box > button { + margin: -6px; +} + +tasklistview > box > revealer > box > button .dim-label { + color: inherit; +} + +/******* + * Eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/*********** + * Fractal * + ***********/ +.background.csd.main-window .sidebar.rooms-sidebar { + border-bottom-left-radius: 12px; +} + +/******** + * Gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(0, 0, 0, 0.2); +} + +list.categories { + background-image: image(#2d3036); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 6px; + background-color: #2d3036; + color: #FFFFFF; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 36px; +} + +/********* + * Geary * + *********/ +window.background.csd.geary-main-window > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical, +window#GearyMainWindow.background.csd > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical { + border-bottom-left-radius: 12px; +} + +window.background.csd.geary-main-window > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical statusbar, +window#GearyMainWindow.background.csd > deck > overlay > box.vertical > paned.horizontal > box.sidebar.vertical statusbar { + border-bottom-left-radius: 12px; +} + +window.background.csd.geary-main-window stack#conversation_viewer, +window#GearyMainWindow.background.csd stack#conversation_viewer { + border-bottom-right-radius: 12px; +} + +window.background.csd.geary-main-window stack#conversation_viewer scrolledwindow.geary-conversation-scroller viewport.frame list.conversation-listbox, +window#GearyMainWindow.background.csd stack#conversation_viewer scrolledwindow.geary-conversation-scroller viewport.frame list.conversation-listbox { + background: none; + border-bottom-right-radius: 12px; +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded { + animation: none; + background-image: none; +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed actionbar > revealer > box, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed actionbar > revealer > box { + border-radius: 0; +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-expanded > .geary-composer-embed headerbar { + color: #FFFFFF; + background-color: #22262c; + box-shadow: none; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +window.background.csd.geary-main-window stack#conversation_viewer .geary-composer-box actionbar > revealer > box, +window#GearyMainWindow.background.csd stack#conversation_viewer .geary-composer-box actionbar > revealer > box { + border-bottom-left-radius: 0; +} + +.geary-accounts-editor-pane frame:not(.geary-signature) > border, +.geary-accounts-editor-pane scrolledwindow.frame { + border: none; +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout { + background-color: #25292f; +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > headerbar, +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > headerbar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > separator.sidebar, +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > separator.sidebar { + background-color: #1b1e24; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > separator.sidebar:backdrop, +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > separator.sidebar:backdrop { + background-color: #22262c; +} + +.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > box.vertical + separator.sidebar { + min-width: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +.geary-main-window.unified frame.geary-conversation-frame scrolledwindow { + padding: 3px; +} + +.geary-main-window.unified frame.geary-conversation-frame scrolledwindow treeview.view { + border: 1px solid transparent; + border-radius: 6px; + padding: 6px; +} + +.geary-main-window.unified frame.geary-conversation-frame scrolledwindow treeview.view:selected, .geary-main-window.unified frame.geary-conversation-frame scrolledwindow treeview.view:active { + border-radius: 6px; + background-color: #5b9bf8; + color: #FFFFFF; +} + +.geary-main-window.unified separator.geary-sidebar-pane-separator { + min-width: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content > row.activatable { + border: 1px solid rgba(255, 255, 255, 0.12); + border-bottom-width: 0; + background-color: #25292f; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content > row.activatable:first-child { + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content .geary-attachment-pane { + border-radius: 0 0 8px 8px; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content .geary-attachment-pane actionbar.background { + background-color: transparent; +} + +.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content .geary-attachment-pane actionbar.background > revealer > box { + border-radius: 0 0 6px 6px; +} + +/************** + * Extensions * + **************/ +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + +window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list { + padding: 0 0; +} + +/*********** + * Dialogs * + ***********/ +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:first-child { + border-radius: 0 0 0 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:last-child { + border-radius: 0 0 12px 0; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow, +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow { + border-radius: 0 0 12px 12px; + background-color: #25292f; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active), +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list row.activatable:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack toolbar.toolbar { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack { + border-radius: 0 0 12px 12px; +} + +dialog.background.csd stack scrolledwindow.frame { + border-radius: 6px; +} + +dialog.background.csd stack scrolledwindow.frame > viewport.frame.view { + border-radius: 6px; +} + +dialog.background.csd stack scrolledwindow.frame textview.view { + border-radius: 6px; +} + +dialog.background.csd stack scrolledwindow.frame textview.view > text { + background: none; +} + +window.background.csd.unified { + background-color: #22262c; +} + +window.background.csd.unified headerbar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); +} + +window.background.csd.unified > decoration-overlay { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +window.background.csd.unified, +window.background.csd.unified > decoration, +window.background.csd.unified > decoration-overlay { + border-radius: 12px; +} + +window.background.csd.unified.tiled > decoration-overlay, window.background.csd.unified.tiled-top > decoration-overlay, window.background.csd.unified.tiled-right > decoration-overlay, window.background.csd.unified.tiled-bottom > decoration-overlay, window.background.csd.unified.tiled-left > decoration-overlay, window.background.csd.unified.maximized > decoration-overlay, window.background.csd.unified.fullscreen > decoration-overlay { + box-shadow: none; +} + +window.background.csd.unified.tiled, +window.background.csd.unified.tiled > decoration, +window.background.csd.unified.tiled > decoration-overlay, window.background.csd.unified.tiled-top, +window.background.csd.unified.tiled-top > decoration, +window.background.csd.unified.tiled-top > decoration-overlay, window.background.csd.unified.tiled-right, +window.background.csd.unified.tiled-right > decoration, +window.background.csd.unified.tiled-right > decoration-overlay, window.background.csd.unified.tiled-bottom, +window.background.csd.unified.tiled-bottom > decoration, +window.background.csd.unified.tiled-bottom > decoration-overlay, window.background.csd.unified.tiled-left, +window.background.csd.unified.tiled-left > decoration, +window.background.csd.unified.tiled-left > decoration-overlay, window.background.csd.unified.maximized, +window.background.csd.unified.maximized > decoration, +window.background.csd.unified.maximized > decoration-overlay, window.background.csd.unified.fullscreen, +window.background.csd.unified.fullscreen > decoration, +window.background.csd.unified.fullscreen > decoration-overlay { + border-radius: 0; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#2d3036); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 32px; +} + +notebook.tilix-background tab > box > stack { + margin: -6px; +} + +button.flat.tilix-small-button { + min-height: 20px; + min-width: 16px; +} + +/************** + * Terminator * + **************/ +.terminator-terminal-window paned > separator { + background-color: #22262c; +} + +.terminator-terminal-window notebook.frame { + border-style: none; +} + +/************* + * Ubitquity * + *************/ +#live_installer .menubar progressbar trough { + border-radius: 4px; + background-color: rgba(255, 255, 255, 0.14); +} + +/********* + * Meld * + ********/ +.meld-notebook, .meld-notebook > stack { + background: none; + border-radius: 0 0 12px 12px; +} + +.meld-notebook-child { + background-color: #2d3036; + border-radius: 0 0 12px 12px; +} + +statusbar.meld-status-bar { + background: none; +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 6px; +} + +/************ + * Chromium * + ************/ +window.background.chromium { + background-color: #2d3036; +} + +window.background.chromium entry, +window.background.chromium > button { + border: 1px solid #3f4348; +} + +window.background.chromium > button { + color: #5b9bf8; +} + +window.background.chromium > button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +window.background.chromium menubar, +window.background.chromium headerbar { + color: rgba(255, 255, 255, 0.7); +} + +window.background.chromium headerbar button:active { + background-color: alpha(currentColor, 0.12); +} + +window.background.chromium spinner { + color: #5b9bf8; +} + +window.background.chromium textview.view { + background-color: transparent; +} + +window.background.chromium treeview.view.cell:selected:focus { + background-color: #5b9bf8; + color: #FFFFFF; +} + +window.background.chromium treeview.view button { + border: 1px solid rgba(255, 255, 255, 0.26); + background-color: #25292f; +} + +window.background.chromium menu { + border-color: #464e5a; +} + +window.background.chromium menu menuitem { + border-radius: 0; +} + +tooltip.background.chromium { + background-color: #26292e; +} + +/*********** + * Firefox * + ***********/ +#MozillaGtkWidget decoration { + border: none; +} + +#MozillaGtkWidget > widget text { + background-color: #2d3036; +} + +#MozillaGtkWidget > widget text:selected { + background-color: #5b9bf8; + color: #FFFFFF; +} + +#MozillaGtkWidget > widget > separator { + color: #3f4348; +} + +#MozillaGtkWidget > widget > scrollbar { + background-clip: border-box; +} + +#MozillaGtkWidget > widget > frame > border { + border-color: #3f4348; +} + +#MozillaGtkWidget > widget > entry, +#MozillaGtkWidget > widget > button > button { + border: 1px solid #3f4348; + border-radius: 6px; + box-shadow: none; +} + +#MozillaGtkWidget > widget > entry:disabled, +#MozillaGtkWidget > widget > button > button:disabled { + border-color: rgba(255, 255, 255, 0.14); +} + +#MozillaGtkWidget > widget > entry { + min-height: 30px; + background-color: #25292f; +} + +#MozillaGtkWidget > widget > entry:focus { + border-color: #5b9bf8; + box-shadow: inset 0 0 0 1px #5b9bf8; +} + +#MozillaGtkWidget > widget > entry:disabled { + background-color: #2d3036; +} + +#MozillaGtkWidget > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +#MozillaGtkWidget > widget > button > button:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +#MozillaGtkWidget > widget > button > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +#MozillaGtkWidget > widget > checkbutton > check, +#MozillaGtkWidget > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate), +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate) { + color: #464646; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):hover, #MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):active, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):hover, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):active { + color: #727272; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { + color: rgba(70, 70, 70, 0.5); +} + +#MozillaGtkWidget menu { + border: none; +} + +#MozillaGtkWidget > widget > menubar { + color: rgba(255, 255, 255, 0.7); +} + +#MozillaGtkWidget > widget > menubar:hover { + color: #FFFFFF; +} + +#MozillaGtkWidget > widget > menubar:disabled { + color: rgba(255, 255, 255, 0.3); +} + +#MozillaGtkWidget > widget > frame { + color: #3f4348; +} + +#MozillaGtkWidget menu > separator { + color: #3f4348; +} + +window.background:not(.csd) > window > menu menuitem { + transition: none; +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +scrolledwindow#DialogNotebook > viewport.frame > notebook.frame button.close-button image { + padding: 4px; +} + +/*********** + * Synapse * + ***********/ +/*************** + * Libreoffice * + ***************/ +window.background > grid > widget > widget > scrolledwindow > viewport > grid > box > box > frame > box { + background-color: #25292f; +} + +/********* + * Pamac * + *********/ +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > list, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > scrolledwindow > viewport.frame > list, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > box.vertical > stack > scrolledwindow > viewport.frame > list { + border: none; + border-radius: 0; +} + +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > list > row.activatable, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > scrolledwindow > viewport.frame > list > row.activatable, +window.background.csd > box.vertical > overlay > stack > box.vertical > box.horizontal > revealer > stack > box.vertical > stack > scrolledwindow > viewport.frame > list > row.activatable { + border-radius: 6px; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #5b9bf8; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 12px 12px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #1b1e24; + color: #FFFFFF; +} + +UnityDecoration .top:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +UnityDecoration .menuitem { + color: rgba(255, 255, 255, 0.7); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #FFFFFF; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.15); +} + +.background:not(.csd) headerbar.inline-toolbar:not(.titlebar) { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #14181d; + color: #FFFFFF; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #FFFFFF; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #5b9bf8; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: rgba(20, 24, 29, 0.75); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(255, 255, 255, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + color: #FFFFFF; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #5b9bf8; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #5b9bf8; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow calendar { + border-style: none; +} + +#MatePanelPopupWindow calendar:not(:selected) { + background-color: transparent; +} + +#MatePanelPopupWindow calendar + box { + margin-top: -5px; + padding-top: 5px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +#MatePanelPopupWindow expander > title { + min-height: 32px; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(255, 255, 255, 0.12); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: alpha(currentColor, 0.1); + color: #FFFFFF; +} + +#mate-menu { + border: 1px solid rgba(0, 0, 0, 0.2); + background-color: #2d3036; +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #FFFFFF; + font-weight: normal; +} + +#mate-menu button:not(.flat) { + background-color: alpha(currentColor, 0.1); +} + +#mate-menu button image, +#mate-menu button label + label { + color: rgba(255, 255, 255, 0.7); +} + +#mate-menu entry { + margin: 0 0 4px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 4px; + padding: 6px; +} + +.brisk-menu { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.brisk-menu entry { + margin-bottom: -2px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.brisk-menu entry + box > box:dir(ltr) { + margin-right: -2px; + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +.brisk-menu entry + box > box:dir(rtl) { + margin-left: -2px; + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +.brisk-menu .categories-list { + padding-top: 4px; +} + +.brisk-menu .categories-list button { + margin: 0 4px; +} + +.brisk-menu .categories-list button:checked { + color: #5b9bf8; +} + +.brisk-menu .session-button { + padding: 12px; +} + +.brisk-menu .frame { + border-style: none; +} + +.brisk-menu .apps-list { + padding: 4px 0; + background-color: transparent; +} + +.brisk-menu .apps-list row { + padding: 0; +} + +.brisk-menu .apps-list row:hover { + box-shadow: none; +} + +.brisk-menu .apps-list button { + border-radius: 0; + color: #FFFFFF; + font-weight: normal; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 6px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button.slider-button { + min-width: 24px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #25292f; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-canvas-item { + border-radius: 6px; +} + +.caja-desktop.view .entry, +.caja-navigation-window .view .entry { + border: none; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + color: #FFFFFF; +} + +.caja-desktop.view .entry:selected, +.caja-navigation-window .view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-desktop.view .entry { + background-color: #22262c; + color: #FFFFFF; + caret-color: currentColor; +} + +.caja-desktop.view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 7px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.lock-dialog frame > border { + border-style: none; +} + +.lock-dialog button:not(:disabled) { + color: #5b9bf8; +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 6px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; +} + +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(255, 255, 255, 0.14); +} + +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #5b9bf8; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window list.sidebar { + background: none; + border-radius: 0 0 0 12px; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 6px; +} + +.budgie-popover { + border: 0 none transparent; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-clip: padding-box; + background-color: #1a1f26; + border-radius: 12px; +} + +.budgie-popover .container { + padding: 6px; +} + +.budgie-popover .container .container, .budgie-popover .container list, .budgie-popover .container row { + padding: 0; +} + +.budgie-popover box > separator { + margin: 3px 0; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row:hover { + box-shadow: none; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) { + background-color: rgba(255, 255, 255, 0.04); + border-right: none; + border-bottom-left-radius: 12px; +} + +.budgie-popover scrolledwindow.sidebar:not(.categories) list > row.activatable { + padding: 6px 8px; +} + +.budgie-popover treeview.view.sidebar { + border-right: none; + background: none; +} + +.budgie-popover treeview.view.sidebar:hover { + background-color: alpha(currentColor, 0.08); +} + +.budgie-popover treeview.view.sidebar:selected { + background-color: alpha(currentColor, 0.12); +} + +.budgie-popover.bottom scrolledwindow.sidebar:not(.categories) { + padding-top: 12px; + border-top-left-radius: 12px; + border-bottom-left-radius: 0; +} + +.budgie-popover > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.bottom > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack { + border-top: none; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.budgie-menu .sidebar, +.budgie-popover.budgie-menu scrollbar, +.budgie-popover.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-popover.budgie-menu entry.search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-popover.budgie-menu scrolledwindow.sidebar.categories { + background-color: rgba(255, 255, 255, 0.04); + padding-bottom: 12px; +} + +.budgie-popover.budgie-menu scrolledwindow.sidebar.categories button.flat.radio.category-button { + border-radius: 0; +} + +.budgie-popover.budgie-menu scrolledwindow > viewport.frame > list > row.activatable > button.flat { + border-radius: 0; +} + +.budgie-popover.budgie-menu list.left-overlay-menu { + border-radius: 12px; + margin: 6px; + padding: 6px; + background-color: #1a1f26; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.budgie-popover.budgie-menu .budgie-menu-footer { + padding: 6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.budgie-menu .budgie-menu-footer button { + border-radius: 9999px; +} + +.budgie-popover.user-menu list, +.budgie-popover.user-menu row { + border: none; + background: none; + box-shadow: none; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child { + margin-bottom: 0; + outline-width: 0; + border-radius: 6px; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child button.indicator-item { + transition: none; + animation: none; +} + +.budgie-popover.sound-popover .container { + padding: 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 3px; +} + +.budgie-popover.night-light-indicator .view-header { + margin: 0 6px; +} + +.budgie-popover.places-menu .name-button image:dir(ltr) { + margin-right: 3px; +} + +.budgie-popover.places-menu .name-button image:dir(rtl) { + margin-left: 3px; +} + +.budgie-popover.places-menu .unmount-button { + margin: 2px; + padding: 0; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 3px; + padding-top: 3px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.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(255, 255, 255, 0.12); +} + +.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 { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: alpha(currentColor, 0.1); +} + +.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: 6px; +} + +.budgie-panel { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(20, 24, 29, 0.75); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.budgie-panel.transparent { + background-color: rgba(20, 24, 29, 0.75); +} + +.bottom .budgie-panel.dock-mode { + border-radius: 12px 12px 0 0; +} + +.bottom .budgie-panel.dock-mode .icon-tasklist button.launcher:checked, .bottom .budgie-panel.dock-mode .icon-tasklist button.launcher:active { + color: #FFFFFF; +} + +.bottom .budgie-panel.dock-mode .icon-tasklist > box > revealer:first-child > button.launcher { + border-top-left-radius: 12px; +} + +.bottom .budgie-panel.dock-mode .icon-tasklist > box > revealer:last-child > button.launcher { + border-top-right-radius: 12px; +} + +.left .budgie-panel.dock-mode { + border-radius: 0 12px 12px 0; +} + +.left .budgie-panel.dock-mode .icon-tasklist > box > revealer:first-child > button.launcher { + border-top-right-radius: 12px; +} + +.left .budgie-panel.dock-mode .icon-tasklist > box > revealer:last-child > button.launcher { + border-bottom-right-radius: 12px; +} + +.right .budgie-panel.dock-mode { + border-radius: 12px 0 0 12px; +} + +.right .budgie-panel.dock-mode .icon-tasklist > box > revealer:first-child > button.launcher { + border-top-left-radius: 12px; +} + +.right .budgie-panel.dock-mode .icon-tasklist > box > revealer:last-child > button.launcher { + border-bottom-left-radius: 12px; +} + +.budgie-panel button { + color: rgba(255, 255, 255, 0.7); + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button:hover { + color: #FFFFFF; +} + +.budgie-panel button:active { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.budgie-menu-launcher { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.budgie-menu-launcher:focus { + box-shadow: none; + border: none; + color: #FFFFFF; +} + +.budgie-panel button.raven-trigger { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel.horizontal button { + padding: 0 6px; +} + +.budgie-panel.vertical button { + padding: 6px 0; +} + +.budgie-panel widget > separator { + background-color: rgba(255, 255, 255, 0.26); +} + +.budgie-panel .alert { + color: #F44336; +} + +.budgie-panel .lock-keys image:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.budgie-panel .titlebar:not(headerbar) { + min-height: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + color: #FFFFFF; +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active { + color: #FFFFFF; +} + +.budgie-panel menubar, +.budgie-panel .menubar { + color: rgba(255, 255, 255, 0.7); + box-shadow: none; + border: none; +} + +.budgie-panel menubar > menuitem, +.budgie-panel .menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel menubar > menuitem:hover, .budgie-panel menubar > menuitem:active, +.budgie-panel .menubar > menuitem:hover, +.budgie-panel .menubar > menuitem:active { + color: #FFFFFF; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(255, 255, 255, 0.4); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(255, 255, 255, 0.3); +} + +.top .budgie-panel .unpinned button.flat.launcher:checked, .top .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel .unpinned button.flat.launcher:checked, .bottom .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel .unpinned button.flat.launcher:checked, .left .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel .unpinned button.flat.launcher:checked, .right .budgie-panel .pinned button.flat.launcher.running:checked { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #2d3036; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.raven > box { + margin-bottom: -10px; +} + +.raven stackswitcher.linked { + margin: 6px 16px; +} + +.raven stackswitcher.linked > button:focus { + box-shadow: none; +} + +.raven .raven-header { + min-height: 36px; + padding: 3px; +} + +.raven .raven-header.top { + padding: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.raven .raven-header.top stackswitcher button { + margin: -4px 0 -5px; + padding: 0 16px; + min-height: 24px; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.raven stack .raven-header { + margin-top: -6px; +} + +.raven stack scrolledwindow .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #25292f; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(255, 255, 255, 0.12); +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 12px; + border-radius: 9999px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +.raven .audio-widget scale.marks-after { + padding-top: 0; + padding-bottom: 0; +} + +.raven .audio-widget scale.marks-after label { + font-size: 90%; + padding: 0; + margin: -10px 0 0 6px; +} + +.raven .audio-widget button.flat.expander-button { + margin-top: 4px; + margin-bottom: 4px; +} + +.raven .audio-widget list { + background-color: transparent; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked { + background-color: rgba(255, 255, 255, 0.06); + color: #FFFFFF; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected label, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked label { + color: #FFFFFF; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable label { + padding-left: 12px; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 6px; +} + +.raven-mpris { + background-color: #2d3036; + color: #FFFFFF; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 12px; +} + +image.raven-mpris { + background-color: rgba(255, 255, 255, 0.12); + color: rgba(255, 255, 255, 0.7); + border-radius: 6px; +} + +.raven-notifications-view > .raven-background > viewport.frame { + padding: 0; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable { + margin-left: -6px; + margin-right: -3px; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable .raven-notifications-group-header { + padding: 0 12px; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list { + padding: 6px; + background: none; +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list > row.activatable { + border: none; + padding: 6px; + padding-left: 12px; + margin: 3px; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list > row.activatable:hover, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable list > row.activatable:selected { + background-color: rgba(255, 255, 255, 0.12); +} + +.raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:selected, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:selected:hover, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:hover, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:active, .raven-notifications-view > .raven-background > viewport.frame > list > row.activatable:focus { + background: none; + box-shadow: none; +} + +.drop-shadow { + margin: 5px 9px; + padding: 6px; + border-radius: 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +.drop-shadow .linked > button { + border-radius: 12px; +} + +.budgie-notification-window, .budgie-switcher-window, .budgie-osd-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-notification .notification-body, .budgie-switcher .notification-body { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.budgie-session-dialog, +.budgie-polkit-dialog, +.budgie-run-dialog { + background-color: #2d3036; + border: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +.budgie-session-dialog > box > grid, +.budgie-polkit-dialog > box > grid, +.budgie-run-dialog > box > grid { + padding: 24px; +} + +.budgie-session-dialog.background, .budgie-session-dialog > decoration, +.budgie-polkit-dialog.background, +.budgie-polkit-dialog > decoration, +.budgie-run-dialog.background, +.budgie-run-dialog > decoration { + border-radius: 12px; +} + +.budgie-session-dialog > decoration, +.budgie-polkit-dialog > decoration, +.budgie-run-dialog > decoration { + border: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title, +.budgie-polkit-dialog label:not(:last-child), +.budgie-polkit-dialog .dialog-title, +.budgie-run-dialog label:not(:last-child), +.budgie-run-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button, +.budgie-polkit-dialog .linked.horizontal > button, +.budgie-run-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child, +.budgie-polkit-dialog .linked.horizontal > button:first-child, +.budgie-run-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 12px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child, +.budgie-polkit-dialog .linked.horizontal > button:last-child, +.budgie-run-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 12px; +} + +.budgie-polkit-dialog .message { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-polkit-dialog .failure { + color: #F44336; +} + +.budgie-polkit-dialog > box > grid { + padding-bottom: 0; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 6px 14px; + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.budgie-run-dialog list .dim-label { + color: #FFFFFF; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-power-dialog .titlebar, .budgie-power-dialog decoration { + background: none; +} + +/************** + * Xfce4 Apps * + **************/ +.XfceHeading { + background-color: #25292f; +} + +/*************** + * xfce4-panel * + ***************/ +.xfce4-panel.background { + border: none; + background-color: rgba(20, 24, 29, 0.75); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.xfce4-panel.background button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(255, 255, 255, 0.7); +} + +.xfce4-panel.background button:hover, .xfce4-panel.background button:active, .xfce4-panel.background button:checked { + color: #FFFFFF; +} + +.xfce4-panel.background button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.xfce4-panel.background .tasklist button image { + padding: 6px; +} + +wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +wnck-pager:selected { + background-color: #5b9bf8; +} + +XfdesktopIconView.view { + border-radius: 6px; + background-color: transparent; + color: #FFFFFF; +} + +XfdesktopIconView.view:active { + box-shadow: none; +} + +XfdesktopIconView.view .rubberband { + border-radius: 0; +} + +window#whiskermenu-window { + border-radius: 0; + background-color: #22262c; + border: none; +} + +window#whiskermenu-window entry.search:focus { + background-color: #25292f; +} + +window#whiskermenu-window > frame > border { + border-radius: 12px; + padding: 6px 8px 6px 9px; + margin: 6px; + border: none; + background-color: #1a1f26; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); +} + +window#whiskermenu-window box.categories > button.radio { + padding: 3px 6px; + margin: 1px 0; +} + +window#whiskermenu-window box.categories > button.radio:hover { + background-color: rgba(255, 255, 255, 0.12); +} + +window#whiskermenu-window box.categories > button.radio:checked, window#whiskermenu-window box.categories > button.radio:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +window#whiskermenu-window box.categories > button.radio:checked:hover, window#whiskermenu-window box.categories > button.radio:active:hover { + background-image: none; +} + +window#whiskermenu-window scrolledwindow.frame { + padding: 3px; + background-color: #25292f; + border-radius: 6px; +} + +window#whiskermenu-window scrolledwindow.frame treeview.view { + border-radius: 6px; +} + +window#whiskermenu-window scrolledwindow.frame treeview.view:not(:hover):not(:selected) { + background: none; +} + +window#whiskermenu-window scrolledwindow.frame treeview.view:selected:hover { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +window#whiskermenu-window .title-area > .commands-area > button.flat.command-button:checked, window#whiskermenu-window .title-area > .commands-area > button.flat.command-button:active { + background-color: rgba(255, 255, 255, 0.26); + color: #FFFFFF; +} + +#XfceNotifyWindow { + box-shadow: none; + border: none; + border-radius: 12px; +} + +#XfceNotifyWindow buttonbox { + padding: 0; +} + +#XfceNotifyWindow label#summary { + font-weight: bold; +} + +#xfwm-tabwin { + padding: 12px; + border-radius: 6px; + -XfwmTabwinWidget-icon-size: 64px; + -XfwmTabwinWidget-preview-size: 64px; +} + +/********** + * Thunar * + **********/ +.thunar toolbar { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); + padding: 6px; +} + +.thunar .standard-view.frame, +.thunar .sidebar.frame { + border: none; +} + +.thunar .sidebar .view:not(:selected) { + background-color: transparent; +} + +.thunar .path-bar.linked:not(.vertical) > button.path-bar-button { + margin-left: 2px; + margin-right: 2px; +} + +.thunar statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-top: none; +} + +window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-bottom-left-radius: 12px; +} + +menubar.-vala-panel-appmenu-private, +menubar.-vala-panel-background { + background: none; + border: none; + box-shadow: none; + animation: none; +} + +menubar.-vala-panel-appmenu-private > menuitem, +menubar.-vala-panel-background > menuitem { + color: rgba(255, 255, 255, 0.7); + font-weight: normal; +} + +menubar.-vala-panel-appmenu-private > menuitem:hover, +menubar.-vala-panel-background > menuitem:hover { + color: #FFFFFF; + border-radius: 0; +} + +menubar.-vala-panel-appmenu-private > menuitem:disabled, +menubar.-vala-panel-background > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar.-vala-panel-appmenu-private > menuitem > window.popup, +menubar.-vala-panel-background > menuitem > window.popup { + margin: 6px; +} + +dialog.xfsm-logout-dialog { + box-shadow: none; + border: none; + background-color: #25292f; +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: #22262c; + color: #FFFFFF; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: #FFFFFF; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(255, 255, 255, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +#content_frame { + padding-bottom: 16px; +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame > box, +#buttonbox_frame > buttonbox { + margin: -16px; +} + +#buttonbox_frame button:not(:disabled) { + color: #5b9bf8; +} + +/******** + * Nemo * + ********/ +.nemo-window .primary-toolbar { + background-color: #1b1e24; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + padding: 3px; +} + +.nemo-window .primary-toolbar entry { + min-height: 24px; + padding: 2px 8px; + margin: 0; +} + +.nemo-window .primary-toolbar button { + margin: 2px 1px; +} + +.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button { + border-radius: 3px; +} + +.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} + +.nemo-window scrolledwindow.frame { + border-style: none; +} + +.nemo-window scrolledwindow.frame .view:not(:selected) { + background-color: transparent; +} + +.nemo-window .nemo-inactive-pane .view:not(:selected) { + background-color: #2d3036; +} + +.nemo-window .nemo-window-pane widget.entry { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); +} + +.nemo-window .toolbar { + padding: 0; +} + +.nemo-window .toolbar button { + margin: 3px 0; + padding: 3px; +} + +.nemo-window .toolbar separator { + margin: 6px 0; +} + +.places-treeview { + -NemoPlacesTreeView-disk-full-bg-color: #64676b; + -NemoPlacesTreeView-disk-full-fg-color: #5b9bf8; + -NemoPlacesTreeView-disk-full-bar-width: 2px; + -NemoPlacesTreeView-disk-full-bar-radius: 0; + -NemoPlacesTreeView-disk-full-bottom-padding: 1px; + -NemoPlacesTreeView-disk-full-max-length: 80px; + padding-top: 3px; + padding-bottom: 3px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #FFFFFF; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #FFFFFF; +/* +widget base background color */ +@define-color theme_bg_color #22262c; +/* +text widgets and the like base background color */ +@define-color theme_base_color #25292f; +/* +base background color of selections */ +@define-color theme_selected_bg_color #5b9bf8; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #FFFFFF; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #22262c; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(255, 255, 255, 0.4); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2d3036; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #FFFFFF; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #FFFFFF; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #22262c; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #25292f; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #5b9bf8; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #FFFFFF; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(255, 255, 255, 0.4); +/* +widgets main borders color */ +@define-color borders rgba(255, 255, 255, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(255, 255, 255, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FBC02D; +@define-color error_color #F44336; +@define-color success_color #66BB6A; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #FFFFFF; +@define-color wm_unfocused_title rgba(255, 255, 255, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.08); +@define-color wm_border #070809; +@define-color wm_bg #1b1e24; +@define-color wm_unfocused_bg #22262c; +@define-color wm_button_icon white; +@define-color wm_button_close_hover_bg #31c4b6; +@define-color wm_button_close_active_bg #259389; +@define-color wm_button_max_hover_bg #5b9bf8; +@define-color wm_button_max_active_bg #2077f5; +@define-color wm_button_min_hover_bg #5b9bf8; +@define-color wm_button_min_active_bg #2077f5; +/* +FIXME this is really an API */ +@define-color content_view_bg #25292f; +@define-color placeholder_text_color #bebfc1; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #25292f; +@define-color budgie_tasklist_indicator_color rgba(255, 255, 255, 0.26); +@define-color budgie_tasklist_indicator_color_active #5b9bf8; +@define-color budgie_tasklist_indicator_color_active_window rgba(67, 111, 174, 0.885); +@define-color budgie_tasklist_indicator_color_attention #FBC02D; +@define-color STRAWBERRY_100 #FF9262; +@define-color STRAWBERRY_300 #FF793E; +@define-color STRAWBERRY_500 #F15D22; +@define-color STRAWBERRY_700 #CF3B00; +@define-color STRAWBERRY_900 #AC1800; +@define-color ORANGE_100 #FFDB91; +@define-color ORANGE_300 #FFCA40; +@define-color ORANGE_500 #FAA41A; +@define-color ORANGE_700 #DE8800; +@define-color ORANGE_900 #C26C00; +@define-color BANANA_100 #FFFFA8; +@define-color BANANA_300 #FFFA7D; +@define-color BANANA_500 #FFCE51; +@define-color BANANA_700 #D1A023; +@define-color BANANA_900 #A27100; +@define-color LIME_100 #A2F3BE; +@define-color LIME_300 #8ADBA6; +@define-color LIME_500 #73C48F; +@define-color LIME_700 #479863; +@define-color LIME_900 #1C6D38; +@define-color BLUEBERRY_100 #94A6FF; +@define-color BLUEBERRY_300 #6A7CE0; +@define-color BLUEBERRY_500 #3F51B5; +@define-color BLUEBERRY_700 #213397; +@define-color BLUEBERRY_900 #031579; +@define-color GRAPE_100 #D25DE6; +@define-color GRAPE_300 #B84ACB; +@define-color GRAPE_500 #9C27B0; +@define-color GRAPE_700 #830E97; +@define-color GRAPE_900 #6A007E; +@define-color COCOA_100 #9F9792; +@define-color COCOA_300 #7B736E; +@define-color COCOA_500 #574F4A; +@define-color COCOA_700 #463E39; +@define-color COCOA_900 #342C27; +@define-color SILVER_100 #EEE; +@define-color SILVER_300 #CCC; +@define-color SILVER_500 #AAA; +@define-color SILVER_700 #888; +@define-color SILVER_900 #666; +@define-color SLATE_100 #888; +@define-color SLATE_300 #666; +@define-color SLATE_500 #444; +@define-color SLATE_700 #222; +@define-color SLATE_900 #111; +@define-color BLACK_100 #474341; +@define-color BLACK_300 #403C3A; +@define-color BLACK_500 #393634; +@define-color BLACK_700 #33302F; +@define-color BLACK_900 #2B2928; diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/thumbnail.png b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..16e84c3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-3.0/thumbnail.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-checked-symbolic.svg new file mode 100644 index 0000000..7b89e88 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-checked-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-checked-symbolic@2.svg new file mode 100644 index 0000000..17e3c4a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-checked-symbolic@2.svg @@ -0,0 +1,44 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..b4808a6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-mixed-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-mixed-symbolic@2.svg new file mode 100644 index 0000000..3ea0541 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/checkbox-mixed-symbolic@2.svg @@ -0,0 +1,44 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/close-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/close-symbolic.svg new file mode 100644 index 0000000..06201c3 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/close-symbolic.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/close-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/close-symbolic@2.svg new file mode 100644 index 0000000..a26e6ff --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/close-symbolic@2.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/cursor-handle-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/cursor-handle-symbolic.svg new file mode 100644 index 0000000..e2a252b --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/cursor-handle-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/maximize-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/maximize-symbolic.svg new file mode 100644 index 0000000..39316eb --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/maximize-symbolic.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/maximize-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/maximize-symbolic@2.svg new file mode 100644 index 0000000..8095f75 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/maximize-symbolic@2.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/minimize-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/minimize-symbolic.svg new file mode 100644 index 0000000..f3683b9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/minimize-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/minimize-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/minimize-symbolic@2.svg new file mode 100644 index 0000000..741534b --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/minimize-symbolic@2.svg @@ -0,0 +1,3 @@ + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-checked-symbolic.svg new file mode 100644 index 0000000..67beb46 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-checked-symbolic.svg @@ -0,0 +1,42 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-checked-symbolic@2.svg new file mode 100644 index 0000000..bf51d9e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-checked-symbolic@2.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-mixed-symbolic.svg new file mode 120000 index 0000000..79b7355 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-mixed-symbolic.svg @@ -0,0 +1 @@ +checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-mixed-symbolic@2.svg new file mode 120000 index 0000000..b68859d --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/radio-mixed-symbolic@2.svg @@ -0,0 +1 @@ +checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg new file mode 100644 index 0000000..de0d789 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg new file mode 100644 index 0000000..7f0235f --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg @@ -0,0 +1,47 @@ + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-slider-symbolic.svg new file mode 100644 index 0000000..4b00bc1 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-slider-symbolic.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg new file mode 100644 index 0000000..37d9c04 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg new file mode 100644 index 0000000..1bc5cb6 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-checked-symbolic.svg new file mode 100644 index 0000000..4759e32 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-checked-symbolic.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-checked-symbolic@2.svg new file mode 100644 index 0000000..a44f5c9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-checked-symbolic@2.svg @@ -0,0 +1,44 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..d621934 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,42 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg new file mode 100644 index 0000000..91c7006 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg @@ -0,0 +1,43 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-checked-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-checked-symbolic.svg new file mode 100644 index 0000000..f2c9cf9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-checked-symbolic.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-checked-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-checked-symbolic@2.svg new file mode 100644 index 0000000..a06db4c --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-checked-symbolic@2.svg @@ -0,0 +1,39 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-mixed-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-mixed-symbolic.svg new file mode 120000 index 0000000..86dfcec --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-mixed-symbolic.svg @@ -0,0 +1 @@ +small-checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-mixed-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-mixed-symbolic@2.svg new file mode 120000 index 0000000..bafb558 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/small-radio-mixed-symbolic@2.svg @@ -0,0 +1 @@ +small-checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/unmaximize-symbolic.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/unmaximize-symbolic.svg new file mode 100644 index 0000000..492d47a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/unmaximize-symbolic.svg @@ -0,0 +1,46 @@ + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/unmaximize-symbolic@2.svg b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/unmaximize-symbolic@2.svg new file mode 100644 index 0000000..85f4f3a --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scalable/unmaximize-symbolic@2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png new file mode 100644 index 0000000..71f7669 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png new file mode 100644 index 0000000..b498a2a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png new file mode 100644 index 0000000..e7703d6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png new file mode 100644 index 0000000..822cb84 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 0000000..b6fd776 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 0000000..fe0f72a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider.png new file mode 100644 index 0000000..aa938e6 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 0000000..06dfeb3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-after-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png new file mode 100644 index 0000000..bf71dcf Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png new file mode 100644 index 0000000..1cb2a90 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png new file mode 100644 index 0000000..e8f3de1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png new file mode 100644 index 0000000..f4548a1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 0000000..361a345 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 0000000..6d9642d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider.png new file mode 100644 index 0000000..709d382 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 0000000..0a00e73 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-horz-marks-before-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png new file mode 100644 index 0000000..8bd197d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png new file mode 100644 index 0000000..9985499 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png new file mode 100644 index 0000000..c88d39f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png new file mode 100644 index 0000000..94e4f36 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 0000000..c3ac16f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 0000000..8589740 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider.png new file mode 100644 index 0000000..e25dbc4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 0000000..9a6d436 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-after-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png new file mode 100644 index 0000000..91fddf3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png new file mode 100644 index 0000000..25fc18c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png new file mode 100644 index 0000000..e7910b9 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png new file mode 100644 index 0000000..3952f2c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 0000000..5730e0d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 0000000..ecacf01 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider.png new file mode 100644 index 0000000..4b04f60 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 0000000..2dd58bf Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/scale-vert-marks-before-slider@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png new file mode 100644 index 0000000..edc667f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png new file mode 100644 index 0000000..2099abc Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked.png new file mode 100644 index 0000000..a4a9740 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 0000000..b6c4042 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-checked@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png new file mode 100644 index 0000000..2388f3c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..e94c123 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 0000000..3f3200a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 0000000..938a24d Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/gtk-dark.css b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/gtk-dark.css new file mode 100644 index 0000000..535cd8e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/gtk-dark.css @@ -0,0 +1,7873 @@ +@keyframes ripple { + to { + background-size: 1000% 1000%; + } +} + +@keyframes ripple-on-slider { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes ripple-on-headerbar { + from { + background-image: radial-gradient(circle, #5b9bf8 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #5b9bf8 100%, transparent 100%); + } +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #22262c; + color: #FFFFFF; +} + +dnd { + color: #FFFFFF; +} + +.normal-icons { + -gtk-icon-size: 16px; +} + +.large-icons { + -gtk-icon-size: 32px; +} + +.aboutdialog .large-icons { + -gtk-icon-size: 128px; +} + +spinner:disabled, +arrow:disabled, +scrollbar:disabled, +check:disabled, +radio:disabled, +treeview.expander:disabled { + -gtk-icon-filter: opacity(0.5); +} + +iconview, .view { + background-color: #25292f; + color: #FFFFFF; +} + +iconview:disabled, .view:disabled { + color: rgba(255, 255, 255, 0.4); +} + +iconview:selected, .view:selected { + color: #FFFFFF; +} + +textview text { + background-color: #25292f; +} + +textview border { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +iconview:hover, iconview:selected { + border-radius: 3px; +} + +rubberband, .content-view rubberband, .content-view columnview.view > rubberband, +.content-view treeview.view > rubberband, .content-view .rubberband, columnview.view > rubberband, .content-view columnview.view > .rubberband, +treeview.view > rubberband, +.content-view treeview.view > .rubberband, gridview > rubberband, flowbox > rubberband { + border: 1px solid #5b9bf8; + background-color: rgba(91, 155, 248, 0.3); +} + +flowbox > flowboxchild { + padding: 4px; + border-radius: 6px; +} + +.content-view .tile:selected { + background-color: transparent; +} + +gridview > child { + padding: 3px; +} + +gridview > child:selected { + outline-color: alpha(currentColor, 0.06); +} + +gridview > child box { + border-spacing: 8px; + margin: 12px; +} + +coverflow cover { + color: #FFFFFF; + background-color: #25292f; + border: 1px solid black; +} + +label.separator { + color: rgba(255, 255, 255, 0.7); +} + +label:disabled { + opacity: 1; + color: rgba(255, 255, 255, 0.4); +} + +headerbar label:disabled, tab label:disabled, button label:disabled { + color: inherit; + opacity: 1; +} + +label.osd { + border-radius: 6px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; +} + +.dim-label, row.expander image.expander-row-arrow, row label.subtitle { + color: rgba(255, 255, 255, 0.7); + opacity: 1; +} + +.accent { + color: #5b9bf8; +} + +.success { + color: #66BB6A; +} + +.warning { + color: #FBC02D; +} + +.error { + color: #F44336; +} + +.large-title { + font-weight: 300; + font-size: 24pt; +} + +.title-1 { + font-weight: 800; + font-size: 20pt; +} + +.title-2 { + font-weight: 800; + font-size: 15pt; +} + +.title-3 { + font-weight: 700; + font-size: 15pt; +} + +.title-4 { + font-weight: 700; + font-size: 13pt; +} + +.heading { + font-weight: 700; + font-size: 11pt; +} + +.body { + font-weight: 400; + font-size: 11pt; +} + +.caption { + font-weight: 400; + font-size: 9pt; +} + +.caption-heading { + font-weight: 700; + font-size: 9pt; +} + +window.assistant .sidebar { + padding: 4px 0; +} + +window.assistant .sidebar label { + min-height: 36px; + padding: 0 12px; + color: rgba(255, 255, 255, 0.4); + font-weight: 500; +} + +window.assistant .sidebar label.highlight { + color: #FFFFFF; +} + +.osd .scale-popup > arrow, +.osd .scale-popup > contents, .osd popover.background > arrow, +.osd popover.background > contents, popover.background.touch-selection > arrow, +popover.background.touch-selection > contents, popover.background.magnifier > arrow, +popover.background.magnifier > contents, .osd { + color: #FFFFFF; + background-color: #25292f; + background-clip: padding-box; + border-radius: 12px; + border: none; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.osd { + padding: 6px; + margin: 6px; +} + +.osd.circular { + border-radius: 9999px; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + 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; +} + +/**************** + * Text Entries * + ****************/ +headerbar popover.background entry, entry { + min-height: 36px; + padding: 0 8px; + border-spacing: 6px; + border-radius: 6px; + caret-color: currentColor; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +headerbar popover.background entry:focus-within, entry:focus-within { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + outline: 2px solid #5b9bf8; + outline-offset: -2px; +} + +headerbar popover.background entry:drop(active), headerbar popover.background entry:drop(active):focus-within, headerbar popover.background entry:hover:not(:focus-within), entry:drop(active), entry:drop(active):focus-within, entry:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #FFFFFF; +} + +headerbar popover.background entry:disabled, entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + outline: none; +} + +headerbar popover.background entry.flat:focus-within, headerbar popover.background entry.flat:disabled, headerbar popover.background entry.flat:hover, headerbar popover.background entry.flat, entry.flat:focus-within, entry.flat:disabled, entry.flat:hover, entry.flat { + min-height: 0; + padding: 2px; + background-color: transparent; + box-shadow: none; + border-radius: 0; + outline: none; +} + +headerbar popover.background entry image, entry image { + color: rgba(255, 255, 255, 0.7); +} + +headerbar popover.background entry image:hover, headerbar popover.background entry image:active, entry image:hover, entry image:active { + color: #FFFFFF; +} + +headerbar popover.background entry image:disabled, entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar popover.background entry image.left, entry image.left { + margin: 0 6px 0 2px; +} + +headerbar popover.background entry image.right, entry image.right { + margin: 0 2px 0 6px; +} + +headerbar popover.background entry undershoot.left > undershoot.left, entry undershoot.left > undershoot.left { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 4px); +} + +headerbar popover.background entry undershoot.right > undershoot.right, entry undershoot.right > undershoot.right { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to left, rgba(255, 255, 255, 0.12), transparent 4px); +} + +headerbar popover.background entry.error, entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(244, 67, 54, 0.1); + color: rgba(244, 67, 54, 0.75); + outline: 0 solid transparent; + outline-offset: 4px; + outline: none; +} + +headerbar popover.background entry.error:focus-within, entry.error:focus-within { + background-color: rgba(244, 67, 54, 0.1); + color: #F44336; + outline: 2px solid #F44336; + outline-offset: -2px; + outline: none; +} + +headerbar popover.background entry.error:drop(active), headerbar popover.background entry.error:hover:not(:focus-within), entry.error:drop(active), entry.error:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #F44336; + outline: none; +} + +headerbar popover.background entry.error:disabled, entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(244, 67, 54, 0.1); + color: rgba(244, 67, 54, 0.35); + outline: none; + outline: none; +} + +headerbar popover.background entry.error > text > selection, entry.error > text > selection { + background-color: rgba(244, 67, 54, 0.25); + color: #F44336; +} + +headerbar popover.background entry.error image, entry.error image { + color: rgba(244, 67, 54, 0.75); +} + +headerbar popover.background entry.error image:hover, headerbar popover.background entry.error image:active, entry.error image:hover, entry.error image:active { + color: #F44336; +} + +headerbar popover.background entry.error image:disabled, entry.error image:disabled { + color: rgba(244, 67, 54, 0.35); +} + +headerbar popover.background entry.warning, entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(251, 192, 45, 0.1); + color: rgba(251, 192, 45, 0.75); + outline: 0 solid transparent; + outline-offset: 4px; + outline: none; +} + +headerbar popover.background entry.warning:focus-within, entry.warning:focus-within { + background-color: rgba(251, 192, 45, 0.1); + color: #FBC02D; + outline: 2px solid #FBC02D; + outline-offset: -2px; + outline: none; +} + +headerbar popover.background entry.warning:drop(active), headerbar popover.background entry.warning:hover:not(:focus-within), entry.warning:drop(active), entry.warning:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #FBC02D; + outline: none; +} + +headerbar popover.background entry.warning:disabled, entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(251, 192, 45, 0.1); + color: rgba(251, 192, 45, 0.35); + outline: none; + outline: none; +} + +headerbar popover.background entry.warning > text > selection, entry.warning > text > selection { + background-color: rgba(251, 192, 45, 0.25); + color: #FBC02D; +} + +headerbar popover.background entry.warning image, entry.warning image { + color: rgba(251, 192, 45, 0.75); +} + +headerbar popover.background entry.warning image:hover, headerbar popover.background entry.warning image:active, entry.warning image:hover, entry.warning image:active { + color: #FBC02D; +} + +headerbar popover.background entry.warning image:disabled, entry.warning image:disabled { + color: rgba(251, 192, 45, 0.35); +} + +headerbar popover.background entry.success, entry.success { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(102, 187, 106, 0.1); + color: rgba(102, 187, 106, 0.75); + outline: 0 solid transparent; + outline-offset: 4px; + outline: none; +} + +headerbar popover.background entry.success:focus-within, entry.success:focus-within { + background-color: rgba(102, 187, 106, 0.1); + color: #66BB6A; + outline: 2px solid #66BB6A; + outline-offset: -2px; + outline: none; +} + +headerbar popover.background entry.success:drop(active), headerbar popover.background entry.success:hover:not(:focus-within), entry.success:drop(active), entry.success:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #66BB6A; + outline: none; +} + +headerbar popover.background entry.success:disabled, entry.success:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(102, 187, 106, 0.1); + color: rgba(102, 187, 106, 0.35); + outline: none; + outline: none; +} + +headerbar popover.background entry.success > text > selection, entry.success > text > selection { + background-color: rgba(102, 187, 106, 0.25); + color: #66BB6A; +} + +headerbar popover.background entry.success image, entry.success image { + color: rgba(102, 187, 106, 0.75); +} + +headerbar popover.background entry.success image:hover, headerbar popover.background entry.success image:active, entry.success image:hover, entry.success image:active { + color: #66BB6A; +} + +headerbar popover.background entry.success image:disabled, entry.success image:disabled { + color: rgba(102, 187, 106, 0.35); +} + +entry > progress, +entry progress > trough > progress { + margin: 0 -4px; + border-bottom: 2px solid #5b9bf8; + background-color: transparent; +} + +entry button.image-button { + min-height: 24px; + min-width: 24px; + padding: 0; +} + +treeview entry.flat, treeview entry { + background-color: #25292f; +} + +treeview entry.flat, treeview entry.flat:focus-within, treeview entry, treeview entry:focus-within { + border-image: none; + box-shadow: none; +} + +.entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); + color: #FFFFFF; +} + +.entry-tag:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +:dir(ltr) .entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +editablelabel > stack > text { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +/*********** + * Buttons * + ***********/ +@keyframes needs-attention { + from { + background-image: radial-gradient(farthest-side, #5b9bf8 0%, rgba(91, 155, 248, 0) 0%); + } + to { + background-image: radial-gradient(farthest-side, #5b9bf8 95%, rgba(91, 155, 248, 0)); + } +} + +infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, tabbar tabbox > tabboxchild > tab:selected button.flat, tabbar tabbox > tabboxchild > tab:selected button, notebook > header > tabs > tab:checked button.flat, notebook > header > tabs > tab:checked button.close-button, popover.background.touch-selection button, popover.background.magnifier button, headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +infobar.warning > revealer > box button:focus, tabbar tabbox > tabboxchild > tab:selected button:focus, notebook > header > tabs > tab:checked button.flat:focus, notebook > header > tabs > tab:checked button.close-button:focus, popover.background.touch-selection button:focus, popover.background.magnifier button:focus, headerbar.selection-mode button:focus:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:hover, tabbar tabbox > tabboxchild > tab:selected button:hover, notebook > header > tabs > tab:checked button.flat:hover, notebook > header > tabs > tab:checked button.close-button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, headerbar.selection-mode button:hover:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:active, tabbar tabbox > tabboxchild > tab:selected button:active, notebook > header > tabs > tab:checked button.flat:active, notebook > header > tabs > tab:checked button.close-button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, headerbar.selection-mode button:active:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:checked, tabbar tabbox > tabboxchild > tab:selected button:checked, notebook > header > tabs > tab:checked button.flat:checked, notebook > header > tabs > tab:checked button.close-button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, headerbar.selection-mode button:checked:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +infobar.warning > revealer > box button:disabled, tabbar tabbox > tabboxchild > tab:selected button:disabled, notebook > header > tabs > tab:checked button.flat:disabled, notebook > header > tabs > tab:checked button.close-button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, headerbar.selection-mode button:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); +} + +infobar.warning > revealer > box button:checked:disabled, tabbar tabbox > tabboxchild > tab:selected button:checked:disabled, notebook > header > tabs > tab:checked button.flat:checked:disabled, notebook > header > tabs > tab:checked button.close-button:checked:disabled, popover.background.touch-selection button:checked:disabled, popover.background.magnifier button:checked:disabled, headerbar.selection-mode button:checked:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +headerbar popover.background button:not(.suggested-action):not(.destructive-action), button { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + outline: 0 solid transparent; + outline-offset: 2px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; +} + +headerbar popover.background button:focus:not(.suggested-action):not(.destructive-action), button:focus { + outline: 2px solid rgba(91, 155, 248, 0.35); + outline-offset: 0; +} + +headerbar popover.background button:hover:not(.suggested-action):not(.destructive-action), button:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; + -gtk-icon-filter: brightness(1.2); +} + +headerbar popover.background button.keyboard-activating:not(.suggested-action):not(.destructive-action), button.keyboard-activating, headerbar popover.background button:active:not(.suggested-action):not(.destructive-action), button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +headerbar popover.background button:disabled:not(.suggested-action):not(.destructive-action), button:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +headerbar popover.background button:checked:not(.suggested-action):not(.destructive-action), button:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +headerbar popover.background button:checked:disabled:not(.suggested-action):not(.destructive-action), button:checked:disabled { + background-image: none; + background-color: rgba(91, 155, 248, 0.5); + color: rgba(255, 255, 255, 0.4); +} + +placessidebar row button.sidebar-button, calendar > header > button, scrollbar button, notebook > header > tabs > arrow, popover.menu modelbutton, popover.menu box.circular-buttons button.circular.image-button.model, popover.menu box.inline-buttons button.image-button.model, spinbutton > button, splitbutton.flat > button, +splitbutton.flat > menubutton > button { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: 0 solid transparent; + outline-offset: 2px; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); +} + +placessidebar row button.sidebar-button:focus:not(:hover):not(:active), calendar > header > button:focus:not(:hover):not(:active), scrollbar button:focus:not(:hover):not(:active), notebook > header > tabs > arrow:focus:not(:hover):not(:active), popover.menu modelbutton:focus:not(:hover):not(:active), popover.menu box.circular-buttons button.circular.image-button.model:focus:not(:hover):not(:active), popover.menu box.inline-buttons button.image-button.model:focus:not(:hover):not(:active), spinbutton > button:focus:not(:hover):not(:active), splitbutton.flat > button:focus:not(:hover):not(:active), +splitbutton.flat > menubutton > button:focus:not(:hover):not(:active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 225ms cubic-bezier(0.4, 0, 1, 1); + box-shadow: none; + color: #FFFFFF; + outline: 2px solid alpha(currentColor, 0.08); + outline-offset: -2px; +} + +placessidebar row button.sidebar-button:hover, calendar > header > button:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, popover.menu modelbutton:hover, popover.menu box.circular-buttons button.circular.image-button.model:hover, popover.menu box.inline-buttons button.image-button.model:hover, spinbutton > button:hover, splitbutton.flat > button:hover, +splitbutton.flat > menubutton > button:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +placessidebar row button.sidebar-button:active, calendar > header > button:active, scrollbar button:active, notebook > header > tabs > arrow:active, popover.menu modelbutton:active, popover.menu box.circular-buttons button.circular.image-button.model:active, popover.menu box.inline-buttons button.image-button.model:active, spinbutton > button:active, splitbutton.flat > button:active, +splitbutton.flat > menubutton > button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +placessidebar row button.sidebar-button:disabled, calendar > header > button:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, popover.menu modelbutton:disabled, popover.menu box.circular-buttons button.circular.image-button.model:disabled, popover.menu box.inline-buttons button.image-button.model:disabled, spinbutton > button:disabled, splitbutton.flat > button:disabled, +splitbutton.flat > menubutton > button:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +panelstatusbar > menubutton > button, +panelstatusbar > paneltogglebutton button, filechooser #pathbarbox > stack > box > button, window.messagedialog .response-area > box > button, window.dialog.message .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), .toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child), +combobox > .linked:not(.vertical) > button:not(:only-child), splitbutton.suggested-action > button, splitbutton.suggested-action > menubutton > button, splitbutton.destructive-action > button, splitbutton.destructive-action > menubutton > button, splitbutton.opaque > button, splitbutton.opaque > menubutton > button, menubutton.suggested-action > button, menubutton.destructive-action > button, menubutton.opaque > button, menubutton.flat > button, button.flat { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: 0 solid transparent; + outline-offset: 2px; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); +} + +panelstatusbar > menubutton > button:focus:not(:hover):not(:active), +panelstatusbar > paneltogglebutton button:focus:not(:hover):not(:active), filechooser #pathbarbox > stack > box > button:focus:not(:hover):not(:active), window.messagedialog .response-area > box > button:focus:not(:hover):not(:active), window.dialog.message .dialog-action-area > button:focus:not(:hover):not(:active), .app-notification button:focus:not(:hover):not(:active), headerbar popover.background button.flat:focus:not(:hover):not(:active):not(.suggested-action):not(.destructive-action), .toolbar button:focus:not(:hover):not(:active), dropdown > .linked:not(.vertical) > button:focus:not(:hover):not(:active):not(:only-child), +combobox > .linked:not(.vertical) > button:focus:not(:hover):not(:active):not(:only-child), splitbutton.suggested-action > button:focus:not(:hover):not(:active), splitbutton.suggested-action > menubutton > button:focus:not(:hover):not(:active), splitbutton.destructive-action > button:focus:not(:hover):not(:active), splitbutton.destructive-action > menubutton > button:focus:not(:hover):not(:active), splitbutton.opaque > button:focus:not(:hover):not(:active), splitbutton.opaque > menubutton > button:focus:not(:hover):not(:active), menubutton.suggested-action > button:focus:not(:hover):not(:active), menubutton.destructive-action > button:focus:not(:hover):not(:active), menubutton.opaque > button:focus:not(:hover):not(:active), menubutton.flat > button:focus:not(:hover):not(:active), button.flat:focus:not(:hover):not(:active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 225ms cubic-bezier(0.4, 0, 1, 1); + box-shadow: none; + color: #FFFFFF; + outline: 2px solid alpha(currentColor, 0.08); + outline-offset: -2px; +} + +panelstatusbar > menubutton > button:hover, +panelstatusbar > paneltogglebutton button:hover, filechooser #pathbarbox > stack > box > button:hover, window.messagedialog .response-area > box > button:hover, window.dialog.message .dialog-action-area > button:hover, .app-notification button:hover, headerbar popover.background button.flat:hover:not(.suggested-action):not(.destructive-action), .toolbar button:hover, dropdown > .linked:not(.vertical) > button:hover:not(:only-child), +combobox > .linked:not(.vertical) > button:hover:not(:only-child), splitbutton.suggested-action > button:hover, splitbutton.suggested-action > menubutton > button:hover, splitbutton.destructive-action > button:hover, splitbutton.destructive-action > menubutton > button:hover, splitbutton.opaque > button:hover, splitbutton.opaque > menubutton > button:hover, menubutton.suggested-action > button:hover, menubutton.destructive-action > button:hover, menubutton.opaque > button:hover, menubutton.flat > button:hover, button.flat:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +panelstatusbar > menubutton > button:active, +panelstatusbar > paneltogglebutton button:active, filechooser #pathbarbox > stack > box > button:active, window.messagedialog .response-area > box > button:active, window.dialog.message .dialog-action-area > button:active, .app-notification button:active, headerbar popover.background button.flat:active:not(.suggested-action):not(.destructive-action), .toolbar button:active, dropdown > .linked:not(.vertical) > button:active:not(:only-child), +combobox > .linked:not(.vertical) > button:active:not(:only-child), splitbutton.suggested-action > button:active, splitbutton.suggested-action > menubutton > button:active, splitbutton.destructive-action > button:active, splitbutton.destructive-action > menubutton > button:active, splitbutton.opaque > button:active, splitbutton.opaque > menubutton > button:active, menubutton.suggested-action > button:active, menubutton.destructive-action > button:active, menubutton.opaque > button:active, menubutton.flat > button:active, button.flat:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +panelstatusbar > menubutton > button:disabled, +panelstatusbar > paneltogglebutton button:disabled, filechooser #pathbarbox > stack > box > button:disabled, window.messagedialog .response-area > box > button:disabled, window.dialog.message .dialog-action-area > button:disabled, .app-notification button:disabled, headerbar popover.background button.flat:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:disabled, dropdown > .linked:not(.vertical) > button:disabled:not(:only-child), +combobox > .linked:not(.vertical) > button:disabled:not(:only-child), splitbutton.suggested-action > button:disabled, splitbutton.suggested-action > menubutton > button:disabled, splitbutton.destructive-action > button:disabled, splitbutton.destructive-action > menubutton > button:disabled, splitbutton.opaque > button:disabled, splitbutton.opaque > menubutton > button:disabled, menubutton.suggested-action > button:disabled, menubutton.destructive-action > button:disabled, menubutton.opaque > button:disabled, menubutton.flat > button:disabled, button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +panelstatusbar > menubutton > button:checked, +panelstatusbar > paneltogglebutton button:checked, filechooser #pathbarbox > stack > box > button:checked, window.messagedialog .response-area > box > button:checked, window.dialog.message .dialog-action-area > button:checked, .app-notification button:checked, headerbar popover.background button.flat:checked:not(.suggested-action):not(.destructive-action), .toolbar button:checked, dropdown > .linked:not(.vertical) > button:checked:not(:only-child), +combobox > .linked:not(.vertical) > button:checked:not(:only-child), splitbutton.suggested-action > button:checked, splitbutton.suggested-action > menubutton > button:checked, splitbutton.destructive-action > button:checked, splitbutton.destructive-action > menubutton > button:checked, splitbutton.opaque > button:checked, splitbutton.opaque > menubutton > button:checked, menubutton.suggested-action > button:checked, menubutton.destructive-action > button:checked, menubutton.opaque > button:checked, menubutton.flat > button:checked, button.flat:checked { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +panelstatusbar > menubutton > button:checked:disabled, +panelstatusbar > paneltogglebutton button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, window.messagedialog .response-area > box > button:checked:disabled, window.dialog.message .dialog-action-area > button:checked:disabled, .app-notification button:checked:disabled, headerbar popover.background button.flat:checked:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:checked:disabled, dropdown > .linked:not(.vertical) > button:checked:disabled:not(:only-child), +combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), splitbutton.suggested-action > button:checked:disabled, splitbutton.suggested-action > menubutton > button:checked:disabled, splitbutton.destructive-action > button:checked:disabled, splitbutton.destructive-action > menubutton > button:checked:disabled, splitbutton.opaque > button:checked:disabled, splitbutton.opaque > menubutton > button:checked:disabled, menubutton.suggested-action > button:checked:disabled, menubutton.destructive-action > button:checked:disabled, menubutton.opaque > button:checked:disabled, menubutton.flat > button:checked:disabled, button.flat:checked:disabled { + background-color: alpha(currentColor, 0.1); + color: rgba(255, 255, 255, 0.4); +} + +button.opaque { + box-shadow: none; +} + +.osd button.opaque:focus:focus-visible { + outline-color: rgba(255, 255, 255, 0.15); +} + +button.opaque:hover { + background-image: image(alpha(currentColor, 0.1)); +} + +button.keyboard-activating.opaque, button.opaque:active { + background-image: image(rgba(0, 0, 0, 0.2)); +} + +button.opaque:checked { + background-image: image(rgba(0, 0, 0, 0.15)); +} + +button.opaque:checked:hover { + background-image: image(rgba(0, 0, 0, 0.05)); +} + +button.opaque.keyboard-activating:checked, button.opaque:checked:active { + background-image: image(rgba(0, 0, 0, 0.3)); +} + +.nautilus-window .floating-bar button, placessidebar row button.sidebar-button, notebook > header > tabs > tab button.flat, popover.menu box.circular-buttons button.circular.image-button.model, spinbutton > button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +button { + min-height: 24px; + min-width: 16px; + padding: 6px 10px; + border-radius: 6px; + font-weight: 500; +} + +button:drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +button separator { + margin: 4px 1px; +} + +button.opaque { + background-color: #4e5156; + color: #FFFFFF; +} + +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} + +button.image-button { + min-width: 24px; + padding: 6px; +} + +button.text-button.image-button, button.image-text-button { + min-width: 24px; + padding: 6px; + border-radius: 6px; +} + +button.text-button.image-button > box, +button.text-button.image-button > box > box, button.image-text-button > box, +button.image-text-button > box > box { + border-spacing: 4px; +} + +button.text-button.image-button > box > label, +button.text-button.image-button > box > box > label, button.image-text-button > box > label, +button.image-text-button > box > box > label { + padding-left: 2px; + padding-right: 2px; +} + +button.text-button.image-button label:first-child, button.image-text-button label:first-child { + margin-left: 10px; +} + +button.text-button.image-button label:last-child, button.image-text-button label:last-child { + margin-right: 10px; +} + +button.text-button.image-button.flat label:first-child, button.image-text-button.flat label:first-child { + margin-left: 6px; +} + +button.text-button.image-button.flat label:last-child, button.image-text-button.flat label:last-child { + margin-right: 6px; +} + +button.text-button.image-button image:not(:only-child), button.image-text-button image:not(:only-child) { + margin: 0 4px; +} + +button.arrow-button { + padding-left: 9px; + padding-right: 9px; +} + +button.arrow-button > box { + border-spacing: 4px; +} + +button.arrow-button.text-button { + padding-left: 16px; + padding-right: 16px; +} + +button.arrow-button.text-button > box { + border-spacing: 6px; +} + +menubutton.pill > button, button.pill { + padding: 9px 30px; + border-radius: 9999px; +} + +button.card { + background-color: rgba(255, 255, 255, 0.04); + background-clip: padding-box; + font-weight: inherit; + background-clip: border-box; +} + +button.card:hover { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +button.card.keyboard-activating, button.card:active { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +button.card:checked { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + border-color: #5b9bf8; +} + +button.card:checked:hover { + background-image: none; + color: #FFFFFF; + background-color: transparent; +} + +button.card:checked:disabled { + background-image: none; + background-color: rgba(91, 155, 248, 0.5); + color: rgba(255, 255, 255, 0.4); +} + +button.card.keyboard-activating:checked, button.card:checked:active { + background-image: none; +} + +button.card.has-open-popup:checked { + background-image: none; +} + +button.card:drop(active) { + color: #FF7043; + box-shadow: inset 0 0 0 1px #FF7043; +} + +.linked:not(.vertical) > button:focus, .linked.vertical > button:focus { + box-shadow: none; + outline: none; +} + +.linked:not(.vertical) > button.flat:not(:only-child), .linked.vertical > button.flat:not(:only-child) { + background-color: alpha(currentColor, 0.05); +} + +.linked:not(.vertical) > button.flat:focus, .linked.vertical > button.flat:focus { + box-shadow: none; + outline: none; +} + +.linked:not(.vertical) > menubutton > button { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +button.osd { + min-width: 24px; + min-width: 24px; + padding: 6px; + box-shadow: none; + background-color: rgba(0, 0, 0, 0.35); + color: white; +} + +button.osd > image { + padding: 0; +} + +button.osd.remove-button { + padding: 0; +} + +button.osd:focus { + outline-color: transparent; +} + +button.osd:hover { + background-color: rgba(0, 0, 0, 0.45); + color: white; +} + +button.osd:active { + background-color: rgba(0, 0, 0, 0.65); + color: white; +} + +button.osd:disabled { + background-color: rgba(0, 0, 0, 0.15); + color: rgba(255, 255, 255, 0.35); +} + +button.suggested-action { + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: none; +} + +button.suggested-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.suggested-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(91, 155, 248, 0.2), 0 4px 3px 0 rgba(91, 155, 248, 0.14), 0 1px 6px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:checked { + background-color: #8cb9fa; +} + +button.suggested-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(91, 155, 248, 0.3), 0 2px 3px -1px rgba(91, 155, 248, 0.24), 0 2px 5px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:focus { + box-shadow: 0 0 0 2px rgba(91, 155, 248, 0.35); +} + +button.suggested-action.flat { + background-color: transparent; + color: #5b9bf8; +} + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.suggested-action.flat:checked { + background-color: rgba(91, 155, 248, 0.3); +} + +button.destructive-action { + background-color: #F44336; + color: #FFFFFF; + box-shadow: none; +} + +button.destructive-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.destructive-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(244, 67, 54, 0.2), 0 4px 3px 0 rgba(244, 67, 54, 0.14), 0 1px 6px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:checked { + background-color: #f77b72; +} + +button.destructive-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(244, 67, 54, 0.3), 0 2px 3px -1px rgba(244, 67, 54, 0.24), 0 2px 5px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:focus { + box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.35); +} + +button.destructive-action.flat { + background-color: transparent; + color: #F44336; +} + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.destructive-action.flat:checked { + background-color: rgba(244, 67, 54, 0.3); +} + +stackswitcher > button > label { + margin: 0 -6px; + padding: 0 6px; +} + +stackswitcher > button > image { + margin: -3px -6px; + padding: 3px 6px; +} + +stackswitcher > button.needs-attention:checked > label, +stackswitcher > button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +button.font > box, button.file > box { + border-spacing: 6px; +} + +button.font > box > box > label, button.file > box > box > label { + font-weight: bold; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), filechooser #pathbarbox > stack > box > button, menubutton.circular > button, button.close, button.circular { + border-radius: 9999px; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) label, filechooser #pathbarbox > stack > box > button label, menubutton.circular > button label, button.close label, button.circular label { + padding: 0; +} + +.linked > menubutton > button { + margin-left: 1px; +} + +menubutton stack > box { + border-spacing: 6px; +} + +menubutton.osd { + background: none; + color: inherit; +} + +menubutton.suggested-action { + background-color: #5b9bf8; + color: white; +} + +menubutton.destructive-action { + background-color: #F44336; + color: white; +} + +menubutton.opaque { + background-color: #4e5156; + color: #FFFFFF; +} + +menubutton.suggested-action, menubutton.destructive-action, menubutton.opaque { + border-radius: 6px; +} + +menubutton.suggested-action.circular, menubutton.suggested-action.pill, menubutton.destructive-action.circular, menubutton.destructive-action.pill, menubutton.opaque.circular, menubutton.opaque.pill { + border-radius: 9999px; +} + +menubutton.suggested-action > button, menubutton.suggested-action > button:checked, menubutton.destructive-action > button, menubutton.destructive-action > button:checked, menubutton.opaque > button, menubutton.opaque > button:checked { + background-color: transparent; + color: inherit; +} + +menubutton.image-button > button { + min-width: 24px; + padding-left: 6px; + padding-right: 6px; +} + +menubutton arrow { + min-height: 16px; + min-width: 16px; +} + +menubutton arrow.none { + -gtk-icon-source: -gtk-icontheme("open-menu-symbolic"); +} + +menubutton arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menubutton arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menubutton arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +menubutton arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +splitbutton { + border-radius: 6px; +} + +splitbutton, splitbutton > separator { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + transition-property: background; +} + +splitbutton > separator { + margin-top: 0; + margin-bottom: 0; + background-color: transparent; + background: none; + min-width: 0; +} + +splitbutton > menubutton > button { + padding: 6px 10px; +} + +splitbutton.image-button > button { + min-width: 24px; + padding-left: 6px; + padding-right: 6px; +} + +splitbutton.text-button.image-button > button, splitbutton.image-text-button > button { + padding-left: 9px; + padding-right: 9px; +} + +splitbutton.text-button.image-button > button > box, splitbutton.image-text-button > button > box { + border-spacing: 6px; +} + +splitbutton > button:dir(ltr), +splitbutton > menubutton > button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + margin-right: 0; +} + +splitbutton > button:dir(rtl), +splitbutton > menubutton > button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin-left: 1px; +} + +splitbutton.flat > separator { + background-color: transparent; + background: none; +} + +splitbutton.flat:hover, splitbutton.flat:active, splitbutton.flat:checked { + background-color: alpha(currentColor, 0.05); +} + +splitbutton.flat:hover > separator, splitbutton.flat:active > separator, splitbutton.flat:checked > separator { + background-color: transparent; + background: none; +} + +splitbutton.flat:focus-within:focus-visible > separator { + background-color: transparent; + background: none; +} + +splitbutton.flat > button, +splitbutton.flat > menubutton > button { + border-radius: 6px; +} + +splitbutton.suggested-action { + background-color: #5b9bf8; + color: white; +} + +splitbutton.destructive-action { + background-color: #F44336; + color: white; +} + +splitbutton.opaque { + background-color: #4e5156; + color: #FFFFFF; +} + +splitbutton.suggested-action > button, splitbutton.suggested-action > button:checked, splitbutton.suggested-action > menubutton > button, splitbutton.suggested-action > menubutton > button:checked, splitbutton.destructive-action > button, splitbutton.destructive-action > button:checked, splitbutton.destructive-action > menubutton > button, splitbutton.destructive-action > menubutton > button:checked, splitbutton.opaque > button, splitbutton.opaque > button:checked, splitbutton.opaque > menubutton > button, splitbutton.opaque > menubutton > button:checked { + color: inherit; + background-color: transparent; +} + +splitbutton.suggested-action > menubutton > button:dir(ltr), splitbutton.destructive-action > menubutton > button:dir(ltr), splitbutton.opaque > menubutton > button:dir(ltr) { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); +} + +splitbutton.suggested-action > menubutton > button:dir(rtl), splitbutton.destructive-action > menubutton > button:dir(rtl), splitbutton.opaque > menubutton > button:dir(rtl) { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); +} + +splitbutton > menubutton > button > arrow.none { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +buttoncontent { + border-spacing: 6px; +} + +buttoncontent > label { + font-weight: bold; +} + +buttoncontent > label:dir(ltr) { + padding-right: 2px; +} + +buttoncontent > label:dir(rtl) { + padding-left: 2px; +} + +.arrow-button > box > buttoncontent > label:dir(ltr), splitbutton > button > buttoncontent > label:dir(ltr) { + padding-right: 0; +} + +.arrow-button > box > buttoncontent > label:dir(rtl), splitbutton > button > buttoncontent > label:dir(rtl) { + padding-left: 0; +} + +stacksidebar row.needs-attention > label, stackswitcher > button.needs-attention > label, +stackswitcher > button.needs-attention > image { + animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +stacksidebar row.needs-attention > label:dir(rtl), stackswitcher > button.needs-attention > label:dir(rtl), +stackswitcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px; +} + +viewswitcher.wide button.toggle, .linked:not(.vertical) > entry, .linked:not(.vertical) > button, .linked:not(.vertical) > button.image-button { + border-radius: 0; +} + +viewswitcher.wide button.toggle:not(:first-child), .linked:not(.vertical) > entry:not(:first-child), .linked:not(.vertical) > button:not(:first-child) { + margin-left: 1px; +} + +viewswitcher.wide button.toggle:first-child, .linked:not(.vertical) > entry:first-child, .linked:not(.vertical) > button:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +viewswitcher.wide button.toggle:last-child, .linked:not(.vertical) > entry:last-child, .linked:not(.vertical) > button:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +viewswitcher.wide button.toggle:only-child, .linked:not(.vertical) > entry:only-child, .linked:not(.vertical) > button:only-child { + border-radius: 6px; +} + +.linked.vertical > entry, .linked.vertical > button, .linked.vertical > button.image-button { + border-radius: 0; +} + +.linked.vertical > entry:not(:first-child), .linked.vertical > button:not(:first-child) { + margin-top: 1px; +} + +.linked.vertical > entry:first-child, .linked.vertical > button:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +.linked.vertical > entry:last-child, .linked.vertical > button:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +.linked.vertical > entry:only-child, .linked.vertical > button:only-child { + border-radius: 6px; +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 6px; +} + + +list > row button.image-button:not(.flat) { + background-color: transparent; + box-shadow: none; + border: none; +} + + +list > row button.image-button:not(.flat):hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + + +list > row button.image-button:not(.flat):active, +list > row button.image-button:not(.flat):checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + + +list > row button.image-button.suggested-action:not(.flat) { + background-color: #5b9bf8; + color: #FFFFFF; +} + + +list > row button.image-button.destructive-action:not(.flat) { + background-color: #F44336; + color: #FFFFFF; +} + +/********* + * Links * + *********/ +link { + color: #3c84f7; +} + +link:visited { + color: #BA68C8; +} + +button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { + color: #3c84f7; +} + +button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { + color: #BA68C8; +} + +button.link > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton { + border-radius: 6px; + padding: 0; + border-spacing: 0; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +spinbutton:focus-within { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + outline: 2px solid #5b9bf8; + outline-offset: -2px; +} + +spinbutton:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + outline: none; +} + +spinbutton > text { + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; + margin: 0; +} + +spinbutton > button { + border: none; +} + +spinbutton > button:focus:not(:hover):not(:active):not(:disabled) { + box-shadow: none; +} + +spinbutton:not(.vertical) > text { + min-width: 32px; + padding-left: 12px; +} + +spinbutton:not(.vertical) > button { + padding: 0; + margin: 6px; +} + +spinbutton:not(.vertical) > button.up:dir(ltr), spinbutton:not(.vertical) > button.down:dir(rtl) { + margin-left: 3px; +} + +spinbutton:not(.vertical) > button.up:dir(rtl), spinbutton:not(.vertical) > button.down:dir(ltr) { + margin-right: 3px; +} + +cell.activatable spinbutton:not(.vertical) { + margin: 3px 0; +} + +cell.activatable spinbutton:not(.vertical) > button { + margin: 0; + padding: 0; + min-height: 24px; + border-radius: 0; +} + +cell.activatable spinbutton:not(.vertical) > button:last-child { + border-radius: 0 6px 6px 0; +} + +cell.activatable spinbutton:not(.vertical) > button.up:dir(ltr), cell.activatable spinbutton:not(.vertical) > button.down:dir(rtl) { + margin-left: 0; +} + +cell.activatable spinbutton:not(.vertical) > button.up:dir(rtl), cell.activatable spinbutton:not(.vertical) > button.down:dir(ltr) { + margin-right: 0; +} + +spinbutton.vertical > text { + min-height: 36px; + min-width: 42px; + padding: 0; +} + +spinbutton.vertical > button { + padding: 0; + margin: 6px 9px; +} + +/************** + * ComboBoxes * + **************/ +dropdown > button > box { + border-spacing: 6px; +} + +dropdown arrow, +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +dropdown > popover.menu > contents modelbutton, +combobox > popover.menu > contents modelbutton { + padding-left: 9px; + padding-right: 9px; +} + +dropdown button.combo cellview:dir(ltr), +combobox button.combo cellview:dir(ltr) { + margin-left: -2px; +} + +dropdown button.combo cellview:dir(rtl), +combobox button.combo cellview:dir(rtl) { + margin-right: -2px; +} + +dropdown popover, +combobox popover { + margin-top: 4px; + padding: 0; +} + +dropdown popover listview, +combobox popover listview { + margin: 0; +} + +dropdown popover listview > row, +combobox popover listview > row { + padding: 6px; +} + +dropdown popover listview > row:selected, +combobox popover listview > row:selected { + color: #FFFFFF; + background-color: alpha(currentColor, 0.06); +} + +dropdown popover .dropdown-searchbar, +combobox popover .dropdown-searchbar { + padding: 6px; +} + +dropdown.linked button:nth-child(2):dir(ltr), +combobox.linked button:nth-child(2):dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +dropdown.linked button:nth-child(2):dir(rtl), +combobox.linked button:nth-child(2):dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +dropdown > .linked:not(.vertical) > entry:not(:only-child), +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px; +} + +dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child, +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -36px; + padding-right: 36px; +} + +dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child, +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -36px; + padding-left: 36px; +} + +dropdown > .linked:not(.vertical) > button:not(:only-child), +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 6px; + padding: 4px; + border-radius: 6px; +} + +.linked:not(.vertical) > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > combobox:not(:last-child) > box > button.combo { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > combobox:not(:last-child) > box > button.combo { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +button.combo:only-child { + border-radius: 6px; + font-weight: normal; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +button.combo:only-child:focus { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 225ms cubic-bezier(0.4, 0, 1, 1); + box-shadow: none; + color: #FFFFFF; + outline: 2px solid alpha(currentColor, 0.08); + outline-offset: -2px; +} + +button.combo:only-child:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +button.combo:only-child:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +button.combo:only-child:checked { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +button.combo:only-child:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +/************ + * Toolbars * + ************/ +.toolbar { + padding: 6px; + background-color: #22262c; + border-spacing: 6px; +} + +.osd .toolbar { + background-color: transparent; +} + +.app-notification, .toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; + color: #FFFFFF; +} + +.app-notification:backdrop, .toolbar.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.left.app-notification, .right.app-notification, .top.app-notification, .bottom.app-notification, .toolbar.osd.left, .toolbar.osd.right, .toolbar.osd.top, .toolbar.osd.bottom { + border-radius: 0; +} + +.bottom.app-notification, .toolbar.osd.bottom { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4)); +} + +.toolbar.horizontal > separator { + margin: 2px; +} + +.toolbar.vertical > separator { + margin: 2px; +} + +.toolbar entry, +.toolbar spinbutton, +.toolbar splitbutton, +.toolbar separator:not(.sidebar), +.toolbar button, +.toolbar menubutton, +.toolbar scalebutton { + margin-top: 0; + margin-bottom: 0; +} + +.toolbar menubutton > button, +.toolbar splitbutton > button, +.toolbar splitbutton > menubutton, +.toolbar scalebutton > button { + margin-top: 0; + margin-bottom: 0; +} + +.toolbar switch { + margin-top: 4px; + margin-bottom: 4px; +} + +.toolbar spinbutton entry, +.toolbar spinbutton button { + margin: 0; +} + +.toolbar popover.menu separator:not(.sidebar) { + margin-top: 6px; + margin-bottom: 6px; +} + +searchbar > revealer > box { + padding: 6px; + border-spacing: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #22262c; + background-clip: border-box; + box-shadow: none; +} + +searchbar > revealer > box entry, searchbar > revealer > box button, searchbar > revealer > box menubutton { + margin: 0; +} + +/*************** + * Header bars * + ***************/ +headerbar button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar button:hover:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +headerbar button:hover:not(.suggested-action):not(.destructive-action) { + background-color: alpha(currentColor, 0.1); + box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.1); +} + +headerbar button:active:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +headerbar button:checked:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +headerbar button:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); + background-color: alpha(currentColor, 0.05); +} + +headerbar button:backdrop:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); +} + +headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.12); +} + +headerbar entry { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +headerbar entry, headerbar entry:hover, headerbar entry:focus-within { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +headerbar entry:disabled { + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +headerbar entry image { + color: rgba(255, 255, 255, 0.7); +} + +headerbar entry image:hover, headerbar entry image:active { + color: #FFFFFF; +} + +headerbar entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #1b1e24; + color: #FFFFFF; + min-height: 48px; + padding: 0; + margin: 0; + border-radius: 12px 12px 0 0; +} + +headerbar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +headerbar:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +headerbar.flat, headerbar.flat:backdrop { + background: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + transition: none; +} + +headerbar .title { + padding: 0 12px; + font-weight: bold; +} + +headerbar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +headerbar .subtitle, +headerbar .dim-label, +headerbar row.expander image.expander-row-arrow, +row.expander headerbar image.expander-row-arrow, +headerbar row label.subtitle, +row headerbar label.subtitle { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +headerbar .subtitle:backdrop, +headerbar .dim-label:backdrop, +headerbar row.expander image.expander-row-arrow:backdrop, +row.expander headerbar image.expander-row-arrow:backdrop, +headerbar row label.subtitle:backdrop, +row headerbar label.subtitle:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +headerbar .titlebar { + background-color: transparent; + box-shadow: none; +} + +headerbar headerbar + separator { + background-color: rgba(255, 255, 255, 0.12); +} + +headerbar > windowhandle > box { + padding: 0 6px; +} + +headerbar > windowhandle > box, +headerbar > windowhandle > box > box.start, +headerbar > windowhandle > box > box.end { + border-spacing: 6px; +} + +headerbar entry, +headerbar spinbutton, +headerbar button, +headerbar menubutton, +headerbar stackswitcher, +headerbar separator:not(.sidebar) { + margin-top: 6px; + margin-bottom: 6px; +} + +headerbar menubutton > button, +headerbar spinbutton > button, +headerbar splitbutton > button, +headerbar splitbutton > menubutton, +headerbar .linked > menubutton, +headerbar entry > menubutton { + margin-top: 0; + margin-bottom: 0; +} + +headerbar button.suggested-action:disabled, +headerbar button.destructive-action:disabled { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + opacity: 1; +} + +headerbar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px; +} + +headerbar .entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +headerbar stackswitcher { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +headerbar popover.background button:not(.suggested-action):not(.destructive-action), headerbar popover.background button:not(.suggested-action):not(.destructive-action):hover { + box-shadow: none; +} + +headerbar popover.background button.suggested-action:disabled, +headerbar popover.background button.destructive-action:disabled { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); +} + +headerbar separator:not(.sidebar) { + background-color: rgba(255, 255, 255, 0.12); +} + +headerbar switch { + margin-top: 12px; + margin-bottom: 12px; +} + +headerbar.selection-mode { + transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #5b9bf8; + color: #FFFFFF; +} + +headerbar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +headerbar.selection-mode .subtitle:link { + color: #FFFFFF; +} + +headerbar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +headerbar.default-decoration { + min-height: 36px; + padding: 0; + background-image: image(#1b1e24); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +headerbar.default-decoration:backdrop { + background-image: image(#22262c); +} + +headerbar.default-decoration windowcontrols button, +headerbar.default-decoration windowcontrols menubutton { + min-width: 16px; + min-height: 16px; + margin: 0; + padding: 0; +} + +headerbar.default-decoration windowcontrols menubutton button { + min-height: 20px; + min-width: 20px; + margin: 0; + padding: 4px; +} + +.solid-csd headerbar:dir(rtl), .solid-csd headerbar:dir(ltr) { + border-radius: 0; + box-shadow: none; +} + +leaflet.unfolded > box:last-child > headerbar { + border-top-right-radius: 0; +} + +leaflet.unfolded > box:not(:last-child) > headerbar, +leaflet.unfolded > box > stack > widget > box > widget > headerbar { + border-top-left-radius: 0; +} + +leaflet.unfolded leaflet.folded > box:last-child > headerbar { + border-top-left-radius: 0; +} + +window.devel headerbar { + background: #1b1e24 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(91, 155, 248, 0.1)), linear-gradient(to top, #22252d 3px, #262a33); +} + +window.devel headerbar:backdrop { + background: #1b1e24 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#1b1e24); + /* background-color would flash */ +} + +/************ + * Pathbars * + ************/ + +pathbar > button { + padding-left: 6px; + padding-right: 6px; + border-radius: 6px; +} + + +pathbar > button label, +pathbar > button image { + margin-left: 3px; + margin-right: 3px; +} + + +pathbar > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +.pathbar { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + border: none; + border-radius: 6px; + padding: 2px; +} + +headerbar .pathbar { + margin-top: 6px; + margin-bottom: 6px; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); +} + +.pathbar > button { + margin-top: 0; + margin-bottom: 0; + min-height: 20px; + border-radius: 4px; + border: none; + box-shadow: none; +} + +.pathbar > button:last-child { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +/************** + * Tree Views * + **************/ +columnview.view, +treeview.view { + border-left-color: #3f4348; + border-top-color: #3f4348; +} + +columnview.view:hover, columnview.view:selected, +treeview.view:hover, +treeview.view:selected { + border-radius: 0; +} + +columnview.view:focus, +treeview.view:focus { + box-shadow: none; + outline: none; +} + +columnview.view.separator, +treeview.view.separator { + min-height: 5px; + color: rgba(255, 255, 255, 0.12); +} + +columnview.view:drop(active), +treeview.view:drop(active) { + box-shadow: none; +} + +columnview.view.after:drop(active), +treeview.view.after:drop(active) { + border-top-style: none; +} + +columnview.view.before:drop(active), +treeview.view.before:drop(active) { + border-bottom-style: none; +} + +columnview.view > dndtarget:drop(active), +treeview.view > dndtarget:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: alpha(currentColor, 0.06); +} + +columnview.view > dndtarget.after:drop(active), +treeview.view > dndtarget.after:drop(active) { + border-top-style: none; +} + +columnview.view > dndtarget.before:drop(active), +treeview.view > dndtarget.before:drop(active) { + border-bottom-style: none; +} + +columnview.view.expander, +treeview.view.expander { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: rgba(255, 255, 255, 0.7); +} + +columnview.view.expander:dir(rtl), +treeview.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +columnview.view.expander:hover, +treeview.view.expander:hover { + color: #FFFFFF; +} + +columnview.view.expander:selected, +treeview.view.expander:selected { + color: #FFFFFF; +} + +columnview.view.expander:selected:hover, +treeview.view.expander:selected:hover { + color: #FFFFFF; +} + +columnview.view.expander:checked, +treeview.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +columnview.view.expander:disabled, +treeview.view.expander:disabled { + color: rgba(255, 255, 255, 0.3); +} + +columnview.view.progressbar, +treeview.view.progressbar { + border-bottom: 6px solid #5b9bf8; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +columnview.view.progressbar:selected:hover, +treeview.view.progressbar:selected:hover { + box-shadow: none; +} + +columnview.view.trough, +treeview.view.trough { + border-bottom: 6px solid rgba(255, 255, 255, 0.14); + box-shadow: none; + background-color: transparent; + background-image: none; +} + +columnview.view.trough:selected:hover, +treeview.view.trough:selected:hover { + box-shadow: none; +} + +columnview.view > header > button, +treeview.view > header > button { + padding: 2px 6px; + box-shadow: none; + background-clip: border-box; + border-style: none solid none none; + border-radius: 0; + border-color: transparent; + border-image: linear-gradient(to bottom, #25292f 20%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, #25292f 80%) 0 1 0 0/0 1px 0 0 stretch; +} + +columnview.view > header > button:not(:focus):not(:hover):not(:active), +treeview.view > header > button:not(:focus):not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +columnview.view > header > button, columnview.view > header > button:disabled, +treeview.view > header > button, +treeview.view > header > button:disabled { + background-color: #25292f; +} + +columnview.view > header > button:last-child, columnview.view > header > button:only-child, +treeview.view > header > button:last-child, +treeview.view > header > button:only-child { + border-right: none; + border-image: none; +} + +columnview.view button.dnd, +columnview.view header.button.dnd, +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #25292f; + background-clip: border-box; + color: #5b9bf8; +} + +columnview.view acceleditor > label, +treeview.view acceleditor > label { + background-color: #5b9bf8; +} + +stack.view treeview.view { + min-height: 36px; +} + +/********* + * Menus * + *********/ +menubar { + padding: 0; + background-color: #1b1e24; + color: #FFFFFF; +} + +menubar:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +.csd menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +menubar > item { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(255, 255, 255, 0.7); +} + +menubar > item:selected { + transition: none; + background-color: alpha(currentColor, 0.1); + color: #FFFFFF; +} + +menubar > item:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar > item label:disabled { + color: inherit; +} + +menubar > item popover.menu popover.menu { + margin-left: 9px; +} + +menubar > item popover.menu.background popover.menu.background > contents { + margin: 0; + border-radius: 12px; +} + +/********************** + * Popover Base Menus * + **********************/ +popover.menu box.inline-buttons { + color: #FFFFFF; + padding: 0 6px; +} + +popover.menu box.inline-buttons button.image-button.model { + min-height: 28px; + min-width: 28px; + padding: 0; + border: none; + outline: none; + transition: none; +} + +popover.menu box.circular-buttons { + padding: 6px; +} + +popover.menu box.circular-buttons button.circular.image-button.model { + padding: 6px; +} + +popover.menu.background separator { + margin: 6px 0; +} + +popover.menu arrow.left, +popover.menu radio.left, +popover.menu check.left { + margin-left: 0; + margin-right: 0; +} + +popover.menu arrow.right, +popover.menu radio.right, +popover.menu check.right { + margin-left: 0; + margin-right: 0; +} + +popover.menu modelbutton { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 22px; + min-width: 56px; + padding: 3px 9px; + color: #FFFFFF; + font: initial; + border-radius: 6px; +} + +popover.menu modelbutton:focus:not(:hover) { + transition: none; + box-shadow: none; + outline: none; +} + +popover.menu modelbutton:disabled { + color: rgba(255, 255, 255, 0.4); +} + +popover.menu modelbutton accelerator { + color: rgba(255, 255, 255, 0.4); + margin-left: 30px; +} + +popover.menu modelbutton:disabled accelerator { + color: rgba(255, 255, 255, 0.12); +} + +popover.menu modelbutton arrow.left { + -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); +} + +popover.menu modelbutton arrow.right { + -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); +} + +popover.menu label.title { + font-weight: bold; + padding: 4px 26px; +} + +/************ + * Popovers * + ************/ +popover.background { + font: initial; +} + +popover.background, popover.background:backdrop { + background-color: transparent; +} + +popover.background > arrow, +popover.background > contents { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + background-color: #2d3036; + border-radius: 12px; + color: #FFFFFF; + border: none; + background-clip: border-box; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1); +} + +popover.background > arrow:backdrop, +popover.background > contents:backdrop { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +popover.background > contents > list, +popover.background > contents > .view, +popover.background > contents > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background > contents separator { + background-color: rgba(255, 255, 255, 0.12); + margin: 3px 0; +} + +popover.background > contents list separator { + margin: 0; +} + +popover.background > contents list > row { + border-radius: 6px; +} + +popover.background > contents stack > box { + padding: 0; +} + +popover.background > contents > box > button { + margin: 0; +} + +popover.background > contents stack > scrolledwindow > viewport > list { + background-color: transparent; + margin: 0; + padding: 0; +} + +popover.background > contents stack > scrolledwindow > viewport > list > row.activatable { + margin: 0; +} + +popover.background > contents stack > scrolledwindow > viewport > list > row.activatable + row.activatable { + margin-top: 2px; +} + +popover.background .view:not(:selected), +popover.background toolbar { + background-color: #2d3036; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; +} + +.osd popover.background, popover.background.touch-selection, popover.background.magnifier { + background-color: transparent; +} + +magnifier { + background-color: #25292f; +} + +/************* + * Notebooks * + *************/ +tabbar tab, tabbar tabbox > tabboxchild > tab, notebook > header > tabs > tab { + border: none; + background-clip: padding-box; + font-weight: 500; + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: 0 solid transparent; + outline-offset: 2px; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); +} + +tabbar tab:hover:not(:checked):not(:selected), notebook > header > tabs > tab:hover:not(:checked):not(:selected) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +tabbar tab:disabled, notebook > header > tabs > tab:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +tabbar tab:active, notebook > header > tabs > tab:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; + box-shadow: none; +} + +tabbar tab:checked, notebook > header > tabs > tab:checked, tabbar tab:selected, notebook > header > tabs > tab:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +tabbar tab:checked:disabled, notebook > header > tabs > tab:checked:disabled, tabbar tab:selected:disabled, notebook > header > tabs > tab:selected:disabled { + color: rgba(255, 255, 255, 0.4); +} + +frame > paned > notebook > header, notebook.frame > header { + background-color: rgba(255, 255, 255, 0.04); +} + +notebook, notebook.frame { + background-color: #25292f; +} + +notebook.frame { + border-radius: 12px; +} + +notebook.frame frame > border { + border: none; + border-radius: 6px; +} + +notebook.frame frame > list row.activatable { + border-radius: 6px; +} + +notebook > header { + border: none; + background-color: rgba(255, 255, 255, 0.04); + margin: 3px; + border-radius: 9px; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: 0; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: 0; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: 0; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 6px; +} + +notebook > header > tabs > tab { + min-height: 24px; + min-width: 24px; + padding: 3px 6px; + margin: 3px; +} + +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -6px -12px; + padding: 6px 12px; +} + +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +notebook > header > tabs > tab label { + padding: 0 6px; +} + +notebook > header > tabs > tab button.flat:last-child { + margin-left: 6px; + margin-right: -3px; +} + +notebook > header > tabs > tab button.flat:first-child { + margin-left: -3px; + margin-right: 6px; +} + +notebook > header > tabs > tab button.close-button { + min-width: 24px; + min-height: 24px; +} + +notebook > header.top > tabs, notebook > header.bottom > tabs { + padding-left: 0; + padding-right: 0; +} + +notebook > header.top > tabs:not(:only-child):first-child, notebook > header.bottom > tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top > tabs:not(:only-child):last-child, notebook > header.bottom > tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top > tabs > tab:not(:last-child), notebook > header.bottom > tabs > tab:not(:last-child) { + margin-right: 0; +} + +notebook > header.top > tabs tab.reorderable-page, notebook > header.bottom > tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header.left > tabs, notebook > header.right > tabs { + padding-top: 0; + padding-bottom: 0; +} + +notebook > header.left > tabs:not(:only-child):first-child, notebook > header.right > tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left > tabs:not(:only-child):last-child, notebook > header.right > tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left > tabs > tab:not(:last-child), notebook > header.right > tabs > tab:not(:last-child) { + margin-bottom: 0; +} + +notebook > header.left > tabs tab.reorderable-page, notebook > header.right > tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header > menubutton > button.image-button { + padding: 3px; + min-width: 24px; + min-height: 24px; + margin: 0 3px; +} + +notebook > stack:not(:only-child) { + background-color: transparent; + border-radius: 6px; +} + +tabbar > revealer > box { + box-shadow: none; + padding: 0; +} + +tabbar .box { + min-height: 36px; + border-bottom: none; + background: none; +} + +tabbar scrolledwindow.pinned undershoot { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +tabbar scrolledwindow.pinned:dir(rtl) undershoot.left { + border-left-width: 1px; +} + +tabbar scrolledwindow.pinned:dir(ltr) undershoot.right { + border-right-width: 1px; +} + +tabbar scrolledwindow.pinned tabbox > background:dir(ltr) { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); +} + +tabbar scrolledwindow.pinned tabbox > background:dir(rtl) { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); +} + +tabbar scrolledwindow.pinned tabbox > tabboxchild { + margin: 0; +} + +tabbar scrolledwindow.pinned tabbox > tabboxchild > tab { + margin: 3px 0; +} + +tabbar undershoot { + transition: background 150ms ease-in-out; +} + +tabbar undershoot.left { + background: linear-gradient(to right, #25292f, rgba(0, 0, 0, 0) 20px); +} + +tabbar undershoot.right { + background: linear-gradient(to left, #25292f, rgba(0, 0, 0, 0) 20px); +} + +tabbar .needs-attention-left undershoot.left { + background: linear-gradient(to right, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar .needs-attention-right undershoot.right { + background: linear-gradient(to left, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar tabbox { + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + padding: 0; + margin: 0; + border-radius: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +tabbar tabbox > background { + background: none; +} + +tabbar tabbox > separator { + margin-top: 9px; + margin-bottom: 9px; + transition: opacity 150ms ease-in-out; +} + +tabbar tabbox > separator.hidden { + opacity: 0; +} + +tabbar tabbox > tabboxchild { + margin: 0 -3px; +} + +tabbar tabbox > tabboxchild > tab { + margin: 3px; + min-width: 24px; + min-height: 24px; + padding: 3px; +} + +tabbar tab.needs-attention { + background-image: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.8), alpha(#5b9bf8, 0.4) 10%, alpha(#5b9bf8, 0) 30%); +} + +tabbar tab.needs-attention:hover { + background-image: image(alpha(currentColor, 0.03)), radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.8), alpha(#5b9bf8, 0.4) 10%, alpha(#5b9bf8, 0) 30%); +} + +tabbar .start-action, +tabbar .end-action { + background-color: rgba(255, 255, 255, 0.04); + background-clip: padding-box; + border-color: rgba(255, 255, 255, 0.12); + border-style: solid; + transition: background 150ms ease-in-out; +} + +tabbar .start-action button, +tabbar .end-action button { + border: none; + border-radius: 0; +} + +tabbar .start-action:dir(ltr), +tabbar .end-action:dir(rtl) { + border-right-width: 1px; +} + +tabbar .start-action:dir(rtl), +tabbar .end-action:dir(ltr) { + border-left-width: 1px; +} + +tabbar:not(.inline) scrolledwindow.pinned undershoot { + border-color: rgba(255, 255, 255, 0.12); +} + +tabbar:not(.inline) undershoot.left { + background: linear-gradient(to right, #1b1e24, rgba(0, 0, 0, 0) 20px); +} + +tabbar:not(.inline) undershoot.right { + background: linear-gradient(to left, #1b1e24, rgba(0, 0, 0, 0) 20px); +} + +tabbar:not(.inline) .needs-attention-left undershoot.left { + background: linear-gradient(to right, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar:not(.inline) .needs-attention-right undershoot.right { + background: linear-gradient(to left, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar:not(.inline) tabbox > background { + background-color: #1b1e24; +} + +tabbar:not(.inline) .start-action, +tabbar:not(.inline) .end-action { + background-color: alpha(#1b1e24, 0.6); + border-color: rgba(255, 255, 255, 0.12); +} + +tabbar:not(.inline):backdrop .box { + background-color: #22262c; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +dnd tab { + background-color: #1b1e24; + color: #FFFFFF; + box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.09), 0 2px 14px 3px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05); + outline: 1px solid rgba(0, 0, 0, 0.75); + outline-offset: -1px; + margin: 24px; +} + +dnd tab.needs-attention { + background-image: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.8), alpha(#5b9bf8, 0.4) 10%, alpha(#5b9bf8, 0) 30%); +} + +tabbar tab, +dnd tab { + padding: 3px 6px; +} + +tabbar tab button.image-button, +dnd tab button.image-button { + padding: 0; + margin: 0; + min-width: 24px; + min-height: 24px; + border-radius: 9999px; +} + +tabview:drop(active), +tabbox:drop(active) { + box-shadow: none; +} + +taboverview tabgrid .thumbnail > .card > picture { + border-radius: 6px; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: transparent; + box-shadow: none; + outline: none; + border: none; + margin: 0; + padding: 0; +} + +scrollbar > range > trough { + background-color: rgba(255, 255, 255, 0.12); + padding: 0; + margin: 6px; + outline: none; + border: none; + border-radius: 9999px; +} + +scrollbar > range > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + margin: 0; + padding: 0; + border: none; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(255, 255, 255, 0.4); + box-shadow: none; + outline: none; +} + +scrollbar > range > trough > slider:hover { + background-color: #31c4b6; +} + +scrollbar > range > trough > slider:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.vertical > range > trough > slider:active { + background-image: linear-gradient(to top, #297dff, #31c4b6); +} + +scrollbar.horizontal > range > trough > slider:active { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scrollbar > range.fine-tune > trough > slider { + min-width: 4px; + min-height: 4px; +} + +scrollbar > range.fine-tune.horizontal > trough > slider { + margin: 0; +} + +scrollbar > range.fine-tune.vertical > trough > slider { + margin: 0; +} + +scrollbar.overlay-indicator:not(.fine-tune) > range > trough > slider { + transition-property: background-color, min-height, min-width; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough { + margin: 3px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.4); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) > range > trough > slider { + min-width: 24px; +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) button { + min-width: 8px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) > range > trough > slider { + min-height: 24px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) button { + min-height: 8px; +} + +scrollbar.horizontal > range > trough > slider { + min-width: 24px; +} + +scrollbar.vertical > range > trough > slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +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-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + padding: 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.26); + background-clip: border-box; + font-size: 0; + color: transparent; +} + +switch:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + color: transparent; +} + +switch:disabled { + opacity: 0.35; +} + +switch > slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 18px; + min-height: 18px; + margin: 3px; + border-radius: 9999px; + outline: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); + background-color: white; + border: none; +} + +switch:focus slider, switch:hover slider, switch:focus:hover slider { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12); +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; + border-spacing: 3px; +} + +check, +radio { + min-height: 20px; + min-width: 20px; + margin: 3px; + padding: 0; + border-radius: 9999px; + border: none; + color: transparent; + background-color: rgba(255, 255, 255, 0.12); + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); +} + +check:hover, +radio:hover { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04); + background-color: rgba(255, 255, 255, 0.15); +} + +check:active, +radio:active { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); + background-color: rgba(255, 255, 255, 0.2); +} + +check:disabled, +radio:disabled { + background-color: rgba(255, 255, 255, 0.04); +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +check:checked:hover, check:indeterminate:hover, +radio:checked:hover, +radio:indeterminate:hover { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.15); + background-color: #8cb9fa; +} + +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.2); + background-color: #5b9bf8; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(91, 155, 248, 0.35); + background-image: none; +} + +popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat radio, popover modelbutton.flat radio:focus, popover modelbutton.flat radio:hover, popover modelbutton.flat radio:focus:hover, popover modelbutton.flat radio:active, popover modelbutton.flat radio:disabled { + transition: none; + box-shadow: none; +} + +popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat radio.left:dir(rtl) { + margin-left: -3px; + margin-right: 6px; +} + +popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat radio.right:dir(ltr) { + margin-left: 6px; + margin-right: -3px; +} + +popover.menu check, popover.menu radio { + transition: none; + margin: 0; + padding: 0; +} + +popover.menu check:dir(ltr), popover.menu radio:dir(ltr) { + margin-right: 6px; + margin-left: -3px; +} + +popover.menu check:dir(rtl), popover.menu radio:dir(rtl) { + margin-left: 6px; + margin-right: -3px; +} + +popover.menu check, popover.menu check:hover, popover.menu check:disabled, popover.menu check:checked:hover, popover.menu check:indeterminate:hover, popover.menu radio, popover.menu radio:hover, popover.menu radio:disabled, popover.menu radio:checked:hover, popover.menu radio:indeterminate:hover { + box-shadow: none; +} + + +check { + -gtk-icon-size: 20px; +} + + +check:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic@2.svg"))); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic@2.svg"))); +} + + +radio { + -gtk-icon-size: 20px; +} + + +radio:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic@2.svg"))); +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic@2.svg"))); +} + + +popover.menu check { + min-height: 16px; + min-width: 16px; + -gtk-icon-size: 16px; +} + + +popover.menu check:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic@2.svg"))); +} + + +popover.menu check:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic@2.svg"))); +} + + +popover.menu radio { + min-height: 16px; + min-width: 16px; + -gtk-icon-size: 16px; +} + + +popover.menu radio:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic@2.svg"))); +} + + +popover.menu radio:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic@2.svg"))); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view radio, treeview.view check, +columnview.view radio, +columnview.view check { + padding: 0; + margin: 0; + transition: none; +} + +treeview.view radio, treeview.view radio:hover, treeview.view radio:disabled, treeview.view radio:checked:hover, treeview.view radio:indeterminate:hover, treeview.view check, treeview.view check:hover, treeview.view check:disabled, treeview.view check:checked:hover, treeview.view check:indeterminate:hover, +columnview.view radio, +columnview.view radio:hover, +columnview.view radio:disabled, +columnview.view radio:checked:hover, +columnview.view radio:indeterminate:hover, +columnview.view check, +columnview.view check:hover, +columnview.view check:disabled, +columnview.view check:checked:hover, +columnview.view check:indeterminate:hover { + box-shadow: none; +} + +treeview.view:hover check, treeview.view:hover radio, treeview.view:selected check, treeview.view:selected radio, treeview.view:focus check, treeview.view:focus radio, +columnview.view:hover check, +columnview.view:hover radio, +columnview.view:selected check, +columnview.view:selected radio, +columnview.view:focus check, +columnview.view:focus radio { + box-shadow: none; +} + +treeview.view:hover check:checked, treeview.view:hover radio:checked, treeview.view:selected check:checked, treeview.view:selected radio:checked, treeview.view:focus check:checked, treeview.view:focus radio:checked, +columnview.view:hover check:checked, +columnview.view:hover radio:checked, +columnview.view:selected check:checked, +columnview.view:selected radio:checked, +columnview.view:focus check:checked, +columnview.view:focus radio:checked { + color: #FFFFFF; + background-color: #5b9bf8; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 17px 12px; +} + +scale.vertical { + padding: 12px 17px; +} + +scale > trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(255, 255, 255, 0.26); +} + +scale > trough:disabled { + background-color: rgba(255, 255, 255, 0.14); +} + +scale > trough > highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); +} + +scale > trough > highlight:disabled { + background-color: transparent; +} + +scale > trough > fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(255, 255, 255, 0.26); +} + +scale > trough > fill:disabled { + background-color: transparent; +} + +scale > trough > slider { + min-height: 18px; + min-width: 18px; + margin: -8px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 9999px; + color: #5b9bf8; + background-color: #25292f; + box-shadow: inset 0 0 0 2px #31c4b6; +} + +scale > trough > slider:hover { + box-shadow: inset 0 0 0 2px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale > trough > slider:active { + box-shadow: inset 0 0 0 4px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale > trough > slider:disabled { + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3); +} + +scale.horizontal > trough > highlight { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scale.horizontal > trough > highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale.vertical > trough > highlight { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +scale.vertical > trough > highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 16px; + padding-bottom: 16px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 16px; + padding-right: 16px; +} + +scale.fine-tune > trough > slider { + margin: -7px; +} + +scale > marks, +scale > value { + color: rgba(255, 255, 255, 0.7); +} + +scale indicator { + background-color: rgba(255, 255, 255, 0.26); + color: transparent; +} + +scale.marks-before:not(.marks-after) > trough > slider, scale.marks-after:not(.marks-before) > trough > slider { + transform: rotate(0); +} + +scale.horizontal > marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale.horizontal.fine-tune > marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.horizontal > marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale.horizontal.fine-tune > marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.vertical > marks.top { + margin-right: 7px; + margin-left: -15px; +} + +scale.vertical.fine-tune > marks.top { + margin-right: 6px; + margin-left: -14px; +} + +scale.vertical > marks.bottom { + margin-left: 7px; + margin-right: -15px; +} + +scale.vertical.fine-tune > marks.bottom { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider, scale.horizontal.marks-before:not(.marks-after) > trough > slider:hover, scale.horizontal.marks-before:not(.marks-after) > trough > slider:active, scale.horizontal.marks-before:not(.marks-after) > trough > slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider, scale.horizontal.marks-after:not(.marks-before) > trough > slider:hover, scale.horizontal.marks-after:not(.marks-before) > trough > slider:active, scale.horizontal.marks-after:not(.marks-before) > trough > slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider, scale.vertical.marks-before:not(.marks-after) > trough > slider:hover, scale.vertical.marks-before:not(.marks-after) > trough > slider:active, scale.vertical.marks-before:not(.marks-after) > trough > slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider, scale.vertical.marks-after:not(.marks-before) > trough > slider:hover, scale.vertical.marks-after:not(.marks-before) > trough > slider:active, scale.vertical.marks-after:not(.marks-before) > trough > slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal > trough > slider:dir(ltr), scale.color.horizontal > trough > slider:dir(rtl) { + margin-bottom: -13.5px; + margin-top: 11.5px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -13.5px; + margin-right: 11.5px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) > trough > slider { + margin-right: -13.5px; + margin-left: 11.5px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 6px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 6px; +} + +progressbar trough { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.14); +} + +progressbar progress { + border-radius: 6px; + background-color: transparent; +} + +progressbar.horizontal progress { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +progressbar.vertical progress { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +progressbar.osd { + min-width: 6px; + min-height: 6px; + background-color: transparent; + box-shadow: none; + margin: 0; + padding: 0; +} + +progressbar.osd trough { + background-color: transparent; +} + +progressbar.osd progress { + background-color: #5b9bf8; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 6px; +} + +levelbar.horizontal.discrete block { + min-width: 36px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 6px; +} + +levelbar.vertical.discrete block { + min-height: 36px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + border-radius: 6px; +} + +levelbar block.low { + background-color: #FBC02D; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #5b9bf8; +} + +levelbar block.full { + background-color: #66BB6A; +} + +levelbar block.empty { + background-color: rgba(255, 255, 255, 0.14); +} + +/**************** + * Print dialog * +*****************/ +window.dialog.print drawing { + color: #FFFFFF; + background: none; + border: none; + padding: 0; +} + +window.dialog.print drawing paper { + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + color: #FFFFFF; +} + +window.dialog.print .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame, +.frame { + border: 1px solid rgba(255, 255, 255, 0.12); +} + +frame > list, +.frame > list { + border: none; +} + +frame.view, +.frame.view { + border-radius: 6px; +} + +frame.flat, +.frame.flat { + border-style: none; +} + +frame { + border-radius: 6px; +} + +frame > label { + margin: 4px; +} + +frame.flat > border, statusbar frame > border { + border: none; +} + +actionbar > revealer > box { + padding: 6px; + border-spacing: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.12); + background-color: #25292f; + background-clip: border-box; + border: none; +} + +actionbar > revealer > box button, actionbar > revealer > box entry, +actionbar > revealer > box menubutton, actionbar > revealer > box menubutton > button, +actionbar > revealer > box splitbutton, actionbar > revealer > box splitbutton > button, +actionbar > revealer > box spinbutton { + margin: 0; +} + +statusbar { + padding: 6px 18px; +} + +scrolledwindow viewport.frame { + border: none; +} + +stack scrolledwindow.frame viewport.frame list { + border: none; +} + +scrolledwindow > overshoot.top { + background-image: radial-gradient(farthest-side at top, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at top, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 100% 3%, 100% 50%; + background-repeat: no-repeat; + background-position: top; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow > overshoot.bottom { + background-image: radial-gradient(farthest-side at bottom, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at bottom, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 100% 3%, 100% 50%; + background-repeat: no-repeat; + background-position: bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow > overshoot.left { + background-image: radial-gradient(farthest-side at left, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at left, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 3% 100%, 50% 100%; + background-repeat: no-repeat; + background-position: left; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow > overshoot.right { + background-image: radial-gradient(farthest-side at right, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at right, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 3% 100%, 50% 100%; + background-repeat: no-repeat; + background-position: right; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow.undershoot-top > undershoot.top { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.12); + background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-bottom > undershoot.bottom { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); + background: linear-gradient(to top, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-start:dir(ltr) > undershoot.left { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-start:dir(rtl) > undershoot.right { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to left, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-end:dir(ltr) > undershoot.right { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to left, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-end:dir(rtl) > undershoot.left { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow > junction { + border: none; + background-image: none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +stacksidebar + separator.vertical, +stacksidebar separator.horizontal, button.font separator, button.file separator, separator.spacer { + min-width: 0; + min-height: 0; + background-color: transparent; + background-image: none; +} + +/********* + * Lists * + *********/ +list.content, +list.boxed-list { + border-radius: 6px; + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08); + border: none; +} + +list.horizontal.content > row:not(:last-child), +list.horizontal.boxed-list > row:not(:last-child) { + border-left: 1px solid rgba(0, 0, 0, 0.2); +} + +list.vertical.content > row:not(:last-child), +list.vertical.boxed-list > row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +listview, +list { + border-color: rgba(255, 255, 255, 0.12); + background-color: #2d3036; + background-clip: padding-box; +} + +listview > row, +list > row { + padding: 6px; + background-clip: padding-box; +} + +listview > row.expander, +list > row.expander { + padding: 0px; +} + +listview > row.expander .row-header, +list > row.expander .row-header { + padding: 2px; +} + +listview.horizontal row.separator:not(:last-child), listview.separators.horizontal > row:not(.separator):not(:last-child), +list.horizontal row.separator:not(:last-child), +list.separators.horizontal > row:not(.separator):not(:last-child) { + border-left: 1px solid rgba(0, 0, 0, 0.2); +} + +listview:not(.horizontal) row.separator:not(:last-child), listview.separators:not(.horizontal) > row:not(.separator):not(:last-child), +list:not(.horizontal) row.separator:not(:last-child), +list.separators:not(.horizontal) > row:not(.separator):not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +list.frame { + border-radius: 6px; +} + +listview.view { + color: #FFFFFF; + background-color: transparent; +} + +popover.menu listview.view { + padding: 0; + border-radius: 6px; +} + +popover.menu listview.view > row { + margin-left: 0; + margin-right: 0; + border-radius: 6px; +} + +row { + color: rgba(255, 255, 255, 0.7); + background-clip: padding-box; +} + +row label.subtitle { + font-size: smaller; +} + +row > box.header { + margin-left: 12px; + margin-right: 12px; + min-height: 48px; +} + +row > box.header > .icon:disabled { + filter: opacity(0.35); +} + +row > box.header > box.title { + margin-top: 6px; + margin-bottom: 6px; + border-spacing: 3px; +} + +.nautilus-window .nautilus-grid-view child.activatable, columnview.view > header > button, +treeview.view > header > button, row.activatable { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1), font-weight 0; + outline: none; + box-shadow: none; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + outline: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:focus, columnview.view > header > button:focus, +treeview.view > header > button:focus, row.activatable:focus { + color: #FFFFFF; + background-color: transparent; + box-shadow: none; + outline: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:hover, columnview.view > header > button:hover, +treeview.view > header > button:hover, .nautilus-window .nautilus-grid-view child.has-open-popup.activatable, columnview.view > header > button.has-open-popup, +treeview.view > header > button.has-open-popup, row.activatable:hover, row.activatable.has-open-popup { + color: #FFFFFF; + background-color: alpha(currentColor, 0.05); + box-shadow: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:active, columnview.view > header > button:active, +treeview.view > header > button:active, row.activatable:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, font-weight 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, alpha(currentColor, 0.05) 10%, transparent 0%); + background-size: 0% 0%; + background-color: alpha(currentColor, 0.05); + color: #FFFFFF; + box-shadow: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:selected, columnview.view > header > button:selected, +treeview.view > header > button:selected, row.activatable:selected { + background-color: alpha(currentColor, 0.06); +} + +.nautilus-window .nautilus-grid-view child.activatable:selected:hover, columnview.view > header > button:selected:hover, +treeview.view > header > button:selected:hover, row.activatable:selected:hover { + background-color: alpha(currentColor, 0.08); +} + +button row.activatable:focus, button row.activatable:hover, button row.activatable:active { + box-shadow: none; + background: none; +} + +button:checked row.activatable { + color: #FFFFFF; +} + +row:selected { + background-color: alpha(currentColor, 0.06); + color: inherit; + box-shadow: none; +} + +row:selected:hover { + background-color: alpha(currentColor, 0.08); +} + +row:selected:focus, row:selected:focus-visible:focus-within { + outline: none; + background-color: alpha(currentColor, 0.08); +} + +row:selected:focus:hover, row:selected:focus-visible:focus-within:hover { + background-color: alpha(currentColor, 0.16); +} + +row:selected image, +row:selected label { + color: #FFFFFF; +} + +row:selected button image, +row:selected button label { + color: inherit; +} + +row:selected:disabled image, +row:selected:disabled label { + color: rgba(255, 255, 255, 0.4); +} + +.rich-list { + /* rich lists usually containing other widgets than just labels/text */ +} + +.rich-list > row { + padding: 9px 12px; + min-height: 32px; + /* should be tall even when only containing a label */ +} + +.rich-list > row:last-child { + border-bottom: none; +} + +.rich-list > row > box { + border-spacing: 12px; +} + +row label.subtitle { + font-size: smaller; +} + +row > box.header { + margin-left: 12px; + margin-right: 12px; + border-spacing: 6px; + min-height: 50px; +} + +row > box.header > .icon:disabled { + filter: opacity(0.45); +} + +row > box.header > box.title { + margin-top: 6px; + margin-bottom: 6px; + border-spacing: 3px; + padding: 0; +} + +row > box.header > box.title, +row > box.header > box.title > .title, +row > box.header > box.title > .subtitle { + padding: 0; + font-weight: inherit; +} + +row > box.header > .prefixes, +row > box.header > .suffixes { + border-spacing: 6px; +} + +row > box.header > .icon:dir(ltr), +row > box.header > .prefixes:dir(ltr) { + margin-right: 6px; +} + +row > box.header > .icon:dir(rtl), +row > box.header > .prefixes:dir(rtl) { + margin-left: 6px; +} + +row.entry.activatable.focused:not(:selected):hover, row.entry.activatable.focused:not(:selected):active { + background-color: transparent; +} + +row.entry .edit-icon, row.entry .indicator { + min-width: 24px; + min-height: 24px; + padding: 5px; +} + +row.entry .edit-icon:disabled { + opacity: 0.5; +} + +row.entry .indicator { + opacity: 0.65; +} + +row.entry.monospace { + font-family: inherit; +} + +row.entry.error text > selection:focus-within { + background-color: alpha(#F44336, 0.2); +} + +row.entry.error text > cursor-handle > contents { + background-color: currentColor; +} + +row.entry.warning text > selection:focus-within { + background-color: alpha(#FBC02D, 0.2); +} + +row.entry.warning text > cursor-handle > contents { + background-color: currentColor; +} + +row.entry.success text > selection:focus-within { + background-color: alpha(#66BB6A, 0.2); +} + +row.entry.success text > cursor-handle > contents { + background-color: currentColor; +} + +row.combo image.dropdown-arrow:disabled { + filter: opacity(0.45); +} + +row.combo listview.inline { + background: none; + border: none; + box-shadow: none; + color: inherit; +} + +row.combo listview.inline, row.combo listview.inline:disabled { + background: none; + color: inherit; +} + +row.combo popover > contents { + min-width: 120px; +} + +list.content > row, list.content > row.expander row.header, +list.boxed-list > row, +list.boxed-list > row.expander row.header, row.expander list.nested > row { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +list.content > row.activatable:not(:selected):hover, list.content > row.expander row.header.activatable:not(:selected):hover, +list.boxed-list > row.activatable:not(:selected):hover, +list.boxed-list > row.expander row.header.activatable:not(:selected):hover, row.expander list.nested > row.activatable:not(:selected):hover { + background-color: alpha(currentColor, 0.08); +} + +list.content > row.activatable:not(:selected):active, list.content > row.expander row.header.activatable:not(:selected):active, +list.boxed-list > row.activatable:not(:selected):active, +list.boxed-list > row.expander row.header.activatable:not(:selected):active, row.expander list.nested > row.activatable:not(:selected):active { + background-color: alpha(currentColor, 0.12); +} + +list.content > row.activatable.has-open-popup:not(:selected), list.content > row.expander row.header.activatable.has-open-popup:not(:selected), +list.boxed-list > row.activatable.has-open-popup:not(:selected), +list.boxed-list > row.expander row.header.activatable.has-open-popup:not(:selected), row.expander list.nested > row.activatable.has-open-popup:not(:selected) { + background-color: alpha(currentColor, 0.03); +} + +list.content > row:first-child, list.content > row.expander row.header:first-child, +list.boxed-list > row:first-child, +list.boxed-list > row.expander row.header:first-child, row.expander list.nested > row:first-child { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} + +row.expander { + background: none; + padding: 0px; +} + +row.expander > box > list { + background: none; + color: inherit; +} + +row.expander list.nested { + color: inherit; +} + +row.expander image.expander-row-arrow { + transition: -gtk-icon-transform 200ms cubic-bezier(0, 0, 0.2, 1); +} + +row.expander image.expander-row-arrow:dir(ltr) { + margin-left: 6px; +} + +row.expander image.expander-row-arrow:dir(rtl) { + margin-right: 6px; +} + +row.expander image.expander-row-arrow:dir(ltr) { + -gtk-icon-transform: rotate(0.5turn); +} + +row.expander image.expander-row-arrow:dir(rtl) { + -gtk-icon-transform: rotate(-0.5turn); +} + +row.expander image.expander-row-arrow:disabled { + filter: opacity(0.45); +} + +row.expander:checked image.expander-row-arrow { + -gtk-icon-transform: rotate(0turn); + opacity: 1; +} + +row.expander:checked image.expander-row-arrow:not(:disabled) { + color: #5b9bf8; +} + +.osd row.expander:checked image.expander-row-arrow:not(:disabled) { + color: inherit; +} + +list.content > row.expander, +list.boxed-list > row.expander { + border: none; +} + +list.content > row:first-child, list.content > row.expander:first-child row.header, +list.boxed-list > row:first-child, +list.boxed-list > row.expander:first-child row.header { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +list.content > row:last-child, list.content > row.expander:last-child:not(:checked), list.content > row.expander:last-child:not(:checked) row.header, list.content > row.expander:last-child:checked list.nested, list.content > row.expander:last-child:checked list.nested > row:last-child, +list.boxed-list > row:last-child, +list.boxed-list > row.expander:last-child:not(:checked), +list.boxed-list > row.expander:last-child:not(:checked) row.header, +list.boxed-list > row.expander:last-child:checked list.nested, +list.boxed-list > row.expander:last-child:checked list.nested > row:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-bottom-width: 0; +} + +columnview > listview > row { + padding: 0; +} + +columnview > listview > row > cell { + padding: 8px 6px; +} + +columnview > listview > row > cell:not(:first-child) { + border-left: 1px solid transparent; +} + +columnview.column-separators > listview > row > cell { + border-left-color: rgba(255, 255, 255, 0.12); +} + +columnview.data-table > listview > row > cell { + padding-top: 2px; + padding-bottom: 2px; +} + +treeexpander { + border-spacing: 6px; +} + +columnview row:not(:selected) cell editablelabel:not(.editing):focus-within { + outline: 2px solid alpha(currentColor, 0.06); +} + +columnview row:not(:selected) cell editablelabel.editing:focus-within { + outline: 2px solid #5b9bf8; +} + +columnview row:not(:selected) cell editablelabel.editing text selection { + color: #FFFFFF; + background-color: #5b9bf8; +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 6px; + border-spacing: 0; + padding: 0; + border: none; + background-image: none; +} + +.app-notification button.text-button:not(:disabled) { + color: #5b9bf8; +} + +.app-notification > box > label { + margin-left: 9px; +} + +.app-notification.frame, +.app-notification border { + border: none; +} + +/************* + * Expanders * + *************/ +expander { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + color: rgba(255, 255, 255, 0.7); + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +expander:hover, expander:active { + color: #FFFFFF; +} + +expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +expander:disabled { + color: rgba(255, 255, 255, 0.3); +} + +expander-widget > box > title { + border-radius: 6px; +} + +expander-widget > box > title:hover > expander { + color: rgba(255, 255, 255, 0.7); +} + +.navigation-sidebar:not(decoration):not(window):drop(active):focus, .navigation-sidebar:not(decoration):not(window):drop(active), +placessidebar:not(decoration):not(window):drop(active):focus, +placessidebar:not(decoration):not(window):drop(active), +stackswitcher:not(decoration):not(window):drop(active):focus, +stackswitcher:not(decoration):not(window):drop(active), +expander-widget:not(decoration):not(window):drop(active):focus, +expander-widget:not(decoration):not(window):drop(active) { + box-shadow: none; +} + +/************ + * Calendar * + ************/ +calendar { + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 6px; + color: #FFFFFF; +} + +calendar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +calendar:selected { + border-radius: 6px; +} + +calendar > header { + padding: 3px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +calendar > header > button { + min-height: 24px; +} + +calendar > grid { + margin: 3px; +} + +calendar > grid > label { + border-radius: 6px; + margin: 0; +} + +calendar > grid > label.today:selected { + box-shadow: none; +} + +calendar > grid > label:focus { + outline-style: none; +} + +calendar > grid > label.day-number { + padding: 6px; +} + +calendar > grid > label.day-number.other-month { + color: alpha(currentColor, 0.3); +} + +/*********** + * Dialogs * + ***********/ +window.messagedialog .response-area > box > button, window.dialog.message .dialog-action-area > button { + border-radius: 0; + min-height: 28px; + padding: 6px 12px; + margin: 0; + border: none; +} + +window.messagedialog .response-area > box > button:first-child, window.dialog.message .dialog-action-area > button:first-child { + border-radius: 0 0 0 12px; +} + +window.messagedialog .response-area > box > button:last-child, window.dialog.message .dialog-action-area > button:last-child { + border-radius: 0 0 12px 0; +} + +window.messagedialog .response-area > box > button:only-child, window.dialog.message .dialog-action-area > button:only-child { + border-radius: 0 0 12px 12px; +} + +window.dialog.message.background { + background-color: #2d3036; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +window.dialog.message box.dialog-vbox.vertical { + margin-top: 6px; + border-spacing: 24px; +} + +window.dialog.message box.dialog-vbox.vertical > box.vertical { + margin-bottom: 6px; +} + +window.dialog.message box.dialog-vbox.vertical > box > box > box > label.title { + font-weight: 800; + font-size: 15pt; +} + +window.dialog.message .titlebar { + min-height: 24px; + border-style: none; + background-color: transparent; + color: #FFFFFF; +} + +window.dialog.message .titlebar:backdrop { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +window.dialog.message .dialog-action-area { + border-top: 1px solid rgba(255, 255, 255, 0.12); + margin: 0; + border-spacing: 0; +} + +window.dialog.message .dialog-action-area > button { + border: none; +} + +window.dialog.message .dialog-action-area > button:not(:last-child) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +window.dialog.message .dialog-action-area > button.suggested-action:not(:disabled) { + color: #5b9bf8; +} + +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled) { + color: #F44336; +} + +window.aboutdialog.background.csd scrolledwindow.frame { + border: none; + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08); +} + +window.aboutdialog.background.csd scrolledwindow.frame, window.aboutdialog.background.csd scrolledwindow.frame > viewport.view, window.aboutdialog.background.csd scrolledwindow.frame > textview.view, window.aboutdialog.background.csd scrolledwindow.frame > textview.view > text { + border-radius: 6px; +} + +/******************** + * AdwMessageDialog * + ********************/ +window.messagedialog { + background-color: #2d3036; + color: #FFFFFF; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +window.messagedialog .message-area { + padding: 24px 30px; + border-spacing: 10px; +} + +window.messagedialog .response-area > box > button.suggested { + color: #5b9bf8; +} + +window.messagedialog .response-area > box > button.destructive { + color: #F44336; +} + +window.messagedialog.csd:not(.solid-csd) { + border-radius: 12px; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.horizontal > button { + margin: 0; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.horizontal > button:first-child { + margin-left: 0; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.horizontal > button:last-child { + margin-right: 0; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.vertical > button { + margin-top: 0; + margin-bottom: 0; + border-radius: 0; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +filechooser stack.view frame > border { + border: none; +} + +filechooserbutton > button > box { + border-spacing: 6px; +} + +filechooserbutton:drop(active) { + box-shadow: none; + border-color: transparent; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #2d3036; +} + +.sidebar:not(separator):dir(ltr), .sidebar.left:not(separator), .sidebar.left:not(separator):dir(rtl) { + border-right: 1px solid rgba(255, 255, 255, 0.12); + border-left: none; +} + +.sidebar:not(separator):dir(rtl), .sidebar.right:not(separator) { + border-left: 1px solid rgba(255, 255, 255, 0.12); + border-right: none; +} + +.sidebar listview.view, +.sidebar list { + background-color: transparent; + color: inherit; +} + +paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; +} + +flap > stacksidebar.sidebar:dir(ltr), leaflet.unfolded > box > stacksidebar.sidebar:dir(ltr) { + border-right: none; +} + +flap > stacksidebar.sidebar:dir(rtl), leaflet.unfolded > box > stacksidebar.sidebar:dir(rtl) { + border-left: none; +} + +stacksidebar list { + padding: 6px; + background-color: #2d3036; +} + +stacksidebar row { + min-height: 24px; + padding: 6px; + border-radius: 6px; +} + +stacksidebar row + row { + margin-top: 4px; +} + +stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; + color: inherit; +} + +separator.sidebar { + background-color: rgba(255, 255, 255, 0.12); + border-right: none; +} + +separator.sidebar.selection-mode, .selection-mode separator.sidebar { + background-color: rgba(255, 255, 255, 0.12); +} + +/********************** + * Navigation Sidebar * + **********************/ +.navigation-sidebar { + padding: 4.5px 0; + border-right: none; +} + +.navigation-sidebar, .navigation-sidebar.view { + background-color: transparent; + color: inherit; +} + +.navigation-sidebar.background { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +.navigation-sidebar > separator { + margin: 4.5px 0; +} + +.navigation-sidebar > row { + min-height: 24px; + padding: 6px; + border-radius: 6px; + margin: 1.5px 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + outline: 0 solid transparent; + outline-offset: 2px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; + background-color: transparent; +} + +.navigation-sidebar > row:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +.navigation-sidebar > row:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +.navigation-sidebar > row:active image, .navigation-sidebar > row:active label { + color: #FFFFFF; +} + +.navigation-sidebar > row:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +.navigation-sidebar > row:selected image, .navigation-sidebar > row:selected label { + color: #FFFFFF; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +row image.sidebar-icon:disabled { + color: rgba(255, 255, 255, 0.3); +} + +placessidebar > viewport.frame { + border-style: none; +} + +placessidebar list > separator { + margin: 3px 0; +} + +placessidebar row:selected { + font-weight: 500; +} + +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 { + color: inherit; +} + +placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar row.sidebar-placeholder-row { + background-color: alpha(currentColor, 0.08); +} + +placessidebar row.sidebar-new-bookmark-row { + color: #5b9bf8; +} + +placessidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #5b9bf8; +} + +placessidebar row:drop(active) { + background-color: alpha(currentColor, 0.08); +} + +placesview .server-list-button > image { + transition: 200ms cubic-bezier(0, 0, 0.2, 1); + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + transition: 200ms cubic-bezier(0, 0, 0.2, 1); + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + border-spacing: 6px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(#3f4348); + background-size: 1px 1px; + background-clip: content-box; + box-shadow: none; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #22262c; + background-image: image(#3f4348), image(#3f4348); + 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; +} + +/************ + * GtkVideo * + ************/ +video { + background: black; + border-radius: 6px; +} + +video image.osd { + min-width: 64px; + min-height: 64px; + border-radius: 9999px; + border: none; +} + +/************** + * GtkInfoBar * + **************/ +infobar > revealer > box { + padding: 6px; + border-spacing: 12px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box { + background-color: #25292f; + color: #FFFFFF; +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action) { + color: #5b9bf8; + background-color: alpha(currentColor, 0.15); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover { + color: #5b9bf8; + background-color: alpha(currentColor, 0.25); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; +} + +infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { + background-color: #5b9bf8; + color: #FFFFFF; +} + +infobar.action > revealer > box button, infobar.action > revealer > box button:hover, infobar.action > revealer > box button:focus, infobar.action > revealer > box button:active, infobar.action > revealer > box button:checked, infobar.action > revealer > box button.text-button:not(:disabled), infobar.action:backdrop > revealer > box button, infobar.action:backdrop > revealer > box button:hover, infobar.action:backdrop > revealer > box button:focus, infobar.action:backdrop > revealer > box button:active, infobar.action:backdrop > revealer > box button:checked, infobar.action:backdrop > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button, infobar.question > revealer > box button:hover, infobar.question > revealer > box button:focus, infobar.question > revealer > box button:active, infobar.question > revealer > box button:checked, infobar.question > revealer > box button.text-button:not(:disabled), infobar.question:backdrop > revealer > box button, infobar.question:backdrop > revealer > box button:hover, infobar.question:backdrop > revealer > box button:focus, infobar.question:backdrop > revealer > box button:active, infobar.question:backdrop > revealer > box button:checked, infobar.question:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.action > revealer > box *:link, infobar.action > revealer > box link, infobar.action:backdrop > revealer > box *:link, infobar.action:backdrop > revealer > box link, infobar.question > revealer > box *:link, infobar.question > revealer > box link, infobar.question:backdrop > revealer > box *:link, infobar.question:backdrop > revealer > box link { + color: #FFFFFF; +} + +infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { + background-color: #438cf7; +} + +infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box button, infobar.warning > revealer > box button:hover, infobar.warning > revealer > box button:focus, infobar.warning > revealer > box button:active, infobar.warning > revealer > box button:checked, infobar.warning > revealer > box button.text-button:not(:disabled), infobar.warning:backdrop > revealer > box button, infobar.warning:backdrop > revealer > box button:hover, infobar.warning:backdrop > revealer > box button:focus, infobar.warning:backdrop > revealer > box button:active, infobar.warning:backdrop > revealer > box button:checked, infobar.warning:backdrop > revealer > box button.text-button:not(:disabled) { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box *:link, infobar.warning > revealer > box link, infobar.warning:backdrop > revealer > box *:link, infobar.warning:backdrop > revealer > box link { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning:hover > revealer > box { + background-color: #fbb814; +} + +infobar.error > revealer > box, infobar.error:backdrop > revealer > box { + background-color: #F44336; + color: #FFFFFF; +} + +infobar.error > revealer > box button, infobar.error > revealer > box button:hover, infobar.error > revealer > box button:focus, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error > revealer > box button.text-button:not(:disabled), infobar.error:backdrop > revealer > box button, infobar.error:backdrop > revealer > box button:hover, infobar.error:backdrop > revealer > box button:focus, infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.error > revealer > box *:link, infobar.error > revealer > box link, infobar.error:backdrop > revealer > box *:link, infobar.error:backdrop > revealer > box link { + color: #FFFFFF; +} + +infobar.error:hover > revealer > box { + background-color: #f32c1e; +} + +/************ + * Tooltips * + ************/ +tooltip { + padding: 6px 12px; + box-shadow: none; + border: none; +} + +tooltip.background { + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); + border-radius: 6px; + margin: 2px 6px 8px 6px; +} + +tooltip > box { + border-spacing: 6px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.top overlay { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.bottom { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.dark { + color: #FFFFFF; +} + +colorswatch.light { + color: rgba(0, 0, 0, 0.87); +} + +colorchooser colorswatch:hover { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 0 0 2px #5b9bf8; +} + +colorswatch#add-color-button { + border-radius: 6px 0 0 6px; + color: #FFFFFF; +} + +colorswatch#add-color-button:only-child { + border-radius: 6px; +} + +colorswatch#add-color-button overlay { + background-color: rgba(255, 255, 255, 0.04); +} + +colorswatch#add-color-button overlay:hover { + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +colorswatch#add-color-button overlay:active { + background-color: rgba(255, 255, 255, 0.26); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 6px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 6px; +} + +colorswatch#editor-color-sample overlay:hover { + box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.15); +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #22262c; +} + +/********************** + * Window Decorations * + **********************/ +window { + border: none; + outline: none; + padding: 0; + margin: 0; +} + +window.csd { + border-radius: 12px; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 2px 3px -1px transparent, 0 4px 3px 0 transparent, 0 1px 6px 0 transparent; + transition: none; +} + +window.csd:backdrop { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 8px 6px -5px transparent, 0 16px 15px 2px transparent, 0 6px 18px 5px transparent; + transition: none; +} + +window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-top, window.csd.tiled-right, window.csd.tiled-bottom, window.csd.tiled-left { + border-radius: 0; +} + +window.csd.maximized, window.csd.fullscreen { + box-shadow: none; +} + +window.solid-csd { + margin: 0; + padding: 2px; + border-radius: 0; + background-color: #1b1e24; + border: 1px solid #3f4348; +} + +window.solid-csd:backdrop { + background-color: #22262c; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) { + min-height: 22px; + min-width: 22px; + padding: 0; + margin: 0 4px; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image { + background-color: transparent; +} + +headerbar windowcontrols button.minimize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { + color: white; +} + +headerbar windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 10%, rgba(255, 255, 255, 0.15) 0%); +} + +headerbar windowcontrols button.minimize:backdrop:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:backdrop:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:backdrop:not(.suggested-action):not(.destructive-action) { + opacity: 0.65; +} + +headerbar windowcontrols button.minimize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +headerbar windowcontrols button.maximize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +headerbar windowcontrols button.close:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { + background-color: #31c4b6; +} + +headerbar windowcontrols { + border-spacing: 6px; +} + +headerbar windowcontrols.start:not(.empty):dir(ltr), headerbar windowcontrols.end:not(.empty):dir(rtl) { + margin-right: 9px; + margin-left: 9px; +} + +headerbar windowcontrols.start:not(.empty):dir(rtl), headerbar windowcontrols.end:not(.empty):dir(ltr) { + margin-left: 9px; + margin-right: 9px; +} + +.view:selected, iconview:selected, gridview > child:selected, columnview.view:selected, +treeview.view:selected, calendar:selected, calendar > grid > label.day-number:selected { + background-color: alpha(currentColor, 0.06); +} + +flowbox > flowboxchild:selected, calendar > grid > label.today { + color: #5b9bf8; + background-color: rgba(91, 155, 248, 0.2); +} + +textview text selection:focus, textview text selection, label > selection, entry > text > selection, spinbutton > text > selection, headerbar popover.background entry > text > selection, calendar > grid > label.today:selected { + color: #FFFFFF; + background-color: #5b9bf8; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + color: #5b9bf8; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg")); +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + padding-top: 6px; +} + +shortcuts-section { + margin: 20px; +} + +.shortcuts-search-results { + margin: 20px; + border-spacing: 24px; +} + +shortcut { + border-spacing: 6px; +} + +shortcut > .keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(255, 255, 255, 0.12); + border-radius: 7px; + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.12); + background-color: #2d3036; + color: #FFFFFF; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + caret-color: #5b9bf8; +} + +stackswitcher { + min-height: 0; + padding: 3px; + border-radius: 9px; + background-color: rgba(255, 255, 255, 0.04); + border: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { + margin: 0 0; + background-color: transparent; + border-radius: 6px; + padding: 3px 10px; + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 100px; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus { + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover { + background-color: alpha(currentColor, 0.1); + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 36px; + min-height: 36px; + padding: 0; +} + +/************* + * App Icons * + *************/ +.lowres-icon { + -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.icon-dropshadow { + -gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 1px 6px rgba(0, 0, 0, 0.1); +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker > contents { + padding: 0; +} + +.emoji-searchbar { + padding: 6px; + border-spacing: 6px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background: none; +} + +.emoji-searchbar entry text { + background: none; + box-shadow: none; +} + +.emoji-toolbar { + padding: 3px; + border-spacing: 3px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + background: none; +} + +.emoji-toolbar > flowboxchild { + padding: 3px; +} + +.emoji-toolbar > flowboxchild > button.emoji-section { + padding: 6px; +} + +button.emoji-section { + margin: 0; + padding: 6px; + border-radius: 6px; +} + +button.emoji-section:checked { + color: #5b9bf8; +} + +popover.emoji-picker emoji { + font-size: x-large; + padding: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; +} + +popover.emoji-picker emoji:focus, popover.emoji-picker emoji:hover { + background: alpha(currentColor, 0.08); +} + +emoji-completion-row { + min-height: 28px; + padding: 0 12px; +} + +emoji-completion-row > box { + border-spacing: 6px; + padding: 2px 6px; +} + +emoji-completion-row:focus, emoji-completion-row:hover, +emoji-completion-row emoji:hover, emoji-completion-row emoji:focus { + background-color: alpha(currentColor, 0.08); + color: #FFFFFF; +} + +popover.entry-completion > contents { + padding: 0; +} + +headerbar splitbutton.omnibar notification button, #NautilusPathButton, #NautilusPathBar > menubutton > button, #NautilusQueryEditorTag > button.image-button, #NautilusQueryEditor > menubutton > button.image-button { + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + box-shadow: none; +} + +headerbar splitbutton.omnibar notification button:focus, #NautilusPathButton:focus, #NautilusPathBar > menubutton > button:focus, #NautilusQueryEditorTag > button.image-button:focus, #NautilusQueryEditor > menubutton > button.image-button:focus { + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:hover, #NautilusPathButton:hover, #NautilusPathBar > menubutton > button:hover, #NautilusQueryEditorTag > button.image-button:hover, #NautilusQueryEditor > menubutton > button.image-button:hover { + background-color: alpha(currentColor, 0.08); + box-shadow: none; + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:active, #NautilusPathButton:active, #NautilusPathBar > menubutton > button:active, #NautilusQueryEditorTag > button.image-button:active, #NautilusQueryEditor > menubutton > button.image-button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; + box-shadow: none; + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:checked, #NautilusPathButton:checked, #NautilusPathBar > menubutton > button:checked, #NautilusQueryEditorTag > button.image-button:checked, #NautilusQueryEditor > menubutton > button.image-button:checked { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:disabled, #NautilusPathButton:disabled, #NautilusPathBar > menubutton > button:disabled, #NautilusQueryEditorTag > button.image-button:disabled, #NautilusQueryEditor > menubutton > button.image-button:disabled { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; +} + +headerbar splitbutton.omnibar notification button:backdrop, #NautilusPathButton:backdrop, #NautilusPathBar > menubutton > button:backdrop, #NautilusQueryEditorTag > button.image-button:backdrop, #NautilusQueryEditor > menubutton > button.image-button:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +headerbar splitbutton.omnibar notification button:backdrop:focus, #NautilusPathButton:backdrop:focus, #NautilusPathBar > menubutton > button:backdrop:focus, #NautilusQueryEditorTag > button.image-button:backdrop:focus, #NautilusQueryEditor > menubutton > button.image-button:backdrop:focus, headerbar splitbutton.omnibar notification button:backdrop:hover, #NautilusPathButton:backdrop:hover, #NautilusPathBar > menubutton > button:backdrop:hover, #NautilusQueryEditorTag > button.image-button:backdrop:hover, #NautilusQueryEditor > menubutton > button.image-button:backdrop:hover, headerbar splitbutton.omnibar notification button:backdrop:active, #NautilusPathButton:backdrop:active, #NautilusPathBar > menubutton > button:backdrop:active, #NautilusQueryEditorTag > button.image-button:backdrop:active, #NautilusQueryEditor > menubutton > button.image-button:backdrop:active { + color: rgba(255, 255, 255, 0.7); +} + +headerbar splitbutton.omnibar notification button:backdrop:checked, #NautilusPathButton:backdrop:checked, #NautilusPathBar > menubutton > button:backdrop:checked, #NautilusQueryEditorTag > button.image-button:backdrop:checked, #NautilusQueryEditor > menubutton > button.image-button:backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +headerbar splitbutton.omnibar notification button:backdrop:disabled, #NautilusPathButton:backdrop:disabled, #NautilusPathBar > menubutton > button:backdrop:disabled, #NautilusQueryEditorTag > button.image-button:backdrop:disabled, #NautilusQueryEditor > menubutton > button.image-button:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.nautilus-window placesview label { + color: rgba(255, 255, 255, 0.7); +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + margin: 6px; + border-style: none; + border-radius: 6px; + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +.nautilus-window .floating-bar button { + margin: 4px; + color: #FFFFFF; +} + +#NautilusQueryEditor > menubutton > button.image-button { + min-width: 24px; + min-height: 24px; +} + +#NautilusQueryEditor > text, #NautilusQueryEditor > box, #NautilusQueryEditor > menubutton > button.image-button { + margin: 6px 0; +} + +#NautilusQueryEditorTag { + background-color: rgba(255, 255, 255, 0.12); +} + +#NautilusQueryEditorTag > button.image-button { + margin: 0; + padding: 0; +} + +#NautilusPathBar { + background-color: alpha(currentColor, 0.05); + border-radius: 6px; + margin: 6px 0; + color: rgba(255, 255, 255, 0.7); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +#NautilusPathBar > menubutton { + margin: 3px; +} + +#NautilusPathBar > menubutton > button { + min-height: 20px; + min-width: 20px; + margin: 0; + padding: 6px; + border-radius: 4px; +} + +#NautilusPathButton { + margin: 3px; + min-height: 24px; + min-width: 24px; + padding-top: 0; + padding-bottom: 0; + border-radius: 4px; + background-color: transparent; +} + +#NautilusPathButton.current-dir { + color: #FFFFFF; +} + +#NautilusPathButton.current-dir:hover, #NautilusPathButton.current-dir:active { + background: none; + box-shadow: none; +} + +#NautilusViewCell clamp box { + margin: 0; + border-spacing: 0; +} + +window.dialog > box > stack > box > box > notebook.frame { + border-width: 0 0 0 1px; + border-radius: 0; +} + +.display-container { + margin-bottom: 6px; +} + +.small .display-container { + border-radius: 0; +} + +.display-container .history-view { + background-color: #25292f; +} + +.display-container #displayitem { + padding: 0 12px 8px 0; + font-size: 1.4em; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.math-buttons button { + font-size: 1.1em; + padding: 2px 6px; +} + +.math-buttons button.text-button { + padding-left: 16px; + padding-right: 16px; +} + +leaflet button.number-button { + background-color: rgba(255, 255, 255, 0.1); +} + +leaflet button.number-button:hover { + background-color: rgba(255, 255, 255, 0.2); +} + +leaflet button.number-button:active { + background-color: rgba(255, 255, 255, 0.3); +} + +label.primary-label, label.month-name, label.secondary-label { + font-size: 16pt; + font-weight: bold; + padding: 12px; +} + +label.primary-label, label.month-name { + color: #5b9bf8; +} + +label.secondary-label { + color: rgba(255, 255, 255, 0.4); +} + +calendar-view { + font-size: 10pt; +} + +calendar-view:selected { + color: #5b9bf8; + font-weight: bold; +} + +calendar-view.header, +label.header { + font-size: 10pt; + font-weight: bold; + color: rgba(255, 255, 255, 0.4); +} + +calendar-view.current, +weekgrid.current { + background-color: alpha(#5b9bf8, 0.3); +} + +popover.events { + background-color: #1a1f26; + padding: 0; +} + +popover.events box { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +popover.events list { + background-color: #25292f; + border-radius: 6px; +} + +popover.events scrolledwindow { + border-width: 0; +} + +popover.events button { + border-radius: 6px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-style: solid none none; + box-shadow: none; +} + +event { + margin: 1px; + font-size: 0.9rem; +} + +event widget.content { + margin: 4px; +} + +event.timed, event:not(.slanted):not(.slanted-start):not(.slanted-end) { + border-radius: 6px; +} + +event.timed widget.edge { + border-radius: 3px; + min-width: 5px; +} + +event.slanted-start, event.slanted-end:dir(rtl) { + padding-left: 16px; + border-radius: 0 3px 3px 0; +} + +event.slanted-end, event.slanted-start:dir(rtl) { + padding-right: 16px; + border-radius: 3px 0 0 3px; +} + +event.color-dark:not(.timed) { + color: white; + outline-color: rgba(0, 0, 0, 0.3); +} + +event.timed, event.color-light:not(.timed) { + color: alpha(black, 0.75); + outline-color: rgba(255, 255, 255, 0.5); +} + +popover.event-popover, +popover.event-popover > contents { + padding: 0; +} + +.search-viewport { + background-color: #25292f; +} + +.calendar-list { + background-color: transparent; +} + +.calendar-list > list { + border-radius: 4px; +} + +.sources-button { + margin-top: 0; + margin-bottom: 0; + border-radius: 0; + border-top-style: none; + border-bottom-style: none; +} + +.sources-button:hover:not(:backdrop) { + background-image: none; + text-shadow: none; +} + +.calendar-color-image { + -gtk-icon-filter: none; +} + +image.calendar-color-image, +button:active:not(:backdrop) .calendar-color-image, +button:checked:not(:backdrop) .calendar-color-image, +.calendars-list .calendar-color-image:not(:backdrop):not(:disabled), +.calendar-list .calendar-color-image:not(:backdrop):not(:disabled), +.sources-button:not(:backdrop):not(:disabled) .calendar-color-image { + -gtk-icon-shadow: 0 1px alpha(black, 0.1); +} + +datechooser navigator { + margin-right: 6px; + margin-left: 6px; + margin-bottom: 6px; +} + +datechooser navigator label { + font-weight: bold; +} + +datechooser navigator button, datechooser navigator button.image-button { + min-height: 36px; + min-width: 36px; + padding: 0; +} + +datechooser .weeknum, datechooser .weekday { + color: rgba(255, 255, 255, 0.4); + font-size: smaller; +} + +datechooser button.day { + font-size: 10pt; + font-weight: normal; + margin: 3px; + padding: 0; + min-height: 36px; + min-width: 36px; + transition: none; +} + +datechooser button.day dot { + background-color: #FFFFFF; + border-radius: 50%; + min-height: 3px; + min-width: 3px; +} + +datechooser button.day:selected, datechooser button.day.today:selected { + background-color: #5b9bf8; + color: #FFFFFF; + font-weight: bold; +} + +datechooser button.day:selected dot, datechooser button.day.today:selected dot { + background-color: #FFFFFF; +} + +datechooser button.day.today { + color: #5b9bf8; +} + +datechooser button.day.today dot { + background-color: #5b9bf8; +} + +datechooser button.day.other-month:not(:hover), datechooser button.day.other-month:backdrop { + color: alpha(currentColor, 0.1); +} + +datechooser button.day.other-month:not(:hover) dot, datechooser button.day.other-month:backdrop dot { + background-color: alpha(currentColor, 0.1); +} + +datechooser button.day.other-month:hover:not(:backdrop) { + color: rgba(255, 255, 255, 0.4); +} + +datechooser button.day.other-month:hover:not(:backdrop) dot { + background-color: rgba(255, 255, 255, 0.4); +} + +.week-header { + padding: 0; +} + +.week-header > box:first-child { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.week-header .week-number { + font-size: 16pt; + font-weight: bold; + padding: 12px 12px 18px 12px; + color: rgba(255, 255, 255, 0.26); +} + +.week-header.week-temperature { + font-size: 10pt; + font-weight: bold; + color: rgba(255, 255, 255, 0.4); +} + +.week-header.lines { + color: rgba(255, 255, 255, 0.12); +} + +weekhourbar > label { + font-size: 10pt; + padding: 4px 6px; +} + +.week-view .lines { + color: rgba(255, 255, 255, 0.12); +} + +weekgrid > widget.now-strip { + background-color: alpha(#5b9bf8, 0.8); + margin: 0 0 0 1px; + min-height: 3px; +} + +weekgrid:selected, weekgrid.dnd, +.week-header:selected, +.week-header.dnd { + background-color: alpha(#5b9bf8, 0.25); +} + +monthcell { + border: solid 1px rgba(255, 255, 255, 0.12); + border-width: 1px 0 0 1px; + background-color: transparent; + transition: background-color 200ms; +} + +monthcell:hover:not(.out-of-month):not(.today) { + background-color: #2d3036; + transition: background-color 200ms; + color: #FFFFFF; +} + +monthcell:selected { + background-color: alpha(#5b9bf8, 0.1); +} + +monthcell:selected:hover { + background-color: alpha(#5b9bf8, 0.2); +} + +monthcell:selected label.day-label { + font-weight: bold; +} + +monthcell:nth-child(7n + 1) { + border-left-width: 0; +} + +monthcell.today { + background-color: alpha(#5b9bf8, 0.2); +} + +monthcell.today:hover { + background-color: alpha(#5b9bf8, 0.3); + color: #5b9bf8; +} + +monthcell.today:selected { + background-color: alpha(#5b9bf8, 0.25); +} + +monthcell.today:selected:hover { + background-color: alpha(#5b9bf8, 0.35); +} + +monthcell label { + color: #FFFFFF; + font-size: 0.9rem; +} + +monthcell label.day-label { + font-size: 1rem; +} + +monthcell.out-of-month { + background-color: rgba(255, 255, 255, 0.04); +} + +monthcell.out-of-month label { + color: rgba(255, 255, 255, 0.7); +} + +monthcell button { + padding: 0 6px; + border-radius: 0; + border-bottom: none; + border-right: none; +} + +monthpopover > box { + margin: 0; + padding: 0; + background-color: transparent; +} + +.notes-section box > textview { + border-radius: 6px; + padding: 6px; +} + +.notes-section box > textview > text { + background: none; +} + +agenda-view list > row { + padding: 2px 12px; +} + +agenda-view list > label { + padding: 6px 12px; +} + +label.no-events { + font-style: italic; +} + +searchbutton > popover > arrow { + background: none; + border: none; +} + +datechooser { + padding: 6px; +} + +datechooser .current-week { + background: alpha(#1b1e24, 0.7); + color: #FFFFFF; + border-radius: 6px; +} + +.contacts-contact-list list.navigation-sidebar { + background: none; +} + +.details-page { + margin: 24px 0px; +} + +.installed-overlay-box { + font-size: smaller; + background-color: #5b9bf8; + border-radius: 0; + color: #FFFFFF; + text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); +} + +screenshot-carousel box.frame { + border-width: 1px 0; + border-radius: 0; +} + +screenshot-carousel button, +.featured-carousel button { + margin: 12px; +} + +.screenshot-image-main .image1, +.screenshot-image-main .image2 { + margin-top: 6px; + margin-bottom: 12px; + margin-left: 6px; + margin-right: 6px; +} + +.app-tile-label { + font-size: 105%; +} + +.review-textbox { + padding: 6px; +} + +.origin-rounded-box { + background-color: rgba(255, 255, 255, 0.12); + border-radius: 9999px; + padding: 4px; +} + +.origin-beta { + color: #FBC02D; +} + +.origin-button > button { + padding: 3px 9px; +} + +flowboxchild.card { + background-color: transparent; + box-shadow: none; + border: none; + padding: 0; +} + +button.card.category-tile { + padding: 21px; + border: none; + border-radius: 6px; + min-width: 140px; + font-weight: 900; + font-size: larger; +} + +button.card.category-tile.category-tile-iconless { + padding: 9px 15px; + min-width: 130px; + font-size: 105%; + font-weight: normal; +} + +button.card.category-tile.category-create { + background: linear-gradient(180deg, #ce8cd7 0%, #2861c6 100%); + color: white; +} + +button.card.category-tile.category-create:hover { + background: linear-gradient(180deg, shade(#ce8cd7, 1.07) 0%, shade(#2861c6, 1.1) 100%); + color: white; +} + +button.card.category-tile.category-create:active { + background: linear-gradient(180deg, shade(#ce8cd7, 0.95) 0%, shade(#2861c6, 0.95) 100%); + color: white; +} + +button.card.category-tile.category-develop { + background: #5e5c64; + color: white; +} + +button.card.category-tile.category-develop:hover { + background: shade(#5e5c64, 1.2); + color: white; +} + +button.card.category-tile.category-develop:active { + background-color: shade(#5e5c64, 0.95); + color: white; +} + +button.card.category-tile.category-learn { + background: linear-gradient(180deg, #2ec27e 30%, #27a66c 100%); + color: white; +} + +button.card.category-tile.category-learn:hover { + background: linear-gradient(180deg, shade(#2ec27e, 1.06) 30%, shade(#27a66c, 1.06) 100%); + color: white; +} + +button.card.category-tile.category-learn:active { + background: linear-gradient(180deg, shade(#2ec27e, 0.95) 30%, shade(#27a66c, 0.95) 100%); + color: white; +} + +button.card.category-tile.category-play { + background: linear-gradient(75deg, #f9e2a7 0%, #eb5ec3 50%, #6d53e0 100%); + color: #393484; +} + +button.card.category-tile.category-play:hover { + background: linear-gradient(75deg, shade(#f9e2a7, 1.07) 0%, shade(#eb5ec3, 1.07) 50%, shade(#6d53e0, 1.07) 100%); + color: #393484; +} + +button.card.category-tile.category-play:active { + background: linear-gradient(75deg, shade(#f9e2a7, 0.97) 0%, shade(#eb5ec3, 0.95) 50%, shade(#6d53e0, 1.07) 100%); + color: #393484; +} + +button.card.category-tile.category-socialize { + background: linear-gradient(90deg, #ef4e9b 0%, #f77466 100%); + color: rgba(255, 255, 255, 0.7); +} + +button.card.category-tile.category-socialize:hover { + background: linear-gradient(90deg, shade(#ef4e9b, 1.08) 0%, shade(#f77466, 1.08) 100%); +} + +button.card.category-tile.category-socialize:active { + background: linear-gradient(90deg, shade(#ef4e9b, 0.95) 0%, shade(#f77466, 0.95) 100%); +} + +button.card.category-tile.category-work { + padding: 1px; + /* FIXME: work around https://gitlab.gnome.org/GNOME/gtk/-/issues/4324 */ + color: #1c71d8; + background-color: #fdf8d7; + background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); + background-size: 10px 10px, 10px 10px; + background-position: -1px -4px, center -1px; +} + +button.card.category-tile.category-work:hover { + color: #1c71d8; + background-color: #fefcef; + background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); +} + +button.card.category-tile.category-work:active { + color: #1c71d8; + background-color: #fcf4bf; + background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); +} + +clamp.medium .category-tile:not(.category-tile-iconless), +clamp.large .category-tile:not(.category-tile-iconless) { + font-size: larger; +} + +.featured-tile { + all: unset; + padding: 0; + box-shadow: none; + color: #FFFFFF; +} + +.featured-tile label.title-1 { + margin-top: 6px; + margin-bottom: 6px; +} + +.featured-tile.narrow label.title-1 { + font-size: 16pt; +} + +.application-details-infobar, .application-details-infobar.info { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + border: 1px solid rgba(255, 255, 255, 0.12); +} + +.application-details-infobar.warning { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); + border: 1px solid rgba(0, 0, 0, 0.15); +} + +@keyframes install-progress-unknown-move { + 0% { + background-position: 0%; + } + 50% { + background-position: 100%; + } + 100% { + background-position: 0%; + } +} + +.application-details-description .button { + padding-left: 24px; + padding-right: 24px; +} + +.install-progress { + background-image: linear-gradient(to top, #5b9bf8 2px, alpha(#5b9bf8, 0) 2px); + background-repeat: no-repeat; + background-position: 0 bottom; + background-size: 0; + transition: none; +} + +.install-progress:dir(rtl) { + background-position: 100% bottom; +} + +.review-row > * { + margin: 12px; +} + +.review-row button { + font-size: smaller; +} + +.review-row .vote-buttons button { + margin-right: -1px; +} + +.review-row .vote-buttons button:not(:first-child) { + border-image: linear-gradient(to top, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) 0 0 0 1/5px 0 5px 1px; +} + +.review-row .vote-buttons button:hover, +.review-row .vote-buttons button:active, +.review-row .vote-buttons button:hover + button, +.review-row .vote-buttons button:active + button { + border-image: none; +} + +review-bar { + color: rgba(255, 255, 255, 0.4); + background-image: none; + background-color: rgba(255, 255, 255, 0.26); +} + +.review-histogram star-image { + color: rgba(255, 255, 255, 0.4); +} + +.version-arrow-label { + font-size: x-small; +} + +.overview-more-button { + font-size: smaller; + padding: 0 16px; +} + +.app-row-origin-text { + font-size: smaller; +} + +.app-listbox-header { + padding: 6px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.image-list { + background-color: transparent; +} + +box.star { + background-color: transparent; + background-image: none; +} + +button.star { + outline-offset: 0; + background-color: transparent; + background-image: none; + border-image: none; + border-radius: 0; + border-width: 0; + padding: 0; + box-shadow: none; + outline-offset: -1px; +} + +star-image { + color: #FFD600; +} + +.dimmer-label { + opacity: 0.25; +} + +.update-failed-details { + font-family: Monospace; + font-size: smaller; + padding: 16px; +} + +.upgrade-banner { + padding: 0px; + border-radius: 6px; + border: none; +} + +.upgrade-banner-background { + background: linear-gradient(to bottom, #66BB6A, #5b9bf8); + color: white; +} + +.upgrade-buttons #button_upgrades_install { + padding-left: 16px; + padding-right: 16px; +} + +scrolledwindow.list-page > viewport > clamp > box { + margin: 24px 12px; + border-spacing: 24px; +} + +.update-preferences preferencesgroup > box > box { + margin-top: 18px; +} + +.section > label:not(:first-child) { + margin-top: 6px; +} + +.section > box:not(:first-child) { + margin-top: 12px; +} + +clamp.status-page { + margin: 36px 12px; +} + +clamp.status-page .iconbox { + min-height: 128px; + min-width: 128px; +} + +clamp.status-page .icon { + color: rgba(255, 255, 255, 0.4); + min-height: 32px; + min-width: 32px; +} + +clamp.status-page .icon:not(:last-child) { + margin-bottom: 36px; +} + +clamp.status-page .title:not(:last-child) { + margin-bottom: 12px; +} + +app-context-bar .context-tile { + border: 1px solid rgba(255, 255, 255, 0.12); + background-color: transparent; + border-radius: 0; + padding: 24px 12px 21px 12px; + outline-offset: 5px; + transition-property: outline, outline-offset, background-image; + border-bottom: none; + border-right: none; +} + +app-context-bar .context-tile:hover { + background-image: none; + background-color: alpha(currentColor, 0.08); +} + +app-context-bar .context-tile.keyboard-activating, app-context-bar .context-tile:active { + background-color: alpha(currentColor, 0.12); +} + +app-context-bar .context-tile:focus:focus-visible { + outline-offset: -1px; +} + +app-context-bar.horizontal box:first-child .context-tile:first-child, app-context-bar.vertical .context-tile:first-child { + border-left: none; +} + +app-context-bar.horizontal .context-tile, app-context-bar.vertical box:first-child .context-tile { + border-top: none; +} + +app-context-bar > box:not(:first-child) > button.flat { + border-radius: 0; +} + +app-context-bar > box:not(:first-child) > button.flat:last-child { + border-radius: 0 6px 6px 0; +} + +app-context-bar > box:first-child > button.flat { + border-radius: 0; +} + +app-context-bar > box:first-child > button.flat:first-child { + border-radius: 6px 0 0 6px; +} + +app-context-bar > box > button.flat { + border-left-color: rgba(255, 255, 255, 0.12); +} + +carousel.card { + border: none; + background-color: rgba(255, 255, 255, 0.04); +} + +.context-tile-lozenge { + min-height: 28px; + min-width: 28px; + padding: 6px; + font-size: 18px; + font-weight: bold; + border-radius: 9999px; +} + +.context-tile-lozenge.large { + font-size: 24px; + padding: 16px; + min-width: 24px; + /* 60px minus the left and right padding */ + min-height: 24px; + /* 60px minus the top and bottom padding */ +} + +.context-tile-lozenge.wide-image image { + margin-top: -28px; + margin-bottom: -28px; +} + +.context-tile-lozenge image { + -gtk-icon-style: symbolic; +} + +.context-tile-lozenge.grey { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.context-tile-lozenge.green, .context-tile-lozenge.details-rating-0 { + color: #419345; + background-color: rgba(102, 187, 106, 0.15); +} + +.context-tile-lozenge.blue, .context-tile-lozenge.details-rating-5 { + color: #5b9bf8; + background-color: rgba(91, 155, 248, 0.15); +} + +.context-tile-lozenge.yellow, .context-tile-lozenge.details-rating-12 { + color: #d79b04; + background-color: rgba(251, 192, 45, 0.15); +} + +.context-tile-lozenge.details-rating-15 { + color: #FF8A65; + background-color: rgba(255, 138, 101, 0.15); +} + +.context-tile-lozenge.red, .context-tile-lozenge.details-rating-18 { + color: #d2190b; + background-color: rgba(244, 67, 54, 0.15); +} + +.eol-red { + font-weight: bold; + color: #F44336; +} + +window.narrow .app-title { + font-size: 16pt; +} + +window.narrow .app-developer { + font-size: small; +} + +.install-progress-label { + font-size: smaller; + font-feature-settings: "tnum"; +} + +scrolledwindow.fake-adw-status-page > viewport > box { + margin: 36px 12px; +} + +scrolledwindow.fake-adw-status-page > viewport > box > clamp:not(:last-child) > box { + margin-bottom: 36px; +} + +scrolledwindow.fake-adw-status-page > viewport > box > clamp > box > .icon:not(:last-child) { + margin-bottom: 36px; +} + +scrolledwindow.fake-adw-status-page > viewport > box > clamp > box > .title:not(:last-child) { + margin-bottom: 12px; +} + +statuspage.icon-dropshadow image.icon { + -gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1); +} + +window.info scrollbar.vertical { + margin-top: 48px; + background: none; + box-shadow: none; +} + +window.info scrollbar.vertical trough { + margin-top: 0; +} + +row.app > box.header { + margin-left: 12px; + margin-right: 12px; +} + +row.app > box.header { + border-spacing: 12px; +} + +row.app > box.header > image { + margin-top: 12px; + margin-bottom: 12px; +} + +row.app label.warning { + color: #F44336; +} + +@keyframes pre-delay { + from { + opacity: 0; + } + to { + opacity: 0; + } +} + +@keyframes fade-in { + from { + filter: opacity(0%); + } +} + +/* Give a fade-in animation to spinners. */ +spinner.fade-in:checked { + animation: pre-delay 0.5s linear 1, fade-in 1s linear 1, spin 1s linear infinite; + animation-delay: 0s, 0.5s, 0.5s; +} + +window > contents > leaflet > box > stack.background { + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, transparent 48px, #22262c 48px, #22262c); +} + +@define-color weather_temp_chart_fill_color rgba(248, 228, 92, 0.5); +@define-color weather_temp_chart_stroke_color #f6d32d; +@define-color weather_thermometer_warm_color #FBC02D; +@define-color weather_thermometer_cold_color #5b9bf8; +#places-label { + font-weight: bold; +} + +#temperature-label { + font-size: 32pt; + font-weight: 900; + margin-left: 9px; +} + +#conditions-grid *:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.content-view.cell { + font-weight: bold; +} + +#locationEntry { + margin: 6px; +} + +.weather-popover { + margin-top: 6px; +} + +.forecast-card { + transition: border-radius 100ms ease-out; + border-radius: 6px; +} + +.forecast-card separator { + background-color: rgba(255, 255, 255, 0.12); +} + +#conditions-grid, +#attributionGrid { + margin-left: 18px; + margin-right: 18px; +} + +#weather-page .small .forecast-card { + margin-left: 0; + margin-right: 0; + border-radius: 0; +} + +.forecast-temperature-label { + font-weight: bold; + color: #ae7b03; +} + +WeatherThermometer { + margin-bottom: 12px; +} + +WeatherThermometer > label.high { + font-weight: bold; + color: #FBC02D; +} + +WeatherThermometer > label.low { + font-weight: bold; + color: #5b9bf8; +} + +.forecast-button { + margin: 0 12px; +} + +.forecast-graphic { + margin: 18px; +} + +button.osd.circular { + border-radius: 9999px; + min-width: 24px; + min-height: 24px; +} + +button.osd.circular > image { + padding: 0; +} + +scrolledwindow.inline list, +scrolledwindow.inline listview { + background: none; + color: inherit; +} + +scrolledwindow.inline undershoot.top { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.12); +} + +.search-view { + background-color: #3c84f7; + color: #FFFFFF; +} + +.search-view menubutton button:focus:focus-visible { + outline-color: rgba(255, 255, 255, 0.3); +} + +image.circular { + min-width: 36px; + min-height: 36px; + padding: 0; + border-radius: 9999px; +} + +.large-button { + padding: 6px; +} + +.alarm-time { + font-size: 2.5em; + font-weight: 300; +} + +.clocks-ampm-toggle-button, +.clocks-secondary-standalone-label { + font-size: 18pt; +} + +.clocks-standalone-label, +.clocks-ringing-label { + font-size: 6em; + font-weight: 300; +} + +.clocks-ringing-title { + font-size: 1.5em; + font-weight: bold; +} + +.clocks-alarm-setup-time { + font-size: 32pt; +} + +.clocks-timer-label, +.clocks-spinbutton { + font-size: 48pt; +} + +.timer-panel .timer-header { + font-size: 20pt; + font-weight: 300; +} + +.timer-countdown { + font-size: 40pt; + font-weight: 300; +} + +/* Stopwatch Panel */ +.lap-time { + font-weight: bold; +} + +.stopped-stopwatch label, +.running-stopwatch label, +.paused-stopwatch label { + font-size: 70px; + font-weight: lighter; +} + +.stopped-stopwatch .seconds-label { + font-weight: 300; +} + +.running-stopwatch .seconds-label, +.running-stopwatch .miliseconds-label { + color: #5b9bf8; +} + +.stopped-stopwatch .miliseconds-label, +.running-stopwatch .miliseconds-label, +.paused-stopwatch .miliseconds-label { + font-size: 50px; +} + +.running-stopwatch .seconds-label, +.paused-stopwatch .seconds-label { + font-weight: 300; +} + +.clock-location { + font-weight: bolder; +} + +.hidden { + opacity: 0; +} + +.clock-time { + font-size: 2em; + padding: 0.2em 0.5em; + border-radius: 1em; +} + +.none .clock-time { + background: alpha(currentColor, 0.2); +} + +.night .clock-time { + color: #3c84f7; + background-color: alpha(#5b9bf8, 0.25); +} + +.naut .clock-time, +.astro .clock-time { + color: #FF7043; + background-color: alpha(#FF8A65, 0.25); +} + +.civil .clock-time, +.day .clock-time { + color: #FFD600; + background: alpha(#FBC02D, 0.25); +} + +headerbar splitbutton.omnibar > button.image-button { + border-radius: 0; + margin-left: 1px; +} + +headerbar splitbutton.omnibar notification button { + min-height: 24px; + min-width: 24px; + padding: 0; + margin: 0; +} + +popover.background.global-search > arrow, popover.background.global-search > contents { + padding: 0; +} + +popover.background.global-search box.vertical > headerbar { + border-top-left-radius: 0; +} + +popover.background.global-search box.vertical:first-child > headerbar { + border-top-left-radius: 12px; + border-top-right-radius: 0; +} + +panelframeswitcher { + padding: 3px; +} + +.frameheader.header { + min-height: 24px; + background-color: #2d3036; +} + +.frameheader.header > button { + border: none; + margin: 0; + padding: 3px; +} + +.frameheader.header tabbar.inline > revealer > box { + min-height: 24px; +} + +.frameheader.header tabbar.inline > revealer > box .start-action { + padding: 0; + border: none; +} + +.frameheader.header tabbar.inline > revealer > box .end-action { + padding: 0; + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +.frameheader.header tabbar.inline > revealer > box tabbox { + border: none; + background: none; +} + +panelstatusbar > menubutton > button, +panelstatusbar > paneltogglebutton button { + border-radius: 0; +} + +.style-variant { + padding: 0 12px; +} + +.style-variant button.toggle { + padding: 0; +} + +.style-variant button.toggle, .style-variant button.toggle:hover, .style-variant button.toggle:focus, .style-variant button.toggle:active, .style-variant button.toggle:checked { + background: none; + outline: none; + border: none; + box-shadow: none; +} + +.style-variant button.toggle > stylevariantpreview > .wallpaper { + border-radius: 6px; + outline-color: transparent; + outline-width: 3px; + outline-offset: 3px; + outline-style: solid; + box-shadow: none; +} + +.style-variant button.toggle:hover > stylevariantpreview > .wallpaper { + outline-color: rgba(255, 255, 255, 0.04); +} + +.style-variant button.toggle:active > stylevariantpreview > .wallpaper { + outline-color: rgba(255, 255, 255, 0.26); +} + +.style-variant button.toggle:checked > stylevariantpreview > .wallpaper { + outline-color: #5b9bf8; +} + +window.dialog > .dialog-vbox > box > scrolledwindow > viewport > widget > list.boxed-list { + border: none; + border-radius: 0; +} + +window.dialog > .dialog-vbox > box > scrolledwindow > viewport > widget > list.boxed-list > row:first-child, window.dialog > .dialog-vbox > box > scrolledwindow > viewport > widget > list.boxed-list > row:last-child { + border-radius: 0; +} + +avatar { + border-radius: 9999px; + font-weight: bold; +} + +avatar.color1 { + background-image: linear-gradient(#83b6ec, #337fdc); + color: #cfe1f5; +} + +avatar.color2 { + background-image: linear-gradient(#7ad9f1, #0f9ac8); + color: #caeaf2; +} + +avatar.color3 { + background-image: linear-gradient(#8de6b1, #29ae74); + color: #cef8d8; +} + +avatar.color4 { + background-image: linear-gradient(#b5e98a, #6ab85b); + color: #e6f9d7; +} + +avatar.color5 { + background-image: linear-gradient(#f8e359, #d29d09); + color: #f9f4e1; +} + +avatar.color6 { + background-image: linear-gradient(#ffcb62, #d68400); + color: #ffead1; +} + +avatar.color7 { + background-image: linear-gradient(#ffa95a, #ed5b00); + color: #ffe5c5; +} + +avatar.color8 { + background-image: linear-gradient(#f78773, #e62d42); + color: #f8d2ce; +} + +avatar.color9 { + background-image: linear-gradient(#e973ab, #e33b6a); + color: #fac7de; +} + +avatar.color10 { + background-image: linear-gradient(#cb78d4, #9945b5); + color: #e7c2e8; +} + +avatar.color11 { + background-image: linear-gradient(#9e91e8, #7a59ca); + color: #d5d2f5; +} + +avatar.color12 { + background-image: linear-gradient(#e3cf9c, #b08952); + color: #f2eade; +} + +avatar.color13 { + background-image: linear-gradient(#be916d, #785336); + color: #e5d6ca; +} + +avatar.color14 { + background-image: linear-gradient(#c0bfbc, #6e6d71); + color: #d8d7d3; +} + +avatar.contrasted { + color: white; +} + +avatar.image { + background: none; +} + +.card { + border-radius: 6px; + border: none; + background-clip: padding-box; + color: rgba(255, 255, 255, 0.7); + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); + outline: none; + background-color: #2d3036; + color: #FFFFFF; +} + +.card.activatable { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.card.activatable:hover { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +.card.activatable:active { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +.card separator { + background-color: rgba(0, 0, 0, 0.2); +} + +toast { + margin: 12px; + margin-bottom: 24px; + border-radius: 9999px; + border-spacing: 6px; + padding: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #1a1f26; + color: #FFFFFF; + border: none; +} + +toast:dir(ltr) { + padding-left: 12px; +} + +toast:dir(rtl) { + padding-right: 12px; +} + +toast > label { + margin: 0 6px; +} + +viewswitcher { + margin: 0; +} + +viewswitcher button.toggle { + font-weight: bold; + padding: 0; +} + +viewswitcher button.toggle > stack > box.narrow { + font-size: 0.75rem; + padding-top: 6px; + padding-bottom: 4px; + border-spacing: 4px; +} + +viewswitcher button.toggle > stack > box.narrow > stack > label { + padding-left: 6px; + padding-right: 6px; +} + +viewswitcher button.toggle > stack > box.wide { + padding: 2px 12px; + border-spacing: 6px; +} + +viewswitcher.wide { + border-spacing: 0; +} + +viewswitcher.wide button.toggle.flat:focus { + outline: none; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +viewswitcher.narrow button.toggle { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 0; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), transparent 0%, transparent 0%) 0 0 0/0 0 0px; +} + +viewswitcher.narrow button.toggle:hover { + color: #FFFFFF; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + background-image: none; + box-shadow: none; + box-shadow: inset 0 -2px #224e92; +} + +viewswitcher.narrow button.toggle:active { + color: #FFFFFF; + background-image: none; + box-shadow: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #31c4b6 100%, #224e92 0%) 0 0 2/0 0 2px; +} + +viewswitcher.narrow button.toggle:checked { + color: #FFFFFF; + background-image: none; + box-shadow: none; + border-image: linear-gradient(to right, #297dff, #31c4b6) 0 0 2/0 0 2px; +} + +viewswitcher.narrow button.toggle:checked:disabled, viewswitcher.narrow button.toggle:checked:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +viewswitcher.narrow button.toggle:focus { + box-shadow: none; + outline: none; +} + +viewswitcherbar actionbar > revealer > box { + padding: 0; +} + +viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:hover { + box-shadow: inset 0 2px #275397; +} + +viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:active { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #31c4b6 100%, #275397 0%) 2 0 0/2px 0 0; +} + +viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:checked { + border-image: linear-gradient(to right, #297dff, #31c4b6) 2 0 0/2px 0 0; +} + +viewswitchertitle viewswitcher { + margin-left: 12px; + margin-right: 12px; +} + +indicatorbin > indicator, indicatorbin > mask { + min-width: 6px; + min-height: 6px; + border-radius: 9999px; +} + +indicatorbin > indicator { + margin: 1px; + background-color: alpha(currentColor, 0.4); +} + +indicatorbin > indicator > label { + font-size: 0.6rem; + font-weight: bold; + padding: 1px 4px; + color: white; +} + +indicatorbin > mask { + padding: 1px; + background: black; +} + +indicatorbin.needs-attention > indicator { + background-color: #5b9bf8; +} + +indicatorbin.needs-attention > indicator > label { + color: #FFFFFF; +} + +preferencespage > scrolledwindow > viewport > clamp > box { + margin: 24px 12px; + border-spacing: 24px; +} + +preferencesgroup > box, preferencesgroup > box .labels { + border-spacing: 6px; +} + +preferencesgroup > box > box.header:not(.single-line) { + margin-bottom: 6px; +} + +preferencesgroup > box > box.single-line { + min-height: 34px; +} + +preferencesgroup > box button.background-preview-button.toggle { + padding: 0; + background: none; + box-shadow: none; + outline-color: transparent; + outline-width: 3px; + outline-offset: 3px; + outline-style: solid; +} + +preferencesgroup > box button.background-preview-button.toggle, preferencesgroup > box button.background-preview-button.toggle > background-preview { + border-radius: 6px; +} + +preferencesgroup > box button.background-preview-button.toggle:hover { + outline-color: rgba(255, 255, 255, 0.04); +} + +preferencesgroup > box button.background-preview-button.toggle:active { + outline-color: rgba(255, 255, 255, 0.26); +} + +preferencesgroup > box button.background-preview-button.toggle:checked { + outline-color: #5b9bf8; +} + +preferencesgroup > box .cutout-button { + background-color: #2d3036; +} + +window.about .main-page > viewport > clamp > box { + margin: 12px; + border-spacing: 6px; +} + +window.about .main-page > viewport > clamp > box > box { + margin-top: 18px; + border-spacing: 18px; + margin-bottom: 6px; +} + +window.about .main-page .app-version { + padding: 3px 18px; + border-radius: 6px; + margin-top: 3px; + background-color: alpha(currentColor, 0.05); +} + +window.about .main-page .app-version:hover { + background-color: alpha(currentColor, 0.08); +} + +window.about .main-page .app-version:focus { + background-color: alpha(currentColor, 0.08); +} + +window.about .main-page .app-version:focus:hover { + background-color: alpha(currentColor, 0.16); + outline: none; +} + +window.about .main-page .app-version:active, window.about .main-page .app-version:focus:active { + background-color: alpha(currentColor, 0.12); + outline: none; +} + +window.about .main-page .app-version, window.about .main-page .app-version:hover, window.about .main-page .app-version:focus, window.about .main-page .app-version:active { + color: #5b9bf8; + background-image: none; +} + +window.about .subpage > viewport > clamp > box { + margin: 18px 12px; + border-spacing: 18px; +} + +window.about .subpage > clamp > textview { + background: none; + color: inherit; +} + +statuspage > scrolledwindow > viewport > box { + margin: 36px 12px; + border-spacing: 36px; +} + +statuspage > scrolledwindow > viewport > box > clamp > box { + border-spacing: 12px; +} + +statuspage > scrolledwindow > viewport > box > clamp > box > .icon { + -gtk-icon-size: 128px; + color: alpha(currentColor, 0.55); +} + +statuspage > scrolledwindow > viewport > box > clamp > box > .icon:disabled { + opacity: 0.35; +} + +statuspage > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) { + margin-bottom: 24px; +} + +statuspage.compact > scrolledwindow > viewport > box { + margin: 24px 12px; + border-spacing: 24px; +} + +statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon { + -gtk-icon-size: 96px; +} + +statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) { + margin-bottom: 12px; +} + +statuspage.compact > scrolledwindow > viewport > box > clamp > box > .title { + font-size: 18pt; +} + +themeselector, +panelthemeselector { + margin: 9px; +} + +themeselector checkbutton, +panelthemeselector checkbutton { + padding: 0; + min-height: 44px; + min-width: 44px; + padding: 1px; + background-clip: content-box; + border-radius: 9999px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); +} + +themeselector checkbutton.follow:checked, themeselector checkbutton.light:checked, themeselector checkbutton.dark:checked, +panelthemeselector checkbutton.follow:checked, +panelthemeselector checkbutton.light:checked, +panelthemeselector checkbutton.dark:checked { + box-shadow: inset 0 0 0 2px #5b9bf8; +} + +themeselector checkbutton.follow, +panelthemeselector checkbutton.follow { + background-image: linear-gradient(to bottom right, #ffffff 50%, #202020 50%); +} + +themeselector checkbutton.light, +panelthemeselector checkbutton.light { + background-color: #ffffff; +} + +themeselector checkbutton.dark, +panelthemeselector checkbutton.dark { + background-color: #202020; +} + +themeselector checkbutton.theme-selector radio, +panelthemeselector checkbutton.theme-selector radio { + -gtk-icon-source: none; + border: none; + background: none; + box-shadow: none; + min-height: 20px; + min-width: 20px; + padding: 0; +} + +themeselector checkbutton.theme-selector radio:hover, themeselector checkbutton.theme-selector radio:active, themeselector checkbutton.theme-selector radio:checked, +panelthemeselector checkbutton.theme-selector radio:hover, +panelthemeselector checkbutton.theme-selector radio:active, +panelthemeselector checkbutton.theme-selector radio:checked { + background-color: transparent; +} + +themeselector checkbutton.theme-selector radio:checked, +panelthemeselector checkbutton.theme-selector radio:checked { + -gtk-icon-size: 20px; + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic@2.svg"))); + color: #FFFFFF; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; +} + +themeselector checkbutton.theme-selector radio:checked, themeselector checkbutton.theme-selector radio:checked:hover, themeselector checkbutton.theme-selector radio:checked:active, +panelthemeselector checkbutton.theme-selector radio:checked, +panelthemeselector checkbutton.theme-selector radio:checked:hover, +panelthemeselector checkbutton.theme-selector radio:checked:active { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} + +themeswitcher { + padding: 6px; +} + +themeswitcher .check { + min-height: 20px; + min-width: 20px; + background: none; + padding: 0; + margin: 0; + border-radius: 9999px; + color: #FFFFFF; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; +} + +themeswitcher .check, themeswitcher .check:hover, themeswitcher .check:active { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} + +themeswitcher checkbutton { + padding: 0; + min-height: 44px; + min-width: 44px; + padding: 1px; + background-clip: content-box; + border-radius: 9999px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); +} + +themeswitcher checkbutton:checked { + box-shadow: inset 0 0 0 2px #5b9bf8; +} + +themeswitcher checkbutton radio, themeswitcher checkbutton radio:hover, themeswitcher checkbutton radio:active, themeswitcher checkbutton radio:checked, themeswitcher checkbutton radio:checked:hover, themeswitcher checkbutton radio:checked:active { + background-color: transparent; + border: none; + background: none; + box-shadow: none; + color: transparent; + -gtk-icon-source: none; + -gtk-icon-size: 0; +} + +themeswitcher checkbutton.system { + background: linear-gradient(-45deg, #1e1e1e 50%, white 50%); +} + +themeswitcher checkbutton.light { + color: alpha(black, 0.8); + background-color: white; +} + +themeswitcher checkbutton.dark { + color: white; + background-color: #1e1e1e; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #FFFFFF; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #FFFFFF; +/* +widget base background color */ +@define-color theme_bg_color #22262c; +/* +text widgets and the like base background color */ +@define-color theme_base_color #25292f; +/* +base background color of selections */ +@define-color theme_selected_bg_color #5b9bf8; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #FFFFFF; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #22262c; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(255, 255, 255, 0.4); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2d3036; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #FFFFFF; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #FFFFFF; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #22262c; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #25292f; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #5b9bf8; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #FFFFFF; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(255, 255, 255, 0.4); +/* +widgets main borders color */ +@define-color borders rgba(255, 255, 255, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(255, 255, 255, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FBC02D; +@define-color error_color #F44336; +@define-color success_color #66BB6A; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #FFFFFF; +@define-color wm_unfocused_title rgba(255, 255, 255, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.08); +@define-color wm_border #070809; +@define-color wm_bg #1b1e24; +@define-color wm_unfocused_bg #22262c; +@define-color wm_button_icon white; +@define-color wm_button_close_hover_bg #31c4b6; +@define-color wm_button_close_active_bg #259389; +@define-color wm_button_max_hover_bg #5b9bf8; +@define-color wm_button_max_active_bg #2077f5; +@define-color wm_button_min_hover_bg #5b9bf8; +@define-color wm_button_min_active_bg #2077f5; +/* +FIXME this is really an API */ +@define-color content_view_bg #25292f; +@define-color placeholder_text_color #bebfc1; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #25292f; +@define-color budgie_tasklist_indicator_color rgba(255, 255, 255, 0.26); +@define-color budgie_tasklist_indicator_color_active #5b9bf8; +@define-color budgie_tasklist_indicator_color_active_window rgba(67, 111, 174, 0.885); +@define-color budgie_tasklist_indicator_color_attention #FBC02D; +@define-color STRAWBERRY_100 #FF9262; +@define-color STRAWBERRY_300 #FF793E; +@define-color STRAWBERRY_500 #F15D22; +@define-color STRAWBERRY_700 #CF3B00; +@define-color STRAWBERRY_900 #AC1800; +@define-color ORANGE_100 #FFDB91; +@define-color ORANGE_300 #FFCA40; +@define-color ORANGE_500 #FAA41A; +@define-color ORANGE_700 #DE8800; +@define-color ORANGE_900 #C26C00; +@define-color BANANA_100 #FFFFA8; +@define-color BANANA_300 #FFFA7D; +@define-color BANANA_500 #FFCE51; +@define-color BANANA_700 #D1A023; +@define-color BANANA_900 #A27100; +@define-color LIME_100 #A2F3BE; +@define-color LIME_300 #8ADBA6; +@define-color LIME_500 #73C48F; +@define-color LIME_700 #479863; +@define-color LIME_900 #1C6D38; +@define-color BLUEBERRY_100 #94A6FF; +@define-color BLUEBERRY_300 #6A7CE0; +@define-color BLUEBERRY_500 #3F51B5; +@define-color BLUEBERRY_700 #213397; +@define-color BLUEBERRY_900 #031579; +@define-color GRAPE_100 #D25DE6; +@define-color GRAPE_300 #B84ACB; +@define-color GRAPE_500 #9C27B0; +@define-color GRAPE_700 #830E97; +@define-color GRAPE_900 #6A007E; +@define-color COCOA_100 #9F9792; +@define-color COCOA_300 #7B736E; +@define-color COCOA_500 #574F4A; +@define-color COCOA_700 #463E39; +@define-color COCOA_900 #342C27; +@define-color SILVER_100 #EEE; +@define-color SILVER_300 #CCC; +@define-color SILVER_500 #AAA; +@define-color SILVER_700 #888; +@define-color SILVER_900 #666; +@define-color SLATE_100 #888; +@define-color SLATE_300 #666; +@define-color SLATE_500 #444; +@define-color SLATE_700 #222; +@define-color SLATE_900 #111; +@define-color BLACK_100 #474341; +@define-color BLACK_300 #403C3A; +@define-color BLACK_500 #393634; +@define-color BLACK_700 #33302F; +@define-color BLACK_900 #2B2928; +@define-color blue_1 #99c1f1; +@define-color blue_2 #62a0ea; +@define-color blue_3 #3584e4; +@define-color blue_4 #1c71d8; +@define-color blue_5 #1a5fb4; +@define-color green_1 #8ff0a4; +@define-color green_2 #57e389; +@define-color green_3 #33d17a; +@define-color green_4 #2ec27e; +@define-color green_5 #26a269; +@define-color yellow_1 #f9f06b; +@define-color yellow_2 #f8e45c; +@define-color yellow_3 #f6d32d; +@define-color yellow_4 #f5c211; +@define-color yellow_5 #e5a50a; +@define-color orange_1 #ffbe6f; +@define-color orange_2 #ffa348; +@define-color orange_3 #ff7800; +@define-color orange_4 #e66100; +@define-color orange_5 #c64600; +@define-color red_1 #f66151; +@define-color red_2 #ed333b; +@define-color red_3 #e01b24; +@define-color red_4 #c01c28; +@define-color red_5 #a51d2d; +@define-color purple_1 #dc8add; +@define-color purple_2 #c061cb; +@define-color purple_3 #9141ac; +@define-color purple_4 #813d9c; +@define-color purple_5 #613583; +@define-color brown_1 #cdab8f; +@define-color brown_2 #b5835a; +@define-color brown_3 #986a44; +@define-color brown_4 #865e3c; +@define-color brown_5 #63452c; +@define-color light_1 #ffffff; +@define-color light_2 #f6f5f4; +@define-color light_3 #deddda; +@define-color light_4 #c0bfbc; +@define-color light_5 #9a9996; +@define-color dark_1 #77767b; +@define-color dark_2 #5e5c64; +@define-color dark_3 #3d3846; +@define-color dark_4 #241f31; +@define-color dark_5 #000000; +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +@define-color accent_bg_color #5b9bf8; +@define-color accent_fg_color #FFFFFF; +@define-color accent_color #5b9bf8; +@define-color destructive_bg_color #F44336; +@define-color destructive_fg_color #FFFFFF; +@define-color destructive_color #F44336; +@define-color success_bg_color #66BB6A; +@define-color success_fg_color #FFFFFF; +@define-color success_color #66BB6A; +@define-color warning_bg_color #FBC02D; +@define-color warning_fg_color rgba(0, 0, 0, 0.87); +@define-color warning_color #FBC02D; +@define-color error_bg_color #F44336; +@define-color error_fg_color #FFFFFF; +@define-color error_color #F44336; +@define-color window_bg_color #22262c; +@define-color window_fg_color #FFFFFF; +@define-color view_bg_color #25292f; +@define-color view_fg_color #FFFFFF; +@define-color headerbar_bg_color #1b1e24; +@define-color headerbar_fg_color #FFFFFF; +@define-color headerbar_border_color rgba(255, 255, 255, 0.12); +@define-color headerbar_backdrop_color #22262c; +@define-color headerbar_shade_color rgba(255, 255, 255, 0.12); +@define-color card_bg_color #25292f; +@define-color card_fg_color #FFFFFF; +@define-color card_shade_color rgba(255, 255, 255, 0.12); +@define-color dialog_bg_color #2d3036; +@define-color dialog_fg_color #FFFFFF; +@define-color popover_bg_color #1a1f26; +@define-color popover_fg_color #FFFFFF; +@define-color shade_color rgba(255, 255, 255, 0.12); +@define-color scrollbar_outline_color rgba(255, 255, 255, 0.12); diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/gtk.css b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/gtk.css new file mode 100644 index 0000000..535cd8e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/gtk.css @@ -0,0 +1,7873 @@ +@keyframes ripple { + to { + background-size: 1000% 1000%; + } +} + +@keyframes ripple-on-slider { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes ripple-on-headerbar { + from { + background-image: radial-gradient(circle, #5b9bf8 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #5b9bf8 100%, transparent 100%); + } +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #22262c; + color: #FFFFFF; +} + +dnd { + color: #FFFFFF; +} + +.normal-icons { + -gtk-icon-size: 16px; +} + +.large-icons { + -gtk-icon-size: 32px; +} + +.aboutdialog .large-icons { + -gtk-icon-size: 128px; +} + +spinner:disabled, +arrow:disabled, +scrollbar:disabled, +check:disabled, +radio:disabled, +treeview.expander:disabled { + -gtk-icon-filter: opacity(0.5); +} + +iconview, .view { + background-color: #25292f; + color: #FFFFFF; +} + +iconview:disabled, .view:disabled { + color: rgba(255, 255, 255, 0.4); +} + +iconview:selected, .view:selected { + color: #FFFFFF; +} + +textview text { + background-color: #25292f; +} + +textview border { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +iconview:hover, iconview:selected { + border-radius: 3px; +} + +rubberband, .content-view rubberband, .content-view columnview.view > rubberband, +.content-view treeview.view > rubberband, .content-view .rubberband, columnview.view > rubberband, .content-view columnview.view > .rubberband, +treeview.view > rubberband, +.content-view treeview.view > .rubberband, gridview > rubberband, flowbox > rubberband { + border: 1px solid #5b9bf8; + background-color: rgba(91, 155, 248, 0.3); +} + +flowbox > flowboxchild { + padding: 4px; + border-radius: 6px; +} + +.content-view .tile:selected { + background-color: transparent; +} + +gridview > child { + padding: 3px; +} + +gridview > child:selected { + outline-color: alpha(currentColor, 0.06); +} + +gridview > child box { + border-spacing: 8px; + margin: 12px; +} + +coverflow cover { + color: #FFFFFF; + background-color: #25292f; + border: 1px solid black; +} + +label.separator { + color: rgba(255, 255, 255, 0.7); +} + +label:disabled { + opacity: 1; + color: rgba(255, 255, 255, 0.4); +} + +headerbar label:disabled, tab label:disabled, button label:disabled { + color: inherit; + opacity: 1; +} + +label.osd { + border-radius: 6px; + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; +} + +.dim-label, row.expander image.expander-row-arrow, row label.subtitle { + color: rgba(255, 255, 255, 0.7); + opacity: 1; +} + +.accent { + color: #5b9bf8; +} + +.success { + color: #66BB6A; +} + +.warning { + color: #FBC02D; +} + +.error { + color: #F44336; +} + +.large-title { + font-weight: 300; + font-size: 24pt; +} + +.title-1 { + font-weight: 800; + font-size: 20pt; +} + +.title-2 { + font-weight: 800; + font-size: 15pt; +} + +.title-3 { + font-weight: 700; + font-size: 15pt; +} + +.title-4 { + font-weight: 700; + font-size: 13pt; +} + +.heading { + font-weight: 700; + font-size: 11pt; +} + +.body { + font-weight: 400; + font-size: 11pt; +} + +.caption { + font-weight: 400; + font-size: 9pt; +} + +.caption-heading { + font-weight: 700; + font-size: 9pt; +} + +window.assistant .sidebar { + padding: 4px 0; +} + +window.assistant .sidebar label { + min-height: 36px; + padding: 0 12px; + color: rgba(255, 255, 255, 0.4); + font-weight: 500; +} + +window.assistant .sidebar label.highlight { + color: #FFFFFF; +} + +.osd .scale-popup > arrow, +.osd .scale-popup > contents, .osd popover.background > arrow, +.osd popover.background > contents, popover.background.touch-selection > arrow, +popover.background.touch-selection > contents, popover.background.magnifier > arrow, +popover.background.magnifier > contents, .osd { + color: #FFFFFF; + background-color: #25292f; + background-clip: padding-box; + border-radius: 12px; + border: none; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.osd { + padding: 6px; + margin: 6px; +} + +.osd.circular { + border-radius: 9999px; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + 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; +} + +/**************** + * Text Entries * + ****************/ +headerbar popover.background entry, entry { + min-height: 36px; + padding: 0 8px; + border-spacing: 6px; + border-radius: 6px; + caret-color: currentColor; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +headerbar popover.background entry:focus-within, entry:focus-within { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + outline: 2px solid #5b9bf8; + outline-offset: -2px; +} + +headerbar popover.background entry:drop(active), headerbar popover.background entry:drop(active):focus-within, headerbar popover.background entry:hover:not(:focus-within), entry:drop(active), entry:drop(active):focus-within, entry:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #FFFFFF; +} + +headerbar popover.background entry:disabled, entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + outline: none; +} + +headerbar popover.background entry.flat:focus-within, headerbar popover.background entry.flat:disabled, headerbar popover.background entry.flat:hover, headerbar popover.background entry.flat, entry.flat:focus-within, entry.flat:disabled, entry.flat:hover, entry.flat { + min-height: 0; + padding: 2px; + background-color: transparent; + box-shadow: none; + border-radius: 0; + outline: none; +} + +headerbar popover.background entry image, entry image { + color: rgba(255, 255, 255, 0.7); +} + +headerbar popover.background entry image:hover, headerbar popover.background entry image:active, entry image:hover, entry image:active { + color: #FFFFFF; +} + +headerbar popover.background entry image:disabled, entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar popover.background entry image.left, entry image.left { + margin: 0 6px 0 2px; +} + +headerbar popover.background entry image.right, entry image.right { + margin: 0 2px 0 6px; +} + +headerbar popover.background entry undershoot.left > undershoot.left, entry undershoot.left > undershoot.left { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 4px); +} + +headerbar popover.background entry undershoot.right > undershoot.right, entry undershoot.right > undershoot.right { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to left, rgba(255, 255, 255, 0.12), transparent 4px); +} + +headerbar popover.background entry.error, entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(244, 67, 54, 0.1); + color: rgba(244, 67, 54, 0.75); + outline: 0 solid transparent; + outline-offset: 4px; + outline: none; +} + +headerbar popover.background entry.error:focus-within, entry.error:focus-within { + background-color: rgba(244, 67, 54, 0.1); + color: #F44336; + outline: 2px solid #F44336; + outline-offset: -2px; + outline: none; +} + +headerbar popover.background entry.error:drop(active), headerbar popover.background entry.error:hover:not(:focus-within), entry.error:drop(active), entry.error:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #F44336; + outline: none; +} + +headerbar popover.background entry.error:disabled, entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(244, 67, 54, 0.1); + color: rgba(244, 67, 54, 0.35); + outline: none; + outline: none; +} + +headerbar popover.background entry.error > text > selection, entry.error > text > selection { + background-color: rgba(244, 67, 54, 0.25); + color: #F44336; +} + +headerbar popover.background entry.error image, entry.error image { + color: rgba(244, 67, 54, 0.75); +} + +headerbar popover.background entry.error image:hover, headerbar popover.background entry.error image:active, entry.error image:hover, entry.error image:active { + color: #F44336; +} + +headerbar popover.background entry.error image:disabled, entry.error image:disabled { + color: rgba(244, 67, 54, 0.35); +} + +headerbar popover.background entry.warning, entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(251, 192, 45, 0.1); + color: rgba(251, 192, 45, 0.75); + outline: 0 solid transparent; + outline-offset: 4px; + outline: none; +} + +headerbar popover.background entry.warning:focus-within, entry.warning:focus-within { + background-color: rgba(251, 192, 45, 0.1); + color: #FBC02D; + outline: 2px solid #FBC02D; + outline-offset: -2px; + outline: none; +} + +headerbar popover.background entry.warning:drop(active), headerbar popover.background entry.warning:hover:not(:focus-within), entry.warning:drop(active), entry.warning:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #FBC02D; + outline: none; +} + +headerbar popover.background entry.warning:disabled, entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(251, 192, 45, 0.1); + color: rgba(251, 192, 45, 0.35); + outline: none; + outline: none; +} + +headerbar popover.background entry.warning > text > selection, entry.warning > text > selection { + background-color: rgba(251, 192, 45, 0.25); + color: #FBC02D; +} + +headerbar popover.background entry.warning image, entry.warning image { + color: rgba(251, 192, 45, 0.75); +} + +headerbar popover.background entry.warning image:hover, headerbar popover.background entry.warning image:active, entry.warning image:hover, entry.warning image:active { + color: #FBC02D; +} + +headerbar popover.background entry.warning image:disabled, entry.warning image:disabled { + color: rgba(251, 192, 45, 0.35); +} + +headerbar popover.background entry.success, entry.success { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(102, 187, 106, 0.1); + color: rgba(102, 187, 106, 0.75); + outline: 0 solid transparent; + outline-offset: 4px; + outline: none; +} + +headerbar popover.background entry.success:focus-within, entry.success:focus-within { + background-color: rgba(102, 187, 106, 0.1); + color: #66BB6A; + outline: 2px solid #66BB6A; + outline-offset: -2px; + outline: none; +} + +headerbar popover.background entry.success:drop(active), headerbar popover.background entry.success:hover:not(:focus-within), entry.success:drop(active), entry.success:hover:not(:focus-within) { + background-color: alpha(currentColor, 0.08); + color: #66BB6A; + outline: none; +} + +headerbar popover.background entry.success:disabled, entry.success:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(102, 187, 106, 0.1); + color: rgba(102, 187, 106, 0.35); + outline: none; + outline: none; +} + +headerbar popover.background entry.success > text > selection, entry.success > text > selection { + background-color: rgba(102, 187, 106, 0.25); + color: #66BB6A; +} + +headerbar popover.background entry.success image, entry.success image { + color: rgba(102, 187, 106, 0.75); +} + +headerbar popover.background entry.success image:hover, headerbar popover.background entry.success image:active, entry.success image:hover, entry.success image:active { + color: #66BB6A; +} + +headerbar popover.background entry.success image:disabled, entry.success image:disabled { + color: rgba(102, 187, 106, 0.35); +} + +entry > progress, +entry progress > trough > progress { + margin: 0 -4px; + border-bottom: 2px solid #5b9bf8; + background-color: transparent; +} + +entry button.image-button { + min-height: 24px; + min-width: 24px; + padding: 0; +} + +treeview entry.flat, treeview entry { + background-color: #25292f; +} + +treeview entry.flat, treeview entry.flat:focus-within, treeview entry, treeview entry:focus-within { + border-image: none; + box-shadow: none; +} + +.entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.14); + color: #FFFFFF; +} + +.entry-tag:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +:dir(ltr) .entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +editablelabel > stack > text { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +/*********** + * Buttons * + ***********/ +@keyframes needs-attention { + from { + background-image: radial-gradient(farthest-side, #5b9bf8 0%, rgba(91, 155, 248, 0) 0%); + } + to { + background-image: radial-gradient(farthest-side, #5b9bf8 95%, rgba(91, 155, 248, 0)); + } +} + +infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, tabbar tabbox > tabboxchild > tab:selected button.flat, tabbar tabbox > tabboxchild > tab:selected button, notebook > header > tabs > tab:checked button.flat, notebook > header > tabs > tab:checked button.close-button, popover.background.touch-selection button, popover.background.magnifier button, headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +infobar.warning > revealer > box button:focus, tabbar tabbox > tabboxchild > tab:selected button:focus, notebook > header > tabs > tab:checked button.flat:focus, notebook > header > tabs > tab:checked button.close-button:focus, popover.background.touch-selection button:focus, popover.background.magnifier button:focus, headerbar.selection-mode button:focus:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:hover, tabbar tabbox > tabboxchild > tab:selected button:hover, notebook > header > tabs > tab:checked button.flat:hover, notebook > header > tabs > tab:checked button.close-button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, headerbar.selection-mode button:hover:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:active, tabbar tabbox > tabboxchild > tab:selected button:active, notebook > header > tabs > tab:checked button.flat:active, notebook > header > tabs > tab:checked button.close-button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, headerbar.selection-mode button:active:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:checked, tabbar tabbox > tabboxchild > tab:selected button:checked, notebook > header > tabs > tab:checked button.flat:checked, notebook > header > tabs > tab:checked button.close-button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, headerbar.selection-mode button:checked:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +infobar.warning > revealer > box button:disabled, tabbar tabbox > tabboxchild > tab:selected button:disabled, notebook > header > tabs > tab:checked button.flat:disabled, notebook > header > tabs > tab:checked button.close-button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, headerbar.selection-mode button:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); +} + +infobar.warning > revealer > box button:checked:disabled, tabbar tabbox > tabboxchild > tab:selected button:checked:disabled, notebook > header > tabs > tab:checked button.flat:checked:disabled, notebook > header > tabs > tab:checked button.close-button:checked:disabled, popover.background.touch-selection button:checked:disabled, popover.background.magnifier button:checked:disabled, headerbar.selection-mode button:checked:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +headerbar popover.background button:not(.suggested-action):not(.destructive-action), button { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + outline: 0 solid transparent; + outline-offset: 2px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; +} + +headerbar popover.background button:focus:not(.suggested-action):not(.destructive-action), button:focus { + outline: 2px solid rgba(91, 155, 248, 0.35); + outline-offset: 0; +} + +headerbar popover.background button:hover:not(.suggested-action):not(.destructive-action), button:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; + -gtk-icon-filter: brightness(1.2); +} + +headerbar popover.background button.keyboard-activating:not(.suggested-action):not(.destructive-action), button.keyboard-activating, headerbar popover.background button:active:not(.suggested-action):not(.destructive-action), button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +headerbar popover.background button:disabled:not(.suggested-action):not(.destructive-action), button:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +headerbar popover.background button:checked:not(.suggested-action):not(.destructive-action), button:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +headerbar popover.background button:checked:disabled:not(.suggested-action):not(.destructive-action), button:checked:disabled { + background-image: none; + background-color: rgba(91, 155, 248, 0.5); + color: rgba(255, 255, 255, 0.4); +} + +placessidebar row button.sidebar-button, calendar > header > button, scrollbar button, notebook > header > tabs > arrow, popover.menu modelbutton, popover.menu box.circular-buttons button.circular.image-button.model, popover.menu box.inline-buttons button.image-button.model, spinbutton > button, splitbutton.flat > button, +splitbutton.flat > menubutton > button { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: 0 solid transparent; + outline-offset: 2px; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); +} + +placessidebar row button.sidebar-button:focus:not(:hover):not(:active), calendar > header > button:focus:not(:hover):not(:active), scrollbar button:focus:not(:hover):not(:active), notebook > header > tabs > arrow:focus:not(:hover):not(:active), popover.menu modelbutton:focus:not(:hover):not(:active), popover.menu box.circular-buttons button.circular.image-button.model:focus:not(:hover):not(:active), popover.menu box.inline-buttons button.image-button.model:focus:not(:hover):not(:active), spinbutton > button:focus:not(:hover):not(:active), splitbutton.flat > button:focus:not(:hover):not(:active), +splitbutton.flat > menubutton > button:focus:not(:hover):not(:active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 225ms cubic-bezier(0.4, 0, 1, 1); + box-shadow: none; + color: #FFFFFF; + outline: 2px solid alpha(currentColor, 0.08); + outline-offset: -2px; +} + +placessidebar row button.sidebar-button:hover, calendar > header > button:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, popover.menu modelbutton:hover, popover.menu box.circular-buttons button.circular.image-button.model:hover, popover.menu box.inline-buttons button.image-button.model:hover, spinbutton > button:hover, splitbutton.flat > button:hover, +splitbutton.flat > menubutton > button:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +placessidebar row button.sidebar-button:active, calendar > header > button:active, scrollbar button:active, notebook > header > tabs > arrow:active, popover.menu modelbutton:active, popover.menu box.circular-buttons button.circular.image-button.model:active, popover.menu box.inline-buttons button.image-button.model:active, spinbutton > button:active, splitbutton.flat > button:active, +splitbutton.flat > menubutton > button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +placessidebar row button.sidebar-button:disabled, calendar > header > button:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, popover.menu modelbutton:disabled, popover.menu box.circular-buttons button.circular.image-button.model:disabled, popover.menu box.inline-buttons button.image-button.model:disabled, spinbutton > button:disabled, splitbutton.flat > button:disabled, +splitbutton.flat > menubutton > button:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +panelstatusbar > menubutton > button, +panelstatusbar > paneltogglebutton button, filechooser #pathbarbox > stack > box > button, window.messagedialog .response-area > box > button, window.dialog.message .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), .toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child), +combobox > .linked:not(.vertical) > button:not(:only-child), splitbutton.suggested-action > button, splitbutton.suggested-action > menubutton > button, splitbutton.destructive-action > button, splitbutton.destructive-action > menubutton > button, splitbutton.opaque > button, splitbutton.opaque > menubutton > button, menubutton.suggested-action > button, menubutton.destructive-action > button, menubutton.opaque > button, menubutton.flat > button, button.flat { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: 0 solid transparent; + outline-offset: 2px; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); +} + +panelstatusbar > menubutton > button:focus:not(:hover):not(:active), +panelstatusbar > paneltogglebutton button:focus:not(:hover):not(:active), filechooser #pathbarbox > stack > box > button:focus:not(:hover):not(:active), window.messagedialog .response-area > box > button:focus:not(:hover):not(:active), window.dialog.message .dialog-action-area > button:focus:not(:hover):not(:active), .app-notification button:focus:not(:hover):not(:active), headerbar popover.background button.flat:focus:not(:hover):not(:active):not(.suggested-action):not(.destructive-action), .toolbar button:focus:not(:hover):not(:active), dropdown > .linked:not(.vertical) > button:focus:not(:hover):not(:active):not(:only-child), +combobox > .linked:not(.vertical) > button:focus:not(:hover):not(:active):not(:only-child), splitbutton.suggested-action > button:focus:not(:hover):not(:active), splitbutton.suggested-action > menubutton > button:focus:not(:hover):not(:active), splitbutton.destructive-action > button:focus:not(:hover):not(:active), splitbutton.destructive-action > menubutton > button:focus:not(:hover):not(:active), splitbutton.opaque > button:focus:not(:hover):not(:active), splitbutton.opaque > menubutton > button:focus:not(:hover):not(:active), menubutton.suggested-action > button:focus:not(:hover):not(:active), menubutton.destructive-action > button:focus:not(:hover):not(:active), menubutton.opaque > button:focus:not(:hover):not(:active), menubutton.flat > button:focus:not(:hover):not(:active), button.flat:focus:not(:hover):not(:active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 225ms cubic-bezier(0.4, 0, 1, 1); + box-shadow: none; + color: #FFFFFF; + outline: 2px solid alpha(currentColor, 0.08); + outline-offset: -2px; +} + +panelstatusbar > menubutton > button:hover, +panelstatusbar > paneltogglebutton button:hover, filechooser #pathbarbox > stack > box > button:hover, window.messagedialog .response-area > box > button:hover, window.dialog.message .dialog-action-area > button:hover, .app-notification button:hover, headerbar popover.background button.flat:hover:not(.suggested-action):not(.destructive-action), .toolbar button:hover, dropdown > .linked:not(.vertical) > button:hover:not(:only-child), +combobox > .linked:not(.vertical) > button:hover:not(:only-child), splitbutton.suggested-action > button:hover, splitbutton.suggested-action > menubutton > button:hover, splitbutton.destructive-action > button:hover, splitbutton.destructive-action > menubutton > button:hover, splitbutton.opaque > button:hover, splitbutton.opaque > menubutton > button:hover, menubutton.suggested-action > button:hover, menubutton.destructive-action > button:hover, menubutton.opaque > button:hover, menubutton.flat > button:hover, button.flat:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +panelstatusbar > menubutton > button:active, +panelstatusbar > paneltogglebutton button:active, filechooser #pathbarbox > stack > box > button:active, window.messagedialog .response-area > box > button:active, window.dialog.message .dialog-action-area > button:active, .app-notification button:active, headerbar popover.background button.flat:active:not(.suggested-action):not(.destructive-action), .toolbar button:active, dropdown > .linked:not(.vertical) > button:active:not(:only-child), +combobox > .linked:not(.vertical) > button:active:not(:only-child), splitbutton.suggested-action > button:active, splitbutton.suggested-action > menubutton > button:active, splitbutton.destructive-action > button:active, splitbutton.destructive-action > menubutton > button:active, splitbutton.opaque > button:active, splitbutton.opaque > menubutton > button:active, menubutton.suggested-action > button:active, menubutton.destructive-action > button:active, menubutton.opaque > button:active, menubutton.flat > button:active, button.flat:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +panelstatusbar > menubutton > button:disabled, +panelstatusbar > paneltogglebutton button:disabled, filechooser #pathbarbox > stack > box > button:disabled, window.messagedialog .response-area > box > button:disabled, window.dialog.message .dialog-action-area > button:disabled, .app-notification button:disabled, headerbar popover.background button.flat:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:disabled, dropdown > .linked:not(.vertical) > button:disabled:not(:only-child), +combobox > .linked:not(.vertical) > button:disabled:not(:only-child), splitbutton.suggested-action > button:disabled, splitbutton.suggested-action > menubutton > button:disabled, splitbutton.destructive-action > button:disabled, splitbutton.destructive-action > menubutton > button:disabled, splitbutton.opaque > button:disabled, splitbutton.opaque > menubutton > button:disabled, menubutton.suggested-action > button:disabled, menubutton.destructive-action > button:disabled, menubutton.opaque > button:disabled, menubutton.flat > button:disabled, button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +panelstatusbar > menubutton > button:checked, +panelstatusbar > paneltogglebutton button:checked, filechooser #pathbarbox > stack > box > button:checked, window.messagedialog .response-area > box > button:checked, window.dialog.message .dialog-action-area > button:checked, .app-notification button:checked, headerbar popover.background button.flat:checked:not(.suggested-action):not(.destructive-action), .toolbar button:checked, dropdown > .linked:not(.vertical) > button:checked:not(:only-child), +combobox > .linked:not(.vertical) > button:checked:not(:only-child), splitbutton.suggested-action > button:checked, splitbutton.suggested-action > menubutton > button:checked, splitbutton.destructive-action > button:checked, splitbutton.destructive-action > menubutton > button:checked, splitbutton.opaque > button:checked, splitbutton.opaque > menubutton > button:checked, menubutton.suggested-action > button:checked, menubutton.destructive-action > button:checked, menubutton.opaque > button:checked, menubutton.flat > button:checked, button.flat:checked { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +panelstatusbar > menubutton > button:checked:disabled, +panelstatusbar > paneltogglebutton button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, window.messagedialog .response-area > box > button:checked:disabled, window.dialog.message .dialog-action-area > button:checked:disabled, .app-notification button:checked:disabled, headerbar popover.background button.flat:checked:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:checked:disabled, dropdown > .linked:not(.vertical) > button:checked:disabled:not(:only-child), +combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), splitbutton.suggested-action > button:checked:disabled, splitbutton.suggested-action > menubutton > button:checked:disabled, splitbutton.destructive-action > button:checked:disabled, splitbutton.destructive-action > menubutton > button:checked:disabled, splitbutton.opaque > button:checked:disabled, splitbutton.opaque > menubutton > button:checked:disabled, menubutton.suggested-action > button:checked:disabled, menubutton.destructive-action > button:checked:disabled, menubutton.opaque > button:checked:disabled, menubutton.flat > button:checked:disabled, button.flat:checked:disabled { + background-color: alpha(currentColor, 0.1); + color: rgba(255, 255, 255, 0.4); +} + +button.opaque { + box-shadow: none; +} + +.osd button.opaque:focus:focus-visible { + outline-color: rgba(255, 255, 255, 0.15); +} + +button.opaque:hover { + background-image: image(alpha(currentColor, 0.1)); +} + +button.keyboard-activating.opaque, button.opaque:active { + background-image: image(rgba(0, 0, 0, 0.2)); +} + +button.opaque:checked { + background-image: image(rgba(0, 0, 0, 0.15)); +} + +button.opaque:checked:hover { + background-image: image(rgba(0, 0, 0, 0.05)); +} + +button.opaque.keyboard-activating:checked, button.opaque:checked:active { + background-image: image(rgba(0, 0, 0, 0.3)); +} + +.nautilus-window .floating-bar button, placessidebar row button.sidebar-button, notebook > header > tabs > tab button.flat, popover.menu box.circular-buttons button.circular.image-button.model, spinbutton > button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +button { + min-height: 24px; + min-width: 16px; + padding: 6px 10px; + border-radius: 6px; + font-weight: 500; +} + +button:drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +button separator { + margin: 4px 1px; +} + +button.opaque { + background-color: #4e5156; + color: #FFFFFF; +} + +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} + +button.image-button { + min-width: 24px; + padding: 6px; +} + +button.text-button.image-button, button.image-text-button { + min-width: 24px; + padding: 6px; + border-radius: 6px; +} + +button.text-button.image-button > box, +button.text-button.image-button > box > box, button.image-text-button > box, +button.image-text-button > box > box { + border-spacing: 4px; +} + +button.text-button.image-button > box > label, +button.text-button.image-button > box > box > label, button.image-text-button > box > label, +button.image-text-button > box > box > label { + padding-left: 2px; + padding-right: 2px; +} + +button.text-button.image-button label:first-child, button.image-text-button label:first-child { + margin-left: 10px; +} + +button.text-button.image-button label:last-child, button.image-text-button label:last-child { + margin-right: 10px; +} + +button.text-button.image-button.flat label:first-child, button.image-text-button.flat label:first-child { + margin-left: 6px; +} + +button.text-button.image-button.flat label:last-child, button.image-text-button.flat label:last-child { + margin-right: 6px; +} + +button.text-button.image-button image:not(:only-child), button.image-text-button image:not(:only-child) { + margin: 0 4px; +} + +button.arrow-button { + padding-left: 9px; + padding-right: 9px; +} + +button.arrow-button > box { + border-spacing: 4px; +} + +button.arrow-button.text-button { + padding-left: 16px; + padding-right: 16px; +} + +button.arrow-button.text-button > box { + border-spacing: 6px; +} + +menubutton.pill > button, button.pill { + padding: 9px 30px; + border-radius: 9999px; +} + +button.card { + background-color: rgba(255, 255, 255, 0.04); + background-clip: padding-box; + font-weight: inherit; + background-clip: border-box; +} + +button.card:hover { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +button.card.keyboard-activating, button.card:active { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +button.card:checked { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + border-color: #5b9bf8; +} + +button.card:checked:hover { + background-image: none; + color: #FFFFFF; + background-color: transparent; +} + +button.card:checked:disabled { + background-image: none; + background-color: rgba(91, 155, 248, 0.5); + color: rgba(255, 255, 255, 0.4); +} + +button.card.keyboard-activating:checked, button.card:checked:active { + background-image: none; +} + +button.card.has-open-popup:checked { + background-image: none; +} + +button.card:drop(active) { + color: #FF7043; + box-shadow: inset 0 0 0 1px #FF7043; +} + +.linked:not(.vertical) > button:focus, .linked.vertical > button:focus { + box-shadow: none; + outline: none; +} + +.linked:not(.vertical) > button.flat:not(:only-child), .linked.vertical > button.flat:not(:only-child) { + background-color: alpha(currentColor, 0.05); +} + +.linked:not(.vertical) > button.flat:focus, .linked.vertical > button.flat:focus { + box-shadow: none; + outline: none; +} + +.linked:not(.vertical) > menubutton > button { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +button.osd { + min-width: 24px; + min-width: 24px; + padding: 6px; + box-shadow: none; + background-color: rgba(0, 0, 0, 0.35); + color: white; +} + +button.osd > image { + padding: 0; +} + +button.osd.remove-button { + padding: 0; +} + +button.osd:focus { + outline-color: transparent; +} + +button.osd:hover { + background-color: rgba(0, 0, 0, 0.45); + color: white; +} + +button.osd:active { + background-color: rgba(0, 0, 0, 0.65); + color: white; +} + +button.osd:disabled { + background-color: rgba(0, 0, 0, 0.15); + color: rgba(255, 255, 255, 0.35); +} + +button.suggested-action { + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: none; +} + +button.suggested-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.suggested-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(91, 155, 248, 0.2), 0 4px 3px 0 rgba(91, 155, 248, 0.14), 0 1px 6px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:checked { + background-color: #8cb9fa; +} + +button.suggested-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(91, 155, 248, 0.3), 0 2px 3px -1px rgba(91, 155, 248, 0.24), 0 2px 5px 0 rgba(91, 155, 248, 0.12); +} + +button.suggested-action:focus { + box-shadow: 0 0 0 2px rgba(91, 155, 248, 0.35); +} + +button.suggested-action.flat { + background-color: transparent; + color: #5b9bf8; +} + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.suggested-action.flat:checked { + background-color: rgba(91, 155, 248, 0.3); +} + +button.destructive-action { + background-color: #F44336; + color: #FFFFFF; + box-shadow: none; +} + +button.destructive-action:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +button.destructive-action:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(244, 67, 54, 0.2), 0 4px 3px 0 rgba(244, 67, 54, 0.14), 0 1px 6px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:checked { + background-color: #f77b72; +} + +button.destructive-action:checked:hover { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(244, 67, 54, 0.3), 0 2px 3px -1px rgba(244, 67, 54, 0.24), 0 2px 5px 0 rgba(244, 67, 54, 0.12); +} + +button.destructive-action:focus { + box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.35); +} + +button.destructive-action.flat { + background-color: transparent; + color: #F44336; +} + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +button.destructive-action.flat:checked { + background-color: rgba(244, 67, 54, 0.3); +} + +stackswitcher > button > label { + margin: 0 -6px; + padding: 0 6px; +} + +stackswitcher > button > image { + margin: -3px -6px; + padding: 3px 6px; +} + +stackswitcher > button.needs-attention:checked > label, +stackswitcher > button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +button.font > box, button.file > box { + border-spacing: 6px; +} + +button.font > box > box > label, button.file > box > box > label { + font-weight: bold; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), filechooser #pathbarbox > stack > box > button, menubutton.circular > button, button.close, button.circular { + border-radius: 9999px; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) label, filechooser #pathbarbox > stack > box > button label, menubutton.circular > button label, button.close label, button.circular label { + padding: 0; +} + +.linked > menubutton > button { + margin-left: 1px; +} + +menubutton stack > box { + border-spacing: 6px; +} + +menubutton.osd { + background: none; + color: inherit; +} + +menubutton.suggested-action { + background-color: #5b9bf8; + color: white; +} + +menubutton.destructive-action { + background-color: #F44336; + color: white; +} + +menubutton.opaque { + background-color: #4e5156; + color: #FFFFFF; +} + +menubutton.suggested-action, menubutton.destructive-action, menubutton.opaque { + border-radius: 6px; +} + +menubutton.suggested-action.circular, menubutton.suggested-action.pill, menubutton.destructive-action.circular, menubutton.destructive-action.pill, menubutton.opaque.circular, menubutton.opaque.pill { + border-radius: 9999px; +} + +menubutton.suggested-action > button, menubutton.suggested-action > button:checked, menubutton.destructive-action > button, menubutton.destructive-action > button:checked, menubutton.opaque > button, menubutton.opaque > button:checked { + background-color: transparent; + color: inherit; +} + +menubutton.image-button > button { + min-width: 24px; + padding-left: 6px; + padding-right: 6px; +} + +menubutton arrow { + min-height: 16px; + min-width: 16px; +} + +menubutton arrow.none { + -gtk-icon-source: -gtk-icontheme("open-menu-symbolic"); +} + +menubutton arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menubutton arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menubutton arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +menubutton arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +splitbutton { + border-radius: 6px; +} + +splitbutton, splitbutton > separator { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + transition-property: background; +} + +splitbutton > separator { + margin-top: 0; + margin-bottom: 0; + background-color: transparent; + background: none; + min-width: 0; +} + +splitbutton > menubutton > button { + padding: 6px 10px; +} + +splitbutton.image-button > button { + min-width: 24px; + padding-left: 6px; + padding-right: 6px; +} + +splitbutton.text-button.image-button > button, splitbutton.image-text-button > button { + padding-left: 9px; + padding-right: 9px; +} + +splitbutton.text-button.image-button > button > box, splitbutton.image-text-button > button > box { + border-spacing: 6px; +} + +splitbutton > button:dir(ltr), +splitbutton > menubutton > button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + margin-right: 0; +} + +splitbutton > button:dir(rtl), +splitbutton > menubutton > button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin-left: 1px; +} + +splitbutton.flat > separator { + background-color: transparent; + background: none; +} + +splitbutton.flat:hover, splitbutton.flat:active, splitbutton.flat:checked { + background-color: alpha(currentColor, 0.05); +} + +splitbutton.flat:hover > separator, splitbutton.flat:active > separator, splitbutton.flat:checked > separator { + background-color: transparent; + background: none; +} + +splitbutton.flat:focus-within:focus-visible > separator { + background-color: transparent; + background: none; +} + +splitbutton.flat > button, +splitbutton.flat > menubutton > button { + border-radius: 6px; +} + +splitbutton.suggested-action { + background-color: #5b9bf8; + color: white; +} + +splitbutton.destructive-action { + background-color: #F44336; + color: white; +} + +splitbutton.opaque { + background-color: #4e5156; + color: #FFFFFF; +} + +splitbutton.suggested-action > button, splitbutton.suggested-action > button:checked, splitbutton.suggested-action > menubutton > button, splitbutton.suggested-action > menubutton > button:checked, splitbutton.destructive-action > button, splitbutton.destructive-action > button:checked, splitbutton.destructive-action > menubutton > button, splitbutton.destructive-action > menubutton > button:checked, splitbutton.opaque > button, splitbutton.opaque > button:checked, splitbutton.opaque > menubutton > button, splitbutton.opaque > menubutton > button:checked { + color: inherit; + background-color: transparent; +} + +splitbutton.suggested-action > menubutton > button:dir(ltr), splitbutton.destructive-action > menubutton > button:dir(ltr), splitbutton.opaque > menubutton > button:dir(ltr) { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); +} + +splitbutton.suggested-action > menubutton > button:dir(rtl), splitbutton.destructive-action > menubutton > button:dir(rtl), splitbutton.opaque > menubutton > button:dir(rtl) { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); +} + +splitbutton > menubutton > button > arrow.none { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +buttoncontent { + border-spacing: 6px; +} + +buttoncontent > label { + font-weight: bold; +} + +buttoncontent > label:dir(ltr) { + padding-right: 2px; +} + +buttoncontent > label:dir(rtl) { + padding-left: 2px; +} + +.arrow-button > box > buttoncontent > label:dir(ltr), splitbutton > button > buttoncontent > label:dir(ltr) { + padding-right: 0; +} + +.arrow-button > box > buttoncontent > label:dir(rtl), splitbutton > button > buttoncontent > label:dir(rtl) { + padding-left: 0; +} + +stacksidebar row.needs-attention > label, stackswitcher > button.needs-attention > label, +stackswitcher > button.needs-attention > image { + animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +stacksidebar row.needs-attention > label:dir(rtl), stackswitcher > button.needs-attention > label:dir(rtl), +stackswitcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px; +} + +viewswitcher.wide button.toggle, .linked:not(.vertical) > entry, .linked:not(.vertical) > button, .linked:not(.vertical) > button.image-button { + border-radius: 0; +} + +viewswitcher.wide button.toggle:not(:first-child), .linked:not(.vertical) > entry:not(:first-child), .linked:not(.vertical) > button:not(:first-child) { + margin-left: 1px; +} + +viewswitcher.wide button.toggle:first-child, .linked:not(.vertical) > entry:first-child, .linked:not(.vertical) > button:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +viewswitcher.wide button.toggle:last-child, .linked:not(.vertical) > entry:last-child, .linked:not(.vertical) > button:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +viewswitcher.wide button.toggle:only-child, .linked:not(.vertical) > entry:only-child, .linked:not(.vertical) > button:only-child { + border-radius: 6px; +} + +.linked.vertical > entry, .linked.vertical > button, .linked.vertical > button.image-button { + border-radius: 0; +} + +.linked.vertical > entry:not(:first-child), .linked.vertical > button:not(:first-child) { + margin-top: 1px; +} + +.linked.vertical > entry:first-child, .linked.vertical > button:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +.linked.vertical > entry:last-child, .linked.vertical > button:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +.linked.vertical > entry:only-child, .linked.vertical > button:only-child { + border-radius: 6px; +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 6px; +} + + +list > row button.image-button:not(.flat) { + background-color: transparent; + box-shadow: none; + border: none; +} + + +list > row button.image-button:not(.flat):hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + + +list > row button.image-button:not(.flat):active, +list > row button.image-button:not(.flat):checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + + +list > row button.image-button.suggested-action:not(.flat) { + background-color: #5b9bf8; + color: #FFFFFF; +} + + +list > row button.image-button.destructive-action:not(.flat) { + background-color: #F44336; + color: #FFFFFF; +} + +/********* + * Links * + *********/ +link { + color: #3c84f7; +} + +link:visited { + color: #BA68C8; +} + +button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { + color: #3c84f7; +} + +button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { + color: #BA68C8; +} + +button.link > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton { + border-radius: 6px; + padding: 0; + border-spacing: 0; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +spinbutton:focus-within { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + outline: 2px solid #5b9bf8; + outline-offset: -2px; +} + +spinbutton:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + outline: none; +} + +spinbutton > text { + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; + margin: 0; +} + +spinbutton > button { + border: none; +} + +spinbutton > button:focus:not(:hover):not(:active):not(:disabled) { + box-shadow: none; +} + +spinbutton:not(.vertical) > text { + min-width: 32px; + padding-left: 12px; +} + +spinbutton:not(.vertical) > button { + padding: 0; + margin: 6px; +} + +spinbutton:not(.vertical) > button.up:dir(ltr), spinbutton:not(.vertical) > button.down:dir(rtl) { + margin-left: 3px; +} + +spinbutton:not(.vertical) > button.up:dir(rtl), spinbutton:not(.vertical) > button.down:dir(ltr) { + margin-right: 3px; +} + +cell.activatable spinbutton:not(.vertical) { + margin: 3px 0; +} + +cell.activatable spinbutton:not(.vertical) > button { + margin: 0; + padding: 0; + min-height: 24px; + border-radius: 0; +} + +cell.activatable spinbutton:not(.vertical) > button:last-child { + border-radius: 0 6px 6px 0; +} + +cell.activatable spinbutton:not(.vertical) > button.up:dir(ltr), cell.activatable spinbutton:not(.vertical) > button.down:dir(rtl) { + margin-left: 0; +} + +cell.activatable spinbutton:not(.vertical) > button.up:dir(rtl), cell.activatable spinbutton:not(.vertical) > button.down:dir(ltr) { + margin-right: 0; +} + +spinbutton.vertical > text { + min-height: 36px; + min-width: 42px; + padding: 0; +} + +spinbutton.vertical > button { + padding: 0; + margin: 6px 9px; +} + +/************** + * ComboBoxes * + **************/ +dropdown > button > box { + border-spacing: 6px; +} + +dropdown arrow, +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +dropdown > popover.menu > contents modelbutton, +combobox > popover.menu > contents modelbutton { + padding-left: 9px; + padding-right: 9px; +} + +dropdown button.combo cellview:dir(ltr), +combobox button.combo cellview:dir(ltr) { + margin-left: -2px; +} + +dropdown button.combo cellview:dir(rtl), +combobox button.combo cellview:dir(rtl) { + margin-right: -2px; +} + +dropdown popover, +combobox popover { + margin-top: 4px; + padding: 0; +} + +dropdown popover listview, +combobox popover listview { + margin: 0; +} + +dropdown popover listview > row, +combobox popover listview > row { + padding: 6px; +} + +dropdown popover listview > row:selected, +combobox popover listview > row:selected { + color: #FFFFFF; + background-color: alpha(currentColor, 0.06); +} + +dropdown popover .dropdown-searchbar, +combobox popover .dropdown-searchbar { + padding: 6px; +} + +dropdown.linked button:nth-child(2):dir(ltr), +combobox.linked button:nth-child(2):dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +dropdown.linked button:nth-child(2):dir(rtl), +combobox.linked button:nth-child(2):dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +dropdown > .linked:not(.vertical) > entry:not(:only-child), +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px; +} + +dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child, +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -36px; + padding-right: 36px; +} + +dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child, +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -36px; + padding-left: 36px; +} + +dropdown > .linked:not(.vertical) > button:not(:only-child), +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 6px; + padding: 4px; + border-radius: 6px; +} + +.linked:not(.vertical) > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > combobox:not(:last-child) > box > button.combo { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > combobox:not(:last-child) > box > button.combo { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +button.combo:only-child { + border-radius: 6px; + font-weight: normal; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + outline: 0 solid transparent; + outline-offset: 4px; +} + +button.combo:only-child:focus { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 225ms cubic-bezier(0.4, 0, 1, 1); + box-shadow: none; + color: #FFFFFF; + outline: 2px solid alpha(currentColor, 0.08); + outline-offset: -2px; +} + +button.combo:only-child:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +button.combo:only-child:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; +} + +button.combo:only-child:checked { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +button.combo:only-child:disabled { + box-shadow: none; + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +/************ + * Toolbars * + ************/ +.toolbar { + padding: 6px; + background-color: #22262c; + border-spacing: 6px; +} + +.osd .toolbar { + background-color: transparent; +} + +.app-notification, .toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 12px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; + color: #FFFFFF; +} + +.app-notification:backdrop, .toolbar.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +.left.app-notification, .right.app-notification, .top.app-notification, .bottom.app-notification, .toolbar.osd.left, .toolbar.osd.right, .toolbar.osd.top, .toolbar.osd.bottom { + border-radius: 0; +} + +.bottom.app-notification, .toolbar.osd.bottom { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4)); +} + +.toolbar.horizontal > separator { + margin: 2px; +} + +.toolbar.vertical > separator { + margin: 2px; +} + +.toolbar entry, +.toolbar spinbutton, +.toolbar splitbutton, +.toolbar separator:not(.sidebar), +.toolbar button, +.toolbar menubutton, +.toolbar scalebutton { + margin-top: 0; + margin-bottom: 0; +} + +.toolbar menubutton > button, +.toolbar splitbutton > button, +.toolbar splitbutton > menubutton, +.toolbar scalebutton > button { + margin-top: 0; + margin-bottom: 0; +} + +.toolbar switch { + margin-top: 4px; + margin-bottom: 4px; +} + +.toolbar spinbutton entry, +.toolbar spinbutton button { + margin: 0; +} + +.toolbar popover.menu separator:not(.sidebar) { + margin-top: 6px; + margin-bottom: 6px; +} + +searchbar > revealer > box { + padding: 6px; + border-spacing: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #22262c; + background-clip: border-box; + box-shadow: none; +} + +searchbar > revealer > box entry, searchbar > revealer > box button, searchbar > revealer > box menubutton { + margin: 0; +} + +/*************** + * Header bars * + ***************/ +headerbar button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar button:hover:not(.suggested-action):not(.destructive-action) { + color: #FFFFFF; +} + +headerbar button:hover:not(.suggested-action):not(.destructive-action) { + background-color: alpha(currentColor, 0.1); + box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.1); +} + +headerbar button:active:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +headerbar button:checked:not(.suggested-action):not(.destructive-action) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +headerbar button:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); + background-color: alpha(currentColor, 0.05); +} + +headerbar button:backdrop:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.3); +} + +headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.4); +} + +headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.12); +} + +headerbar entry { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; +} + +headerbar entry, headerbar entry:hover, headerbar entry:focus-within { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +headerbar entry:disabled { + background-color: alpha(currentColor, 0.05); + color: rgba(255, 255, 255, 0.4); +} + +headerbar entry image { + color: rgba(255, 255, 255, 0.7); +} + +headerbar entry image:hover, headerbar entry image:active { + color: #FFFFFF; +} + +headerbar entry image:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #1b1e24; + color: #FFFFFF; + min-height: 48px; + padding: 0; + margin: 0; + border-radius: 12px 12px 0 0; +} + +headerbar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +headerbar:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +headerbar:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +headerbar.flat, headerbar.flat:backdrop { + background: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); + transition: none; +} + +headerbar .title { + padding: 0 12px; + font-weight: bold; +} + +headerbar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +headerbar .subtitle, +headerbar .dim-label, +headerbar row.expander image.expander-row-arrow, +row.expander headerbar image.expander-row-arrow, +headerbar row label.subtitle, +row headerbar label.subtitle { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +headerbar .subtitle:backdrop, +headerbar .dim-label:backdrop, +headerbar row.expander image.expander-row-arrow:backdrop, +row.expander headerbar image.expander-row-arrow:backdrop, +headerbar row label.subtitle:backdrop, +row headerbar label.subtitle:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +headerbar .titlebar { + background-color: transparent; + box-shadow: none; +} + +headerbar headerbar + separator { + background-color: rgba(255, 255, 255, 0.12); +} + +headerbar > windowhandle > box { + padding: 0 6px; +} + +headerbar > windowhandle > box, +headerbar > windowhandle > box > box.start, +headerbar > windowhandle > box > box.end { + border-spacing: 6px; +} + +headerbar entry, +headerbar spinbutton, +headerbar button, +headerbar menubutton, +headerbar stackswitcher, +headerbar separator:not(.sidebar) { + margin-top: 6px; + margin-bottom: 6px; +} + +headerbar menubutton > button, +headerbar spinbutton > button, +headerbar splitbutton > button, +headerbar splitbutton > menubutton, +headerbar .linked > menubutton, +headerbar entry > menubutton { + margin-top: 0; + margin-bottom: 0; +} + +headerbar button.suggested-action:disabled, +headerbar button.destructive-action:disabled { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); + opacity: 1; +} + +headerbar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px; +} + +headerbar .entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +headerbar stackswitcher { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +headerbar popover.background button:not(.suggested-action):not(.destructive-action), headerbar popover.background button:not(.suggested-action):not(.destructive-action):hover { + box-shadow: none; +} + +headerbar popover.background button.suggested-action:disabled, +headerbar popover.background button.destructive-action:disabled { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.4); +} + +headerbar separator:not(.sidebar) { + background-color: rgba(255, 255, 255, 0.12); +} + +headerbar switch { + margin-top: 12px; + margin-bottom: 12px; +} + +headerbar.selection-mode { + transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #5b9bf8; + color: #FFFFFF; +} + +headerbar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +headerbar.selection-mode .subtitle:link { + color: #FFFFFF; +} + +headerbar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +headerbar.default-decoration { + min-height: 36px; + padding: 0; + background-image: image(#1b1e24); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +headerbar.default-decoration:backdrop { + background-image: image(#22262c); +} + +headerbar.default-decoration windowcontrols button, +headerbar.default-decoration windowcontrols menubutton { + min-width: 16px; + min-height: 16px; + margin: 0; + padding: 0; +} + +headerbar.default-decoration windowcontrols menubutton button { + min-height: 20px; + min-width: 20px; + margin: 0; + padding: 4px; +} + +.solid-csd headerbar:dir(rtl), .solid-csd headerbar:dir(ltr) { + border-radius: 0; + box-shadow: none; +} + +leaflet.unfolded > box:last-child > headerbar { + border-top-right-radius: 0; +} + +leaflet.unfolded > box:not(:last-child) > headerbar, +leaflet.unfolded > box > stack > widget > box > widget > headerbar { + border-top-left-radius: 0; +} + +leaflet.unfolded leaflet.folded > box:last-child > headerbar { + border-top-left-radius: 0; +} + +window.devel headerbar { + background: #1b1e24 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(91, 155, 248, 0.1)), linear-gradient(to top, #22252d 3px, #262a33); +} + +window.devel headerbar:backdrop { + background: #1b1e24 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#1b1e24); + /* background-color would flash */ +} + +/************ + * Pathbars * + ************/ + +pathbar > button { + padding-left: 6px; + padding-right: 6px; + border-radius: 6px; +} + + +pathbar > button label, +pathbar > button image { + margin-left: 3px; + margin-right: 3px; +} + + +pathbar > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +.pathbar { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); + border: none; + border-radius: 6px; + padding: 2px; +} + +headerbar .pathbar { + margin-top: 6px; + margin-bottom: 6px; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.7); +} + +.pathbar > button { + margin-top: 0; + margin-bottom: 0; + min-height: 20px; + border-radius: 4px; + border: none; + box-shadow: none; +} + +.pathbar > button:last-child { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; +} + +/************** + * Tree Views * + **************/ +columnview.view, +treeview.view { + border-left-color: #3f4348; + border-top-color: #3f4348; +} + +columnview.view:hover, columnview.view:selected, +treeview.view:hover, +treeview.view:selected { + border-radius: 0; +} + +columnview.view:focus, +treeview.view:focus { + box-shadow: none; + outline: none; +} + +columnview.view.separator, +treeview.view.separator { + min-height: 5px; + color: rgba(255, 255, 255, 0.12); +} + +columnview.view:drop(active), +treeview.view:drop(active) { + box-shadow: none; +} + +columnview.view.after:drop(active), +treeview.view.after:drop(active) { + border-top-style: none; +} + +columnview.view.before:drop(active), +treeview.view.before:drop(active) { + border-bottom-style: none; +} + +columnview.view > dndtarget:drop(active), +treeview.view > dndtarget:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: alpha(currentColor, 0.06); +} + +columnview.view > dndtarget.after:drop(active), +treeview.view > dndtarget.after:drop(active) { + border-top-style: none; +} + +columnview.view > dndtarget.before:drop(active), +treeview.view > dndtarget.before:drop(active) { + border-bottom-style: none; +} + +columnview.view.expander, +treeview.view.expander { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: rgba(255, 255, 255, 0.7); +} + +columnview.view.expander:dir(rtl), +treeview.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +columnview.view.expander:hover, +treeview.view.expander:hover { + color: #FFFFFF; +} + +columnview.view.expander:selected, +treeview.view.expander:selected { + color: #FFFFFF; +} + +columnview.view.expander:selected:hover, +treeview.view.expander:selected:hover { + color: #FFFFFF; +} + +columnview.view.expander:checked, +treeview.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +columnview.view.expander:disabled, +treeview.view.expander:disabled { + color: rgba(255, 255, 255, 0.3); +} + +columnview.view.progressbar, +treeview.view.progressbar { + border-bottom: 6px solid #5b9bf8; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +columnview.view.progressbar:selected:hover, +treeview.view.progressbar:selected:hover { + box-shadow: none; +} + +columnview.view.trough, +treeview.view.trough { + border-bottom: 6px solid rgba(255, 255, 255, 0.14); + box-shadow: none; + background-color: transparent; + background-image: none; +} + +columnview.view.trough:selected:hover, +treeview.view.trough:selected:hover { + box-shadow: none; +} + +columnview.view > header > button, +treeview.view > header > button { + padding: 2px 6px; + box-shadow: none; + background-clip: border-box; + border-style: none solid none none; + border-radius: 0; + border-color: transparent; + border-image: linear-gradient(to bottom, #25292f 20%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, #25292f 80%) 0 1 0 0/0 1px 0 0 stretch; +} + +columnview.view > header > button:not(:focus):not(:hover):not(:active), +treeview.view > header > button:not(:focus):not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +columnview.view > header > button, columnview.view > header > button:disabled, +treeview.view > header > button, +treeview.view > header > button:disabled { + background-color: #25292f; +} + +columnview.view > header > button:last-child, columnview.view > header > button:only-child, +treeview.view > header > button:last-child, +treeview.view > header > button:only-child { + border-right: none; + border-image: none; +} + +columnview.view button.dnd, +columnview.view header.button.dnd, +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #25292f; + background-clip: border-box; + color: #5b9bf8; +} + +columnview.view acceleditor > label, +treeview.view acceleditor > label { + background-color: #5b9bf8; +} + +stack.view treeview.view { + min-height: 36px; +} + +/********* + * Menus * + *********/ +menubar { + padding: 0; + background-color: #1b1e24; + color: #FFFFFF; +} + +menubar:backdrop { + background-color: #22262c; + color: rgba(255, 255, 255, 0.7); +} + +.csd menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +menubar > item { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(255, 255, 255, 0.7); +} + +menubar > item:selected { + transition: none; + background-color: alpha(currentColor, 0.1); + color: #FFFFFF; +} + +menubar > item:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar > item label:disabled { + color: inherit; +} + +menubar > item popover.menu popover.menu { + margin-left: 9px; +} + +menubar > item popover.menu.background popover.menu.background > contents { + margin: 0; + border-radius: 12px; +} + +/********************** + * Popover Base Menus * + **********************/ +popover.menu box.inline-buttons { + color: #FFFFFF; + padding: 0 6px; +} + +popover.menu box.inline-buttons button.image-button.model { + min-height: 28px; + min-width: 28px; + padding: 0; + border: none; + outline: none; + transition: none; +} + +popover.menu box.circular-buttons { + padding: 6px; +} + +popover.menu box.circular-buttons button.circular.image-button.model { + padding: 6px; +} + +popover.menu.background separator { + margin: 6px 0; +} + +popover.menu arrow.left, +popover.menu radio.left, +popover.menu check.left { + margin-left: 0; + margin-right: 0; +} + +popover.menu arrow.right, +popover.menu radio.right, +popover.menu check.right { + margin-left: 0; + margin-right: 0; +} + +popover.menu modelbutton { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 22px; + min-width: 56px; + padding: 3px 9px; + color: #FFFFFF; + font: initial; + border-radius: 6px; +} + +popover.menu modelbutton:focus:not(:hover) { + transition: none; + box-shadow: none; + outline: none; +} + +popover.menu modelbutton:disabled { + color: rgba(255, 255, 255, 0.4); +} + +popover.menu modelbutton accelerator { + color: rgba(255, 255, 255, 0.4); + margin-left: 30px; +} + +popover.menu modelbutton:disabled accelerator { + color: rgba(255, 255, 255, 0.12); +} + +popover.menu modelbutton arrow.left { + -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); +} + +popover.menu modelbutton arrow.right { + -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); +} + +popover.menu label.title { + font-weight: bold; + padding: 4px 26px; +} + +/************ + * Popovers * + ************/ +popover.background { + font: initial; +} + +popover.background, popover.background:backdrop { + background-color: transparent; +} + +popover.background > arrow, +popover.background > contents { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + background-color: #2d3036; + border-radius: 12px; + color: #FFFFFF; + border: none; + background-clip: border-box; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1); +} + +popover.background > arrow:backdrop, +popover.background > contents:backdrop { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +popover.background > contents > list, +popover.background > contents > .view, +popover.background > contents > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background > contents separator { + background-color: rgba(255, 255, 255, 0.12); + margin: 3px 0; +} + +popover.background > contents list separator { + margin: 0; +} + +popover.background > contents list > row { + border-radius: 6px; +} + +popover.background > contents stack > box { + padding: 0; +} + +popover.background > contents > box > button { + margin: 0; +} + +popover.background > contents stack > scrolledwindow > viewport > list { + background-color: transparent; + margin: 0; + padding: 0; +} + +popover.background > contents stack > scrolledwindow > viewport > list > row.activatable { + margin: 0; +} + +popover.background > contents stack > scrolledwindow > viewport > list > row.activatable + row.activatable { + margin-top: 2px; +} + +popover.background .view:not(:selected), +popover.background toolbar { + background-color: #2d3036; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; +} + +.osd popover.background, popover.background.touch-selection, popover.background.magnifier { + background-color: transparent; +} + +magnifier { + background-color: #25292f; +} + +/************* + * Notebooks * + *************/ +tabbar tab, tabbar tabbox > tabboxchild > tab, notebook > header > tabs > tab { + border: none; + background-clip: padding-box; + font-weight: 500; + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + outline: 0 solid transparent; + outline-offset: 2px; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); +} + +tabbar tab:hover:not(:checked):not(:selected), notebook > header > tabs > tab:hover:not(:checked):not(:selected) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #FFFFFF; + box-shadow: none; +} + +tabbar tab:disabled, notebook > header > tabs > tab:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +tabbar tab:active, notebook > header > tabs > tab:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; + box-shadow: none; +} + +tabbar tab:checked, notebook > header > tabs > tab:checked, tabbar tab:selected, notebook > header > tabs > tab:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +tabbar tab:checked:disabled, notebook > header > tabs > tab:checked:disabled, tabbar tab:selected:disabled, notebook > header > tabs > tab:selected:disabled { + color: rgba(255, 255, 255, 0.4); +} + +frame > paned > notebook > header, notebook.frame > header { + background-color: rgba(255, 255, 255, 0.04); +} + +notebook, notebook.frame { + background-color: #25292f; +} + +notebook.frame { + border-radius: 12px; +} + +notebook.frame frame > border { + border: none; + border-radius: 6px; +} + +notebook.frame frame > list row.activatable { + border-radius: 6px; +} + +notebook > header { + border: none; + background-color: rgba(255, 255, 255, 0.04); + margin: 3px; + border-radius: 9px; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: 0; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: 0; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: 0; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 6px; +} + +notebook > header > tabs > tab { + min-height: 24px; + min-width: 24px; + padding: 3px 6px; + margin: 3px; +} + +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -6px -12px; + padding: 6px 12px; +} + +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(255, 255, 255, 0.12); + color: #FFFFFF; +} + +notebook > header > tabs > tab label { + padding: 0 6px; +} + +notebook > header > tabs > tab button.flat:last-child { + margin-left: 6px; + margin-right: -3px; +} + +notebook > header > tabs > tab button.flat:first-child { + margin-left: -3px; + margin-right: 6px; +} + +notebook > header > tabs > tab button.close-button { + min-width: 24px; + min-height: 24px; +} + +notebook > header.top > tabs, notebook > header.bottom > tabs { + padding-left: 0; + padding-right: 0; +} + +notebook > header.top > tabs:not(:only-child):first-child, notebook > header.bottom > tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top > tabs:not(:only-child):last-child, notebook > header.bottom > tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top > tabs > tab:not(:last-child), notebook > header.bottom > tabs > tab:not(:last-child) { + margin-right: 0; +} + +notebook > header.top > tabs tab.reorderable-page, notebook > header.bottom > tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header.left > tabs, notebook > header.right > tabs { + padding-top: 0; + padding-bottom: 0; +} + +notebook > header.left > tabs:not(:only-child):first-child, notebook > header.right > tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left > tabs:not(:only-child):last-child, notebook > header.right > tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left > tabs > tab:not(:last-child), notebook > header.right > tabs > tab:not(:last-child) { + margin-bottom: 0; +} + +notebook > header.left > tabs tab.reorderable-page, notebook > header.right > tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header > menubutton > button.image-button { + padding: 3px; + min-width: 24px; + min-height: 24px; + margin: 0 3px; +} + +notebook > stack:not(:only-child) { + background-color: transparent; + border-radius: 6px; +} + +tabbar > revealer > box { + box-shadow: none; + padding: 0; +} + +tabbar .box { + min-height: 36px; + border-bottom: none; + background: none; +} + +tabbar scrolledwindow.pinned undershoot { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +tabbar scrolledwindow.pinned:dir(rtl) undershoot.left { + border-left-width: 1px; +} + +tabbar scrolledwindow.pinned:dir(ltr) undershoot.right { + border-right-width: 1px; +} + +tabbar scrolledwindow.pinned tabbox > background:dir(ltr) { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); +} + +tabbar scrolledwindow.pinned tabbox > background:dir(rtl) { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); +} + +tabbar scrolledwindow.pinned tabbox > tabboxchild { + margin: 0; +} + +tabbar scrolledwindow.pinned tabbox > tabboxchild > tab { + margin: 3px 0; +} + +tabbar undershoot { + transition: background 150ms ease-in-out; +} + +tabbar undershoot.left { + background: linear-gradient(to right, #25292f, rgba(0, 0, 0, 0) 20px); +} + +tabbar undershoot.right { + background: linear-gradient(to left, #25292f, rgba(0, 0, 0, 0) 20px); +} + +tabbar .needs-attention-left undershoot.left { + background: linear-gradient(to right, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar .needs-attention-right undershoot.right { + background: linear-gradient(to left, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar tabbox { + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + padding: 0; + margin: 0; + border-radius: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +tabbar tabbox > background { + background: none; +} + +tabbar tabbox > separator { + margin-top: 9px; + margin-bottom: 9px; + transition: opacity 150ms ease-in-out; +} + +tabbar tabbox > separator.hidden { + opacity: 0; +} + +tabbar tabbox > tabboxchild { + margin: 0 -3px; +} + +tabbar tabbox > tabboxchild > tab { + margin: 3px; + min-width: 24px; + min-height: 24px; + padding: 3px; +} + +tabbar tab.needs-attention { + background-image: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.8), alpha(#5b9bf8, 0.4) 10%, alpha(#5b9bf8, 0) 30%); +} + +tabbar tab.needs-attention:hover { + background-image: image(alpha(currentColor, 0.03)), radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.8), alpha(#5b9bf8, 0.4) 10%, alpha(#5b9bf8, 0) 30%); +} + +tabbar .start-action, +tabbar .end-action { + background-color: rgba(255, 255, 255, 0.04); + background-clip: padding-box; + border-color: rgba(255, 255, 255, 0.12); + border-style: solid; + transition: background 150ms ease-in-out; +} + +tabbar .start-action button, +tabbar .end-action button { + border: none; + border-radius: 0; +} + +tabbar .start-action:dir(ltr), +tabbar .end-action:dir(rtl) { + border-right-width: 1px; +} + +tabbar .start-action:dir(rtl), +tabbar .end-action:dir(ltr) { + border-left-width: 1px; +} + +tabbar:not(.inline) scrolledwindow.pinned undershoot { + border-color: rgba(255, 255, 255, 0.12); +} + +tabbar:not(.inline) undershoot.left { + background: linear-gradient(to right, #1b1e24, rgba(0, 0, 0, 0) 20px); +} + +tabbar:not(.inline) undershoot.right { + background: linear-gradient(to left, #1b1e24, rgba(0, 0, 0, 0) 20px); +} + +tabbar:not(.inline) .needs-attention-left undershoot.left { + background: linear-gradient(to right, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar:not(.inline) .needs-attention-right undershoot.right { + background: linear-gradient(to left, alpha(#5b9bf8, 0.5), alpha(#5b9bf8, 0.3) 1px, alpha(#5b9bf8, 0) 20px); +} + +tabbar:not(.inline) tabbox > background { + background-color: #1b1e24; +} + +tabbar:not(.inline) .start-action, +tabbar:not(.inline) .end-action { + background-color: alpha(#1b1e24, 0.6); + border-color: rgba(255, 255, 255, 0.12); +} + +tabbar:not(.inline):backdrop .box { + background-color: #22262c; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +dnd tab { + background-color: #1b1e24; + color: #FFFFFF; + box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.09), 0 2px 14px 3px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05); + outline: 1px solid rgba(0, 0, 0, 0.75); + outline-offset: -1px; + margin: 24px; +} + +dnd tab.needs-attention { + background-image: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.8), alpha(#5b9bf8, 0.4) 10%, alpha(#5b9bf8, 0) 30%); +} + +tabbar tab, +dnd tab { + padding: 3px 6px; +} + +tabbar tab button.image-button, +dnd tab button.image-button { + padding: 0; + margin: 0; + min-width: 24px; + min-height: 24px; + border-radius: 9999px; +} + +tabview:drop(active), +tabbox:drop(active) { + box-shadow: none; +} + +taboverview tabgrid .thumbnail > .card > picture { + border-radius: 6px; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: transparent; + box-shadow: none; + outline: none; + border: none; + margin: 0; + padding: 0; +} + +scrollbar > range > trough { + background-color: rgba(255, 255, 255, 0.12); + padding: 0; + margin: 6px; + outline: none; + border: none; + border-radius: 9999px; +} + +scrollbar > range > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + margin: 0; + padding: 0; + border: none; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(255, 255, 255, 0.4); + box-shadow: none; + outline: none; +} + +scrollbar > range > trough > slider:hover { + background-color: #31c4b6; +} + +scrollbar > range > trough > slider:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.vertical > range > trough > slider:active { + background-image: linear-gradient(to top, #297dff, #31c4b6); +} + +scrollbar.horizontal > range > trough > slider:active { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scrollbar > range.fine-tune > trough > slider { + min-width: 4px; + min-height: 4px; +} + +scrollbar > range.fine-tune.horizontal > trough > slider { + margin: 0; +} + +scrollbar > range.fine-tune.vertical > trough > slider { + margin: 0; +} + +scrollbar.overlay-indicator:not(.fine-tune) > range > trough > slider { + transition-property: background-color, min-height, min-width; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough { + margin: 3px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.4); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) > range > trough > slider { + min-width: 24px; +} + +scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) button { + min-width: 8px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) > range > trough > slider { + min-height: 24px; +} + +scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) button { + min-height: 8px; +} + +scrollbar.horizontal > range > trough > slider { + min-width: 24px; +} + +scrollbar.vertical > range > trough > slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +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-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + padding: 0; + border: none; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.26); + background-clip: border-box; + font-size: 0; + color: transparent; +} + +switch:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + color: transparent; +} + +switch:disabled { + opacity: 0.35; +} + +switch > slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 18px; + min-height: 18px; + margin: 3px; + border-radius: 9999px; + outline: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); + background-color: white; + border: none; +} + +switch:focus slider, switch:hover slider, switch:focus:hover slider { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12); +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; + border-spacing: 3px; +} + +check, +radio { + min-height: 20px; + min-width: 20px; + margin: 3px; + padding: 0; + border-radius: 9999px; + border: none; + color: transparent; + background-color: rgba(255, 255, 255, 0.12); + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); +} + +check:hover, +radio:hover { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04); + background-color: rgba(255, 255, 255, 0.15); +} + +check:active, +radio:active { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12); + background-color: rgba(255, 255, 255, 0.2); +} + +check:disabled, +radio:disabled { + background-color: rgba(255, 255, 255, 0.04); +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; +} + +check:checked:hover, check:indeterminate:hover, +radio:checked:hover, +radio:indeterminate:hover { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.15); + background-color: #8cb9fa; +} + +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + box-shadow: 0 0 0 6px rgba(91, 155, 248, 0.2); + background-color: #5b9bf8; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(91, 155, 248, 0.35); + background-image: none; +} + +popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat radio, popover modelbutton.flat radio:focus, popover modelbutton.flat radio:hover, popover modelbutton.flat radio:focus:hover, popover modelbutton.flat radio:active, popover modelbutton.flat radio:disabled { + transition: none; + box-shadow: none; +} + +popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat radio.left:dir(rtl) { + margin-left: -3px; + margin-right: 6px; +} + +popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat radio.right:dir(ltr) { + margin-left: 6px; + margin-right: -3px; +} + +popover.menu check, popover.menu radio { + transition: none; + margin: 0; + padding: 0; +} + +popover.menu check:dir(ltr), popover.menu radio:dir(ltr) { + margin-right: 6px; + margin-left: -3px; +} + +popover.menu check:dir(rtl), popover.menu radio:dir(rtl) { + margin-left: 6px; + margin-right: -3px; +} + +popover.menu check, popover.menu check:hover, popover.menu check:disabled, popover.menu check:checked:hover, popover.menu check:indeterminate:hover, popover.menu radio, popover.menu radio:hover, popover.menu radio:disabled, popover.menu radio:checked:hover, popover.menu radio:indeterminate:hover { + box-shadow: none; +} + + +check { + -gtk-icon-size: 20px; +} + + +check:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic@2.svg"))); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic@2.svg"))); +} + + +radio { + -gtk-icon-size: 20px; +} + + +radio:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic@2.svg"))); +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic@2.svg"))); +} + + +popover.menu check { + min-height: 16px; + min-width: 16px; + -gtk-icon-size: 16px; +} + + +popover.menu check:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic@2.svg"))); +} + + +popover.menu check:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic@2.svg"))); +} + + +popover.menu radio { + min-height: 16px; + min-width: 16px; + -gtk-icon-size: 16px; +} + + +popover.menu radio:checked { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic@2.svg"))); +} + + +popover.menu radio:indeterminate { + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic@2.svg"))); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view radio, treeview.view check, +columnview.view radio, +columnview.view check { + padding: 0; + margin: 0; + transition: none; +} + +treeview.view radio, treeview.view radio:hover, treeview.view radio:disabled, treeview.view radio:checked:hover, treeview.view radio:indeterminate:hover, treeview.view check, treeview.view check:hover, treeview.view check:disabled, treeview.view check:checked:hover, treeview.view check:indeterminate:hover, +columnview.view radio, +columnview.view radio:hover, +columnview.view radio:disabled, +columnview.view radio:checked:hover, +columnview.view radio:indeterminate:hover, +columnview.view check, +columnview.view check:hover, +columnview.view check:disabled, +columnview.view check:checked:hover, +columnview.view check:indeterminate:hover { + box-shadow: none; +} + +treeview.view:hover check, treeview.view:hover radio, treeview.view:selected check, treeview.view:selected radio, treeview.view:focus check, treeview.view:focus radio, +columnview.view:hover check, +columnview.view:hover radio, +columnview.view:selected check, +columnview.view:selected radio, +columnview.view:focus check, +columnview.view:focus radio { + box-shadow: none; +} + +treeview.view:hover check:checked, treeview.view:hover radio:checked, treeview.view:selected check:checked, treeview.view:selected radio:checked, treeview.view:focus check:checked, treeview.view:focus radio:checked, +columnview.view:hover check:checked, +columnview.view:hover radio:checked, +columnview.view:selected check:checked, +columnview.view:selected radio:checked, +columnview.view:focus check:checked, +columnview.view:focus radio:checked { + color: #FFFFFF; + background-color: #5b9bf8; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 17px 12px; +} + +scale.vertical { + padding: 12px 17px; +} + +scale > trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(255, 255, 255, 0.26); +} + +scale > trough:disabled { + background-color: rgba(255, 255, 255, 0.14); +} + +scale > trough > highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); +} + +scale > trough > highlight:disabled { + background-color: transparent; +} + +scale > trough > fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(255, 255, 255, 0.26); +} + +scale > trough > fill:disabled { + background-color: transparent; +} + +scale > trough > slider { + min-height: 18px; + min-width: 18px; + margin: -8px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 9999px; + color: #5b9bf8; + background-color: #25292f; + box-shadow: inset 0 0 0 2px #31c4b6; +} + +scale > trough > slider:hover { + box-shadow: inset 0 0 0 2px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale > trough > slider:active { + box-shadow: inset 0 0 0 4px #31c4b6, 0 0 0 8px rgba(255, 255, 255, 0.12); +} + +scale > trough > slider:disabled { + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3); +} + +scale.horizontal > trough > highlight { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +scale.horizontal > trough > highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale.vertical > trough > highlight { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +scale.vertical > trough > highlight:disabled { + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 16px; + padding-bottom: 16px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 16px; + padding-right: 16px; +} + +scale.fine-tune > trough > slider { + margin: -7px; +} + +scale > marks, +scale > value { + color: rgba(255, 255, 255, 0.7); +} + +scale indicator { + background-color: rgba(255, 255, 255, 0.26); + color: transparent; +} + +scale.marks-before:not(.marks-after) > trough > slider, scale.marks-after:not(.marks-before) > trough > slider { + transform: rotate(0); +} + +scale.horizontal > marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale.horizontal.fine-tune > marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.horizontal > marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale.horizontal.fine-tune > marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.vertical > marks.top { + margin-right: 7px; + margin-left: -15px; +} + +scale.vertical.fine-tune > marks.top { + margin-right: 6px; + margin-left: -14px; +} + +scale.vertical > marks.bottom { + margin-left: 7px; + margin-right: -15px; +} + +scale.vertical.fine-tune > marks.bottom { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider, scale.horizontal.marks-before:not(.marks-after) > trough > slider:hover, scale.horizontal.marks-before:not(.marks-after) > trough > slider:active, scale.horizontal.marks-before:not(.marks-after) > trough > slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider, scale.horizontal.marks-after:not(.marks-before) > trough > slider:hover, scale.horizontal.marks-after:not(.marks-before) > trough > slider:active, scale.horizontal.marks-after:not(.marks-before) > trough > slider:disabled { + box-shadow: none; +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider, scale.vertical.marks-before:not(.marks-after) > trough > slider:hover, scale.vertical.marks-before:not(.marks-after) > trough > slider:active, scale.vertical.marks-before:not(.marks-after) > trough > slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + min-height: 32px; + min-width: 32px; + margin: -15px; + border-radius: 50%; + background-size: auto, 1000% 1000%; + background-repeat: no-repeat; + background-position: center center; + background-color: transparent; +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider, scale.vertical.marks-after:not(.marks-before) > trough > slider:hover, scale.vertical.marks-after:not(.marks-before) > trough > slider:active, scale.vertical.marks-after:not(.marks-before) > trough > slider:disabled { + box-shadow: none; +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:active { + background-size: auto, 0% 0%; + background-color: alpha(currentColor, 0.08); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) > trough > slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal > trough > slider:dir(ltr), scale.color.horizontal > trough > slider:dir(rtl) { + margin-bottom: -13.5px; + margin-top: 11.5px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -13.5px; + margin-right: 11.5px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) > trough > slider { + margin-right: -13.5px; + margin-left: 11.5px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 6px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 6px; +} + +progressbar trough { + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.14); +} + +progressbar progress { + border-radius: 6px; + background-color: transparent; +} + +progressbar.horizontal progress { + background-image: linear-gradient(to right, #297dff, #31c4b6); +} + +progressbar.vertical progress { + background-image: linear-gradient(to bottom, #297dff, #31c4b6); +} + +progressbar.osd { + min-width: 6px; + min-height: 6px; + background-color: transparent; + box-shadow: none; + margin: 0; + padding: 0; +} + +progressbar.osd trough { + background-color: transparent; +} + +progressbar.osd progress { + background-color: #5b9bf8; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 6px; +} + +levelbar.horizontal.discrete block { + min-width: 36px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 6px; +} + +levelbar.vertical.discrete block { + min-height: 36px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + border-radius: 6px; +} + +levelbar block.low { + background-color: #FBC02D; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #5b9bf8; +} + +levelbar block.full { + background-color: #66BB6A; +} + +levelbar block.empty { + background-color: rgba(255, 255, 255, 0.14); +} + +/**************** + * Print dialog * +*****************/ +window.dialog.print drawing { + color: #FFFFFF; + background: none; + border: none; + padding: 0; +} + +window.dialog.print drawing paper { + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + background-color: #25292f; + color: #FFFFFF; +} + +window.dialog.print .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame, +.frame { + border: 1px solid rgba(255, 255, 255, 0.12); +} + +frame > list, +.frame > list { + border: none; +} + +frame.view, +.frame.view { + border-radius: 6px; +} + +frame.flat, +.frame.flat { + border-style: none; +} + +frame { + border-radius: 6px; +} + +frame > label { + margin: 4px; +} + +frame.flat > border, statusbar frame > border { + border: none; +} + +actionbar > revealer > box { + padding: 6px; + border-spacing: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.12); + background-color: #25292f; + background-clip: border-box; + border: none; +} + +actionbar > revealer > box button, actionbar > revealer > box entry, +actionbar > revealer > box menubutton, actionbar > revealer > box menubutton > button, +actionbar > revealer > box splitbutton, actionbar > revealer > box splitbutton > button, +actionbar > revealer > box spinbutton { + margin: 0; +} + +statusbar { + padding: 6px 18px; +} + +scrolledwindow viewport.frame { + border: none; +} + +stack scrolledwindow.frame viewport.frame list { + border: none; +} + +scrolledwindow > overshoot.top { + background-image: radial-gradient(farthest-side at top, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at top, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 100% 3%, 100% 50%; + background-repeat: no-repeat; + background-position: top; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow > overshoot.bottom { + background-image: radial-gradient(farthest-side at bottom, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at bottom, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 100% 3%, 100% 50%; + background-repeat: no-repeat; + background-position: bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow > overshoot.left { + background-image: radial-gradient(farthest-side at left, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at left, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 3% 100%, 50% 100%; + background-repeat: no-repeat; + background-position: left; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow > overshoot.right { + background-image: radial-gradient(farthest-side at right, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at right, alpha(currentColor, 0.05), alpha(currentColor, 0)); + background-size: 3% 100%, 50% 100%; + background-repeat: no-repeat; + background-position: right; + background-color: transparent; + border: none; + box-shadow: none; +} + +scrolledwindow.undershoot-top > undershoot.top { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.12); + background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-bottom > undershoot.bottom { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12); + background: linear-gradient(to top, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-start:dir(ltr) > undershoot.left { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-start:dir(rtl) > undershoot.right { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to left, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-end:dir(ltr) > undershoot.right { + box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to left, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow.undershoot-end:dir(rtl) > undershoot.left { + box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12); + background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 4px); +} + +scrolledwindow > junction { + border: none; + background-image: none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + +stacksidebar + separator.vertical, +stacksidebar separator.horizontal, button.font separator, button.file separator, separator.spacer { + min-width: 0; + min-height: 0; + background-color: transparent; + background-image: none; +} + +/********* + * Lists * + *********/ +list.content, +list.boxed-list { + border-radius: 6px; + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08); + border: none; +} + +list.horizontal.content > row:not(:last-child), +list.horizontal.boxed-list > row:not(:last-child) { + border-left: 1px solid rgba(0, 0, 0, 0.2); +} + +list.vertical.content > row:not(:last-child), +list.vertical.boxed-list > row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +listview, +list { + border-color: rgba(255, 255, 255, 0.12); + background-color: #2d3036; + background-clip: padding-box; +} + +listview > row, +list > row { + padding: 6px; + background-clip: padding-box; +} + +listview > row.expander, +list > row.expander { + padding: 0px; +} + +listview > row.expander .row-header, +list > row.expander .row-header { + padding: 2px; +} + +listview.horizontal row.separator:not(:last-child), listview.separators.horizontal > row:not(.separator):not(:last-child), +list.horizontal row.separator:not(:last-child), +list.separators.horizontal > row:not(.separator):not(:last-child) { + border-left: 1px solid rgba(0, 0, 0, 0.2); +} + +listview:not(.horizontal) row.separator:not(:last-child), listview.separators:not(.horizontal) > row:not(.separator):not(:last-child), +list:not(.horizontal) row.separator:not(:last-child), +list.separators:not(.horizontal) > row:not(.separator):not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +list.frame { + border-radius: 6px; +} + +listview.view { + color: #FFFFFF; + background-color: transparent; +} + +popover.menu listview.view { + padding: 0; + border-radius: 6px; +} + +popover.menu listview.view > row { + margin-left: 0; + margin-right: 0; + border-radius: 6px; +} + +row { + color: rgba(255, 255, 255, 0.7); + background-clip: padding-box; +} + +row label.subtitle { + font-size: smaller; +} + +row > box.header { + margin-left: 12px; + margin-right: 12px; + min-height: 48px; +} + +row > box.header > .icon:disabled { + filter: opacity(0.35); +} + +row > box.header > box.title { + margin-top: 6px; + margin-bottom: 6px; + border-spacing: 3px; +} + +.nautilus-window .nautilus-grid-view child.activatable, columnview.view > header > button, +treeview.view > header > button, row.activatable { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1), font-weight 0; + outline: none; + box-shadow: none; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + outline: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:focus, columnview.view > header > button:focus, +treeview.view > header > button:focus, row.activatable:focus { + color: #FFFFFF; + background-color: transparent; + box-shadow: none; + outline: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:hover, columnview.view > header > button:hover, +treeview.view > header > button:hover, .nautilus-window .nautilus-grid-view child.has-open-popup.activatable, columnview.view > header > button.has-open-popup, +treeview.view > header > button.has-open-popup, row.activatable:hover, row.activatable.has-open-popup { + color: #FFFFFF; + background-color: alpha(currentColor, 0.05); + box-shadow: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:active, columnview.view > header > button:active, +treeview.view > header > button:active, row.activatable:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, font-weight 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, alpha(currentColor, 0.05) 10%, transparent 0%); + background-size: 0% 0%; + background-color: alpha(currentColor, 0.05); + color: #FFFFFF; + box-shadow: none; +} + +.nautilus-window .nautilus-grid-view child.activatable:selected, columnview.view > header > button:selected, +treeview.view > header > button:selected, row.activatable:selected { + background-color: alpha(currentColor, 0.06); +} + +.nautilus-window .nautilus-grid-view child.activatable:selected:hover, columnview.view > header > button:selected:hover, +treeview.view > header > button:selected:hover, row.activatable:selected:hover { + background-color: alpha(currentColor, 0.08); +} + +button row.activatable:focus, button row.activatable:hover, button row.activatable:active { + box-shadow: none; + background: none; +} + +button:checked row.activatable { + color: #FFFFFF; +} + +row:selected { + background-color: alpha(currentColor, 0.06); + color: inherit; + box-shadow: none; +} + +row:selected:hover { + background-color: alpha(currentColor, 0.08); +} + +row:selected:focus, row:selected:focus-visible:focus-within { + outline: none; + background-color: alpha(currentColor, 0.08); +} + +row:selected:focus:hover, row:selected:focus-visible:focus-within:hover { + background-color: alpha(currentColor, 0.16); +} + +row:selected image, +row:selected label { + color: #FFFFFF; +} + +row:selected button image, +row:selected button label { + color: inherit; +} + +row:selected:disabled image, +row:selected:disabled label { + color: rgba(255, 255, 255, 0.4); +} + +.rich-list { + /* rich lists usually containing other widgets than just labels/text */ +} + +.rich-list > row { + padding: 9px 12px; + min-height: 32px; + /* should be tall even when only containing a label */ +} + +.rich-list > row:last-child { + border-bottom: none; +} + +.rich-list > row > box { + border-spacing: 12px; +} + +row label.subtitle { + font-size: smaller; +} + +row > box.header { + margin-left: 12px; + margin-right: 12px; + border-spacing: 6px; + min-height: 50px; +} + +row > box.header > .icon:disabled { + filter: opacity(0.45); +} + +row > box.header > box.title { + margin-top: 6px; + margin-bottom: 6px; + border-spacing: 3px; + padding: 0; +} + +row > box.header > box.title, +row > box.header > box.title > .title, +row > box.header > box.title > .subtitle { + padding: 0; + font-weight: inherit; +} + +row > box.header > .prefixes, +row > box.header > .suffixes { + border-spacing: 6px; +} + +row > box.header > .icon:dir(ltr), +row > box.header > .prefixes:dir(ltr) { + margin-right: 6px; +} + +row > box.header > .icon:dir(rtl), +row > box.header > .prefixes:dir(rtl) { + margin-left: 6px; +} + +row.entry.activatable.focused:not(:selected):hover, row.entry.activatable.focused:not(:selected):active { + background-color: transparent; +} + +row.entry .edit-icon, row.entry .indicator { + min-width: 24px; + min-height: 24px; + padding: 5px; +} + +row.entry .edit-icon:disabled { + opacity: 0.5; +} + +row.entry .indicator { + opacity: 0.65; +} + +row.entry.monospace { + font-family: inherit; +} + +row.entry.error text > selection:focus-within { + background-color: alpha(#F44336, 0.2); +} + +row.entry.error text > cursor-handle > contents { + background-color: currentColor; +} + +row.entry.warning text > selection:focus-within { + background-color: alpha(#FBC02D, 0.2); +} + +row.entry.warning text > cursor-handle > contents { + background-color: currentColor; +} + +row.entry.success text > selection:focus-within { + background-color: alpha(#66BB6A, 0.2); +} + +row.entry.success text > cursor-handle > contents { + background-color: currentColor; +} + +row.combo image.dropdown-arrow:disabled { + filter: opacity(0.45); +} + +row.combo listview.inline { + background: none; + border: none; + box-shadow: none; + color: inherit; +} + +row.combo listview.inline, row.combo listview.inline:disabled { + background: none; + color: inherit; +} + +row.combo popover > contents { + min-width: 120px; +} + +list.content > row, list.content > row.expander row.header, +list.boxed-list > row, +list.boxed-list > row.expander row.header, row.expander list.nested > row { + border-bottom: 1px solid rgba(0, 0, 0, 0.2); +} + +list.content > row.activatable:not(:selected):hover, list.content > row.expander row.header.activatable:not(:selected):hover, +list.boxed-list > row.activatable:not(:selected):hover, +list.boxed-list > row.expander row.header.activatable:not(:selected):hover, row.expander list.nested > row.activatable:not(:selected):hover { + background-color: alpha(currentColor, 0.08); +} + +list.content > row.activatable:not(:selected):active, list.content > row.expander row.header.activatable:not(:selected):active, +list.boxed-list > row.activatable:not(:selected):active, +list.boxed-list > row.expander row.header.activatable:not(:selected):active, row.expander list.nested > row.activatable:not(:selected):active { + background-color: alpha(currentColor, 0.12); +} + +list.content > row.activatable.has-open-popup:not(:selected), list.content > row.expander row.header.activatable.has-open-popup:not(:selected), +list.boxed-list > row.activatable.has-open-popup:not(:selected), +list.boxed-list > row.expander row.header.activatable.has-open-popup:not(:selected), row.expander list.nested > row.activatable.has-open-popup:not(:selected) { + background-color: alpha(currentColor, 0.03); +} + +list.content > row:first-child, list.content > row.expander row.header:first-child, +list.boxed-list > row:first-child, +list.boxed-list > row.expander row.header:first-child, row.expander list.nested > row:first-child { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} + +row.expander { + background: none; + padding: 0px; +} + +row.expander > box > list { + background: none; + color: inherit; +} + +row.expander list.nested { + color: inherit; +} + +row.expander image.expander-row-arrow { + transition: -gtk-icon-transform 200ms cubic-bezier(0, 0, 0.2, 1); +} + +row.expander image.expander-row-arrow:dir(ltr) { + margin-left: 6px; +} + +row.expander image.expander-row-arrow:dir(rtl) { + margin-right: 6px; +} + +row.expander image.expander-row-arrow:dir(ltr) { + -gtk-icon-transform: rotate(0.5turn); +} + +row.expander image.expander-row-arrow:dir(rtl) { + -gtk-icon-transform: rotate(-0.5turn); +} + +row.expander image.expander-row-arrow:disabled { + filter: opacity(0.45); +} + +row.expander:checked image.expander-row-arrow { + -gtk-icon-transform: rotate(0turn); + opacity: 1; +} + +row.expander:checked image.expander-row-arrow:not(:disabled) { + color: #5b9bf8; +} + +.osd row.expander:checked image.expander-row-arrow:not(:disabled) { + color: inherit; +} + +list.content > row.expander, +list.boxed-list > row.expander { + border: none; +} + +list.content > row:first-child, list.content > row.expander:first-child row.header, +list.boxed-list > row:first-child, +list.boxed-list > row.expander:first-child row.header { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +list.content > row:last-child, list.content > row.expander:last-child:not(:checked), list.content > row.expander:last-child:not(:checked) row.header, list.content > row.expander:last-child:checked list.nested, list.content > row.expander:last-child:checked list.nested > row:last-child, +list.boxed-list > row:last-child, +list.boxed-list > row.expander:last-child:not(:checked), +list.boxed-list > row.expander:last-child:not(:checked) row.header, +list.boxed-list > row.expander:last-child:checked list.nested, +list.boxed-list > row.expander:last-child:checked list.nested > row:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-bottom-width: 0; +} + +columnview > listview > row { + padding: 0; +} + +columnview > listview > row > cell { + padding: 8px 6px; +} + +columnview > listview > row > cell:not(:first-child) { + border-left: 1px solid transparent; +} + +columnview.column-separators > listview > row > cell { + border-left-color: rgba(255, 255, 255, 0.12); +} + +columnview.data-table > listview > row > cell { + padding-top: 2px; + padding-bottom: 2px; +} + +treeexpander { + border-spacing: 6px; +} + +columnview row:not(:selected) cell editablelabel:not(.editing):focus-within { + outline: 2px solid alpha(currentColor, 0.06); +} + +columnview row:not(:selected) cell editablelabel.editing:focus-within { + outline: 2px solid #5b9bf8; +} + +columnview row:not(:selected) cell editablelabel.editing text selection { + color: #FFFFFF; + background-color: #5b9bf8; +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 6px; + border-spacing: 0; + padding: 0; + border: none; + background-image: none; +} + +.app-notification button.text-button:not(:disabled) { + color: #5b9bf8; +} + +.app-notification > box > label { + margin-left: 9px; +} + +.app-notification.frame, +.app-notification border { + border: none; +} + +/************* + * Expanders * + *************/ +expander { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + color: rgba(255, 255, 255, 0.7); + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +expander:hover, expander:active { + color: #FFFFFF; +} + +expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +expander:disabled { + color: rgba(255, 255, 255, 0.3); +} + +expander-widget > box > title { + border-radius: 6px; +} + +expander-widget > box > title:hover > expander { + color: rgba(255, 255, 255, 0.7); +} + +.navigation-sidebar:not(decoration):not(window):drop(active):focus, .navigation-sidebar:not(decoration):not(window):drop(active), +placessidebar:not(decoration):not(window):drop(active):focus, +placessidebar:not(decoration):not(window):drop(active), +stackswitcher:not(decoration):not(window):drop(active):focus, +stackswitcher:not(decoration):not(window):drop(active), +expander-widget:not(decoration):not(window):drop(active):focus, +expander-widget:not(decoration):not(window):drop(active) { + box-shadow: none; +} + +/************ + * Calendar * + ************/ +calendar { + padding: 0; + border: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 6px; + color: #FFFFFF; +} + +calendar:disabled { + color: rgba(255, 255, 255, 0.4); +} + +calendar:selected { + border-radius: 6px; +} + +calendar > header { + padding: 3px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +calendar > header > button { + min-height: 24px; +} + +calendar > grid { + margin: 3px; +} + +calendar > grid > label { + border-radius: 6px; + margin: 0; +} + +calendar > grid > label.today:selected { + box-shadow: none; +} + +calendar > grid > label:focus { + outline-style: none; +} + +calendar > grid > label.day-number { + padding: 6px; +} + +calendar > grid > label.day-number.other-month { + color: alpha(currentColor, 0.3); +} + +/*********** + * Dialogs * + ***********/ +window.messagedialog .response-area > box > button, window.dialog.message .dialog-action-area > button { + border-radius: 0; + min-height: 28px; + padding: 6px 12px; + margin: 0; + border: none; +} + +window.messagedialog .response-area > box > button:first-child, window.dialog.message .dialog-action-area > button:first-child { + border-radius: 0 0 0 12px; +} + +window.messagedialog .response-area > box > button:last-child, window.dialog.message .dialog-action-area > button:last-child { + border-radius: 0 0 12px 0; +} + +window.messagedialog .response-area > box > button:only-child, window.dialog.message .dialog-action-area > button:only-child { + border-radius: 0 0 12px 12px; +} + +window.dialog.message.background { + background-color: #2d3036; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +window.dialog.message box.dialog-vbox.vertical { + margin-top: 6px; + border-spacing: 24px; +} + +window.dialog.message box.dialog-vbox.vertical > box.vertical { + margin-bottom: 6px; +} + +window.dialog.message box.dialog-vbox.vertical > box > box > box > label.title { + font-weight: 800; + font-size: 15pt; +} + +window.dialog.message .titlebar { + min-height: 24px; + border-style: none; + background-color: transparent; + color: #FFFFFF; +} + +window.dialog.message .titlebar:backdrop { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +window.dialog.message .dialog-action-area { + border-top: 1px solid rgba(255, 255, 255, 0.12); + margin: 0; + border-spacing: 0; +} + +window.dialog.message .dialog-action-area > button { + border: none; +} + +window.dialog.message .dialog-action-area > button:not(:last-child) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +window.dialog.message .dialog-action-area > button.suggested-action:not(:disabled) { + color: #5b9bf8; +} + +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled) { + color: #F44336; +} + +window.aboutdialog.background.csd scrolledwindow.frame { + border: none; + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08); +} + +window.aboutdialog.background.csd scrolledwindow.frame, window.aboutdialog.background.csd scrolledwindow.frame > viewport.view, window.aboutdialog.background.csd scrolledwindow.frame > textview.view, window.aboutdialog.background.csd scrolledwindow.frame > textview.view > text { + border-radius: 6px; +} + +/******************** + * AdwMessageDialog * + ********************/ +window.messagedialog { + background-color: #2d3036; + color: #FFFFFF; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); +} + +window.messagedialog .message-area { + padding: 24px 30px; + border-spacing: 10px; +} + +window.messagedialog .response-area > box > button.suggested { + color: #5b9bf8; +} + +window.messagedialog .response-area > box > button.destructive { + color: #F44336; +} + +window.messagedialog.csd:not(.solid-csd) { + border-radius: 12px; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.horizontal > button { + margin: 0; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.horizontal > button:first-child { + margin-left: 0; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.horizontal > button:last-child { + margin-right: 0; +} + +window.messagedialog.csd:not(.solid-csd) .response-area > box.vertical > button { + margin-top: 0; + margin-bottom: 0; + border-radius: 0; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #22262c; +} + +filechooser stack.view frame > border { + border: none; +} + +filechooserbutton > button > box { + border-spacing: 6px; +} + +filechooserbutton:drop(active) { + box-shadow: none; + border-color: transparent; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #2d3036; +} + +.sidebar:not(separator):dir(ltr), .sidebar.left:not(separator), .sidebar.left:not(separator):dir(rtl) { + border-right: 1px solid rgba(255, 255, 255, 0.12); + border-left: none; +} + +.sidebar:not(separator):dir(rtl), .sidebar.right:not(separator) { + border-left: 1px solid rgba(255, 255, 255, 0.12); + border-right: none; +} + +.sidebar listview.view, +.sidebar list { + background-color: transparent; + color: inherit; +} + +paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; +} + +flap > stacksidebar.sidebar:dir(ltr), leaflet.unfolded > box > stacksidebar.sidebar:dir(ltr) { + border-right: none; +} + +flap > stacksidebar.sidebar:dir(rtl), leaflet.unfolded > box > stacksidebar.sidebar:dir(rtl) { + border-left: none; +} + +stacksidebar list { + padding: 6px; + background-color: #2d3036; +} + +stacksidebar row { + min-height: 24px; + padding: 6px; + border-radius: 6px; +} + +stacksidebar row + row { + margin-top: 4px; +} + +stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; + color: inherit; +} + +separator.sidebar { + background-color: rgba(255, 255, 255, 0.12); + border-right: none; +} + +separator.sidebar.selection-mode, .selection-mode separator.sidebar { + background-color: rgba(255, 255, 255, 0.12); +} + +/********************** + * Navigation Sidebar * + **********************/ +.navigation-sidebar { + padding: 4.5px 0; + border-right: none; +} + +.navigation-sidebar, .navigation-sidebar.view { + background-color: transparent; + color: inherit; +} + +.navigation-sidebar.background { + background-color: #2d3036; + color: rgba(255, 255, 255, 0.7); +} + +.navigation-sidebar > separator { + margin: 4.5px 0; +} + +.navigation-sidebar > row { + min-height: 24px; + padding: 6px; + border-radius: 6px; + margin: 1.5px 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, outline-color 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-width 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), outline-offset 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + outline: 0 solid transparent; + outline-offset: 2px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + background-size: 1000% 1000%; + color: #FFFFFF; + background-color: transparent; +} + +.navigation-sidebar > row:hover { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +.navigation-sidebar > row:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +.navigation-sidebar > row:active image, .navigation-sidebar > row:active label { + color: #FFFFFF; +} + +.navigation-sidebar > row:selected { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +.navigation-sidebar > row:selected image, .navigation-sidebar > row:selected label { + color: #FFFFFF; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +row image.sidebar-icon:disabled { + color: rgba(255, 255, 255, 0.3); +} + +placessidebar > viewport.frame { + border-style: none; +} + +placessidebar list > separator { + margin: 3px 0; +} + +placessidebar row:selected { + font-weight: 500; +} + +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 { + color: inherit; +} + +placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar row.sidebar-placeholder-row { + background-color: alpha(currentColor, 0.08); +} + +placessidebar row.sidebar-new-bookmark-row { + color: #5b9bf8; +} + +placessidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #5b9bf8; +} + +placessidebar row:drop(active) { + background-color: alpha(currentColor, 0.08); +} + +placesview .server-list-button > image { + transition: 200ms cubic-bezier(0, 0, 0.2, 1); + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + transition: 200ms cubic-bezier(0, 0, 0.2, 1); + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + border-spacing: 6px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(#3f4348); + background-size: 1px 1px; + background-clip: content-box; + box-shadow: none; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #22262c; + background-image: image(#3f4348), image(#3f4348); + 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; +} + +/************ + * GtkVideo * + ************/ +video { + background: black; + border-radius: 6px; +} + +video image.osd { + min-width: 64px; + min-height: 64px; + border-radius: 9999px; + border: none; +} + +/************** + * GtkInfoBar * + **************/ +infobar > revealer > box { + padding: 6px; + border-spacing: 12px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box { + background-color: #25292f; + color: #FFFFFF; +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action), infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action) { + color: #5b9bf8; + background-color: alpha(currentColor, 0.15); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):hover { + color: #5b9bf8; + background-color: alpha(currentColor, 0.25); +} + +infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:hover > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):active, infobar.info:backdrop > revealer > box button.text-button:not(:disabled):not(.suggested-action):not(.destructive-action):checked { + color: #FFFFFF; +} + +infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { + background-color: #5b9bf8; + color: #FFFFFF; +} + +infobar.action > revealer > box button, infobar.action > revealer > box button:hover, infobar.action > revealer > box button:focus, infobar.action > revealer > box button:active, infobar.action > revealer > box button:checked, infobar.action > revealer > box button.text-button:not(:disabled), infobar.action:backdrop > revealer > box button, infobar.action:backdrop > revealer > box button:hover, infobar.action:backdrop > revealer > box button:focus, infobar.action:backdrop > revealer > box button:active, infobar.action:backdrop > revealer > box button:checked, infobar.action:backdrop > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button, infobar.question > revealer > box button:hover, infobar.question > revealer > box button:focus, infobar.question > revealer > box button:active, infobar.question > revealer > box button:checked, infobar.question > revealer > box button.text-button:not(:disabled), infobar.question:backdrop > revealer > box button, infobar.question:backdrop > revealer > box button:hover, infobar.question:backdrop > revealer > box button:focus, infobar.question:backdrop > revealer > box button:active, infobar.question:backdrop > revealer > box button:checked, infobar.question:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.action > revealer > box *:link, infobar.action > revealer > box link, infobar.action:backdrop > revealer > box *:link, infobar.action:backdrop > revealer > box link, infobar.question > revealer > box *:link, infobar.question > revealer > box link, infobar.question:backdrop > revealer > box *:link, infobar.question:backdrop > revealer > box link { + color: #FFFFFF; +} + +infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { + background-color: #438cf7; +} + +infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box button, infobar.warning > revealer > box button:hover, infobar.warning > revealer > box button:focus, infobar.warning > revealer > box button:active, infobar.warning > revealer > box button:checked, infobar.warning > revealer > box button.text-button:not(:disabled), infobar.warning:backdrop > revealer > box button, infobar.warning:backdrop > revealer > box button:hover, infobar.warning:backdrop > revealer > box button:focus, infobar.warning:backdrop > revealer > box button:active, infobar.warning:backdrop > revealer > box button:checked, infobar.warning:backdrop > revealer > box button.text-button:not(:disabled) { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning > revealer > box *:link, infobar.warning > revealer > box link, infobar.warning:backdrop > revealer > box *:link, infobar.warning:backdrop > revealer > box link { + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning:hover > revealer > box { + background-color: #fbb814; +} + +infobar.error > revealer > box, infobar.error:backdrop > revealer > box { + background-color: #F44336; + color: #FFFFFF; +} + +infobar.error > revealer > box button, infobar.error > revealer > box button:hover, infobar.error > revealer > box button:focus, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error > revealer > box button.text-button:not(:disabled), infobar.error:backdrop > revealer > box button, infobar.error:backdrop > revealer > box button:hover, infobar.error:backdrop > revealer > box button:focus, infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error:backdrop > revealer > box button.text-button:not(:disabled) { + color: #FFFFFF; +} + +infobar.error > revealer > box *:link, infobar.error > revealer > box link, infobar.error:backdrop > revealer > box *:link, infobar.error:backdrop > revealer > box link { + color: #FFFFFF; +} + +infobar.error:hover > revealer > box { + background-color: #f32c1e; +} + +/************ + * Tooltips * + ************/ +tooltip { + padding: 6px 12px; + box-shadow: none; + border: none; +} + +tooltip.background { + background-color: rgba(38, 41, 46, 0.9); + color: #FFFFFF; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); + border-radius: 6px; + margin: 2px 6px 8px 6px; +} + +tooltip > box { + border-spacing: 6px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.top overlay { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +colorswatch.bottom { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +colorswatch.dark { + color: #FFFFFF; +} + +colorswatch.light { + color: rgba(0, 0, 0, 0.87); +} + +colorchooser colorswatch:hover { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 0 0 2px #5b9bf8; +} + +colorswatch#add-color-button { + border-radius: 6px 0 0 6px; + color: #FFFFFF; +} + +colorswatch#add-color-button:only-child { + border-radius: 6px; +} + +colorswatch#add-color-button overlay { + background-color: rgba(255, 255, 255, 0.04); +} + +colorswatch#add-color-button overlay:hover { + background-color: rgba(255, 255, 255, 0.12); + box-shadow: none; +} + +colorswatch#add-color-button overlay:active { + background-color: rgba(255, 255, 255, 0.26); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 6px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 6px; +} + +colorswatch#editor-color-sample overlay:hover { + box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.15); +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #2d3036; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #22262c; +} + +/********************** + * Window Decorations * + **********************/ +window { + border: none; + outline: none; + padding: 0; + margin: 0; +} + +window.csd { + border-radius: 12px; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 15px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 2px 3px -1px transparent, 0 4px 3px 0 transparent, 0 1px 6px 0 transparent; + transition: none; +} + +window.csd:backdrop { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 8px 6px -5px transparent, 0 16px 15px 2px transparent, 0 6px 18px 5px transparent; + transition: none; +} + +window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-top, window.csd.tiled-right, window.csd.tiled-bottom, window.csd.tiled-left { + border-radius: 0; +} + +window.csd.maximized, window.csd.fullscreen { + box-shadow: none; +} + +window.solid-csd { + margin: 0; + padding: 2px; + border-radius: 0; + background-color: #1b1e24; + border: 1px solid #3f4348; +} + +window.solid-csd:backdrop { + background-color: #22262c; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) { + min-height: 22px; + min-width: 22px; + padding: 0; + margin: 0 4px; +} + +headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image { + background-color: transparent; +} + +headerbar windowcontrols button.minimize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { + color: white; +} + +headerbar windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 10%, rgba(255, 255, 255, 0.15) 0%); +} + +headerbar windowcontrols button.minimize:backdrop:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:backdrop:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:backdrop:not(.suggested-action):not(.destructive-action) { + opacity: 0.65; +} + +headerbar windowcontrols button.minimize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +headerbar windowcontrols button.maximize:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action) { + background-color: #5b9bf8; +} + +headerbar windowcontrols button.close:hover:not(.suggested-action):not(.destructive-action), headerbar windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { + background-color: #31c4b6; +} + +headerbar windowcontrols { + border-spacing: 6px; +} + +headerbar windowcontrols.start:not(.empty):dir(ltr), headerbar windowcontrols.end:not(.empty):dir(rtl) { + margin-right: 9px; + margin-left: 9px; +} + +headerbar windowcontrols.start:not(.empty):dir(rtl), headerbar windowcontrols.end:not(.empty):dir(ltr) { + margin-left: 9px; + margin-right: 9px; +} + +.view:selected, iconview:selected, gridview > child:selected, columnview.view:selected, +treeview.view:selected, calendar:selected, calendar > grid > label.day-number:selected { + background-color: alpha(currentColor, 0.06); +} + +flowbox > flowboxchild:selected, calendar > grid > label.today { + color: #5b9bf8; + background-color: rgba(91, 155, 248, 0.2); +} + +textview text selection:focus, textview text selection, label > selection, entry > text > selection, spinbutton > text > selection, headerbar popover.background entry > text > selection, calendar > grid > label.today:selected { + color: #FFFFFF; + background-color: #5b9bf8; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + color: #5b9bf8; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg")); +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + padding-top: 6px; +} + +shortcuts-section { + margin: 20px; +} + +.shortcuts-search-results { + margin: 20px; + border-spacing: 24px; +} + +shortcut { + border-spacing: 6px; +} + +shortcut > .keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(255, 255, 255, 0.12); + border-radius: 7px; + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.12); + background-color: #2d3036; + color: #FFFFFF; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + caret-color: #5b9bf8; +} + +stackswitcher { + min-height: 0; + padding: 3px; + border-radius: 9px; + background-color: rgba(255, 255, 255, 0.04); + border: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { + margin: 0 0; + background-color: transparent; + border-radius: 6px; + padding: 3px 10px; + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button.text-button:not(.suggested-action):not(.destructive-action) { + min-width: 100px; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus { + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover { + background-color: alpha(currentColor, 0.1); + box-shadow: none; +} + +stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, background-color 0ms, box-shadow 0ms; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-color: transparent; + color: #FFFFFF; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1); +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 36px; + min-height: 36px; + padding: 0; +} + +/************* + * App Icons * + *************/ +.lowres-icon { + -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.icon-dropshadow { + -gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 1px 6px rgba(0, 0, 0, 0.1); +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker > contents { + padding: 0; +} + +.emoji-searchbar { + padding: 6px; + border-spacing: 6px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background: none; +} + +.emoji-searchbar entry text { + background: none; + box-shadow: none; +} + +.emoji-toolbar { + padding: 3px; + border-spacing: 3px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + background: none; +} + +.emoji-toolbar > flowboxchild { + padding: 3px; +} + +.emoji-toolbar > flowboxchild > button.emoji-section { + padding: 6px; +} + +button.emoji-section { + margin: 0; + padding: 6px; + border-radius: 6px; +} + +button.emoji-section:checked { + color: #5b9bf8; +} + +popover.emoji-picker emoji { + font-size: x-large; + padding: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; +} + +popover.emoji-picker emoji:focus, popover.emoji-picker emoji:hover { + background: alpha(currentColor, 0.08); +} + +emoji-completion-row { + min-height: 28px; + padding: 0 12px; +} + +emoji-completion-row > box { + border-spacing: 6px; + padding: 2px 6px; +} + +emoji-completion-row:focus, emoji-completion-row:hover, +emoji-completion-row emoji:hover, emoji-completion-row emoji:focus { + background-color: alpha(currentColor, 0.08); + color: #FFFFFF; +} + +popover.entry-completion > contents { + padding: 0; +} + +headerbar splitbutton.omnibar notification button, #NautilusPathButton, #NautilusPathBar > menubutton > button, #NautilusQueryEditorTag > button.image-button, #NautilusQueryEditor > menubutton > button.image-button { + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + box-shadow: none; +} + +headerbar splitbutton.omnibar notification button:focus, #NautilusPathButton:focus, #NautilusPathBar > menubutton > button:focus, #NautilusQueryEditorTag > button.image-button:focus, #NautilusQueryEditor > menubutton > button.image-button:focus { + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:hover, #NautilusPathButton:hover, #NautilusPathBar > menubutton > button:hover, #NautilusQueryEditorTag > button.image-button:hover, #NautilusQueryEditor > menubutton > button.image-button:hover { + background-color: alpha(currentColor, 0.08); + box-shadow: none; + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:active, #NautilusPathButton:active, #NautilusPathBar > menubutton > button:active, #NautilusQueryEditorTag > button.image-button:active, #NautilusQueryEditor > menubutton > button.image-button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #FFFFFF; + box-shadow: none; + box-shadow: none; + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:checked, #NautilusPathButton:checked, #NautilusPathBar > menubutton > button:checked, #NautilusQueryEditorTag > button.image-button:checked, #NautilusQueryEditor > menubutton > button.image-button:checked { + background-color: alpha(currentColor, 0.1); + background-image: none; + color: #FFFFFF; + box-shadow: none; + color: #FFFFFF; +} + +headerbar splitbutton.omnibar notification button:disabled, #NautilusPathButton:disabled, #NautilusPathBar > menubutton > button:disabled, #NautilusQueryEditorTag > button.image-button:disabled, #NautilusQueryEditor > menubutton > button.image-button:disabled { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; +} + +headerbar splitbutton.omnibar notification button:backdrop, #NautilusPathButton:backdrop, #NautilusPathBar > menubutton > button:backdrop, #NautilusQueryEditorTag > button.image-button:backdrop, #NautilusQueryEditor > menubutton > button.image-button:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +headerbar splitbutton.omnibar notification button:backdrop:focus, #NautilusPathButton:backdrop:focus, #NautilusPathBar > menubutton > button:backdrop:focus, #NautilusQueryEditorTag > button.image-button:backdrop:focus, #NautilusQueryEditor > menubutton > button.image-button:backdrop:focus, headerbar splitbutton.omnibar notification button:backdrop:hover, #NautilusPathButton:backdrop:hover, #NautilusPathBar > menubutton > button:backdrop:hover, #NautilusQueryEditorTag > button.image-button:backdrop:hover, #NautilusQueryEditor > menubutton > button.image-button:backdrop:hover, headerbar splitbutton.omnibar notification button:backdrop:active, #NautilusPathButton:backdrop:active, #NautilusPathBar > menubutton > button:backdrop:active, #NautilusQueryEditorTag > button.image-button:backdrop:active, #NautilusQueryEditor > menubutton > button.image-button:backdrop:active { + color: rgba(255, 255, 255, 0.7); +} + +headerbar splitbutton.omnibar notification button:backdrop:checked, #NautilusPathButton:backdrop:checked, #NautilusPathBar > menubutton > button:backdrop:checked, #NautilusQueryEditorTag > button.image-button:backdrop:checked, #NautilusQueryEditor > menubutton > button.image-button:backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +headerbar splitbutton.omnibar notification button:backdrop:disabled, #NautilusPathButton:backdrop:disabled, #NautilusPathBar > menubutton > button:backdrop:disabled, #NautilusQueryEditorTag > button.image-button:backdrop:disabled, #NautilusQueryEditor > menubutton > button.image-button:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.nautilus-window placesview label { + color: rgba(255, 255, 255, 0.7); +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + margin: 6px; + border-style: none; + border-radius: 6px; + background-color: #5b9bf8; + color: #FFFFFF; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.05), 0 2px 3px -1px rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.05); +} + +.nautilus-window .floating-bar button { + margin: 4px; + color: #FFFFFF; +} + +#NautilusQueryEditor > menubutton > button.image-button { + min-width: 24px; + min-height: 24px; +} + +#NautilusQueryEditor > text, #NautilusQueryEditor > box, #NautilusQueryEditor > menubutton > button.image-button { + margin: 6px 0; +} + +#NautilusQueryEditorTag { + background-color: rgba(255, 255, 255, 0.12); +} + +#NautilusQueryEditorTag > button.image-button { + margin: 0; + padding: 0; +} + +#NautilusPathBar { + background-color: alpha(currentColor, 0.05); + border-radius: 6px; + margin: 6px 0; + color: rgba(255, 255, 255, 0.7); + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.04); +} + +#NautilusPathBar > menubutton { + margin: 3px; +} + +#NautilusPathBar > menubutton > button { + min-height: 20px; + min-width: 20px; + margin: 0; + padding: 6px; + border-radius: 4px; +} + +#NautilusPathButton { + margin: 3px; + min-height: 24px; + min-width: 24px; + padding-top: 0; + padding-bottom: 0; + border-radius: 4px; + background-color: transparent; +} + +#NautilusPathButton.current-dir { + color: #FFFFFF; +} + +#NautilusPathButton.current-dir:hover, #NautilusPathButton.current-dir:active { + background: none; + box-shadow: none; +} + +#NautilusViewCell clamp box { + margin: 0; + border-spacing: 0; +} + +window.dialog > box > stack > box > box > notebook.frame { + border-width: 0 0 0 1px; + border-radius: 0; +} + +.display-container { + margin-bottom: 6px; +} + +.small .display-container { + border-radius: 0; +} + +.display-container .history-view { + background-color: #25292f; +} + +.display-container #displayitem { + padding: 0 12px 8px 0; + font-size: 1.4em; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.math-buttons button { + font-size: 1.1em; + padding: 2px 6px; +} + +.math-buttons button.text-button { + padding-left: 16px; + padding-right: 16px; +} + +leaflet button.number-button { + background-color: rgba(255, 255, 255, 0.1); +} + +leaflet button.number-button:hover { + background-color: rgba(255, 255, 255, 0.2); +} + +leaflet button.number-button:active { + background-color: rgba(255, 255, 255, 0.3); +} + +label.primary-label, label.month-name, label.secondary-label { + font-size: 16pt; + font-weight: bold; + padding: 12px; +} + +label.primary-label, label.month-name { + color: #5b9bf8; +} + +label.secondary-label { + color: rgba(255, 255, 255, 0.4); +} + +calendar-view { + font-size: 10pt; +} + +calendar-view:selected { + color: #5b9bf8; + font-weight: bold; +} + +calendar-view.header, +label.header { + font-size: 10pt; + font-weight: bold; + color: rgba(255, 255, 255, 0.4); +} + +calendar-view.current, +weekgrid.current { + background-color: alpha(#5b9bf8, 0.3); +} + +popover.events { + background-color: #1a1f26; + padding: 0; +} + +popover.events box { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +popover.events list { + background-color: #25292f; + border-radius: 6px; +} + +popover.events scrolledwindow { + border-width: 0; +} + +popover.events button { + border-radius: 6px; + border-top-left-radius: 0; + border-top-right-radius: 0; + border-style: solid none none; + box-shadow: none; +} + +event { + margin: 1px; + font-size: 0.9rem; +} + +event widget.content { + margin: 4px; +} + +event.timed, event:not(.slanted):not(.slanted-start):not(.slanted-end) { + border-radius: 6px; +} + +event.timed widget.edge { + border-radius: 3px; + min-width: 5px; +} + +event.slanted-start, event.slanted-end:dir(rtl) { + padding-left: 16px; + border-radius: 0 3px 3px 0; +} + +event.slanted-end, event.slanted-start:dir(rtl) { + padding-right: 16px; + border-radius: 3px 0 0 3px; +} + +event.color-dark:not(.timed) { + color: white; + outline-color: rgba(0, 0, 0, 0.3); +} + +event.timed, event.color-light:not(.timed) { + color: alpha(black, 0.75); + outline-color: rgba(255, 255, 255, 0.5); +} + +popover.event-popover, +popover.event-popover > contents { + padding: 0; +} + +.search-viewport { + background-color: #25292f; +} + +.calendar-list { + background-color: transparent; +} + +.calendar-list > list { + border-radius: 4px; +} + +.sources-button { + margin-top: 0; + margin-bottom: 0; + border-radius: 0; + border-top-style: none; + border-bottom-style: none; +} + +.sources-button:hover:not(:backdrop) { + background-image: none; + text-shadow: none; +} + +.calendar-color-image { + -gtk-icon-filter: none; +} + +image.calendar-color-image, +button:active:not(:backdrop) .calendar-color-image, +button:checked:not(:backdrop) .calendar-color-image, +.calendars-list .calendar-color-image:not(:backdrop):not(:disabled), +.calendar-list .calendar-color-image:not(:backdrop):not(:disabled), +.sources-button:not(:backdrop):not(:disabled) .calendar-color-image { + -gtk-icon-shadow: 0 1px alpha(black, 0.1); +} + +datechooser navigator { + margin-right: 6px; + margin-left: 6px; + margin-bottom: 6px; +} + +datechooser navigator label { + font-weight: bold; +} + +datechooser navigator button, datechooser navigator button.image-button { + min-height: 36px; + min-width: 36px; + padding: 0; +} + +datechooser .weeknum, datechooser .weekday { + color: rgba(255, 255, 255, 0.4); + font-size: smaller; +} + +datechooser button.day { + font-size: 10pt; + font-weight: normal; + margin: 3px; + padding: 0; + min-height: 36px; + min-width: 36px; + transition: none; +} + +datechooser button.day dot { + background-color: #FFFFFF; + border-radius: 50%; + min-height: 3px; + min-width: 3px; +} + +datechooser button.day:selected, datechooser button.day.today:selected { + background-color: #5b9bf8; + color: #FFFFFF; + font-weight: bold; +} + +datechooser button.day:selected dot, datechooser button.day.today:selected dot { + background-color: #FFFFFF; +} + +datechooser button.day.today { + color: #5b9bf8; +} + +datechooser button.day.today dot { + background-color: #5b9bf8; +} + +datechooser button.day.other-month:not(:hover), datechooser button.day.other-month:backdrop { + color: alpha(currentColor, 0.1); +} + +datechooser button.day.other-month:not(:hover) dot, datechooser button.day.other-month:backdrop dot { + background-color: alpha(currentColor, 0.1); +} + +datechooser button.day.other-month:hover:not(:backdrop) { + color: rgba(255, 255, 255, 0.4); +} + +datechooser button.day.other-month:hover:not(:backdrop) dot { + background-color: rgba(255, 255, 255, 0.4); +} + +.week-header { + padding: 0; +} + +.week-header > box:first-child { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.week-header .week-number { + font-size: 16pt; + font-weight: bold; + padding: 12px 12px 18px 12px; + color: rgba(255, 255, 255, 0.26); +} + +.week-header.week-temperature { + font-size: 10pt; + font-weight: bold; + color: rgba(255, 255, 255, 0.4); +} + +.week-header.lines { + color: rgba(255, 255, 255, 0.12); +} + +weekhourbar > label { + font-size: 10pt; + padding: 4px 6px; +} + +.week-view .lines { + color: rgba(255, 255, 255, 0.12); +} + +weekgrid > widget.now-strip { + background-color: alpha(#5b9bf8, 0.8); + margin: 0 0 0 1px; + min-height: 3px; +} + +weekgrid:selected, weekgrid.dnd, +.week-header:selected, +.week-header.dnd { + background-color: alpha(#5b9bf8, 0.25); +} + +monthcell { + border: solid 1px rgba(255, 255, 255, 0.12); + border-width: 1px 0 0 1px; + background-color: transparent; + transition: background-color 200ms; +} + +monthcell:hover:not(.out-of-month):not(.today) { + background-color: #2d3036; + transition: background-color 200ms; + color: #FFFFFF; +} + +monthcell:selected { + background-color: alpha(#5b9bf8, 0.1); +} + +monthcell:selected:hover { + background-color: alpha(#5b9bf8, 0.2); +} + +monthcell:selected label.day-label { + font-weight: bold; +} + +monthcell:nth-child(7n + 1) { + border-left-width: 0; +} + +monthcell.today { + background-color: alpha(#5b9bf8, 0.2); +} + +monthcell.today:hover { + background-color: alpha(#5b9bf8, 0.3); + color: #5b9bf8; +} + +monthcell.today:selected { + background-color: alpha(#5b9bf8, 0.25); +} + +monthcell.today:selected:hover { + background-color: alpha(#5b9bf8, 0.35); +} + +monthcell label { + color: #FFFFFF; + font-size: 0.9rem; +} + +monthcell label.day-label { + font-size: 1rem; +} + +monthcell.out-of-month { + background-color: rgba(255, 255, 255, 0.04); +} + +monthcell.out-of-month label { + color: rgba(255, 255, 255, 0.7); +} + +monthcell button { + padding: 0 6px; + border-radius: 0; + border-bottom: none; + border-right: none; +} + +monthpopover > box { + margin: 0; + padding: 0; + background-color: transparent; +} + +.notes-section box > textview { + border-radius: 6px; + padding: 6px; +} + +.notes-section box > textview > text { + background: none; +} + +agenda-view list > row { + padding: 2px 12px; +} + +agenda-view list > label { + padding: 6px 12px; +} + +label.no-events { + font-style: italic; +} + +searchbutton > popover > arrow { + background: none; + border: none; +} + +datechooser { + padding: 6px; +} + +datechooser .current-week { + background: alpha(#1b1e24, 0.7); + color: #FFFFFF; + border-radius: 6px; +} + +.contacts-contact-list list.navigation-sidebar { + background: none; +} + +.details-page { + margin: 24px 0px; +} + +.installed-overlay-box { + font-size: smaller; + background-color: #5b9bf8; + border-radius: 0; + color: #FFFFFF; + text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); +} + +screenshot-carousel box.frame { + border-width: 1px 0; + border-radius: 0; +} + +screenshot-carousel button, +.featured-carousel button { + margin: 12px; +} + +.screenshot-image-main .image1, +.screenshot-image-main .image2 { + margin-top: 6px; + margin-bottom: 12px; + margin-left: 6px; + margin-right: 6px; +} + +.app-tile-label { + font-size: 105%; +} + +.review-textbox { + padding: 6px; +} + +.origin-rounded-box { + background-color: rgba(255, 255, 255, 0.12); + border-radius: 9999px; + padding: 4px; +} + +.origin-beta { + color: #FBC02D; +} + +.origin-button > button { + padding: 3px 9px; +} + +flowboxchild.card { + background-color: transparent; + box-shadow: none; + border: none; + padding: 0; +} + +button.card.category-tile { + padding: 21px; + border: none; + border-radius: 6px; + min-width: 140px; + font-weight: 900; + font-size: larger; +} + +button.card.category-tile.category-tile-iconless { + padding: 9px 15px; + min-width: 130px; + font-size: 105%; + font-weight: normal; +} + +button.card.category-tile.category-create { + background: linear-gradient(180deg, #ce8cd7 0%, #2861c6 100%); + color: white; +} + +button.card.category-tile.category-create:hover { + background: linear-gradient(180deg, shade(#ce8cd7, 1.07) 0%, shade(#2861c6, 1.1) 100%); + color: white; +} + +button.card.category-tile.category-create:active { + background: linear-gradient(180deg, shade(#ce8cd7, 0.95) 0%, shade(#2861c6, 0.95) 100%); + color: white; +} + +button.card.category-tile.category-develop { + background: #5e5c64; + color: white; +} + +button.card.category-tile.category-develop:hover { + background: shade(#5e5c64, 1.2); + color: white; +} + +button.card.category-tile.category-develop:active { + background-color: shade(#5e5c64, 0.95); + color: white; +} + +button.card.category-tile.category-learn { + background: linear-gradient(180deg, #2ec27e 30%, #27a66c 100%); + color: white; +} + +button.card.category-tile.category-learn:hover { + background: linear-gradient(180deg, shade(#2ec27e, 1.06) 30%, shade(#27a66c, 1.06) 100%); + color: white; +} + +button.card.category-tile.category-learn:active { + background: linear-gradient(180deg, shade(#2ec27e, 0.95) 30%, shade(#27a66c, 0.95) 100%); + color: white; +} + +button.card.category-tile.category-play { + background: linear-gradient(75deg, #f9e2a7 0%, #eb5ec3 50%, #6d53e0 100%); + color: #393484; +} + +button.card.category-tile.category-play:hover { + background: linear-gradient(75deg, shade(#f9e2a7, 1.07) 0%, shade(#eb5ec3, 1.07) 50%, shade(#6d53e0, 1.07) 100%); + color: #393484; +} + +button.card.category-tile.category-play:active { + background: linear-gradient(75deg, shade(#f9e2a7, 0.97) 0%, shade(#eb5ec3, 0.95) 50%, shade(#6d53e0, 1.07) 100%); + color: #393484; +} + +button.card.category-tile.category-socialize { + background: linear-gradient(90deg, #ef4e9b 0%, #f77466 100%); + color: rgba(255, 255, 255, 0.7); +} + +button.card.category-tile.category-socialize:hover { + background: linear-gradient(90deg, shade(#ef4e9b, 1.08) 0%, shade(#f77466, 1.08) 100%); +} + +button.card.category-tile.category-socialize:active { + background: linear-gradient(90deg, shade(#ef4e9b, 0.95) 0%, shade(#f77466, 0.95) 100%); +} + +button.card.category-tile.category-work { + padding: 1px; + /* FIXME: work around https://gitlab.gnome.org/GNOME/gtk/-/issues/4324 */ + color: #1c71d8; + background-color: #fdf8d7; + background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); + background-size: 10px 10px, 10px 10px; + background-position: -1px -4px, center -1px; +} + +button.card.category-tile.category-work:hover { + color: #1c71d8; + background-color: #fefcef; + background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); +} + +button.card.category-tile.category-work:active { + color: #1c71d8; + background-color: #fcf4bf; + background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); +} + +clamp.medium .category-tile:not(.category-tile-iconless), +clamp.large .category-tile:not(.category-tile-iconless) { + font-size: larger; +} + +.featured-tile { + all: unset; + padding: 0; + box-shadow: none; + color: #FFFFFF; +} + +.featured-tile label.title-1 { + margin-top: 6px; + margin-bottom: 6px; +} + +.featured-tile.narrow label.title-1 { + font-size: 16pt; +} + +.application-details-infobar, .application-details-infobar.info { + background-color: rgba(255, 255, 255, 0.04); + color: #FFFFFF; + border: 1px solid rgba(255, 255, 255, 0.12); +} + +.application-details-infobar.warning { + background-color: #FBC02D; + color: rgba(0, 0, 0, 0.87); + border: 1px solid rgba(0, 0, 0, 0.15); +} + +@keyframes install-progress-unknown-move { + 0% { + background-position: 0%; + } + 50% { + background-position: 100%; + } + 100% { + background-position: 0%; + } +} + +.application-details-description .button { + padding-left: 24px; + padding-right: 24px; +} + +.install-progress { + background-image: linear-gradient(to top, #5b9bf8 2px, alpha(#5b9bf8, 0) 2px); + background-repeat: no-repeat; + background-position: 0 bottom; + background-size: 0; + transition: none; +} + +.install-progress:dir(rtl) { + background-position: 100% bottom; +} + +.review-row > * { + margin: 12px; +} + +.review-row button { + font-size: smaller; +} + +.review-row .vote-buttons button { + margin-right: -1px; +} + +.review-row .vote-buttons button:not(:first-child) { + border-image: linear-gradient(to top, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) 0 0 0 1/5px 0 5px 1px; +} + +.review-row .vote-buttons button:hover, +.review-row .vote-buttons button:active, +.review-row .vote-buttons button:hover + button, +.review-row .vote-buttons button:active + button { + border-image: none; +} + +review-bar { + color: rgba(255, 255, 255, 0.4); + background-image: none; + background-color: rgba(255, 255, 255, 0.26); +} + +.review-histogram star-image { + color: rgba(255, 255, 255, 0.4); +} + +.version-arrow-label { + font-size: x-small; +} + +.overview-more-button { + font-size: smaller; + padding: 0 16px; +} + +.app-row-origin-text { + font-size: smaller; +} + +.app-listbox-header { + padding: 6px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.image-list { + background-color: transparent; +} + +box.star { + background-color: transparent; + background-image: none; +} + +button.star { + outline-offset: 0; + background-color: transparent; + background-image: none; + border-image: none; + border-radius: 0; + border-width: 0; + padding: 0; + box-shadow: none; + outline-offset: -1px; +} + +star-image { + color: #FFD600; +} + +.dimmer-label { + opacity: 0.25; +} + +.update-failed-details { + font-family: Monospace; + font-size: smaller; + padding: 16px; +} + +.upgrade-banner { + padding: 0px; + border-radius: 6px; + border: none; +} + +.upgrade-banner-background { + background: linear-gradient(to bottom, #66BB6A, #5b9bf8); + color: white; +} + +.upgrade-buttons #button_upgrades_install { + padding-left: 16px; + padding-right: 16px; +} + +scrolledwindow.list-page > viewport > clamp > box { + margin: 24px 12px; + border-spacing: 24px; +} + +.update-preferences preferencesgroup > box > box { + margin-top: 18px; +} + +.section > label:not(:first-child) { + margin-top: 6px; +} + +.section > box:not(:first-child) { + margin-top: 12px; +} + +clamp.status-page { + margin: 36px 12px; +} + +clamp.status-page .iconbox { + min-height: 128px; + min-width: 128px; +} + +clamp.status-page .icon { + color: rgba(255, 255, 255, 0.4); + min-height: 32px; + min-width: 32px; +} + +clamp.status-page .icon:not(:last-child) { + margin-bottom: 36px; +} + +clamp.status-page .title:not(:last-child) { + margin-bottom: 12px; +} + +app-context-bar .context-tile { + border: 1px solid rgba(255, 255, 255, 0.12); + background-color: transparent; + border-radius: 0; + padding: 24px 12px 21px 12px; + outline-offset: 5px; + transition-property: outline, outline-offset, background-image; + border-bottom: none; + border-right: none; +} + +app-context-bar .context-tile:hover { + background-image: none; + background-color: alpha(currentColor, 0.08); +} + +app-context-bar .context-tile.keyboard-activating, app-context-bar .context-tile:active { + background-color: alpha(currentColor, 0.12); +} + +app-context-bar .context-tile:focus:focus-visible { + outline-offset: -1px; +} + +app-context-bar.horizontal box:first-child .context-tile:first-child, app-context-bar.vertical .context-tile:first-child { + border-left: none; +} + +app-context-bar.horizontal .context-tile, app-context-bar.vertical box:first-child .context-tile { + border-top: none; +} + +app-context-bar > box:not(:first-child) > button.flat { + border-radius: 0; +} + +app-context-bar > box:not(:first-child) > button.flat:last-child { + border-radius: 0 6px 6px 0; +} + +app-context-bar > box:first-child > button.flat { + border-radius: 0; +} + +app-context-bar > box:first-child > button.flat:first-child { + border-radius: 6px 0 0 6px; +} + +app-context-bar > box > button.flat { + border-left-color: rgba(255, 255, 255, 0.12); +} + +carousel.card { + border: none; + background-color: rgba(255, 255, 255, 0.04); +} + +.context-tile-lozenge { + min-height: 28px; + min-width: 28px; + padding: 6px; + font-size: 18px; + font-weight: bold; + border-radius: 9999px; +} + +.context-tile-lozenge.large { + font-size: 24px; + padding: 16px; + min-width: 24px; + /* 60px minus the left and right padding */ + min-height: 24px; + /* 60px minus the top and bottom padding */ +} + +.context-tile-lozenge.wide-image image { + margin-top: -28px; + margin-bottom: -28px; +} + +.context-tile-lozenge image { + -gtk-icon-style: symbolic; +} + +.context-tile-lozenge.grey { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.12); +} + +.context-tile-lozenge.green, .context-tile-lozenge.details-rating-0 { + color: #419345; + background-color: rgba(102, 187, 106, 0.15); +} + +.context-tile-lozenge.blue, .context-tile-lozenge.details-rating-5 { + color: #5b9bf8; + background-color: rgba(91, 155, 248, 0.15); +} + +.context-tile-lozenge.yellow, .context-tile-lozenge.details-rating-12 { + color: #d79b04; + background-color: rgba(251, 192, 45, 0.15); +} + +.context-tile-lozenge.details-rating-15 { + color: #FF8A65; + background-color: rgba(255, 138, 101, 0.15); +} + +.context-tile-lozenge.red, .context-tile-lozenge.details-rating-18 { + color: #d2190b; + background-color: rgba(244, 67, 54, 0.15); +} + +.eol-red { + font-weight: bold; + color: #F44336; +} + +window.narrow .app-title { + font-size: 16pt; +} + +window.narrow .app-developer { + font-size: small; +} + +.install-progress-label { + font-size: smaller; + font-feature-settings: "tnum"; +} + +scrolledwindow.fake-adw-status-page > viewport > box { + margin: 36px 12px; +} + +scrolledwindow.fake-adw-status-page > viewport > box > clamp:not(:last-child) > box { + margin-bottom: 36px; +} + +scrolledwindow.fake-adw-status-page > viewport > box > clamp > box > .icon:not(:last-child) { + margin-bottom: 36px; +} + +scrolledwindow.fake-adw-status-page > viewport > box > clamp > box > .title:not(:last-child) { + margin-bottom: 12px; +} + +statuspage.icon-dropshadow image.icon { + -gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1); +} + +window.info scrollbar.vertical { + margin-top: 48px; + background: none; + box-shadow: none; +} + +window.info scrollbar.vertical trough { + margin-top: 0; +} + +row.app > box.header { + margin-left: 12px; + margin-right: 12px; +} + +row.app > box.header { + border-spacing: 12px; +} + +row.app > box.header > image { + margin-top: 12px; + margin-bottom: 12px; +} + +row.app label.warning { + color: #F44336; +} + +@keyframes pre-delay { + from { + opacity: 0; + } + to { + opacity: 0; + } +} + +@keyframes fade-in { + from { + filter: opacity(0%); + } +} + +/* Give a fade-in animation to spinners. */ +spinner.fade-in:checked { + animation: pre-delay 0.5s linear 1, fade-in 1s linear 1, spin 1s linear infinite; + animation-delay: 0s, 0.5s, 0.5s; +} + +window > contents > leaflet > box > stack.background { + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, transparent 48px, #22262c 48px, #22262c); +} + +@define-color weather_temp_chart_fill_color rgba(248, 228, 92, 0.5); +@define-color weather_temp_chart_stroke_color #f6d32d; +@define-color weather_thermometer_warm_color #FBC02D; +@define-color weather_thermometer_cold_color #5b9bf8; +#places-label { + font-weight: bold; +} + +#temperature-label { + font-size: 32pt; + font-weight: 900; + margin-left: 9px; +} + +#conditions-grid *:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.content-view.cell { + font-weight: bold; +} + +#locationEntry { + margin: 6px; +} + +.weather-popover { + margin-top: 6px; +} + +.forecast-card { + transition: border-radius 100ms ease-out; + border-radius: 6px; +} + +.forecast-card separator { + background-color: rgba(255, 255, 255, 0.12); +} + +#conditions-grid, +#attributionGrid { + margin-left: 18px; + margin-right: 18px; +} + +#weather-page .small .forecast-card { + margin-left: 0; + margin-right: 0; + border-radius: 0; +} + +.forecast-temperature-label { + font-weight: bold; + color: #ae7b03; +} + +WeatherThermometer { + margin-bottom: 12px; +} + +WeatherThermometer > label.high { + font-weight: bold; + color: #FBC02D; +} + +WeatherThermometer > label.low { + font-weight: bold; + color: #5b9bf8; +} + +.forecast-button { + margin: 0 12px; +} + +.forecast-graphic { + margin: 18px; +} + +button.osd.circular { + border-radius: 9999px; + min-width: 24px; + min-height: 24px; +} + +button.osd.circular > image { + padding: 0; +} + +scrolledwindow.inline list, +scrolledwindow.inline listview { + background: none; + color: inherit; +} + +scrolledwindow.inline undershoot.top { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.12); +} + +.search-view { + background-color: #3c84f7; + color: #FFFFFF; +} + +.search-view menubutton button:focus:focus-visible { + outline-color: rgba(255, 255, 255, 0.3); +} + +image.circular { + min-width: 36px; + min-height: 36px; + padding: 0; + border-radius: 9999px; +} + +.large-button { + padding: 6px; +} + +.alarm-time { + font-size: 2.5em; + font-weight: 300; +} + +.clocks-ampm-toggle-button, +.clocks-secondary-standalone-label { + font-size: 18pt; +} + +.clocks-standalone-label, +.clocks-ringing-label { + font-size: 6em; + font-weight: 300; +} + +.clocks-ringing-title { + font-size: 1.5em; + font-weight: bold; +} + +.clocks-alarm-setup-time { + font-size: 32pt; +} + +.clocks-timer-label, +.clocks-spinbutton { + font-size: 48pt; +} + +.timer-panel .timer-header { + font-size: 20pt; + font-weight: 300; +} + +.timer-countdown { + font-size: 40pt; + font-weight: 300; +} + +/* Stopwatch Panel */ +.lap-time { + font-weight: bold; +} + +.stopped-stopwatch label, +.running-stopwatch label, +.paused-stopwatch label { + font-size: 70px; + font-weight: lighter; +} + +.stopped-stopwatch .seconds-label { + font-weight: 300; +} + +.running-stopwatch .seconds-label, +.running-stopwatch .miliseconds-label { + color: #5b9bf8; +} + +.stopped-stopwatch .miliseconds-label, +.running-stopwatch .miliseconds-label, +.paused-stopwatch .miliseconds-label { + font-size: 50px; +} + +.running-stopwatch .seconds-label, +.paused-stopwatch .seconds-label { + font-weight: 300; +} + +.clock-location { + font-weight: bolder; +} + +.hidden { + opacity: 0; +} + +.clock-time { + font-size: 2em; + padding: 0.2em 0.5em; + border-radius: 1em; +} + +.none .clock-time { + background: alpha(currentColor, 0.2); +} + +.night .clock-time { + color: #3c84f7; + background-color: alpha(#5b9bf8, 0.25); +} + +.naut .clock-time, +.astro .clock-time { + color: #FF7043; + background-color: alpha(#FF8A65, 0.25); +} + +.civil .clock-time, +.day .clock-time { + color: #FFD600; + background: alpha(#FBC02D, 0.25); +} + +headerbar splitbutton.omnibar > button.image-button { + border-radius: 0; + margin-left: 1px; +} + +headerbar splitbutton.omnibar notification button { + min-height: 24px; + min-width: 24px; + padding: 0; + margin: 0; +} + +popover.background.global-search > arrow, popover.background.global-search > contents { + padding: 0; +} + +popover.background.global-search box.vertical > headerbar { + border-top-left-radius: 0; +} + +popover.background.global-search box.vertical:first-child > headerbar { + border-top-left-radius: 12px; + border-top-right-radius: 0; +} + +panelframeswitcher { + padding: 3px; +} + +.frameheader.header { + min-height: 24px; + background-color: #2d3036; +} + +.frameheader.header > button { + border: none; + margin: 0; + padding: 3px; +} + +.frameheader.header tabbar.inline > revealer > box { + min-height: 24px; +} + +.frameheader.header tabbar.inline > revealer > box .start-action { + padding: 0; + border: none; +} + +.frameheader.header tabbar.inline > revealer > box .end-action { + padding: 0; + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +.frameheader.header tabbar.inline > revealer > box tabbox { + border: none; + background: none; +} + +panelstatusbar > menubutton > button, +panelstatusbar > paneltogglebutton button { + border-radius: 0; +} + +.style-variant { + padding: 0 12px; +} + +.style-variant button.toggle { + padding: 0; +} + +.style-variant button.toggle, .style-variant button.toggle:hover, .style-variant button.toggle:focus, .style-variant button.toggle:active, .style-variant button.toggle:checked { + background: none; + outline: none; + border: none; + box-shadow: none; +} + +.style-variant button.toggle > stylevariantpreview > .wallpaper { + border-radius: 6px; + outline-color: transparent; + outline-width: 3px; + outline-offset: 3px; + outline-style: solid; + box-shadow: none; +} + +.style-variant button.toggle:hover > stylevariantpreview > .wallpaper { + outline-color: rgba(255, 255, 255, 0.04); +} + +.style-variant button.toggle:active > stylevariantpreview > .wallpaper { + outline-color: rgba(255, 255, 255, 0.26); +} + +.style-variant button.toggle:checked > stylevariantpreview > .wallpaper { + outline-color: #5b9bf8; +} + +window.dialog > .dialog-vbox > box > scrolledwindow > viewport > widget > list.boxed-list { + border: none; + border-radius: 0; +} + +window.dialog > .dialog-vbox > box > scrolledwindow > viewport > widget > list.boxed-list > row:first-child, window.dialog > .dialog-vbox > box > scrolledwindow > viewport > widget > list.boxed-list > row:last-child { + border-radius: 0; +} + +avatar { + border-radius: 9999px; + font-weight: bold; +} + +avatar.color1 { + background-image: linear-gradient(#83b6ec, #337fdc); + color: #cfe1f5; +} + +avatar.color2 { + background-image: linear-gradient(#7ad9f1, #0f9ac8); + color: #caeaf2; +} + +avatar.color3 { + background-image: linear-gradient(#8de6b1, #29ae74); + color: #cef8d8; +} + +avatar.color4 { + background-image: linear-gradient(#b5e98a, #6ab85b); + color: #e6f9d7; +} + +avatar.color5 { + background-image: linear-gradient(#f8e359, #d29d09); + color: #f9f4e1; +} + +avatar.color6 { + background-image: linear-gradient(#ffcb62, #d68400); + color: #ffead1; +} + +avatar.color7 { + background-image: linear-gradient(#ffa95a, #ed5b00); + color: #ffe5c5; +} + +avatar.color8 { + background-image: linear-gradient(#f78773, #e62d42); + color: #f8d2ce; +} + +avatar.color9 { + background-image: linear-gradient(#e973ab, #e33b6a); + color: #fac7de; +} + +avatar.color10 { + background-image: linear-gradient(#cb78d4, #9945b5); + color: #e7c2e8; +} + +avatar.color11 { + background-image: linear-gradient(#9e91e8, #7a59ca); + color: #d5d2f5; +} + +avatar.color12 { + background-image: linear-gradient(#e3cf9c, #b08952); + color: #f2eade; +} + +avatar.color13 { + background-image: linear-gradient(#be916d, #785336); + color: #e5d6ca; +} + +avatar.color14 { + background-image: linear-gradient(#c0bfbc, #6e6d71); + color: #d8d7d3; +} + +avatar.contrasted { + color: white; +} + +avatar.image { + background: none; +} + +.card { + border-radius: 6px; + border: none; + background-clip: padding-box; + color: rgba(255, 255, 255, 0.7); + box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.1), 0 2px 3px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.08); + outline: none; + background-color: #2d3036; + color: #FFFFFF; +} + +.card.activatable { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.card.activatable:hover { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + background-color: alpha(currentColor, 0.1); + outline: 0 solid transparent; + outline-offset: 2px; +} + +.card.activatable:active { + background-image: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-image: radial-gradient(circle, rgba(41, 125, 255, 0.75) 10%, rgba(49, 196, 182, 0.75) 0%); + background-size: 0% 0%; + background-color: transparent; + color: #FFFFFF; + outline: 0 solid transparent; + outline-offset: -2px; +} + +.card separator { + background-color: rgba(0, 0, 0, 0.2); +} + +toast { + margin: 12px; + margin-bottom: 24px; + border-radius: 9999px; + border-spacing: 6px; + padding: 6px; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.08); + background-color: #1a1f26; + color: #FFFFFF; + border: none; +} + +toast:dir(ltr) { + padding-left: 12px; +} + +toast:dir(rtl) { + padding-right: 12px; +} + +toast > label { + margin: 0 6px; +} + +viewswitcher { + margin: 0; +} + +viewswitcher button.toggle { + font-weight: bold; + padding: 0; +} + +viewswitcher button.toggle > stack > box.narrow { + font-size: 0.75rem; + padding-top: 6px; + padding-bottom: 4px; + border-spacing: 4px; +} + +viewswitcher button.toggle > stack > box.narrow > stack > label { + padding-left: 6px; + padding-right: 6px; +} + +viewswitcher button.toggle > stack > box.wide { + padding: 2px 12px; + border-spacing: 6px; +} + +viewswitcher.wide { + border-spacing: 0; +} + +viewswitcher.wide button.toggle.flat:focus { + outline: none; + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05); +} + +viewswitcher.narrow button.toggle { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 0; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + color: rgba(255, 255, 255, 0.7); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), transparent 0%, transparent 0%) 0 0 0/0 0 0px; +} + +viewswitcher.narrow button.toggle:hover { + color: #FFFFFF; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + background-image: none; + box-shadow: none; + box-shadow: inset 0 -2px #224e92; +} + +viewswitcher.narrow button.toggle:active { + color: #FFFFFF; + background-image: none; + box-shadow: none; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #31c4b6 100%, #224e92 0%) 0 0 2/0 0 2px; +} + +viewswitcher.narrow button.toggle:checked { + color: #FFFFFF; + background-image: none; + box-shadow: none; + border-image: linear-gradient(to right, #297dff, #31c4b6) 0 0 2/0 0 2px; +} + +viewswitcher.narrow button.toggle:checked:disabled, viewswitcher.narrow button.toggle:checked:backdrop { + color: rgba(255, 255, 255, 0.4); +} + +viewswitcher.narrow button.toggle:focus { + box-shadow: none; + outline: none; +} + +viewswitcherbar actionbar > revealer > box { + padding: 0; +} + +viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:hover { + box-shadow: inset 0 2px #275397; +} + +viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:active { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #31c4b6 100%, #275397 0%) 2 0 0/2px 0 0; +} + +viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:checked { + border-image: linear-gradient(to right, #297dff, #31c4b6) 2 0 0/2px 0 0; +} + +viewswitchertitle viewswitcher { + margin-left: 12px; + margin-right: 12px; +} + +indicatorbin > indicator, indicatorbin > mask { + min-width: 6px; + min-height: 6px; + border-radius: 9999px; +} + +indicatorbin > indicator { + margin: 1px; + background-color: alpha(currentColor, 0.4); +} + +indicatorbin > indicator > label { + font-size: 0.6rem; + font-weight: bold; + padding: 1px 4px; + color: white; +} + +indicatorbin > mask { + padding: 1px; + background: black; +} + +indicatorbin.needs-attention > indicator { + background-color: #5b9bf8; +} + +indicatorbin.needs-attention > indicator > label { + color: #FFFFFF; +} + +preferencespage > scrolledwindow > viewport > clamp > box { + margin: 24px 12px; + border-spacing: 24px; +} + +preferencesgroup > box, preferencesgroup > box .labels { + border-spacing: 6px; +} + +preferencesgroup > box > box.header:not(.single-line) { + margin-bottom: 6px; +} + +preferencesgroup > box > box.single-line { + min-height: 34px; +} + +preferencesgroup > box button.background-preview-button.toggle { + padding: 0; + background: none; + box-shadow: none; + outline-color: transparent; + outline-width: 3px; + outline-offset: 3px; + outline-style: solid; +} + +preferencesgroup > box button.background-preview-button.toggle, preferencesgroup > box button.background-preview-button.toggle > background-preview { + border-radius: 6px; +} + +preferencesgroup > box button.background-preview-button.toggle:hover { + outline-color: rgba(255, 255, 255, 0.04); +} + +preferencesgroup > box button.background-preview-button.toggle:active { + outline-color: rgba(255, 255, 255, 0.26); +} + +preferencesgroup > box button.background-preview-button.toggle:checked { + outline-color: #5b9bf8; +} + +preferencesgroup > box .cutout-button { + background-color: #2d3036; +} + +window.about .main-page > viewport > clamp > box { + margin: 12px; + border-spacing: 6px; +} + +window.about .main-page > viewport > clamp > box > box { + margin-top: 18px; + border-spacing: 18px; + margin-bottom: 6px; +} + +window.about .main-page .app-version { + padding: 3px 18px; + border-radius: 6px; + margin-top: 3px; + background-color: alpha(currentColor, 0.05); +} + +window.about .main-page .app-version:hover { + background-color: alpha(currentColor, 0.08); +} + +window.about .main-page .app-version:focus { + background-color: alpha(currentColor, 0.08); +} + +window.about .main-page .app-version:focus:hover { + background-color: alpha(currentColor, 0.16); + outline: none; +} + +window.about .main-page .app-version:active, window.about .main-page .app-version:focus:active { + background-color: alpha(currentColor, 0.12); + outline: none; +} + +window.about .main-page .app-version, window.about .main-page .app-version:hover, window.about .main-page .app-version:focus, window.about .main-page .app-version:active { + color: #5b9bf8; + background-image: none; +} + +window.about .subpage > viewport > clamp > box { + margin: 18px 12px; + border-spacing: 18px; +} + +window.about .subpage > clamp > textview { + background: none; + color: inherit; +} + +statuspage > scrolledwindow > viewport > box { + margin: 36px 12px; + border-spacing: 36px; +} + +statuspage > scrolledwindow > viewport > box > clamp > box { + border-spacing: 12px; +} + +statuspage > scrolledwindow > viewport > box > clamp > box > .icon { + -gtk-icon-size: 128px; + color: alpha(currentColor, 0.55); +} + +statuspage > scrolledwindow > viewport > box > clamp > box > .icon:disabled { + opacity: 0.35; +} + +statuspage > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) { + margin-bottom: 24px; +} + +statuspage.compact > scrolledwindow > viewport > box { + margin: 24px 12px; + border-spacing: 24px; +} + +statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon { + -gtk-icon-size: 96px; +} + +statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) { + margin-bottom: 12px; +} + +statuspage.compact > scrolledwindow > viewport > box > clamp > box > .title { + font-size: 18pt; +} + +themeselector, +panelthemeselector { + margin: 9px; +} + +themeselector checkbutton, +panelthemeselector checkbutton { + padding: 0; + min-height: 44px; + min-width: 44px; + padding: 1px; + background-clip: content-box; + border-radius: 9999px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); +} + +themeselector checkbutton.follow:checked, themeselector checkbutton.light:checked, themeselector checkbutton.dark:checked, +panelthemeselector checkbutton.follow:checked, +panelthemeselector checkbutton.light:checked, +panelthemeselector checkbutton.dark:checked { + box-shadow: inset 0 0 0 2px #5b9bf8; +} + +themeselector checkbutton.follow, +panelthemeselector checkbutton.follow { + background-image: linear-gradient(to bottom right, #ffffff 50%, #202020 50%); +} + +themeselector checkbutton.light, +panelthemeselector checkbutton.light { + background-color: #ffffff; +} + +themeselector checkbutton.dark, +panelthemeselector checkbutton.dark { + background-color: #202020; +} + +themeselector checkbutton.theme-selector radio, +panelthemeselector checkbutton.theme-selector radio { + -gtk-icon-source: none; + border: none; + background: none; + box-shadow: none; + min-height: 20px; + min-width: 20px; + padding: 0; +} + +themeselector checkbutton.theme-selector radio:hover, themeselector checkbutton.theme-selector radio:active, themeselector checkbutton.theme-selector radio:checked, +panelthemeselector checkbutton.theme-selector radio:hover, +panelthemeselector checkbutton.theme-selector radio:active, +panelthemeselector checkbutton.theme-selector radio:checked { + background-color: transparent; +} + +themeselector checkbutton.theme-selector radio:checked, +panelthemeselector checkbutton.theme-selector radio:checked { + -gtk-icon-size: 20px; + -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic@2.svg"))); + color: #FFFFFF; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; +} + +themeselector checkbutton.theme-selector radio:checked, themeselector checkbutton.theme-selector radio:checked:hover, themeselector checkbutton.theme-selector radio:checked:active, +panelthemeselector checkbutton.theme-selector radio:checked, +panelthemeselector checkbutton.theme-selector radio:checked:hover, +panelthemeselector checkbutton.theme-selector radio:checked:active { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} + +themeswitcher { + padding: 6px; +} + +themeswitcher .check { + min-height: 20px; + min-width: 20px; + background: none; + padding: 0; + margin: 0; + border-radius: 9999px; + color: #FFFFFF; + background-image: linear-gradient(to right, #297dff, #31c4b6); + background-repeat: no-repeat; + background-position: center; + background-size: auto; +} + +themeswitcher .check, themeswitcher .check:hover, themeswitcher .check:active { + box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} + +themeswitcher checkbutton { + padding: 0; + min-height: 44px; + min-width: 44px; + padding: 1px; + background-clip: content-box; + border-radius: 9999px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); +} + +themeswitcher checkbutton:checked { + box-shadow: inset 0 0 0 2px #5b9bf8; +} + +themeswitcher checkbutton radio, themeswitcher checkbutton radio:hover, themeswitcher checkbutton radio:active, themeswitcher checkbutton radio:checked, themeswitcher checkbutton radio:checked:hover, themeswitcher checkbutton radio:checked:active { + background-color: transparent; + border: none; + background: none; + box-shadow: none; + color: transparent; + -gtk-icon-source: none; + -gtk-icon-size: 0; +} + +themeswitcher checkbutton.system { + background: linear-gradient(-45deg, #1e1e1e 50%, white 50%); +} + +themeswitcher checkbutton.light { + color: alpha(black, 0.8); + background-color: white; +} + +themeswitcher checkbutton.dark { + color: white; + background-color: #1e1e1e; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #FFFFFF; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #FFFFFF; +/* +widget base background color */ +@define-color theme_bg_color #22262c; +/* +text widgets and the like base background color */ +@define-color theme_base_color #25292f; +/* +base background color of selections */ +@define-color theme_selected_bg_color #5b9bf8; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #FFFFFF; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #22262c; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(255, 255, 255, 0.4); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2d3036; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #FFFFFF; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #FFFFFF; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #22262c; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #25292f; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #5b9bf8; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #FFFFFF; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(255, 255, 255, 0.4); +/* +widgets main borders color */ +@define-color borders rgba(255, 255, 255, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(255, 255, 255, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FBC02D; +@define-color error_color #F44336; +@define-color success_color #66BB6A; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #FFFFFF; +@define-color wm_unfocused_title rgba(255, 255, 255, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.08); +@define-color wm_border #070809; +@define-color wm_bg #1b1e24; +@define-color wm_unfocused_bg #22262c; +@define-color wm_button_icon white; +@define-color wm_button_close_hover_bg #31c4b6; +@define-color wm_button_close_active_bg #259389; +@define-color wm_button_max_hover_bg #5b9bf8; +@define-color wm_button_max_active_bg #2077f5; +@define-color wm_button_min_hover_bg #5b9bf8; +@define-color wm_button_min_active_bg #2077f5; +/* +FIXME this is really an API */ +@define-color content_view_bg #25292f; +@define-color placeholder_text_color #bebfc1; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #25292f; +@define-color budgie_tasklist_indicator_color rgba(255, 255, 255, 0.26); +@define-color budgie_tasklist_indicator_color_active #5b9bf8; +@define-color budgie_tasklist_indicator_color_active_window rgba(67, 111, 174, 0.885); +@define-color budgie_tasklist_indicator_color_attention #FBC02D; +@define-color STRAWBERRY_100 #FF9262; +@define-color STRAWBERRY_300 #FF793E; +@define-color STRAWBERRY_500 #F15D22; +@define-color STRAWBERRY_700 #CF3B00; +@define-color STRAWBERRY_900 #AC1800; +@define-color ORANGE_100 #FFDB91; +@define-color ORANGE_300 #FFCA40; +@define-color ORANGE_500 #FAA41A; +@define-color ORANGE_700 #DE8800; +@define-color ORANGE_900 #C26C00; +@define-color BANANA_100 #FFFFA8; +@define-color BANANA_300 #FFFA7D; +@define-color BANANA_500 #FFCE51; +@define-color BANANA_700 #D1A023; +@define-color BANANA_900 #A27100; +@define-color LIME_100 #A2F3BE; +@define-color LIME_300 #8ADBA6; +@define-color LIME_500 #73C48F; +@define-color LIME_700 #479863; +@define-color LIME_900 #1C6D38; +@define-color BLUEBERRY_100 #94A6FF; +@define-color BLUEBERRY_300 #6A7CE0; +@define-color BLUEBERRY_500 #3F51B5; +@define-color BLUEBERRY_700 #213397; +@define-color BLUEBERRY_900 #031579; +@define-color GRAPE_100 #D25DE6; +@define-color GRAPE_300 #B84ACB; +@define-color GRAPE_500 #9C27B0; +@define-color GRAPE_700 #830E97; +@define-color GRAPE_900 #6A007E; +@define-color COCOA_100 #9F9792; +@define-color COCOA_300 #7B736E; +@define-color COCOA_500 #574F4A; +@define-color COCOA_700 #463E39; +@define-color COCOA_900 #342C27; +@define-color SILVER_100 #EEE; +@define-color SILVER_300 #CCC; +@define-color SILVER_500 #AAA; +@define-color SILVER_700 #888; +@define-color SILVER_900 #666; +@define-color SLATE_100 #888; +@define-color SLATE_300 #666; +@define-color SLATE_500 #444; +@define-color SLATE_700 #222; +@define-color SLATE_900 #111; +@define-color BLACK_100 #474341; +@define-color BLACK_300 #403C3A; +@define-color BLACK_500 #393634; +@define-color BLACK_700 #33302F; +@define-color BLACK_900 #2B2928; +@define-color blue_1 #99c1f1; +@define-color blue_2 #62a0ea; +@define-color blue_3 #3584e4; +@define-color blue_4 #1c71d8; +@define-color blue_5 #1a5fb4; +@define-color green_1 #8ff0a4; +@define-color green_2 #57e389; +@define-color green_3 #33d17a; +@define-color green_4 #2ec27e; +@define-color green_5 #26a269; +@define-color yellow_1 #f9f06b; +@define-color yellow_2 #f8e45c; +@define-color yellow_3 #f6d32d; +@define-color yellow_4 #f5c211; +@define-color yellow_5 #e5a50a; +@define-color orange_1 #ffbe6f; +@define-color orange_2 #ffa348; +@define-color orange_3 #ff7800; +@define-color orange_4 #e66100; +@define-color orange_5 #c64600; +@define-color red_1 #f66151; +@define-color red_2 #ed333b; +@define-color red_3 #e01b24; +@define-color red_4 #c01c28; +@define-color red_5 #a51d2d; +@define-color purple_1 #dc8add; +@define-color purple_2 #c061cb; +@define-color purple_3 #9141ac; +@define-color purple_4 #813d9c; +@define-color purple_5 #613583; +@define-color brown_1 #cdab8f; +@define-color brown_2 #b5835a; +@define-color brown_3 #986a44; +@define-color brown_4 #865e3c; +@define-color brown_5 #63452c; +@define-color light_1 #ffffff; +@define-color light_2 #f6f5f4; +@define-color light_3 #deddda; +@define-color light_4 #c0bfbc; +@define-color light_5 #9a9996; +@define-color dark_1 #77767b; +@define-color dark_2 #5e5c64; +@define-color dark_3 #3d3846; +@define-color dark_4 #241f31; +@define-color dark_5 #000000; +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +@define-color accent_bg_color #5b9bf8; +@define-color accent_fg_color #FFFFFF; +@define-color accent_color #5b9bf8; +@define-color destructive_bg_color #F44336; +@define-color destructive_fg_color #FFFFFF; +@define-color destructive_color #F44336; +@define-color success_bg_color #66BB6A; +@define-color success_fg_color #FFFFFF; +@define-color success_color #66BB6A; +@define-color warning_bg_color #FBC02D; +@define-color warning_fg_color rgba(0, 0, 0, 0.87); +@define-color warning_color #FBC02D; +@define-color error_bg_color #F44336; +@define-color error_fg_color #FFFFFF; +@define-color error_color #F44336; +@define-color window_bg_color #22262c; +@define-color window_fg_color #FFFFFF; +@define-color view_bg_color #25292f; +@define-color view_fg_color #FFFFFF; +@define-color headerbar_bg_color #1b1e24; +@define-color headerbar_fg_color #FFFFFF; +@define-color headerbar_border_color rgba(255, 255, 255, 0.12); +@define-color headerbar_backdrop_color #22262c; +@define-color headerbar_shade_color rgba(255, 255, 255, 0.12); +@define-color card_bg_color #25292f; +@define-color card_fg_color #FFFFFF; +@define-color card_shade_color rgba(255, 255, 255, 0.12); +@define-color dialog_bg_color #2d3036; +@define-color dialog_fg_color #FFFFFF; +@define-color popover_bg_color #1a1f26; +@define-color popover_fg_color #FFFFFF; +@define-color shade_color rgba(255, 255, 255, 0.12); +@define-color scrollbar_outline_color rgba(255, 255, 255, 0.12); diff --git a/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/thumbnail.png b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/thumbnail.png new file mode 100644 index 0000000..16e84c3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/gtk-4.0/thumbnail.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/index.theme b/home-config/themes/Lavanda-Sea-Dark/index.theme new file mode 100644 index 0000000..83d21c9 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Lavanda-Sea-Dark +Comment=An Clean Gtk+ theme based on Elegant Design +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Lavanda-Sea-Dark +MetacityTheme=Lavanda-Sea-Dark +IconTheme=Tela-circle-Dark +CursorTheme=Lavanda-cursors +ButtonLayout=close,minimize,maximize:menu diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/button.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/button.svg new file mode 100644 index 0000000..aa092df --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/button.svg @@ -0,0 +1,40 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/close.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/close.svg new file mode 100644 index 0000000..fb798d7 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/close.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/maximize.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/maximize.svg new file mode 100644 index 0000000..0c2f170 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/maximize.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/menu.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/menu.svg new file mode 100644 index 0000000..179ff4c --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/menu.svg @@ -0,0 +1,40 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/minimize.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/minimize.svg new file mode 100644 index 0000000..76fe7cb --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/minimize.svg @@ -0,0 +1,47 @@ + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/shade.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/shade.svg new file mode 100644 index 0000000..8213b03 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/shade.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/unmaximize.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/unmaximize.svg new file mode 100644 index 0000000..8d60a57 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/unmaximize.svg @@ -0,0 +1,67 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/unshade.svg b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/unshade.svg new file mode 100644 index 0000000..a161564 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/assets/unshade.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-1.xml b/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-1.xml new file mode 120000 index 0000000..562ac74 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-1.xml @@ -0,0 +1 @@ +metacity-theme-3.xml \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-2.xml b/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-2.xml new file mode 120000 index 0000000..562ac74 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-2.xml @@ -0,0 +1 @@ +metacity-theme-3.xml \ No newline at end of file diff --git a/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-3.xml b/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..582cc8e --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/metacity-1/metacity-theme-3.xml @@ -0,0 +1,755 @@ + + + + Colloid + vinceliucie + GPL + 2022 + Colloid Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + 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))" + 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))" + ellipsize_width="width" + color="C_title_unfocused"/> +</draw_ops> + +<!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_titlebar_focused" x="0" y="0" width="width" height="height" filled="true"/> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true"/> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <include name="entire_background_focused"/> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <include name="entire_background_unfocused"/> +</draw_ops> + +<draw_ops name="rounded_border_focused"> + <line color="C_border_focused" x1="12" y1="0" x2="width-13" y2="0" /> + <line color="C_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> + <line color="C_border_focused" x1="0" y1="12" x2="0" y2="height-2" /> + <line color="C_border_focused" x1="width-1" y1="12" x2="width-1" y2="height-2" /> + <arc color="C_border_focused" x="0" y="0" width="25" height="25" start_angle="270" extent_angle="90" /> + <arc color="C_border_focused" x="width-26" y="0" width="25" height="25" start_angle="0" extent_angle="90" /> + <!-- double arcs for darker borders --> + <arc color="C_border_focused" x="0" y="0" width="25" height="25" start_angle="270" extent_angle="90" /> + <arc color="C_border_focused" x="width-26" y="0" width="25" height="25" start_angle="0" extent_angle="90" /> + <line color="C_highlight_focused" x1="13" y1="1" x2="width - 14" y2="1"/> + <arc color="C_highlight_focused" x="0" y="1" width="25" height="25" start_angle="270" extent_angle="90"/> + <arc color="C_highlight_focused" x="width - 26" y="1" width="25" height="25" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="rounded_border_unfocused"> + <line color="C_border_unfocused" x1="12" y1="0" x2="width-13" y2="0" /> + <line color="C_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> + <line color="C_border_unfocused" x1="0" y1="12" x2="0" y2="height-2" /> + <line color="C_border_unfocused" x1="width-1" y1="12" x2="width-1" y2="height-2" /> + <arc color="C_border_unfocused" x="0" y="0" width="25" height="25" start_angle="270" extent_angle="90" /> + <arc color="C_border_unfocused" x="width-26" y="0" width="25" height="25" start_angle="0" extent_angle="90" /> + <!-- double arcs for darker borders --> + <arc color="C_border_unfocused" x="0" y="0" width="25" height="25" start_angle="270" extent_angle="90" /> + <arc color="C_border_unfocused" x="width-26" y="0" width="25" height="25" start_angle="0" extent_angle="90" /> + <line color="C_highlight_unfocused" x1="13" y1="1" x2="width - 14" y2="1"/> + <arc color="C_highlight_unfocused" x="0" y="1" width="25" height="25" start_angle="270" extent_angle="90"/> + <arc color="C_highlight_unfocused" x="width - 26" y="1" width="25" height="25" start_angle="0" extent_angle="90"/> +</draw_ops> + +<!-- button icons --> + +<!-- close --> + +<draw_ops name="close_focused"> + <image filename="assets/button.svg" colorize="C_button_close_hover_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="assets/button.svg" colorize="C_button_close_hover_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="assets/button.svg" colorize="C_button_close_active_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="assets/button.svg" colorize="C_title_unfocused" x="(width - object_width) / 2" y="(height - object_height) / 2" alpha="0.25" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <include name="close_focused_prelight"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <include name="close_focused_pressed"/> +</draw_ops> + +<!-- maximize --> + +<draw_ops name="maximize_focused"> + <image filename="assets/button.svg" colorize="C_button_max_hover_bg" 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="assets/button.svg" colorize="C_button_max_hover_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="assets/button.svg" colorize="C_button_max_active_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <include name="close_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <include name="maximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <include name="maximize_focused_pressed"/> +</draw_ops> + +<!-- unmaximize --> + +<draw_ops name="unmaximize_focused"> + <image filename="assets/button.svg" colorize="C_button_max_hover_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_prelight"> + <image filename="assets/button.svg" colorize="C_button_max_hover_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_pressed"> + <image filename="assets/button.svg" colorize="C_button_max_active_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused"> + <include name="close_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_prelight"> + <include name="unmaximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_pressed"> + <include name="unmaximize_focused_pressed"/> +</draw_ops> + +<!-- minimize --> + +<draw_ops name="minimize_focused"> + <image filename="assets/button.svg" colorize="C_button_min_hover_bg" 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="assets/button.svg" colorize="C_button_min_hover_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="assets/button.svg" colorize="C_button_min_active_bg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height"/> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" colorize="C_button_icon"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <include name="close_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <include name="minimize_focused_prelight"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <include name="minimize_focused_pressed"/> +</draw_ops> + +<!-- menu --> + +<draw_ops name="menu_focused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_prelight"> + <include name="menu_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_pressed"> + <include name="menu_focused"/> +</draw_ops> + +<draw_ops name="menu_unfocused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_prelight"> + <include name="menu_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_pressed"> + <include name="menu_unfocused"/> +</draw_ops> + +<!-- shade --> + +<draw_ops name="shade_focused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_prelight"> + <include name="shade_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_pressed"> + <include name="shade_focused"/> +</draw_ops> + +<draw_ops name="shade_unfocused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_prelight"> + <include name="shade_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_pressed"> + <include name="shade_unfocused"/> +</draw_ops> + +<!-- unshade --> + +<draw_ops name="unshade_focused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_prelight"> + <include name="unshade_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_pressed"> + <include name="unshade_focused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_prelight"> + <include name="unshade_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_pressed"> + <include name="unshade_unfocused"/> +</draw_ops> + +<!-- appmenu --> + +<constant name="D_appmenu_icon_size" value="16"/> + +<draw_ops name="appmenu_focused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size"/> +</draw_ops> + +<draw_ops name="appmenu_focused_prelight"> + <include name="appmenu_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_pressed"> + <include name="appmenu_focused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size" + alpha="0.7"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_prelight"> + <include name="appmenu_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_pressed"> + <include name="appmenu_unfocused"/> +</draw_ops> + +<!-- button backgrounds --> + +<draw_ops name="button_focused"> +</draw_ops> + +<draw_ops name="button_focused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.08" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_focused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.2" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_unfocused"> +</draw_ops> + +<draw_ops name="button_unfocused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.08" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="button_unfocused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.2" colorize="C_title_unfocused"/> +</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"/> + <piece position="overlay" draw_ops="rounded_border_focused"/> + <button function="close" state="normal" draw_ops="close_focused"/> + <button function="close" state="prelight" draw_ops="close_focused_prelight"/> + <button function="close" state="pressed" draw_ops="close_focused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_focused"/> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_focused"/> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_focused"/> + <button function="menu" state="prelight" draw_ops="menu_focused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed"/> + <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_focused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_focused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_focused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_focused"/> + <button function="shade" state="prelight" draw_ops="shade_focused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_focused"/> + <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_focused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_focused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_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"> + <piece position="entire_background" draw_ops="entire_background_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_unfocused"/> + <piece position="title" draw_ops="title_unfocused"/> + <piece position="overlay" draw_ops="rounded_border_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 version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_unfocused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_unfocused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_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="unshade_unfocused"/> + <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_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_focused"/> + <piece position="title" draw_ops="title_focused"/> + <button function="close" state="normal" draw_ops="close_focused"/> + <button function="close" state="prelight" draw_ops="close_focused_prelight"/> + <button function="close" state="pressed" draw_ops="close_focused_pressed"/> + <button function="maximize" state="normal" draw_ops="unmaximize_focused"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_focused"/> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_focused"/> + <button function="menu" state="prelight" draw_ops="menu_focused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed"/> + <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_focused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_focused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_focused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_focused"/> + <button function="shade" state="prelight" draw_ops="shade_focused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_focused"/> + <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_focused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_focused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_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_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="unmaximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_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 version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_unfocused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_unfocused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_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="unshade_unfocused"/> + <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_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_left_focused" geometry="tiled_left" parent="normal_max_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left" parent="normal_max_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right" parent="normal_max_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right" parent="normal_max_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="dialog_focused" geometry="modal" parent="normal_focused"> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="modal" parent="normal_unfocused"> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal" parent="normal_focused"> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal" parent="normal_unfocused"> +</frame_style> + +<frame_style name="utility_focused" geometry="small" parent="normal_focused"> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small" parent="normal_unfocused"> +</frame_style> + +<frame_style name="border_focused" geometry="border" parent="normal_focused"> +</frame_style> + +<frame_style name="border_unfocused" geometry="border" parent="normal_unfocused"> +</frame_style> + +<frame_style name="borderless_focused" geometry="borderless" parent="normal_focused"> +</frame_style> + +<frame_style name="borderless_unfocused" geometry="borderless" parent="normal_unfocused"> +</frame_style> + +<frame_style name="attached_focused" geometry="attached" parent="modal_dialog_focused"> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached" parent="modal_dialog_unfocused"> +</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 version=">= 3.5" function="appmenu" state="normal"><draw_ops></draw_ops></button> + <button version=">= 3.5" function="appmenu" 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_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_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_focused"/> + <frame focus="no" state="maximized" style="borderless_unfocused"/> + <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/home-config/themes/Lavanda-Sea-Dark/metacity-1/thumbnail.png b/home-config/themes/Lavanda-Sea-Dark/metacity-1/thumbnail.png new file mode 100644 index 0000000..bdab321 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/metacity-1/thumbnail.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/plank/dock.theme b/home-config/themes/Lavanda-Sea-Dark/plank/dock.theme new file mode 100644 index 0000000..26a6a74 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/plank/dock.theme @@ -0,0 +1,64 @@ +#This file based on: +#https://git.launchpad.net/plank/tree/data/themes/Default/dock.theme + +[PlankTheme] +#The roundness of the top corners. +TopRoundness=16 +#The roundness of the bottom corners. +BottomRoundness=0 +#The thickness (in pixels) of lines drawn. +LineWidth=0 +#The color (RGBA) of the outer stroke. +OuterStrokeColor=0;;0;;0;;0 +#The starting color (RGBA) of the fill gradient. +FillStartColor=33;;33;;33;;255 +#The ending color (RGBA) of the fill gradient. +FillEndColor=33;;33;;33;;255 +#The color (RGBA) of the inner stroke. +InnerStrokeColor=33;;33;;33;;255 + +[PlankDockTheme] +#The padding on the left/right dock edges, in tenths of a percent of IconSize. +HorizPadding=2 +#The padding on the top dock edge, in tenths of a percent of IconSize. +TopPadding=2 +#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=5 +#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=0 +#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=150 +#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=250 +#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 +#Whether background and icons will unhide/hide with different speeds. The top-border of both will leave/hit the screen-edge at the same time. +CascadeHide=true diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-active.png new file mode 100644 index 0000000..85376c4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-inactive.png new file mode 100644 index 0000000..640ed64 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-left-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-left-active.png new file mode 100644 index 0000000..e15299c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-left-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-left-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-left-inactive.png new file mode 100644 index 0000000..4b1e16a Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-left-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-right-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-right-active.png new file mode 100644 index 0000000..6093829 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-right-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-right-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-right-inactive.png new file mode 100644 index 0000000..19a0dd9 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/bottom-right-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-active.png new file mode 100644 index 0000000..f3a82b2 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-inactive.png new file mode 100644 index 0000000..59b3b10 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-prelight.png new file mode 100644 index 0000000..6661f83 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-pressed.png new file mode 100644 index 0000000..d67c91b Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/close-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-active.png new file mode 100644 index 0000000..9d2dc80 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-inactive.png new file mode 100644 index 0000000..e03645b Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-prelight.png new file mode 100644 index 0000000..0f627a3 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-pressed.png new file mode 100644 index 0000000..ca1f419 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/hide-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/left-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/left-active.png new file mode 100644 index 0000000..ce1b3ef Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/left-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/left-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/left-inactive.png new file mode 100644 index 0000000..fb69904 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/left-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-active.png new file mode 100644 index 0000000..a9eae2b Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-inactive.png new file mode 100644 index 0000000..032c1ab Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-prelight.png new file mode 100644 index 0000000..87a9f76 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-pressed.png new file mode 100644 index 0000000..4976419 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-active.png new file mode 100644 index 0000000..2d11180 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 0000000..4b83ed7 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 0000000..804142b Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/maximize-toggled-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-active.png new file mode 100644 index 0000000..9c26583 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-inactive.png new file mode 100644 index 0000000..099a037 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-prelight.png new file mode 100644 index 0000000..3987d95 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-pressed.png new file mode 100644 index 0000000..b665500 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/menu-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/right-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/right-active.png new file mode 100644 index 0000000..ce1b3ef Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/right-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/right-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/right-inactive.png new file mode 100644 index 0000000..fb69904 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/right-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-active.png new file mode 100644 index 0000000..f3da0e8 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-inactive.png new file mode 100644 index 0000000..cec0541 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-prelight.png new file mode 100644 index 0000000..967eba2 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-pressed.png new file mode 100644 index 0000000..69776b4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-active.png new file mode 100644 index 0000000..e951aad Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-inactive.png new file mode 100644 index 0000000..dbdbadb Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-prelight.png new file mode 100644 index 0000000..85d67bb Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-pressed.png new file mode 100644 index 0000000..857e29c Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/shade-toggled-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-active.png new file mode 100644 index 0000000..d88fb98 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-inactive.png new file mode 100644 index 0000000..6793fde Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-prelight.png new file mode 100644 index 0000000..1735e41 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-pressed.png new file mode 100644 index 0000000..c01e89f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-active.png new file mode 100644 index 0000000..74614fb Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-inactive.png new file mode 100644 index 0000000..c3cb3c9 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-prelight.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-prelight.png new file mode 100644 index 0000000..656d8d1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-prelight.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-pressed.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-pressed.png new file mode 100644 index 0000000..25ac646 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/stick-toggled-pressed.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/themerc b/home-config/themes/Lavanda-Sea-Dark/xfwm4/themerc new file mode 100644 index 0000000..cb238f0 --- /dev/null +++ b/home-config/themes/Lavanda-Sea-Dark/xfwm4/themerc @@ -0,0 +1,23 @@ +button_offset=6 +button_spacing=0 + +show_app_icon=false + +full_width_title=true + +title_shadow_active=false +title_shadow_inactive=false + +title_horizontal_offset=3 + +active_text_color=#afafaf +active_text_shadow_color=#252525 + +inactive_text_color=#808080 +inactive_text_shadow_color=#252525 + +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=40 diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-1-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-1-active.png new file mode 100644 index 0000000..85e606e Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-1-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-1-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-1-inactive.png new file mode 100644 index 0000000..7a84374 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-1-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-2-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-2-active.png new file mode 100644 index 0000000..85e606e Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-2-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-2-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-2-inactive.png new file mode 100644 index 0000000..7a84374 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-2-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-3-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-3-active.png new file mode 100644 index 0000000..962c5b4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-3-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-3-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-3-inactive.png new file mode 100644 index 0000000..7a84374 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-3-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-4-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-4-active.png new file mode 100644 index 0000000..962c5b4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-4-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-4-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-4-inactive.png new file mode 100644 index 0000000..7a84374 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-4-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-5-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-5-active.png new file mode 100644 index 0000000..85e606e Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-5-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-5-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-5-inactive.png new file mode 100644 index 0000000..7a84374 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/title-5-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-left-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-left-active.png new file mode 100644 index 0000000..86dda81 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-left-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-left-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-left-inactive.png new file mode 100644 index 0000000..9e674f1 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-left-inactive.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-right-active.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-right-active.png new file mode 100644 index 0000000..879426f Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-right-active.png differ diff --git a/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-right-inactive.png b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-right-inactive.png new file mode 100644 index 0000000..38d59d4 Binary files /dev/null and b/home-config/themes/Lavanda-Sea-Dark/xfwm4/top-right-inactive.png differ diff --git a/home-config/waybar/config b/home-config/waybar/config new file mode 100644 index 0000000..43bf6a4 --- /dev/null +++ b/home-config/waybar/config @@ -0,0 +1,87 @@ +{ + "height": 24, + "spacing": 4, + "modules-left": [ + "sway/workspaces", + "sway/window" + ], + "modules-center": [], + "modules-right": [ + "custom/cmus", + "custom/newsboat", + "cpu", + "memory", + "temperature", + "battery", + "backlight", + "pulseaudio", + "network", + "clock", + "tray" + ], + "sway/workspaces": { + "disable-scroll": true, + "all-outputs": true, + "format": "{name}" + }, + "tray": { + "spacing": 10 + }, + "clock": { + "format": "{:%Y-%m-%d %a %H:%M}" + }, + "cpu": { + "format": " {usage}%", + "tooltip": false + }, + "memory": { + "format": " {}%", + "tooltip": false + }, + "temperature": { + "thermal-zone": 10, + "critical-threshold": 80, + "format": " {temperatureC}°" + }, + "battery": { + "states": { + "warning": 30, + "critical": 15 + }, + "format": " {capacity}%", + "format-charging": " {capacity}%", + "format-plugged": " {capacity}%", + "format-full": " {capacity}%", + "format-warning": " {capacity}%", + "format-critical": " {capacity}%" + }, + "backlight": { + "format": " {percent}%" + }, + "pulseaudio": { + "format": " {volume}%", + "format-bluetooth": " {volume}%", + "format-muted": " muted", + "scroll-step": 1, + "on-click": "pavucontrol", + "ignored-sinks": ["Easy Effects Sink"] + }, + "network": { + "interface": "wlp0s20f3", + "format": " disconnected", + "format-wifi": " {essid}", + "format-ethernet": "< {ipaddr}/{cidr}", + "format-disconnected": " disconnected", + "max-length": 50, + "on-click": "nm-connection-editor", + }, + "custom/cmus": { + "return-type": "json", + "exec": "$HOME/.config/waybar/custom_cmus.lua 2> /dev/null" + }, + "custom/newsboat": { + "format": " {}", + "exec": "$HOME/.config/waybar/custom_newsboat.sh 2> /dev/null", + "on-click": "alacritty -e newsboat -r" + } +} diff --git a/home-config/waybar/custom_cmus.lua b/home-config/waybar/custom_cmus.lua new file mode 100755 index 0000000..d03eb9c --- /dev/null +++ b/home-config/waybar/custom_cmus.lua @@ -0,0 +1,58 @@ +#!/usr/bin/lua + +json = require("dkjson") +posix = require("posix") + +function htmlescape(s) + s = string.gsub(s, "&", "&") + s = string.gsub(s, "<", "<") + s = string.gsub(s, ">", ">") + return s +end + +function timefmt(n) + local s = n % 60 + local m = math.floor(n / 60) + return string.format("%d:%02d", m, s) +end + +function output(text, tooltip) + text = htmlescape(text) + tooltip = htmlescape(tooltip) + print(json.encode{text=text, tooltip=tooltip, class="custom-cmus"}) +end + +function getstat(status, name) + for _, line in ipairs(status) do + if string.match(line, "^" .. name) then + return string.sub(line, string.len(name)+2) + end + end +end + +while true do + local pipe = io.popen("cmus-remote -Q") + local status = {} + for line in pipe:lines() do + table.insert(status, line) + end + local success = pipe:close() + if not success then + output(" Not running", "Not running") + elseif getstat(status, "status") == "stopped" then + output(" Not running", "Not running") + else + local playing = getstat(status, "status") + local symbol = ({playing="", paused=""})[playing] + local title = getstat(status, "tag title") + local artist = getstat(status, "tag artist") + local duration = getstat(status, "duration") + local position = getstat(status, "position") + local text = string.format("%s %s (%s)", symbol, title, timefmt(position)) + local tooltip = string.format("%s - %s (%s / %s)", + artist, title, timefmt(position), timefmt(duration) + ) + output(text, tooltip) + end + posix.sleep(1) +end diff --git a/home-config/waybar/custom_newsboat.sh b/home-config/waybar/custom_newsboat.sh new file mode 100755 index 0000000..1ac8428 --- /dev/null +++ b/home-config/waybar/custom_newsboat.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +while :; do + until newsboat -x reload >/dev/null; do + sleep 1; + done + until unread="$(newsboat -x print-unread)"; do + sleep 1; + done + echo "$unread" | awk '{ print $1 }' + sleep 300 +done diff --git a/home-config/waybar/style.css b/home-config/waybar/style.css new file mode 100644 index 0000000..2c716a4 --- /dev/null +++ b/home-config/waybar/style.css @@ -0,0 +1,148 @@ +* { + font-family: "Fira Mono", "Font Awesome 6 Pro", monospace; + font-size: 13.5px; + transition: none; +} + +/* +#waybar { + background-color: rgba(20, 23, 29, 0.85); + color: #c7c6c3; +} +*/ + +window#waybar { + background-color: rgba(20, 23, 29, 0.85); + color: #c7c6c3; +} + +/* +window#waybar > box { + margin-bottom: 8px; + color: #c7c6c3; + box-shadow: 0px 0px 3px 2px rgba(20, 23, 29, 0.70); +} +*/ + +button { + border: none; + border-radius: 0; +} + +#workspaces button { + padding: 0 5px; + color: #c7c6c3; + background-color: rgba(0, 0, 0, 0); +} + +#workspaces button:hover { + box-shadow: inherit; + text-shadow: inherit; +} + +#workspaces button.focused { + background-color: #789ebf; + color: #14171d; + box-shadow: inherit; + text-shadow: inherit; +} + +#workspaces button.urgent { + background-color: #cc5c5c; + box-shadow: inherit; + text-shadow: inherit; +} + +#clock, +#battery, +#cpu, +#memory, +#disk, +#temperature, +#backlight, +#network, +#pulseaudio, +#custom-media, +#tray, +#mode, +#idle_inhibitor, +#scratchpad, +#custom-cmus, +#custom-newsboat, +#mpd { + padding: 0 10px; + border-right: 1px solid #4d4754; + color: #c7c6c3; +} + +#tray { + border: none; +} + +#window { + padding: 0 10px; + border-left: 1px solid #4d4754; + color: #c7c6c3; +} + +#window, +#workspaces { + margin: 0 4px; +} + + +#battery { + color: #97bd5e; +} + +#battery.warning:not(.charging) { + color: #f0c767; +} + +#battery.critical:not(.charging) { + color: #cc5c5c; +} + +#network.disconnected, #pulseaudio.muted { + color: #cc5c5c; +} + +#network.wifi { + color: #789ebf; +} + +#pulseaudio { + color: #E0DB5F; +} + +#backlight { + color: #E05F91; +} + +#cpu { + color: #789ebf; +} + +#memory { + color: #a97fb3; +} + +#temperature { + color: #97bd5e; +} + +#temperature.critical { + color: #cc5c5c; +} + +#custom-newsboat { + color: #de7e54; +} + +#tray > .passive { + -gtk-icon-effect: dim; +} + +#tray > .needs-attention { + -gtk-icon-effect: highlight; +} diff --git a/home-config/wofi/config b/home-config/wofi/config new file mode 100644 index 0000000..6b28876 --- /dev/null +++ b/home-config/wofi/config @@ -0,0 +1,6 @@ +key_expand=Tab +term=alacritty +matching=multi-contains +insensitive=true +gtk_dark=true +hide_scroll=true diff --git a/home-config/wofi/config.bak b/home-config/wofi/config.bak new file mode 100644 index 0000000..6b28876 --- /dev/null +++ b/home-config/wofi/config.bak @@ -0,0 +1,6 @@ +key_expand=Tab +term=alacritty +matching=multi-contains +insensitive=true +gtk_dark=true +hide_scroll=true diff --git a/home-config/wofi/style.css b/home-config/wofi/style.css new file mode 100644 index 0000000..2ef5f5a --- /dev/null +++ b/home-config/wofi/style.css @@ -0,0 +1,94 @@ +/* Mocha Blue */ +@define-color accent #89b4fa; +@define-color txt #cad3f5; +@define-color bg #24273a; +@define-color bg2 #494d64; + + * { + font-family: 'FiraCode Nerd Font Mono', monospace; + font-size: 14px; + } + + /* Window */ + window { + margin: 0px; + padding: 5px; + /*border: 3px solid @accent;*/ + /*border-radius: 7px;*/ + background-color: @bg; + animation: slideIn 0.1s ease-in-out both; + } + + /* Slide In */ + @keyframes slideIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } + } + + /* Inner Box */ + #inner-box { + margin: 5px; + padding: 5px; + border: none; + background-color: @bg; + animation: fadeIn 0.1s ease-in-out both; + } + + /* Fade In */ + @keyframes fadeIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } + } + + /* Outer Box */ + #outer-box { + margin: 5px; + padding: 5px; + border: none; + background-color: @bg; + } + + /* Scroll */ + #scroll { + margin: 0px; + padding: 5px; + border: none; + } + + /* Input */ + #input { + margin: 5px; + padding: 5px; + border: none; + color: @accent; + background-color: @bg2; + animation: fadeIn 0.1s ease-in-out both; + } + + /* Text */ + #text { + margin: 5px; + padding: 5px; + border: none; + color: @txt; + animation: fadeIn 0.1s ease-in-out both; + } + + /* Selected Entry */ + #entry:selected { + background-color: @accent; + } + + #entry:selected #text { + color: @bg; + } diff --git a/home-config/wofi/style.css.bak b/home-config/wofi/style.css.bak new file mode 100644 index 0000000..7d9f449 --- /dev/null +++ b/home-config/wofi/style.css.bak @@ -0,0 +1,54 @@ +window { + margin: 0px; + /*border: 1px solid #79b5b3;*/ + background-color: #1d1b2b; + border-radius: 5px; +} + +#input { + margin: 5px; + border: none; + color: #d5d8ed; + border-radius: 5px; + background-color: #44475a; +} + +#input:selected { + border: inherit; +} + +#inner-box { + margin: 5px; + border: none; + background-color: inherit; +} + +#outer-box { + margin: 5px; + border: none; + background-color: inherit; +} + +#scroll { + margin: 0px; + border: none; +} + +#text { + margin: 5px; + border: none; + color: #d5d8ed; +} + +#img { + background-color: transparent; +} + +#entry { + border: none; +} + +#entry:selected { + background-color: #44475a; + border-radius: 5px; +} diff --git a/home-config/xdg/mimeapps.list b/home-config/xdg/mimeapps.list new file mode 100644 index 0000000..10ae8f1 --- /dev/null +++ b/home-config/xdg/mimeapps.list @@ -0,0 +1,60 @@ +[Default Applications] +text/html=firefox.desktop +x-scheme-handler/http=firefox.desktop +x-scheme-handler/https=firefox.desktop +x-scheme-handler/about=firefox.desktop +x-scheme-handler/unknown=firefox.desktop +image/png=imv.desktop +image/jpeg=imv.desktop +image/webp=imv.desktop +image/tga=imv.desktop +image/bmp=imv.desktop +image/gif=imv.desktop +video/mp4=mpv.desktop +video/x-msvideo=mpv.desktop +audio/mp3=mpv.desktop +audio/wav=mpv.desktop +video/mkv=mpv.desktop +video/webm=mpv.desktop +application/pdf=org.pwmt.zathura.desktop +text/plain=nvim.desktop +text/markdown=nvim.desktop +text/x-makefile=nvim.desktop +text/x-c++hdr=nvim.desktop +text/x-c++src=nvim.desktop +text/x-chdr=nvim.desktop +text/x-csrc=nvim.desktop +text/x-java=nvim.desktop +text/x-moc=nvim.desktop +text/x-pascal=nvim.desktop +text/x-tcl=nvim.desktop +text/x-tex=nvim.desktop +application/x-shellscript=nvim.desktop +text/x-c=nvim.desktop +text/x-c++=nvim.desktop +application/gzip=org.gnome.Nautilus.desktop +application/zip=org.gnome.Nautilus.desktop +application/x-bzip2=org.gnome.Nautilus.desktop +application/vnd.ms-opentype=org.gnome.Nautilus.desktop +font/sfnt=org.gnome.Nautilus.desktop +application/java-archive=org.gnome.Nautilus.desktop +application/x-iso9660-image=org.gnome.Nautilus.desktop +application/x-xz=org.gnome.Nautilus.desktop +application/x-zerosize=nvim.desktop +x-scheme-handler/mailto=userapp-Thunderbird-4IZTA2.desktop +message/rfc822=userapp-Thunderbird-4IZTA2.desktop +x-scheme-handler/mid=userapp-Thunderbird-4IZTA2.desktop +x-scheme-handler/webcal=userapp-Thunderbird-9WQSA2.desktop +text/calendar=userapp-Thunderbird-9WQSA2.desktop +application/x-extension-ics=userapp-Thunderbird-9WQSA2.desktop +x-scheme-handler/webcals=userapp-Thunderbird-9WQSA2.desktop + +[Added Associations] +application/x-zerosize=nvim.desktop; +x-scheme-handler/mailto=userapp-Thunderbird-E9G491.desktop;userapp-Thunderbird-4IZTA2.desktop; +x-scheme-handler/mid=userapp-Thunderbird-E9G491.desktop;userapp-Thunderbird-4IZTA2.desktop; +x-scheme-handler/webcal=userapp-Thunderbird-9WQSA2.desktop; +x-scheme-handler/webcals=userapp-Thunderbird-9WQSA2.desktop; +x-scheme-handler/mailto=userapp-Thunderbird-E9G491.desktop +message/rfc822=userapp-Thunderbird-E9G491.desktop +x-scheme-handler/mid=userapp-Thunderbird-E9G491.desktop diff --git a/home-config/xdg/user-dirs.dirs b/home-config/xdg/user-dirs.dirs new file mode 100644 index 0000000..adf6780 --- /dev/null +++ b/home-config/xdg/user-dirs.dirs @@ -0,0 +1,8 @@ +XDG_DESKTOP_DIR="$HOME/desktop" +XDG_DOCUMENTS_DIR="$HOME/documents" +XDG_DOWNLOAD_DIR="$HOME/downloads" +XDG_MUSIC_DIR="$HOME/music" +XDG_PICTURES_DIR="$HOME/pictures" +XDG_PUBLICSHARE_DIR="$HOME/public" +XDG_TEMPLATES_DIR="$HOME/templates" +XDG_VIDEOS_DIR="$HOME/videos" diff --git a/home-config/zsh/zprofile b/home-config/zsh/zprofile new file mode 100644 index 0000000..170786c --- /dev/null +++ b/home-config/zsh/zprofile @@ -0,0 +1,55 @@ +# Setup locale +export LANG=en_US.UTF-8 +export LC_COLLATE=C + +# Make sure programs know to use wayland +export QT_QPA_PLATFORM=xcb # fuck qt +export ELM_DISPLAY=wl +export SDL_VIDEODRIVER=wayland +export MOZ_ENABLE_WAYLAND=1 + +# Setup the desktop XDG session +export XDG_RUNTIME_DIR=/run/user/$(id -u) +export XDG_SESSION_TYPE=wayland +export XDG_CURRENT_DESKTOP=sway +export LIBSEAT_BACKEND=logind + +# Neovim go brrrr +export EDITOR=nvim + +# Fix java applications going fucking crazy on wayland +export _JAVA_AWT_WM_NONREPARENTING=1 + +# ricing +#export GTK_THEME=Catppuccin-Macchiato-Standard-Sapphire-dark +export GTK_THEME=Lavanda-Sea-Dark +#export GTK_THEME=Adwaita-dark + +# Set terminal +export TERMINAL=alacritty + +# Setup Guix Environment +export GUIX_PROFILE=$HOME/.guix-home +. $GUIX_PROFILE/setup-environment +$GUIX_PROFILE/on-first-login + +# Setup Nix Environment +export NIX_PROFILE=$HOME/.nix-profile +export XDG_DATA_DIRS=$XDG_DATA_DIRS:$NIX_PROFILE/share +export PATH=$PATH:$NIX_PROFILE/bin +export LIBRARY_PATH=$LIBRARY_PATH:$NIX_PROFILE/lib + +# Setup User Environment +export LOCAL_PROFILE=$HOME/.local +export XDG_DATA_DIRS=$XDG_DATA_DIRS:$LOCAL_PROFILE/share +export PATH=$PATH:$LOCAL_PROFILE/bin + +# Setup Compilers +export CC=$(which gcc) +export LD=$(which gcc) + +# start sway only once and on the primary tty +if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then +# dbus-run-session Hyprland &> .log/hyprland + exec dbus-run-session sway &> .log/sway +fi diff --git a/home-config/zsh/zsh-autosuggestions/.circleci/config.yml b/home-config/zsh/zsh-autosuggestions/.circleci/config.yml new file mode 100644 index 0000000..d95fa98 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/.circleci/config.yml @@ -0,0 +1,15 @@ +version: 2 +jobs: + build: + parallelism: 4 + shell: /bin/bash --login + docker: + - image: ericfreese/zsh-autosuggestions-test:latest + steps: + - checkout + - run: + name: Running tests + command: | + for v in $(grep "^[^#]" ZSH_VERSIONS | awk "(NR + $CIRCLE_NODE_INDEX) % $CIRCLE_NODE_TOTAL == 0"); do + TEST_ZSH_BIN=zsh-$v make test || exit 1 + done diff --git a/home-config/zsh/zsh-autosuggestions/.editorconfig b/home-config/zsh/zsh-autosuggestions/.editorconfig new file mode 100644 index 0000000..ddabb17 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/.editorconfig @@ -0,0 +1,18 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = tab +indent_size = 4 + +[*.md] +indent_style = space + +[*.rb] +indent_style = space +indent_size = 2 + +[*.yml] +indent_style = space +indent_size = 2 diff --git a/home-config/zsh/zsh-autosuggestions/.rspec b/home-config/zsh/zsh-autosuggestions/.rspec new file mode 100644 index 0000000..43ae203 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/.rspec @@ -0,0 +1,3 @@ +--color +--require spec_helper +--format documentation diff --git a/home-config/zsh/zsh-autosuggestions/.rubocop.yml b/home-config/zsh/zsh-autosuggestions/.rubocop.yml new file mode 100644 index 0000000..97facac --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/.rubocop.yml @@ -0,0 +1,30 @@ +# Rails: +# Enabled: true + +AllCops: + TargetRubyVersion: 2.3 + Include: + - '**/Rakefile' + - '**/config.ru' + - '**/Gemfile' + +Metrics/LineLength: + Max: 120 + +Style/Documentation: + Enabled: false + +Style/DotPosition: + EnforcedStyle: trailing + +Style/FrozenStringLiteralComment: + Enabled: false + +Style/Lambda: + Enabled: false + +Style/MultilineMethodCallIndentation: + EnforcedStyle: indented + +Style/TrailingUnderscoreVariable: + Enabled: false diff --git a/home-config/zsh/zsh-autosuggestions/.ruby-version b/home-config/zsh/zsh-autosuggestions/.ruby-version new file mode 100644 index 0000000..aedc15b --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/.ruby-version @@ -0,0 +1 @@ +2.5.3 diff --git a/home-config/zsh/zsh-autosuggestions/CHANGELOG.md b/home-config/zsh/zsh-autosuggestions/CHANGELOG.md new file mode 100644 index 0000000..15d65a9 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/CHANGELOG.md @@ -0,0 +1,117 @@ +# Changelog + +## v0.7.0 +- Enable asynchronous mode by default (#498) +- No longer wrap user widgets starting with `autosuggest-` prefix (#496) +- Fix a bug wrapping widgets that modify the buffer (#541) + + +## v0.6.4 +- Fix `vi-forward-char` triggering a bell when using it to accept a suggestion (#488) +- New configuration option to skip completion suggestions when buffer matches a pattern (#487) +- New configuration option to ignore history entries matching a pattern (#456) + +## v0.6.3 +- Fixed bug moving cursor to end of buffer after accepting suggestion (#453) + +## v0.6.2 +- Fixed bug deleting the last character in the buffer in vi mode (#450) +- Degrade gracefully when user doesn't have `zsh/system` module installed (#447) + +## v0.6.1 +- Fixed bug occurring when `_complete` had been aliased (#443) + +## v0.6.0 +- Added `completion` suggestion strategy powered by completion system (#111) +- Allow setting `ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE` to an empty string (#422) +- Don't fetch suggestions after copy-earlier-word (#439) +- Allow users to unignore zle-\* widgets (e.g. zle-line-init) (#432) + + +## v0.5.2 +- Allow disabling automatic widget re-binding for better performance (#418) +- Fix async suggestions when `SH_WORD_SPLIT` is set +- Refactor async mode to use process substitution instead of zpty (#417) + +## v0.5.1 +- Speed up widget rebinding (#413) +- Clean up global variable creations (#403) +- Respect user's set options when running original widget (#402) + +## v0.5.0 +- Don't overwrite config with default values (#335) +- Support fallback strategies by supplying array to suggestion config var +- Rename "default" suggestion strategy to "history" to name it based on what it actually does +- Reset opts in some functions affected by `GLOB_SUBST` (#334) +- Support widgets starting with dashes (ex: `-a-widget`) (#337) +- Skip async tests in zsh versions less than 5.0.8 because of reliability issues +- Fix handling of newline + carriage return in async pty (#333) + + +## v0.4.3 +- Avoid bell when accepting suggestions with `autosuggest-accept` (#228) +- Don't fetch suggestions after [up,down]-line-or-beginning-search (#227, #241) +- We are now running CI against new 5.5.1 version +- Fix partial-accept in vi mode (#188) +- Fix suggestion disappearing on fast movement after switching to `vicmd` mode (#290) +- Fix issue rotating through kill ring with `yank-pop` (#301) +- Fix issue creating new pty for async mode when previous pty is not properly cleaned up (#249) + +## v0.4.2 +- Fix bug in zsh versions older than 5.0.8 (#296) +- Officially support back to zsh v4.3.11 + +## v0.4.1 +- Switch to [[ and (( conditionals instead of [ (#257) +- Avoid warnnestedvar warnings with `typeset -g` (#275) +- Replace tabs with spaces in yaml (#268) +- Clean up and fix escaping of special characters (#267) +- Add `emacs-forward-word` to default list of partial accept widgets (#246) + +## v0.4.0 +- High-level integration tests using RSpec and tmux +- Add continuous integration with Circle CI +- Experimental support for asynchronous suggestions (#170) +- Fix problems with multi-line suggestions (#225) +- Optimize case where manually typing in suggestion +- Avoid wrapping any zle-\* widgets (#206) +- Remove support for deprecated options from v0.0.x +- Handle history entries that begin with dashes +- Gracefully handle being sourced multiple times (#126) +- Add enable/disable/toggle widgets to disable/enable suggestions (#219) + + +## v0.3.3 +- Switch from $history array to fc builtin for better performance with large HISTFILEs (#164) +- Fix tilde handling when extended_glob is set (#168) +- Add config option for maximum buffer length to fetch suggestions for (#178) +- Add config option for list of widgets to ignore (#184) +- Don't fetch a new suggestion unless a modification widget actually modifies the buffer (#183) + +## v0.3.2 +- Test runner now supports running specific tests and choosing zsh binary +- Return code from original widget is now correctly passed through (#135) +- Add `vi-add-eol` to list of accept widgets (#143) +- Escapes widget names within evals to fix problems with irregular widget names (#152) +- Plugin now clears suggestion while within a completion menu (#149) +- .plugin file no longer relies on symbolic link support, fixing issues on Windows (#156) + +## v0.3.1 + +- Fixes issue with `vi-next-char` not accepting suggestion (#137). +- Fixes global variable warning when WARN_CREATE_GLOBAL option enabled (#133). +- Split out a separate test file for each widget. + +## v0.3.0 + +- Adds `autosuggest-execute` widget (PR #124). +- Adds concept of suggestion "strategies" for different ways of fetching suggestions. +- Adds "match_prev_cmd" strategy (PR #131). +- Uses git submodules for testing dependencies. +- Lots of test cleanup. +- Various bug fixes for zsh 5.0.x and `sh_word_split` option. + + +## v0.2.17 + +Start of changelog. diff --git a/home-config/zsh/zsh-autosuggestions/DESCRIPTION b/home-config/zsh/zsh-autosuggestions/DESCRIPTION new file mode 100644 index 0000000..b69200f --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/DESCRIPTION @@ -0,0 +1 @@ +Fish-like fast/unobtrusive autosuggestions for zsh. diff --git a/home-config/zsh/zsh-autosuggestions/Dockerfile b/home-config/zsh/zsh-autosuggestions/Dockerfile new file mode 100644 index 0000000..0d51407 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/Dockerfile @@ -0,0 +1,20 @@ +FROM ruby:2.5.3-alpine + +RUN apk add --no-cache autoconf +RUN apk add --no-cache libtool +RUN apk add --no-cache libcap-dev +RUN apk add --no-cache pcre-dev +RUN apk add --no-cache curl +RUN apk add --no-cache build-base +RUN apk add --no-cache ncurses-dev +RUN apk add --no-cache tmux + +WORKDIR /zsh-autosuggestions + +ADD ZSH_VERSIONS /zsh-autosuggestions/ZSH_VERSIONS +ADD install_test_zsh.sh /zsh-autosuggestions/install_test_zsh.sh +RUN ./install_test_zsh.sh + +ADD Gemfile /zsh-autosuggestions/Gemfile +ADD Gemfile.lock /zsh-autosuggestions/Gemfile.lock +RUN bundle install diff --git a/home-config/zsh/zsh-autosuggestions/Gemfile b/home-config/zsh/zsh-autosuggestions/Gemfile new file mode 100644 index 0000000..8b5deec --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/Gemfile @@ -0,0 +1,5 @@ +source 'https://rubygems.org' + +gem 'rspec' +gem 'rspec-wait' +gem 'pry-byebug' diff --git a/home-config/zsh/zsh-autosuggestions/Gemfile.lock b/home-config/zsh/zsh-autosuggestions/Gemfile.lock new file mode 100644 index 0000000..63ee778 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/Gemfile.lock @@ -0,0 +1,41 @@ +GEM + remote: https://rubygems.org/ + specs: + byebug (9.0.5) + coderay (1.1.1) + diff-lcs (1.3) + method_source (0.8.2) + pry (0.10.4) + coderay (~> 1.1.0) + method_source (~> 0.8.1) + slop (~> 3.4) + pry-byebug (3.4.0) + byebug (~> 9.0) + pry (~> 0.10) + rspec (3.5.0) + rspec-core (~> 3.5.0) + rspec-expectations (~> 3.5.0) + rspec-mocks (~> 3.5.0) + rspec-core (3.5.4) + rspec-support (~> 3.5.0) + rspec-expectations (3.5.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.5.0) + rspec-mocks (3.5.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.5.0) + rspec-support (3.5.0) + rspec-wait (0.0.9) + rspec (>= 3, < 4) + slop (3.6.0) + +PLATFORMS + ruby + +DEPENDENCIES + pry-byebug + rspec + rspec-wait + +BUNDLED WITH + 1.13.6 diff --git a/home-config/zsh/zsh-autosuggestions/INSTALL.md b/home-config/zsh/zsh-autosuggestions/INSTALL.md new file mode 100644 index 0000000..196524f --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/INSTALL.md @@ -0,0 +1,64 @@ +# Installation + +* [Packages](#packages) +* [Antigen](#antigen) +* [Oh My Zsh](#oh-my-zsh) +* [Manual](#manual-git-clone) + +## Packages + +| System | Package | +| ------------- | ------------- | +| Debian / Ubuntu | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) | +| Fedora / CentOS / RHEL / Scientific Linux | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) | +| OpenSUSE / SLE | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) | +| Arch Linux / Manjaro / Antergos / Hyperbola | [zsh-autosuggestions](https://www.archlinux.org/packages/zsh-autosuggestions), [zsh-autosuggestions-git](https://aur.archlinux.org/packages/zsh-autosuggestions-git) | +| NixOS | [zsh-autosuggestions](https://github.com/NixOS/nixpkgs/blob/master/pkgs/shells/zsh/zsh-autosuggestions/default.nix) | +| Void Linux | [zsh-autosuggestions](https://github.com/void-linux/void-packages/blob/master/srcpkgs/zsh-autosuggestions/template) | +| Mac OS | [homebrew](https://github.com/Homebrew/homebrew-core/blob/master/Formula/zsh-autosuggestions.rb) | +| NetBSD | [pkgsrc](http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/shells/zsh-autosuggestions/README.html) | + +## Antigen + +1. Add the following to your `.zshrc`: + + ```sh + antigen bundle zsh-users/zsh-autosuggestions + ``` + +2. Start a new terminal session. + +## Oh My Zsh + +1. Clone this repository into `$ZSH_CUSTOM/plugins` (by default `~/.oh-my-zsh/custom/plugins`) + + ```sh + git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions + ``` + +2. Add the plugin to the list of plugins for Oh My Zsh to load (inside `~/.zshrc`): + + ```sh + plugins=( + # other plugins... + zsh-autosuggestions + ) + ``` + +3. Start a new terminal session. + +## Manual (Git Clone) + +1. Clone this repository somewhere on your machine. This guide will assume `~/.zsh/zsh-autosuggestions`. + + ```sh + git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions + ``` + +2. Add the following to your `.zshrc`: + + ```sh + source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh + ``` + +3. Start a new terminal session. diff --git a/home-config/zsh/zsh-autosuggestions/LICENSE b/home-config/zsh/zsh-autosuggestions/LICENSE new file mode 100644 index 0000000..7ea78cc --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/LICENSE @@ -0,0 +1,23 @@ +Copyright (c) 2013 Thiago de Arruda +Copyright (c) 2016-2021 Eric Freese + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. diff --git a/home-config/zsh/zsh-autosuggestions/Makefile b/home-config/zsh/zsh-autosuggestions/Makefile new file mode 100644 index 0000000..f6d13a7 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/Makefile @@ -0,0 +1,35 @@ +SRC_DIR := ./src + +SRC_FILES := \ + $(SRC_DIR)/config.zsh \ + $(SRC_DIR)/util.zsh \ + $(SRC_DIR)/bind.zsh \ + $(SRC_DIR)/highlight.zsh \ + $(SRC_DIR)/widgets.zsh \ + $(SRC_DIR)/strategies/*.zsh \ + $(SRC_DIR)/fetch.zsh \ + $(SRC_DIR)/async.zsh \ + $(SRC_DIR)/start.zsh + +HEADER_FILES := \ + DESCRIPTION \ + URL \ + VERSION \ + LICENSE + +PLUGIN_TARGET := zsh-autosuggestions.zsh + +all: $(PLUGIN_TARGET) + +$(PLUGIN_TARGET): $(HEADER_FILES) $(SRC_FILES) + cat $(HEADER_FILES) | sed -e 's/^/# /g' > $@ + cat $(SRC_FILES) >> $@ + +.PHONY: clean +clean: + rm $(PLUGIN_TARGET) + +.PHONY: test +test: all + @test -n "$$TEST_ZSH_BIN" && echo "Testing zsh binary: $(TEST_ZSH_BIN)" || true + bundle exec rspec $(TESTS) diff --git a/home-config/zsh/zsh-autosuggestions/README.md b/home-config/zsh/zsh-autosuggestions/README.md new file mode 100644 index 0000000..94e0b58 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/README.md @@ -0,0 +1,191 @@ +# zsh-autosuggestions + +_[Fish](http://fishshell.com/)-like fast/unobtrusive autosuggestions for zsh._ + +It suggests commands as you type based on history and completions. + +Requirements: Zsh v4.3.11 or later + +[![CircleCI](https://img.shields.io/circleci/build/github/zsh-users/zsh-autosuggestions.svg)](https://circleci.com/gh/zsh-users/zsh-autosuggestions) +[![Chat on Gitter](https://img.shields.io/gitter/room/zsh-users/zsh-autosuggestions.svg)](https://gitter.im/zsh-users/zsh-autosuggestions) + +<a href="https://asciinema.org/a/37390" target="_blank"><img src="https://asciinema.org/a/37390.png" width="400" /></a> + + +## Installation + +See [INSTALL.md](INSTALL.md). + + +## Usage + +As you type commands, you will see a completion offered after the cursor in a muted gray color. This color can be changed by setting the `ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE` variable. See [configuration](#configuration). + +If you press the <kbd>→</kbd> key (`forward-char` widget) or <kbd>End</kbd> (`end-of-line` widget) with the cursor at the end of the buffer, it will accept the suggestion, replacing the contents of the command line buffer with the suggestion. + +If you invoke the `forward-word` widget, it will partially accept the suggestion up to the point that the cursor moves to. + + +## Configuration + +You may want to override the default global config variables. Default values of these variables can be found [here](src/config.zsh). + +**Note:** If you are using Oh My Zsh, you can put this configuration in a file in the `$ZSH_CUSTOM` directory. See their comments on [overriding internals](https://github.com/robbyrussell/oh-my-zsh/wiki/Customization#overriding-internals). + + +### Suggestion Highlight Style + +Set `ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE` to configure the style that the suggestion is shown with. The default is `fg=8`, which will set the foreground color to color 8 from the [256-color palette](https://upload.wikimedia.org/wikipedia/commons/1/15/Xterm_256color_chart.svg). If your terminal only supports 8 colors, you will need to use a number between 0 and 7. + +Background color can also be set, and the suggestion can be styled bold, underlined, or standout. For example, this would show suggestions with bold, underlined, pink text on a cyan background: + +```sh +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#ff00ff,bg=cyan,bold,underline" +``` + +For more info, read the Character Highlighting section of the zsh manual: `man zshzle` or [online](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting). + +**Note:** Some iTerm2 users have reported [not being able to see the suggestions](https://github.com/zsh-users/zsh-autosuggestions/issues/416#issuecomment-486516333). If this affects you, the problem is likely caused by incorrect color settings. In order to correct this, go into iTerm2's setting, navigate to profile > colors and make sure that the colors for Basic Colors > Background and ANSI Colors > Bright Black are **different**. + + +### Suggestion Strategy + +`ZSH_AUTOSUGGEST_STRATEGY` is an array that specifies how suggestions should be generated. The strategies in the array are tried successively until a suggestion is found. There are currently three built-in strategies to choose from: + +- `history`: Chooses the most recent match from history. +- `completion`: Chooses a suggestion based on what tab-completion would suggest. (requires `zpty` module, which is included with zsh since 4.0.1) +- `match_prev_cmd`: Like `history`, but chooses the most recent match whose preceding history item matches the most recently executed command ([more info](src/strategies/match_prev_cmd.zsh)). Note that this strategy won't work as expected with ZSH options that don't preserve the history order such as `HIST_IGNORE_ALL_DUPS` or `HIST_EXPIRE_DUPS_FIRST`. + +For example, setting `ZSH_AUTOSUGGEST_STRATEGY=(history completion)` will first try to find a suggestion from your history, but, if it can't find a match, will find a suggestion from the completion engine. + + +### Widget Mapping + +This plugin works by triggering custom behavior when certain [zle widgets](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets) are invoked. You can add and remove widgets from these arrays to change the behavior of this plugin: + +- `ZSH_AUTOSUGGEST_CLEAR_WIDGETS`: Widgets in this array will clear the suggestion when invoked. +- `ZSH_AUTOSUGGEST_ACCEPT_WIDGETS`: Widgets in this array will accept the suggestion when invoked. +- `ZSH_AUTOSUGGEST_EXECUTE_WIDGETS`: Widgets in this array will execute the suggestion when invoked. +- `ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS`: Widgets in this array will partially accept the suggestion when invoked. +- `ZSH_AUTOSUGGEST_IGNORE_WIDGETS`: Widgets in this array will not trigger any custom behavior. + +Widgets that modify the buffer and are not found in any of these arrays will fetch a new suggestion after they are invoked. + +**Note:** A widget shouldn't belong to more than one of the above arrays. + + +### Disabling suggestion for large buffers + +Set `ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE` to an integer value to disable autosuggestion for large buffers. The default is unset, which means that autosuggestion will be tried for any buffer size. Recommended value is 20. +This can be useful when pasting large amount of text in the terminal, to avoid triggering autosuggestion for strings that are too long. + +### Asynchronous Mode + +Suggestions are fetched asynchronously by default in zsh versions 5.0.8 and greater. To disable asynchronous suggestions and fetch them synchronously instead, `unset ZSH_AUTOSUGGEST_USE_ASYNC` after sourcing the plugin. + +Alternatively, if you are using a version of zsh older than 5.0.8 and want to enable asynchronous mode, set the `ZSH_AUTOSUGGEST_USE_ASYNC` variable after sourcing the plugin (it can be set to anything). Note that there is [a bug](https://github.com/zsh-users/zsh-autosuggestions/issues/364#issuecomment-481423232) in versions of zsh older than 5.0.8 where <kbd>ctrl</kbd> + <kbd>c</kbd> will fail to reset the prompt immediately after fetching a suggestion asynchronously. + +### Disabling automatic widget re-binding + +Set `ZSH_AUTOSUGGEST_MANUAL_REBIND` (it can be set to anything) to disable automatic widget re-binding on each precmd. This can be a big boost to performance, but you'll need to handle re-binding yourself if any of the widget lists change or if you or another plugin wrap any of the autosuggest widgets. To re-bind widgets, run `_zsh_autosuggest_bind_widgets`. + +### Ignoring history suggestions that match a pattern + +Set `ZSH_AUTOSUGGEST_HISTORY_IGNORE` to a [glob pattern](http://zsh.sourceforge.net/Doc/Release/Expansion.html#Glob-Operators) to prevent offering suggestions for history entries that match the pattern. For example, set it to `"cd *"` to never suggest any `cd` commands from history. Or set to `"?(#c50,)"` to never suggest anything 50 characters or longer. + +**Note:** This only affects the `history` and `match_prev_cmd` suggestion strategies. + +### Skipping completion suggestions for certain cases + +Set `ZSH_AUTOSUGGEST_COMPLETION_IGNORE` to a [glob pattern](http://zsh.sourceforge.net/Doc/Release/Expansion.html#Glob-Operators) to prevent offering completion suggestions when the buffer matches that pattern. For example, set it to `"git *"` to disable completion suggestions for git subcommands. + +**Note:** This only affects the `completion` suggestion strategy. + + +### Key Bindings + +This plugin provides a few widgets that you can use with `bindkey`: + +1. `autosuggest-accept`: Accepts the current suggestion. +2. `autosuggest-execute`: Accepts and executes the current suggestion. +3. `autosuggest-clear`: Clears the current suggestion. +4. `autosuggest-fetch`: Fetches a suggestion (works even when suggestions are disabled). +5. `autosuggest-disable`: Disables suggestions. +6. `autosuggest-enable`: Re-enables suggestions. +7. `autosuggest-toggle`: Toggles between enabled/disabled suggestions. + +For example, this would bind <kbd>ctrl</kbd> + <kbd>space</kbd> to accept the current suggestion. + +```sh +bindkey '^ ' autosuggest-accept +``` + + +## Troubleshooting + +If you have a problem, please search through [the list of issues on GitHub](https://github.com/zsh-users/zsh-autosuggestions/issues?q=) to see if someone else has already reported it. + +### Reporting an Issue + +Before reporting an issue, please try temporarily disabling sections of your configuration and other plugins that may be conflicting with this plugin to isolate the problem. + +When reporting an issue, please include: + +- The smallest, simplest `.zshrc` configuration that will reproduce the problem. See [this comment](https://github.com/zsh-users/zsh-autosuggestions/issues/102#issuecomment-180944764) for a good example of what this means. +- The version of zsh you're using (`zsh --version`) +- Which operating system you're running + + +## Uninstallation + +1. Remove the code referencing this plugin from `~/.zshrc`. + +2. Remove the git repository from your hard drive + + ```sh + rm -rf ~/.zsh/zsh-autosuggestions # Or wherever you installed + ``` + + +## Development + +### Build Process + +Edit the source files in `src/`. Run `make` to build `zsh-autosuggestions.zsh` from those source files. + + +### Pull Requests + +Pull requests are welcome! If you send a pull request, please: + +- Request to merge into the `develop` branch (*NOT* `master`) +- Match the existing coding conventions. +- Include helpful comments to keep the barrier-to-entry low for people new to the project. +- Write tests that cover your code as much as possible. + + +### Testing + +Tests are written in ruby using the [`rspec`](http://rspec.info/) framework. They use [`tmux`](https://tmux.github.io/) to drive a pseudoterminal, sending simulated keystrokes and making assertions on the terminal content. + +Test files live in `spec/`. To run the tests, run `make test`. To run a specific test, run `TESTS=spec/some_spec.rb make test`. You can also specify a `zsh` binary to use by setting the `TEST_ZSH_BIN` environment variable (ex: `TEST_ZSH_BIN=/bin/zsh make test`). + +A docker image for testing is available [on docker hub](https://hub.docker.com/r/ericfreese/zsh-autosuggestions-test). It comes with ruby, the bundler dependencies, and all supported versions of zsh installed. + +Pull the docker image with: + +```sh +docker pull ericfreese/zsh-autosuggestions-test +``` + +To run the tests for a specific version of zsh (where `<version>` below is substituted with the contents of a line from the [`ZSH_VERSIONS`](ZSH_VERSIONS) file): + +```sh +docker run -it -e TEST_ZSH_BIN=zsh-<version> -v $PWD:/zsh-autosuggestions zsh-autosuggestions-test make test +``` + + +## License + +This project is licensed under [MIT license](http://opensource.org/licenses/MIT). +For the full text of the license, see the [LICENSE](LICENSE) file. diff --git a/home-config/zsh/zsh-autosuggestions/URL b/home-config/zsh/zsh-autosuggestions/URL new file mode 100644 index 0000000..4e2bd94 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/URL @@ -0,0 +1 @@ +https://github.com/zsh-users/zsh-autosuggestions diff --git a/home-config/zsh/zsh-autosuggestions/VERSION b/home-config/zsh/zsh-autosuggestions/VERSION new file mode 100644 index 0000000..8b20e48 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/VERSION @@ -0,0 +1 @@ +v0.7.0 diff --git a/home-config/zsh/zsh-autosuggestions/ZSH_VERSIONS b/home-config/zsh/zsh-autosuggestions/ZSH_VERSIONS new file mode 100644 index 0000000..18ed7a6 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/ZSH_VERSIONS @@ -0,0 +1,17 @@ +# Zsh releases to run tests against +# See https://github.com/zsh-users/zsh/releases +# +# When modifying this file, rebuild and push docker image: +# $ docker build -t ericfreese/zsh-autosuggestions-test . +# $ docker push ericfreese/zsh-autosuggestions-test +4.3.11 +5.0.2 +5.0.8 +5.1.1 +5.2 +5.3.1 +5.4.2 +5.5.1 +5.6.2 +5.7.1 +5.8 diff --git a/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh b/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh new file mode 100755 index 0000000..40dc4c5 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +set -ex + +for v in $(grep "^[^#]" ZSH_VERSIONS); do + mkdir zsh-$v + cd zsh-$v + + curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1 + + ./Util/preconfig + ./configure --enable-pcre \ + --enable-cap \ + --enable-multibyte \ + --with-term-lib='ncursesw tinfo' \ + --with-tcsetpgrp \ + --program-suffix="-$v" + + make install.bin + make install.modules + make install.fns + + cd .. + + rm -rf zsh-$v +done diff --git a/home-config/zsh/zsh-autosuggestions/spec/async_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/async_spec.rb new file mode 100644 index 0000000..0af7232 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/async_spec.rb @@ -0,0 +1,70 @@ +context 'with asynchronous suggestions enabled' do + let(:options) { ["ZSH_AUTOSUGGEST_USE_ASYNC="] } + + describe '`up-line-or-beginning-search`' do + let(:before_sourcing) do + -> do + session. + run_command('autoload -U up-line-or-beginning-search'). + run_command('zle -N up-line-or-beginning-search'). + send_string('bindkey "'). + send_keys('C-v').send_keys('up'). + send_string('" up-line-or-beginning-search'). + send_keys('enter') + end + end + + it 'should show previous history entries' do + with_history( + 'echo foo', + 'echo bar', + 'echo baz' + ) do + session.clear_screen + 3.times { session.send_keys('up') } + wait_for { session.content }.to eq("echo foo") + end + end + end + + describe '`copy-earlier-word`' do + let(:before_sourcing) do + -> do + session. + run_command('autoload -Uz copy-earlier-word'). + run_command('zle -N copy-earlier-word'). + run_command('bindkey "^N" copy-earlier-word') + end + end + + it 'should cycle through previous words in the buffer' do + session.clear_screen + session.send_string('foo bar baz') + sleep 0.5 + session.send_keys('C-n') + wait_for { session.content }.to eq('foo bar bazbaz') + session.send_keys('C-n') + wait_for { session.content }.to eq('foo bar bazbar') + session.send_keys('C-n') + wait_for { session.content }.to eq('foo bar bazfoo') + end + end + + describe 'pressing ^C after fetching a suggestion' do + before do + skip 'Workaround does not work below v5.0.8' if session.zsh_version < Gem::Version.new('5.0.8') + end + + it 'terminates the prompt and begins a new one' do + session.send_keys('e') + sleep 0.5 + session.send_keys('C-c') + sleep 0.5 + session.send_keys('echo') + + wait_for { session.content }.to eq("e\necho") + end + end +end + + diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb new file mode 100644 index 0000000..94bd24b --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb @@ -0,0 +1,14 @@ +describe 'with `AUTO_CD` option set' do + let(:after_sourcing) do + -> { + session.run_command('setopt AUTO_CD') + session.run_command('autoload compinit && compinit') + } + end + + it 'directory names are still completed' do + session.send_string('sr') + session.send_keys('C-i') + wait_for { session.content }.to eq('src/') + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb new file mode 100644 index 0000000..41ff267 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb @@ -0,0 +1,43 @@ +describe 'pasting using bracketed-paste-magic' do + let(:before_sourcing) do + -> do + session. + run_command('autoload -Uz bracketed-paste-magic'). + run_command('zle -N bracketed-paste bracketed-paste-magic') + end + end + + context 'with suggestions disabled while pasting' do + before do + session. + run_command('bpm_init() { zle autosuggest-disable }'). + run_command('bpm_finish() { zle autosuggest-enable }'). + run_command('zstyle :bracketed-paste-magic paste-init bpm_init'). + run_command('zstyle :bracketed-paste-magic paste-finish bpm_finish') + end + + it 'does not show an incorrect suggestion' do + with_history('echo hello') do + session.paste_string("echo #{'a' * 60}") + sleep 1 + expect(session.content).to eq("echo #{'a' * 60}") + end + end + end + + context 'with `bracketed-paste` added to the list of widgets that clear the suggestion' do + let(:options) { ['ZSH_AUTOSUGGEST_CLEAR_WIDGETS+=(bracketed-paste)'] } + + it 'does not retain an old suggestion' do + with_history ('echo foo') do + session.send_string('echo ') + wait_for { session.content }.to eq('echo foo') + session.paste_string('bar') + wait_for { session.content }.to eq('echo bar') + session.send_keys('C-a') # Any cursor movement works + sleep 1 + expect(session.content).to eq('echo bar') + end + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb new file mode 100644 index 0000000..b8abb37 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb @@ -0,0 +1,14 @@ +describe 'a running zpty command' do + let(:before_sourcing) { -> { session.run_command('zmodload zsh/zpty && zpty -b kitty cat') } } + + context 'when using `completion` strategy' do + let(:options) { ["ZSH_AUTOSUGGEST_STRATEGY=completion"] } + + it 'is not affected' do + session.send_keys('a').send_keys('C-h') + session.run_command('zpty -t kitty; echo $?') + + wait_for { session.content }.to end_with("\n0") + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb new file mode 100644 index 0000000..c3dd671 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb @@ -0,0 +1,12 @@ +describe 'with `GLOB_SUBST` option set' do + let(:after_sourcing) do + -> { + session.run_command('setopt GLOB_SUBST') + } + end + + it 'error messages are not printed' do + session.send_string('[[') + wait_for { session.content }.to eq('[[') + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb new file mode 100644 index 0000000..8b420f0 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb @@ -0,0 +1,13 @@ +describe 'rebinding [' do + context 'initialized before sourcing the plugin' do + before do + session.run_command("function [ { $commands[\\[] \"$@\" }") + session.clear_screen + end + + it 'executes the custom behavior and the built-in behavior' do + session.send_string('asdf') + wait_for { session.content }.to eq('asdf') + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb new file mode 100644 index 0000000..0a295c2 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb @@ -0,0 +1,80 @@ +describe 'when using vi mode' do + let(:before_sourcing) do + -> do + session.run_command('bindkey -v') + end + end + + describe 'moving the cursor after exiting insert mode' do + it 'should not clear the current suggestion' do + with_history('foobar foo') do + session. + send_string('foo'). + send_keys('escape'). + send_keys('h') + + wait_for { session.content }.to eq('foobar foo') + end + end + end + + describe '`vi-forward-word-end`' do + it 'should accept through the end of the current word' do + with_history('foobar foo') do + session. + send_string('foo'). + send_keys('escape'). + send_keys('e'). # vi-forward-word-end + send_keys('a'). # vi-add-next + send_string('baz') + + wait_for { session.content }.to eq('foobarbaz') + end + end + end + + describe '`vi-forward-word`' do + it 'should accept through the first character of the next word' do + with_history('foobar foo') do + session. + send_string('foo'). + send_keys('escape'). + send_keys('w'). # vi-forward-word + send_keys('a'). # vi-add-next + send_string('az') + + wait_for { session.content }.to eq('foobar faz') + end + end + end + + describe '`vi-find-next-char`' do + it 'should accept through the next occurrence of the character' do + with_history('foobar foo') do + session. + send_string('foo'). + send_keys('escape'). + send_keys('f'). # vi-find-next-char + send_keys('o'). + send_keys('a'). # vi-add-next + send_string('b') + + wait_for { session.content }.to eq('foobar fob') + end + end + end + + describe '`vi-delete`' do + it 'should be able to remove the last character in the buffer' do + skip 'deleting last char did not work below zsh version 5.0.8' if session.zsh_version < Gem::Version.new('5.0.8') + + session. + send_string('echo foo'). + send_keys('escape'). + send_keys('d'). + send_keys('l') + + wait_for { session.content }.to eq('echo fo') + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb new file mode 100644 index 0000000..61dfc2d --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb @@ -0,0 +1,39 @@ +describe 'a wrapped widget' do + let(:widget) { 'backward-delete-char' } + + context 'initialized before sourcing the plugin' do + let(:before_sourcing) do + -> do + session. + run_command("_orig_#{widget}() { zle .#{widget} }"). + run_command("zle -N orig-#{widget} _orig_#{widget}"). + run_command("#{widget}-magic() { zle orig-#{widget}; BUFFER+=b }"). + run_command("zle -N #{widget} #{widget}-magic") + end + end + + it 'executes the custom behavior and the built-in behavior' do + with_history('foobar', 'foodar') do + session.send_string('food').send_keys('C-h') + wait_for { session.content }.to eq('foobar') + end + end + end + + context 'initialized after sourcing the plugin' do + before do + session. + run_command("zle -N orig-#{widget} ${widgets[#{widget}]#*:}"). + run_command("#{widget}-magic() { zle orig-#{widget}; BUFFER+=b }"). + run_command("zle -N #{widget} #{widget}-magic"). + clear_screen + end + + it 'executes the custom behavior and the built-in behavior' do + with_history('foobar', 'foodar') do + session.send_string('food').send_keys('C-h') + wait_for { session.content }.to eq('foobar') + end + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb new file mode 100644 index 0000000..12cfbc7 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb @@ -0,0 +1,24 @@ +describe 'using `zle -U`' do + let(:before_sourcing) do + -> do + session. + run_command('_zsh_autosuggest_strategy_test() { sleep 1; _zsh_autosuggest_strategy_history "$1" }'). + run_command('foo() { zle -U - "echo hello" }; zle -N foo; bindkey ^B foo') + end + end + + let(:options) { ['unset ZSH_AUTOSUGGEST_USE_ASYNC', 'ZSH_AUTOSUGGEST_STRATEGY=test'] } + + # TODO: This is only possible with the $KEYS_QUEUED_COUNT widget parameter, coming soon... + xit 'does not fetch a suggestion for every inserted character' do + session.send_keys('C-b') + wait_for { session.content }.to eq('echo hello') + end + + it 'shows a suggestion when the widget completes' do + with_history('echo hello world') do + session.send_keys('C-b') + wait_for { session.content(esc_seqs: true) }.to match(/\Aecho hello\e\[[0-9]+m world/) + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/kill_ring_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/kill_ring_spec.rb new file mode 100644 index 0000000..4d0178f --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/kill_ring_spec.rb @@ -0,0 +1,23 @@ +context 'with some items in the kill ring' do + before do + session. + send_string('echo foo'). + send_keys('C-u'). + send_string('echo bar'). + send_keys('C-u') + end + + describe '`yank-pop`' do + it 'should cycle through all items in the kill ring' do + session.send_keys('C-y') + wait_for { session.content }.to eq('echo bar') + + session.send_keys('escape').send_keys('y') + wait_for { session.content }.to eq('echo foo') + + session.send_keys('escape').send_keys('y') + wait_for { session.content }.to eq('echo bar') + end + end +end + diff --git a/home-config/zsh/zsh-autosuggestions/spec/line_init_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/line_init_spec.rb new file mode 100644 index 0000000..826277f --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/line_init_spec.rb @@ -0,0 +1,17 @@ +context 'with zle-line-init unignored' do + let(:after_sourcing) do + -> do + session. + run_command('setopt extendedglob'). + run_command('ZSH_AUTOSUGGEST_IGNORE_WIDGETS=(${(@)ZSH_AUTOSUGGEST_IGNORE_WIDGETS:#zle-\*} zle-\^line-init)'). + run_command('zle-line-init() { BUFFER="echo" }') + end + end + + it 'should fetch a suggestion on each line initialization' do + with_history('echo foo') do + session.run_command('zle -N zle-line-init') + wait_for { session.content }.to end_with('echo foo') + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/multi_line_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/multi_line_spec.rb new file mode 100644 index 0000000..364780a --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/multi_line_spec.rb @@ -0,0 +1,8 @@ +describe 'a multi-line suggestion' do + it 'should be displayed on multiple lines' do + with_history("echo \"\n\"") do + session.send_keys('e') + wait_for { session.content }.to eq("echo \"\n\"") + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb new file mode 100644 index 0000000..29ca8bc --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb @@ -0,0 +1,30 @@ +describe 'a suggestion' do + let(:term_opts) { { width: 200 } } + let(:long_command) { "echo #{'a' * 100}" } + + around do |example| + with_history(long_command) { example.run } + end + + it 'is provided for any buffer length' do + session.send_string(long_command[0...-1]) + wait_for { session.content }.to eq(long_command) + end + + context 'when ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE is specified' do + let(:buffer_max_size) { 10 } + let(:options) { ["ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=#{buffer_max_size}"] } + + it 'is provided when the buffer is shorter than the specified length' do + session.send_string(long_command[0...(buffer_max_size - 1)]) + wait_for { session.content }.to eq(long_command) + end + + it 'is provided when the buffer is equal to the specified length' do + session.send_string(long_command[0...(buffer_max_size)]) + wait_for { session.content }.to eq(long_command) + end + + it 'is not provided when the buffer is longer than the specified length' + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/options/highlight_style_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/options/highlight_style_spec.rb new file mode 100644 index 0000000..a7e39b3 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/options/highlight_style_spec.rb @@ -0,0 +1,7 @@ +describe 'a displayed suggestion' do + it 'is shown in the default style' + + describe 'when ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE is set to a zle_highlight string' do + it 'is shown in the specified style' + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb new file mode 100644 index 0000000..a4b6e98 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb @@ -0,0 +1,7 @@ +describe 'an original zle widget' do + context 'is accessible with the default prefix' + + context 'when ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX is set' do + it 'is accessible with the specified prefix' + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/options/strategy_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/options/strategy_spec.rb new file mode 100644 index 0000000..58562d0 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/options/strategy_spec.rb @@ -0,0 +1,55 @@ +describe 'a suggestion for a given prefix' do + let(:history_strategy) { '_zsh_autosuggest_strategy_history() { suggestion="history" }' } + let(:foobar_strategy) { '_zsh_autosuggest_strategy_foobar() { [[ "foobar baz" = $1* ]] && suggestion="foobar baz" }' } + let(:foobaz_strategy) { '_zsh_autosuggest_strategy_foobaz() { [[ "foobaz bar" = $1* ]] && suggestion="foobaz bar" }' } + + let(:after_sourcing) do + -> do + session.run_command(history_strategy) + end + end + + it 'by default is determined by calling the `history` strategy function' do + session.send_string('h') + wait_for { session.content }.to eq('history') + end + + context 'when ZSH_AUTOSUGGEST_STRATEGY is set to an array' do + let(:after_sourcing) do + -> do + session. + run_command(foobar_strategy). + run_command(foobaz_strategy). + run_command('ZSH_AUTOSUGGEST_STRATEGY=(foobar foobaz)') + end + end + + it 'is determined by the first strategy function to return a suggestion' do + session.send_string('foo') + wait_for { session.content }.to eq('foobar baz') + + session.send_string('baz') + wait_for { session.content }.to eq('foobaz bar') + end + end + + context 'when ZSH_AUTOSUGGEST_STRATEGY is set to a string' do + let(:after_sourcing) do + -> do + session. + run_command(foobar_strategy). + run_command(foobaz_strategy). + run_command('ZSH_AUTOSUGGEST_STRATEGY="foobar foobaz"') + end + end + + it 'is determined by the first strategy function to return a suggestion' do + session.send_string('foo') + wait_for { session.content }.to eq('foobar baz') + + session.send_string('baz') + wait_for { session.content }.to eq('foobaz bar') + end + end +end + diff --git a/home-config/zsh/zsh-autosuggestions/spec/options/widget_lists_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/options/widget_lists_spec.rb new file mode 100644 index 0000000..421b84e --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/options/widget_lists_spec.rb @@ -0,0 +1,121 @@ +describe 'a zle widget' do + let(:widget) { 'my-widget' } + let(:before_sourcing) { -> { session.run_command("#{widget}() {}; zle -N #{widget}; bindkey ^B #{widget}") } } + + context 'when added to ZSH_AUTOSUGGEST_ACCEPT_WIDGETS' do + let(:options) { ["ZSH_AUTOSUGGEST_ACCEPT_WIDGETS+=(#{widget})"] } + + it 'accepts the suggestion and moves the cursor to the end of the buffer when invoked' do + with_history('echo hello') do + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + session.send_keys('C-b') + wait_for { session.content(esc_seqs: true) }.to eq('echo hello') + wait_for { session.cursor }.to eq([10, 0]) + end + end + end + + context 'when added to ZSH_AUTOSUGGEST_CLEAR_WIDGETS' do + let(:options) { ["ZSH_AUTOSUGGEST_CLEAR_WIDGETS+=(#{widget})"] } + + it 'clears the suggestion when invoked' do + with_history('echo hello') do + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + session.send_keys('C-b') + wait_for { session.content }.to eq('e') + end + end + end + + context 'when added to ZSH_AUTOSUGGEST_EXECUTE_WIDGETS' do + let(:options) { ["ZSH_AUTOSUGGEST_EXECUTE_WIDGETS+=(#{widget})"] } + + it 'executes the suggestion when invoked' do + with_history('echo hello') do + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + session.send_keys('C-b') + wait_for { session.content }.to end_with("\nhello") + end + end + end + + context 'when added to ZSH_AUTOSUGGEST_IGNORE_WIDGETS' do + let(:options) { ["ZSH_AUTOSUGGEST_IGNORE_WIDGETS=(#{widget})"] } + + it 'should not be wrapped with an autosuggest widget' do + session.run_command("echo $widgets[#{widget}]") + wait_for { session.content }.to end_with("\nuser:#{widget}") + end + end + + context 'that moves the cursor forward' do + before { session.run_command("#{widget}() { zle forward-char }") } + + context 'when added to ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS' do + let(:options) { ["ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS=(#{widget})"] } + + it 'accepts the suggestion as far as the cursor is moved when invoked' do + with_history('echo hello') do + session.send_string('e') + wait_for { session.content }.to start_with('echo hello') + session.send_keys('C-b') + wait_for { session.content(esc_seqs: true) }.to match(/\Aec\e\[[0-9]+mho hello/) + end + end + end + end + + context 'that modifies the buffer' do + before { session.run_command("#{widget}() { BUFFER=\"foo\" }") } + + context 'when not added to any of the widget lists' do + it 'modifies the buffer and fetches a new suggestion' do + with_history('foobar') do + session.send_keys('C-b') + wait_for { session.content }.to eq('foobar') + end + end + end + end +end + +describe 'a modification to the widget lists' do + let(:widget) { 'my-widget' } + let(:before_sourcing) { -> { session.run_command("#{widget}() {}; zle -N #{widget}; bindkey ^B #{widget}") } } + before { session.run_command("ZSH_AUTOSUGGEST_ACCEPT_WIDGETS+=(#{widget})") } + + it 'takes effect on the next cmd line' do + with_history('echo hello') do + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + session.send_keys('C-b') + wait_for { session.content(esc_seqs: true) }.to eq('echo hello') + end + end + + context 'when manual rebind is enabled' do + let(:options) { ["ZSH_AUTOSUGGEST_MANUAL_REBIND=true"] } + + it 'does not take effect until bind command is re-run' do + with_history('echo hello') do + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + session.send_keys('C-b') + sleep 1 + expect(session.content(esc_seqs: true)).not_to eq('echo hello') + + session.send_keys('C-c') + session.run_command('_zsh_autosuggest_bind_widgets').clear_screen + wait_for { session.content }.to eq('') + + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + session.send_keys('C-b') + wait_for { session.content(esc_seqs: true) }.to eq('echo hello') + end + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/spec_helper.rb b/home-config/zsh/zsh-autosuggestions/spec/spec_helper.rb new file mode 100644 index 0000000..dc1abb0 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/spec_helper.rb @@ -0,0 +1,54 @@ +require 'pry' +require 'rspec/wait' +require 'terminal_session' +require 'tempfile' + +RSpec.shared_context 'terminal session' do + let(:term_opts) { {} } + let(:session) { TerminalSession.new(term_opts) } + let(:before_sourcing) { -> {} } + let(:after_sourcing) { -> {} } + let(:options) { [] } + + around do |example| + before_sourcing.call + session.run_command(['source zsh-autosuggestions.zsh', *options].join('; ')) + after_sourcing.call + session.clear_screen + + example.run + + session.destroy + end + + def with_history(*commands, &block) + Tempfile.create do |f| + f.write(commands.map{|c| c.gsub("\n", "\\\n")}.join("\n")) + f.flush + + session.run_command('fc -p') + session.run_command("fc -R #{f.path}") + + session.clear_screen + + yield block + + session.send_keys('C-c') + session.run_command('fc -P') + end + end +end + +RSpec.configure do |config| + config.expect_with :rspec do |expectations| + expectations.include_chain_clauses_in_custom_matcher_descriptions = true + end + + config.mock_with :rspec do |mocks| + mocks.verify_partial_doubles = true + end + + config.wait_timeout = 2 + + config.include_context 'terminal session' +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/strategies/completion_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/strategies/completion_spec.rb new file mode 100644 index 0000000..92794d6 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/strategies/completion_spec.rb @@ -0,0 +1,72 @@ +describe 'the `completion` suggestion strategy' do + let(:options) { ['ZSH_AUTOSUGGEST_STRATEGY=completion'] } + let(:before_sourcing) do + -> do + session. + run_command('autoload compinit && compinit'). + run_command('_foo() { compadd bar; compadd bat }'). + run_command('_num() { compadd two; compadd three }'). + run_command('compdef _foo baz'). + run_command('compdef _num one') + end + end + + it 'suggests the first completion result' do + session.send_string('baz ') + wait_for { session.content }.to eq('baz bar') + end + + it 'does not add extra carriage returns when prefix has a line feed' do + skip '`stty` does not work inside zpty below zsh version 5.0.3' if session.zsh_version < Gem::Version.new('5.0.3') + session.send_string('baz \\').send_keys('C-v', 'C-j') + wait_for { session.content }.to eq("baz \\\nbar") + end + + context 'when `_complete` is aliased' do + let(:before_sourcing) do + -> do + session. + run_command('autoload compinit && compinit'). + run_command('_foo() { compadd bar; compadd bat }'). + run_command('compdef _foo baz'). + run_command('alias _complete=_complete') + end + end + + it 'suggests the first completion result' do + session.send_string('baz ') + wait_for { session.content }.to eq('baz bar') + end + end + + context 'when ZSH_AUTOSUGGEST_COMPLETION_IGNORE is set to a pattern' do + let(:options) { ['ZSH_AUTOSUGGEST_STRATEGY=completion', 'ZSH_AUTOSUGGEST_COMPLETION_IGNORE="one *"'] } + + it 'makes suggestions when the buffer does not match the pattern' do + session.send_string('baz ') + wait_for { session.content }.to eq('baz bar') + end + + it 'does not make suggestions when the buffer matches the pattern' do + session.send_string('one t') + sleep 1 + expect(session.content).to eq('one t') + end + end + + context 'when async mode is enabled' do + let(:options) { ['ZSH_AUTOSUGGEST_USE_ASYNC=true', 'ZSH_AUTOSUGGEST_STRATEGY=completion'] } + + it 'suggests the first completion result' do + session.send_string('baz ') + wait_for { session.content }.to eq('baz bar') + end + + it 'does not add extra carriage returns when prefix has a line feed' do + skip '`stty` does not work inside zpty below zsh version 5.0.3' if session.zsh_version < Gem::Version.new('5.0.3') + session.send_string('baz \\').send_keys('C-v', 'C-j') + wait_for { session.content }.to eq("baz \\\nbar") + end + end +end + diff --git a/home-config/zsh/zsh-autosuggestions/spec/strategies/history_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/strategies/history_spec.rb new file mode 100644 index 0000000..eee8efd --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/strategies/history_spec.rb @@ -0,0 +1,23 @@ +require 'strategies/special_characters_helper' + +describe 'the `history` suggestion strategy' do + it 'suggests the last matching history entry' do + with_history('ls foo', 'ls bar', 'echo baz') do + session.send_string('ls') + wait_for { session.content }.to eq('ls bar') + end + end + + context 'when ZSH_AUTOSUGGEST_HISTORY_IGNORE is set to a pattern' do + let(:options) { ['ZSH_AUTOSUGGEST_HISTORY_IGNORE="* bar"'] } + + it 'does not make suggestions that match the pattern' do + with_history('ls foo', 'ls bar', 'echo baz') do + session.send_string('ls') + wait_for { session.content }.to eq('ls foo') + end + end + end + + include_examples 'special characters' +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb new file mode 100644 index 0000000..c435f16 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb @@ -0,0 +1,34 @@ +require 'strategies/special_characters_helper' + +describe 'the `match_prev_cmd` strategy' do + let(:options) { ['ZSH_AUTOSUGGEST_STRATEGY=match_prev_cmd'] } + + let(:history) { [ + 'echo what', + 'ls foo', + 'echo what', + 'ls bar', + 'ls baz', + 'echo what' + ] } + + it 'suggests the last matching history entry after the previous command' do + with_history(*history) do + session.send_string('ls') + wait_for { session.content }.to eq('ls bar') + end + end + + context 'when ZSH_AUTOSUGGEST_HISTORY_IGNORE is set to a pattern' do + let(:options) { ['ZSH_AUTOSUGGEST_STRATEGY=match_prev_cmd', 'ZSH_AUTOSUGGEST_HISTORY_IGNORE="* bar"'] } + + it 'does not make suggestions that match the pattern' do + with_history(*history) do + session.send_string('ls') + wait_for { session.content }.to eq('ls foo') + end + end + end + + include_examples 'special characters' +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/strategies/special_characters_helper.rb b/home-config/zsh/zsh-autosuggestions/spec/strategies/special_characters_helper.rb new file mode 100644 index 0000000..eb1f0cd --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/strategies/special_characters_helper.rb @@ -0,0 +1,75 @@ +shared_examples 'special characters' do + describe 'a special character in the buffer should be treated like any other character' do + it 'asterisk' do + with_history('echo "hello*"', 'echo "hello."') do + session.send_string('echo "hello*') + wait_for { session.content }.to eq('echo "hello*"') + end + end + + it 'question mark' do + with_history('echo "hello?"', 'echo "hello."') do + session.send_string('echo "hello?') + wait_for { session.content }.to eq('echo "hello?"') + end + end + + it 'backslash' do + with_history('echo "hello\nworld"') do + session.send_string('echo "hello\\') + wait_for { session.content }.to eq('echo "hello\nworld"') + end + end + + it 'double backslash' do + with_history('echo "\\\\"') do + session.send_string('echo "\\\\') + wait_for { session.content }.to eq('echo "\\\\"') + end + end + + it 'tilde' do + with_history('echo ~/foo') do + session.send_string('echo ~') + wait_for { session.content }.to eq('echo ~/foo') + end + end + + it 'parentheses' do + with_history('echo "$(ls foo)"') do + session.send_string('echo "$(') + wait_for { session.content }.to eq('echo "$(ls foo)"') + end + end + + it 'square bracket' do + with_history('echo "$history[123]"') do + session.send_string('echo "$history[') + wait_for { session.content }.to eq('echo "$history[123]"') + session.send_string('123]') + wait_for { session.content }.to eq('echo "$history[123]"') + end + end + + it 'octothorpe' do + with_history('echo "#yolo"') do + session.send_string('echo "#') + wait_for { session.content }.to eq('echo "#yolo"') + end + end + + it 'caret' do + with_history('echo "^A"', 'echo "^B"') do + session.send_string('echo "^A') + wait_for { session.content }.to eq('echo "^A"') + end + end + + it 'dash' do + with_history('-foo() {}') do + session.send_string('-') + wait_for { session.content }.to eq('-foo() {}') + end + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/terminal_session.rb b/home-config/zsh/zsh-autosuggestions/spec/terminal_session.rb new file mode 100644 index 0000000..f91ee6c --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/terminal_session.rb @@ -0,0 +1,99 @@ +require 'securerandom' + +class TerminalSession + ZSH_BIN = ENV['TEST_ZSH_BIN'] || 'zsh' + + def initialize(opts = {}) + opts = { + width: 80, + height: 24, + prompt: '', + term: 'xterm-256color', + zsh_bin: ZSH_BIN + }.merge(opts) + + @opts = opts + + cmd="PS1=\"#{opts[:prompt]}\" TERM=#{opts[:term]} #{ZSH_BIN} -f" + tmux_command("new-session -d -x #{opts[:width]} -y #{opts[:height]} '#{cmd}'") + end + + def zsh_version + @zsh_version ||= Gem::Version.new(`#{ZSH_BIN} -c 'echo -n $ZSH_VERSION'`) + end + + def tmux_socket_name + @tmux_socket_name ||= SecureRandom.hex(6) + end + + def run_command(command) + send_string(command) + send_keys('enter') + + self + end + + def send_string(str) + tmux_command("send-keys -t 0 -l -- '#{str.gsub("'", "\\'")}'") + + self + end + + def send_keys(*keys) + tmux_command("send-keys -t 0 #{keys.join(' ')}") + + self + end + + def paste_string(str) + tmux_command("set-buffer -- '#{str}'") + tmux_command("paste-buffer -dpr -t 0") + + self + end + + def content(esc_seqs: false) + cmd = 'capture-pane -p -t 0' + cmd += ' -e' if esc_seqs + tmux_command(cmd).strip + end + + def clear_screen + send_keys('C-l') + + i = 0 + until content == opts[:prompt] || i > 20 do + sleep(0.1) + i = i + 1 + end + + self + end + + def destroy + tmux_command('kill-session') + end + + def cursor + tmux_command("display-message -t 0 -p '\#{cursor_x},\#{cursor_y}'"). + strip. + split(','). + map(&:to_i) + end + + def attach! + tmux_command('attach-session') + end + + private + + attr_reader :opts + + def tmux_command(cmd) + out = `tmux -u -L #{tmux_socket_name} #{cmd}` + + raise("tmux error running: '#{cmd}'") unless $?.success? + + out + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/widgets/disable_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/widgets/disable_spec.rb new file mode 100644 index 0000000..b387a59 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/widgets/disable_spec.rb @@ -0,0 +1,19 @@ +describe 'the `autosuggest-disable` widget' do + before do + session.run_command('bindkey ^B autosuggest-disable') + end + + it 'disables suggestions and clears the suggestion' do + with_history('echo hello') do + session.send_string('echo') + wait_for { session.content }.to eq('echo hello') + + session.send_keys('C-b') + wait_for { session.content }.to eq('echo') + + session.send_string(' h') + sleep 1 + expect(session.content).to eq('echo h') + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/widgets/enable_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/widgets/enable_spec.rb new file mode 100644 index 0000000..3ad35a8 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/widgets/enable_spec.rb @@ -0,0 +1,42 @@ +describe 'the `autosuggest-enable` widget' do + before do + session. + run_command('typeset -g _ZSH_AUTOSUGGEST_DISABLED'). + run_command('bindkey ^B autosuggest-enable') + end + + it 'enables suggestions and fetches a suggestion' do + with_history('echo hello') do + session.send_string('e') + sleep 1 + expect(session.content).to eq('e') + + session.send_keys('C-b') + session.send_string('c') + wait_for { session.content }.to eq('echo hello') + end + end + + context 'invoked on an empty buffer' do + it 'does not fetch a suggestion' do + with_history('echo hello') do + session.send_keys('C-b') + sleep 1 + expect(session.content).to eq('') + end + end + end + + context 'invoked on a non-empty buffer' do + it 'fetches a suggestion' do + with_history('echo hello') do + session.send_string('e') + sleep 1 + expect(session.content).to eq('e') + + session.send_keys('C-b') + wait_for { session.content }.to eq('echo hello') + end + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/widgets/fetch_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/widgets/fetch_spec.rb new file mode 100644 index 0000000..eb8f2ba --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/widgets/fetch_spec.rb @@ -0,0 +1,24 @@ +describe 'the `autosuggest-fetch` widget' do + context 'when suggestions are disabled' do + before do + session. + run_command('bindkey ^B autosuggest-disable'). + run_command('bindkey ^F autosuggest-fetch'). + send_keys('C-b') + end + + it 'will fetch and display a suggestion' do + with_history('echo hello') do + session.send_string('echo h') + sleep 1 + expect(session.content).to eq('echo h') + + session.send_keys('C-f') + wait_for { session.content }.to eq('echo hello') + + session.send_string('e') + wait_for { session.content }.to eq('echo hello') + end + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb new file mode 100644 index 0000000..8f9f3c3 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb @@ -0,0 +1,26 @@ +describe 'the `autosuggest-toggle` widget' do + before do + session.run_command('bindkey ^B autosuggest-toggle') + end + + it 'toggles suggestions' do + with_history('echo world', 'echo hello') do + session.send_string('echo') + wait_for { session.content }.to eq('echo hello') + + session.send_keys('C-b') + wait_for { session.content }.to eq('echo') + + session.send_string(' h') + sleep 1 + expect(session.content).to eq('echo h') + + session.send_keys('C-b') + wait_for { session.content }.to eq('echo hello') + + session.send_keys('C-h') + session.send_string('w') + wait_for { session.content }.to eq('echo world') + end + end +end diff --git a/home-config/zsh/zsh-autosuggestions/src/async.zsh b/home-config/zsh/zsh-autosuggestions/src/async.zsh new file mode 100644 index 0000000..218eb26 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/async.zsh @@ -0,0 +1,76 @@ + +#--------------------------------------------------------------------# +# Async # +#--------------------------------------------------------------------# + +_zsh_autosuggest_async_request() { + zmodload zsh/system 2>/dev/null # For `$sysparams` + + typeset -g _ZSH_AUTOSUGGEST_ASYNC_FD _ZSH_AUTOSUGGEST_CHILD_PID + + # If we've got a pending request, cancel it + if [[ -n "$_ZSH_AUTOSUGGEST_ASYNC_FD" ]] && { true <&$_ZSH_AUTOSUGGEST_ASYNC_FD } 2>/dev/null; then + # Close the file descriptor and remove the handler + exec {_ZSH_AUTOSUGGEST_ASYNC_FD}<&- + zle -F $_ZSH_AUTOSUGGEST_ASYNC_FD + + # We won't know the pid unless the user has zsh/system module installed + if [[ -n "$_ZSH_AUTOSUGGEST_CHILD_PID" ]]; then + # Zsh will make a new process group for the child process only if job + # control is enabled (MONITOR option) + if [[ -o MONITOR ]]; then + # Send the signal to the process group to kill any processes that may + # have been forked by the suggestion strategy + kill -TERM -$_ZSH_AUTOSUGGEST_CHILD_PID 2>/dev/null + else + # Kill just the child process since it wasn't placed in a new process + # group. If the suggestion strategy forked any child processes they may + # be orphaned and left behind. + kill -TERM $_ZSH_AUTOSUGGEST_CHILD_PID 2>/dev/null + fi + fi + fi + + # Fork a process to fetch a suggestion and open a pipe to read from it + exec {_ZSH_AUTOSUGGEST_ASYNC_FD}< <( + # Tell parent process our pid + echo $sysparams[pid] + + # Fetch and print the suggestion + local suggestion + _zsh_autosuggest_fetch_suggestion "$1" + echo -nE "$suggestion" + ) + + # There's a weird bug here where ^C stops working unless we force a fork + # See https://github.com/zsh-users/zsh-autosuggestions/issues/364 + autoload -Uz is-at-least + is-at-least 5.8 || command true + + # Read the pid from the child process + read _ZSH_AUTOSUGGEST_CHILD_PID <&$_ZSH_AUTOSUGGEST_ASYNC_FD + + # When the fd is readable, call the response handler + zle -F "$_ZSH_AUTOSUGGEST_ASYNC_FD" _zsh_autosuggest_async_response +} + +# Called when new data is ready to be read from the pipe +# First arg will be fd ready for reading +# Second arg will be passed in case of error +_zsh_autosuggest_async_response() { + emulate -L zsh + + local suggestion + + if [[ -z "$2" || "$2" == "hup" ]]; then + # Read everything from the fd and give it as a suggestion + IFS='' read -rd '' -u $1 suggestion + zle autosuggest-suggest -- "$suggestion" + + # Close the fd + exec {1}<&- + fi + + # Always remove the handler + zle -F "$1" +} diff --git a/home-config/zsh/zsh-autosuggestions/src/bind.zsh b/home-config/zsh/zsh-autosuggestions/src/bind.zsh new file mode 100644 index 0000000..1dde137 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/bind.zsh @@ -0,0 +1,106 @@ + +#--------------------------------------------------------------------# +# Widget Helpers # +#--------------------------------------------------------------------# + +_zsh_autosuggest_incr_bind_count() { + typeset -gi bind_count=$((_ZSH_AUTOSUGGEST_BIND_COUNTS[$1]+1)) + _ZSH_AUTOSUGGEST_BIND_COUNTS[$1]=$bind_count +} + +# Bind a single widget to an autosuggest widget, saving a reference to the original widget +_zsh_autosuggest_bind_widget() { + typeset -gA _ZSH_AUTOSUGGEST_BIND_COUNTS + + local widget=$1 + local autosuggest_action=$2 + local prefix=$ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX + + local -i bind_count + + # Save a reference to the original widget + case $widgets[$widget] in + # Already bound + user:_zsh_autosuggest_(bound|orig)_*) + bind_count=$((_ZSH_AUTOSUGGEST_BIND_COUNTS[$widget])) + ;; + + # User-defined widget + user:*) + _zsh_autosuggest_incr_bind_count $widget + zle -N $prefix$bind_count-$widget ${widgets[$widget]#*:} + ;; + + # Built-in widget + builtin) + _zsh_autosuggest_incr_bind_count $widget + eval "_zsh_autosuggest_orig_${(q)widget}() { zle .${(q)widget} }" + zle -N $prefix$bind_count-$widget _zsh_autosuggest_orig_$widget + ;; + + # Completion widget + completion:*) + _zsh_autosuggest_incr_bind_count $widget + eval "zle -C $prefix$bind_count-${(q)widget} ${${(s.:.)widgets[$widget]}[2,3]}" + ;; + esac + + # Pass the original widget's name explicitly into the autosuggest + # function. Use this passed in widget name to call the original + # widget instead of relying on the $WIDGET variable being set + # correctly. $WIDGET cannot be trusted because other plugins call + # zle without the `-w` flag (e.g. `zle self-insert` instead of + # `zle self-insert -w`). + eval "_zsh_autosuggest_bound_${bind_count}_${(q)widget}() { + _zsh_autosuggest_widget_$autosuggest_action $prefix$bind_count-${(q)widget} \$@ + }" + + # Create the bound widget + zle -N -- $widget _zsh_autosuggest_bound_${bind_count}_$widget +} + +# Map all configured widgets to the right autosuggest widgets +_zsh_autosuggest_bind_widgets() { + emulate -L zsh + + local widget + local ignore_widgets + + ignore_widgets=( + .\* + _\* + ${_ZSH_AUTOSUGGEST_BUILTIN_ACTIONS/#/autosuggest-} + $ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX\* + $ZSH_AUTOSUGGEST_IGNORE_WIDGETS + ) + + # Find every widget we might want to bind and bind it appropriately + for widget in ${${(f)"$(builtin zle -la)"}:#${(j:|:)~ignore_widgets}}; do + if [[ -n ${ZSH_AUTOSUGGEST_CLEAR_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget clear + elif [[ -n ${ZSH_AUTOSUGGEST_ACCEPT_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget accept + elif [[ -n ${ZSH_AUTOSUGGEST_EXECUTE_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget execute + elif [[ -n ${ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget partial_accept + else + # Assume any unspecified widget might modify the buffer + _zsh_autosuggest_bind_widget $widget modify + fi + done +} + +# Given the name of an original widget and args, invoke it, if it exists +_zsh_autosuggest_invoke_original_widget() { + # Do nothing unless called with at least one arg + (( $# )) || return 0 + + local original_widget_name="$1" + + shift + + if (( ${+widgets[$original_widget_name]} )); then + zle $original_widget_name -- $@ + fi +} diff --git a/home-config/zsh/zsh-autosuggestions/src/config.zsh b/home-config/zsh/zsh-autosuggestions/src/config.zsh new file mode 100644 index 0000000..5a0ebd8 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/config.zsh @@ -0,0 +1,93 @@ + +#--------------------------------------------------------------------# +# Global Configuration Variables # +#--------------------------------------------------------------------# + +# Color to use when highlighting suggestion +# Uses format of `region_highlight` +# More info: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets +(( ! ${+ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE} )) && +typeset -g ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=8' + +# Prefix to use when saving original versions of bound widgets +(( ! ${+ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX} )) && +typeset -g ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig- + +# Strategies to use to fetch a suggestion +# Will try each strategy in order until a suggestion is returned +(( ! ${+ZSH_AUTOSUGGEST_STRATEGY} )) && { + typeset -ga ZSH_AUTOSUGGEST_STRATEGY + ZSH_AUTOSUGGEST_STRATEGY=(history) +} + +# Widgets that clear the suggestion +(( ! ${+ZSH_AUTOSUGGEST_CLEAR_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_CLEAR_WIDGETS + ZSH_AUTOSUGGEST_CLEAR_WIDGETS=( + history-search-forward + history-search-backward + history-beginning-search-forward + history-beginning-search-backward + history-substring-search-up + history-substring-search-down + up-line-or-beginning-search + down-line-or-beginning-search + up-line-or-history + down-line-or-history + accept-line + copy-earlier-word + ) +} + +# Widgets that accept the entire suggestion +(( ! ${+ZSH_AUTOSUGGEST_ACCEPT_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_ACCEPT_WIDGETS + ZSH_AUTOSUGGEST_ACCEPT_WIDGETS=( + forward-char + end-of-line + vi-forward-char + vi-end-of-line + vi-add-eol + ) +} + +# Widgets that accept the entire suggestion and execute it +(( ! ${+ZSH_AUTOSUGGEST_EXECUTE_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_EXECUTE_WIDGETS + ZSH_AUTOSUGGEST_EXECUTE_WIDGETS=( + ) +} + +# Widgets that accept the suggestion as far as the cursor moves +(( ! ${+ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS + ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS=( + forward-word + emacs-forward-word + vi-forward-word + vi-forward-word-end + vi-forward-blank-word + vi-forward-blank-word-end + vi-find-next-char + vi-find-next-char-skip + ) +} + +# Widgets that should be ignored (globbing supported but must be escaped) +(( ! ${+ZSH_AUTOSUGGEST_IGNORE_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_IGNORE_WIDGETS + ZSH_AUTOSUGGEST_IGNORE_WIDGETS=( + orig-\* + beep + run-help + set-local-history + which-command + yank + yank-pop + zle-\* + ) +} + +# Pty name for capturing completions for completion suggestion strategy +(( ! ${+ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME} )) && +typeset -g ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME=zsh_autosuggest_completion_pty diff --git a/home-config/zsh/zsh-autosuggestions/src/fetch.zsh b/home-config/zsh/zsh-autosuggestions/src/fetch.zsh new file mode 100644 index 0000000..fef2715 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/fetch.zsh @@ -0,0 +1,27 @@ + +#--------------------------------------------------------------------# +# Fetch Suggestion # +#--------------------------------------------------------------------# +# Loops through all specified strategies and returns a suggestion +# from the first strategy to provide one. +# + +_zsh_autosuggest_fetch_suggestion() { + typeset -g suggestion + local -a strategies + local strategy + + # Ensure we are working with an array + strategies=(${=ZSH_AUTOSUGGEST_STRATEGY}) + + for strategy in $strategies; do + # Try to get a suggestion from this strategy + _zsh_autosuggest_strategy_$strategy "$1" + + # Ensure the suggestion matches the prefix + [[ "$suggestion" != "$1"* ]] && unset suggestion + + # Break once we've found a valid suggestion + [[ -n "$suggestion" ]] && break + done +} diff --git a/home-config/zsh/zsh-autosuggestions/src/highlight.zsh b/home-config/zsh/zsh-autosuggestions/src/highlight.zsh new file mode 100644 index 0000000..273c03d --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/highlight.zsh @@ -0,0 +1,26 @@ + +#--------------------------------------------------------------------# +# Highlighting # +#--------------------------------------------------------------------# + +# If there was a highlight, remove it +_zsh_autosuggest_highlight_reset() { + typeset -g _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + + if [[ -n "$_ZSH_AUTOSUGGEST_LAST_HIGHLIGHT" ]]; then + region_highlight=("${(@)region_highlight:#$_ZSH_AUTOSUGGEST_LAST_HIGHLIGHT}") + unset _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + fi +} + +# If there's a suggestion, highlight it +_zsh_autosuggest_highlight_apply() { + typeset -g _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + + if (( $#POSTDISPLAY )); then + typeset -g _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT="$#BUFFER $(($#BUFFER + $#POSTDISPLAY)) $ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE" + region_highlight+=("$_ZSH_AUTOSUGGEST_LAST_HIGHLIGHT") + else + unset _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + fi +} diff --git a/home-config/zsh/zsh-autosuggestions/src/start.zsh b/home-config/zsh/zsh-autosuggestions/src/start.zsh new file mode 100644 index 0000000..5d4ee52 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/start.zsh @@ -0,0 +1,33 @@ + +#--------------------------------------------------------------------# +# Start # +#--------------------------------------------------------------------# + +# Start the autosuggestion widgets +_zsh_autosuggest_start() { + # By default we re-bind widgets on every precmd to ensure we wrap other + # wrappers. Specifically, highlighting breaks if our widgets are wrapped by + # zsh-syntax-highlighting widgets. This also allows modifications to the + # widget list variables to take effect on the next precmd. However this has + # a decent performance hit, so users can set ZSH_AUTOSUGGEST_MANUAL_REBIND + # to disable the automatic re-binding. + if (( ${+ZSH_AUTOSUGGEST_MANUAL_REBIND} )); then + add-zsh-hook -d precmd _zsh_autosuggest_start + fi + + _zsh_autosuggest_bind_widgets +} + +# Mark for auto-loading the functions that we use +autoload -Uz add-zsh-hook is-at-least + +# Automatically enable asynchronous mode in newer versions of zsh. Disable for +# older versions because there is a bug when using async mode where ^C does not +# work immediately after fetching a suggestion. +# See https://github.com/zsh-users/zsh-autosuggestions/issues/364 +if is-at-least 5.0.8; then + typeset -g ZSH_AUTOSUGGEST_USE_ASYNC= +fi + +# Start the autosuggestion widgets on the next precmd +add-zsh-hook precmd _zsh_autosuggest_start diff --git a/home-config/zsh/zsh-autosuggestions/src/strategies/completion.zsh b/home-config/zsh/zsh-autosuggestions/src/strategies/completion.zsh new file mode 100644 index 0000000..e2d114c --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/strategies/completion.zsh @@ -0,0 +1,137 @@ + +#--------------------------------------------------------------------# +# Completion Suggestion Strategy # +#--------------------------------------------------------------------# +# Fetches a suggestion from the completion engine +# + +_zsh_autosuggest_capture_postcompletion() { + # Always insert the first completion into the buffer + compstate[insert]=1 + + # Don't list completions + unset 'compstate[list]' +} + +_zsh_autosuggest_capture_completion_widget() { + # Add a post-completion hook to be called after all completions have been + # gathered. The hook can modify compstate to affect what is done with the + # gathered completions. + local -a +h comppostfuncs + comppostfuncs=(_zsh_autosuggest_capture_postcompletion) + + # Only capture completions at the end of the buffer + CURSOR=$#BUFFER + + # Run the original widget wrapping `.complete-word` so we don't + # recursively try to fetch suggestions, since our pty is forked + # after autosuggestions is initialized. + zle -- ${(k)widgets[(r)completion:.complete-word:_main_complete]} + + if is-at-least 5.0.3; then + # Don't do any cr/lf transformations. We need to do this immediately before + # output because if we do it in setup, onlcr will be re-enabled when we enter + # vared in the async code path. There is a bug in zpty module in older versions + # where the tty is not properly attached to the pty slave, resulting in stty + # getting stopped with a SIGTTOU. See zsh-workers thread 31660 and upstream + # commit f75904a38 + stty -onlcr -ocrnl -F /dev/tty + fi + + # The completion has been added, print the buffer as the suggestion + echo -nE - $'\0'$BUFFER$'\0' +} + +zle -N autosuggest-capture-completion _zsh_autosuggest_capture_completion_widget + +_zsh_autosuggest_capture_setup() { + # There is a bug in zpty module in older zsh versions by which a + # zpty that exits will kill all zpty processes that were forked + # before it. Here we set up a zsh exit hook to SIGKILL the zpty + # process immediately, before it has a chance to kill any other + # zpty processes. + if ! is-at-least 5.4; then + zshexit() { + # The zsh builtin `kill` fails sometimes in older versions + # https://unix.stackexchange.com/a/477647/156673 + kill -KILL $$ 2>&- || command kill -KILL $$ + + # Block for long enough for the signal to come through + sleep 1 + } + fi + + # Try to avoid any suggestions that wouldn't match the prefix + zstyle ':completion:*' matcher-list '' + zstyle ':completion:*' path-completion false + zstyle ':completion:*' max-errors 0 not-numeric + + bindkey '^I' autosuggest-capture-completion +} + +_zsh_autosuggest_capture_completion_sync() { + _zsh_autosuggest_capture_setup + + zle autosuggest-capture-completion +} + +_zsh_autosuggest_capture_completion_async() { + _zsh_autosuggest_capture_setup + + zmodload zsh/parameter 2>/dev/null || return # For `$functions` + + # Make vared completion work as if for a normal command line + # https://stackoverflow.com/a/7057118/154703 + autoload +X _complete + functions[_original_complete]=$functions[_complete] + function _complete() { + unset 'compstate[vared]' + _original_complete "$@" + } + + # Open zle with buffer set so we can capture completions for it + vared 1 +} + +_zsh_autosuggest_strategy_completion() { + # Reset options to defaults and enable LOCAL_OPTIONS + emulate -L zsh + + # Enable extended glob for completion ignore pattern + setopt EXTENDED_GLOB + + typeset -g suggestion + local line REPLY + + # Exit if we don't have completions + whence compdef >/dev/null || return + + # Exit if we don't have zpty + zmodload zsh/zpty 2>/dev/null || return + + # Exit if our search string matches the ignore pattern + [[ -n "$ZSH_AUTOSUGGEST_COMPLETION_IGNORE" ]] && [[ "$1" == $~ZSH_AUTOSUGGEST_COMPLETION_IGNORE ]] && return + + # Zle will be inactive if we are in async mode + if zle; then + zpty $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME _zsh_autosuggest_capture_completion_sync + else + zpty $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME _zsh_autosuggest_capture_completion_async "\$1" + zpty -w $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME $'\t' + fi + + { + # The completion result is surrounded by null bytes, so read the + # content between the first two null bytes. + zpty -r $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME line '*'$'\0''*'$'\0' + + # Extract the suggestion from between the null bytes. On older + # versions of zsh (older than 5.3), we sometimes get extra bytes after + # the second null byte, so trim those off the end. + # See http://www.zsh.org/mla/workers/2015/msg03290.html + suggestion="${${(@0)line}[2]}" + } always { + # Destroy the pty + zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME + } +} diff --git a/home-config/zsh/zsh-autosuggestions/src/strategies/history.zsh b/home-config/zsh/zsh-autosuggestions/src/strategies/history.zsh new file mode 100644 index 0000000..0672a13 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/strategies/history.zsh @@ -0,0 +1,32 @@ + +#--------------------------------------------------------------------# +# History Suggestion Strategy # +#--------------------------------------------------------------------# +# Suggests the most recent history item that matches the given +# prefix. +# + +_zsh_autosuggest_strategy_history() { + # Reset options to defaults and enable LOCAL_OPTIONS + emulate -L zsh + + # Enable globbing flags so that we can use (#m) and (x~y) glob operator + setopt EXTENDED_GLOB + + # Escape backslashes and all of the glob operators so we can use + # this string as a pattern to search the $history associative array. + # - (#m) globbing flag enables setting references for match data + # TODO: Use (b) flag when we can drop support for zsh older than v5.0.8 + local prefix="${1//(#m)[\\*?[\]<>()|^~#]/\\$MATCH}" + + # Get the history items that match the prefix, excluding those that match + # the ignore pattern + local pattern="$prefix*" + if [[ -n $ZSH_AUTOSUGGEST_HISTORY_IGNORE ]]; then + pattern="($pattern)~($ZSH_AUTOSUGGEST_HISTORY_IGNORE)" + fi + + # Give the first history item matching the pattern as the suggestion + # - (r) subscript flag makes the pattern match on values + typeset -g suggestion="${history[(r)$pattern]}" +} diff --git a/home-config/zsh/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh b/home-config/zsh/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh new file mode 100644 index 0000000..b709783 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh @@ -0,0 +1,66 @@ + +#--------------------------------------------------------------------# +# Match Previous Command Suggestion Strategy # +#--------------------------------------------------------------------# +# Suggests the most recent history item that matches the given +# prefix and whose preceding history item also matches the most +# recently executed command. +# +# For example, suppose your history has the following entries: +# - pwd +# - ls foo +# - ls bar +# - pwd +# +# Given the history list above, when you type 'ls', the suggestion +# will be 'ls foo' rather than 'ls bar' because your most recently +# executed command (pwd) was previously followed by 'ls foo'. +# +# Note that this strategy won't work as expected with ZSH options that don't +# preserve the history order such as `HIST_IGNORE_ALL_DUPS` or +# `HIST_EXPIRE_DUPS_FIRST`. + +_zsh_autosuggest_strategy_match_prev_cmd() { + # Reset options to defaults and enable LOCAL_OPTIONS + emulate -L zsh + + # Enable globbing flags so that we can use (#m) and (x~y) glob operator + setopt EXTENDED_GLOB + + # TODO: Use (b) flag when we can drop support for zsh older than v5.0.8 + local prefix="${1//(#m)[\\*?[\]<>()|^~#]/\\$MATCH}" + + # Get the history items that match the prefix, excluding those that match + # the ignore pattern + local pattern="$prefix*" + if [[ -n $ZSH_AUTOSUGGEST_HISTORY_IGNORE ]]; then + pattern="($pattern)~($ZSH_AUTOSUGGEST_HISTORY_IGNORE)" + fi + + # Get all history event numbers that correspond to history + # entries that match the pattern + local history_match_keys + history_match_keys=(${(k)history[(R)$~pattern]}) + + # By default we use the first history number (most recent history entry) + local histkey="${history_match_keys[1]}" + + # Get the previously executed command + local prev_cmd="$(_zsh_autosuggest_escape_command "${history[$((HISTCMD-1))]}")" + + # Iterate up to the first 200 history event numbers that match $prefix + for key in "${(@)history_match_keys[1,200]}"; do + # Stop if we ran out of history + [[ $key -gt 1 ]] || break + + # See if the history entry preceding the suggestion matches the + # previous command, and use it if it does + if [[ "${history[$((key - 1))]}" == "$prev_cmd" ]]; then + histkey="$key" + break + fi + done + + # Give back the matched history entry + typeset -g suggestion="$history[$histkey]" +} diff --git a/home-config/zsh/zsh-autosuggestions/src/util.zsh b/home-config/zsh/zsh-autosuggestions/src/util.zsh new file mode 100644 index 0000000..1f55d36 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/util.zsh @@ -0,0 +1,11 @@ + +#--------------------------------------------------------------------# +# Utility Functions # +#--------------------------------------------------------------------# + +_zsh_autosuggest_escape_command() { + setopt localoptions EXTENDED_GLOB + + # Escape special chars in the string (requires EXTENDED_GLOB) + echo -E "${1//(#m)[\"\'\\()\[\]|*?~]/\\$MATCH}" +} diff --git a/home-config/zsh/zsh-autosuggestions/src/widgets.zsh b/home-config/zsh/zsh-autosuggestions/src/widgets.zsh new file mode 100644 index 0000000..bd61666 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/src/widgets.zsh @@ -0,0 +1,231 @@ + +#--------------------------------------------------------------------# +# Autosuggest Widget Implementations # +#--------------------------------------------------------------------# + +# Disable suggestions +_zsh_autosuggest_disable() { + typeset -g _ZSH_AUTOSUGGEST_DISABLED + _zsh_autosuggest_clear +} + +# Enable suggestions +_zsh_autosuggest_enable() { + unset _ZSH_AUTOSUGGEST_DISABLED + + if (( $#BUFFER )); then + _zsh_autosuggest_fetch + fi +} + +# Toggle suggestions (enable/disable) +_zsh_autosuggest_toggle() { + if (( ${+_ZSH_AUTOSUGGEST_DISABLED} )); then + _zsh_autosuggest_enable + else + _zsh_autosuggest_disable + fi +} + +# Clear the suggestion +_zsh_autosuggest_clear() { + # Remove the suggestion + unset POSTDISPLAY + + _zsh_autosuggest_invoke_original_widget $@ +} + +# Modify the buffer and get a new suggestion +_zsh_autosuggest_modify() { + local -i retval + + # Only available in zsh >= 5.4 + local -i KEYS_QUEUED_COUNT + + # Save the contents of the buffer/postdisplay + local orig_buffer="$BUFFER" + local orig_postdisplay="$POSTDISPLAY" + + # Clear suggestion while waiting for next one + unset POSTDISPLAY + + # Original widget may modify the buffer + _zsh_autosuggest_invoke_original_widget $@ + retval=$? + + emulate -L zsh + + # Don't fetch a new suggestion if there's more input to be read immediately + if (( $PENDING > 0 || $KEYS_QUEUED_COUNT > 0 )); then + POSTDISPLAY="$orig_postdisplay" + return $retval + fi + + # Optimize if manually typing in the suggestion or if buffer hasn't changed + if [[ "$BUFFER" = "$orig_buffer"* && "$orig_postdisplay" = "${BUFFER:$#orig_buffer}"* ]]; then + POSTDISPLAY="${orig_postdisplay:$(($#BUFFER - $#orig_buffer))}" + return $retval + fi + + # Bail out if suggestions are disabled + if (( ${+_ZSH_AUTOSUGGEST_DISABLED} )); then + return $? + fi + + # Get a new suggestion if the buffer is not empty after modification + if (( $#BUFFER > 0 )); then + if [[ -z "$ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE" ]] || (( $#BUFFER <= $ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE )); then + _zsh_autosuggest_fetch + fi + fi + + return $retval +} + +# Fetch a new suggestion based on what's currently in the buffer +_zsh_autosuggest_fetch() { + if (( ${+ZSH_AUTOSUGGEST_USE_ASYNC} )); then + _zsh_autosuggest_async_request "$BUFFER" + else + local suggestion + _zsh_autosuggest_fetch_suggestion "$BUFFER" + _zsh_autosuggest_suggest "$suggestion" + fi +} + +# Offer a suggestion +_zsh_autosuggest_suggest() { + emulate -L zsh + + local suggestion="$1" + + if [[ -n "$suggestion" ]] && (( $#BUFFER )); then + POSTDISPLAY="${suggestion#$BUFFER}" + else + unset POSTDISPLAY + fi +} + +# Accept the entire suggestion +_zsh_autosuggest_accept() { + local -i retval max_cursor_pos=$#BUFFER + + # When vicmd keymap is active, the cursor can't move all the way + # to the end of the buffer + if [[ "$KEYMAP" = "vicmd" ]]; then + max_cursor_pos=$((max_cursor_pos - 1)) + fi + + # If we're not in a valid state to accept a suggestion, just run the + # original widget and bail out + if (( $CURSOR != $max_cursor_pos || !$#POSTDISPLAY )); then + _zsh_autosuggest_invoke_original_widget $@ + return + fi + + # Only accept if the cursor is at the end of the buffer + # Add the suggestion to the buffer + BUFFER="$BUFFER$POSTDISPLAY" + + # Remove the suggestion + unset POSTDISPLAY + + # Run the original widget before manually moving the cursor so that the + # cursor movement doesn't make the widget do something unexpected + _zsh_autosuggest_invoke_original_widget $@ + retval=$? + + # Move the cursor to the end of the buffer + if [[ "$KEYMAP" = "vicmd" ]]; then + CURSOR=$(($#BUFFER - 1)) + else + CURSOR=$#BUFFER + fi + + return $retval +} + +# Accept the entire suggestion and execute it +_zsh_autosuggest_execute() { + # Add the suggestion to the buffer + BUFFER="$BUFFER$POSTDISPLAY" + + # Remove the suggestion + unset POSTDISPLAY + + # Call the original `accept-line` to handle syntax highlighting or + # other potential custom behavior + _zsh_autosuggest_invoke_original_widget "accept-line" +} + +# Partially accept the suggestion +_zsh_autosuggest_partial_accept() { + local -i retval cursor_loc + + # Save the contents of the buffer so we can restore later if needed + local original_buffer="$BUFFER" + + # Temporarily accept the suggestion. + BUFFER="$BUFFER$POSTDISPLAY" + + # Original widget moves the cursor + _zsh_autosuggest_invoke_original_widget $@ + retval=$? + + # Normalize cursor location across vi/emacs modes + cursor_loc=$CURSOR + if [[ "$KEYMAP" = "vicmd" ]]; then + cursor_loc=$((cursor_loc + 1)) + fi + + # If we've moved past the end of the original buffer + if (( $cursor_loc > $#original_buffer )); then + # Set POSTDISPLAY to text right of the cursor + POSTDISPLAY="${BUFFER[$(($cursor_loc + 1)),$#BUFFER]}" + + # Clip the buffer at the cursor + BUFFER="${BUFFER[1,$cursor_loc]}" + else + # Restore the original buffer + BUFFER="$original_buffer" + fi + + return $retval +} + +() { + typeset -ga _ZSH_AUTOSUGGEST_BUILTIN_ACTIONS + + _ZSH_AUTOSUGGEST_BUILTIN_ACTIONS=( + clear + fetch + suggest + accept + execute + enable + disable + toggle + ) + + local action + for action in $_ZSH_AUTOSUGGEST_BUILTIN_ACTIONS modify partial_accept; do + eval "_zsh_autosuggest_widget_$action() { + local -i retval + + _zsh_autosuggest_highlight_reset + + _zsh_autosuggest_$action \$@ + retval=\$? + + _zsh_autosuggest_highlight_apply + + zle -R + + return \$retval + }" + done + + for action in $_ZSH_AUTOSUGGEST_BUILTIN_ACTIONS; do + zle -N autosuggest-$action _zsh_autosuggest_widget_$action + done +} diff --git a/home-config/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh b/home-config/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh new file mode 100644 index 0000000..16c2256 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh @@ -0,0 +1 @@ +source ${0:A:h}/zsh-autosuggestions.zsh diff --git a/home-config/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh b/home-config/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh new file mode 100644 index 0000000..b19cac7 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh @@ -0,0 +1,864 @@ +# Fish-like fast/unobtrusive autosuggestions for zsh. +# https://github.com/zsh-users/zsh-autosuggestions +# v0.7.0 +# Copyright (c) 2013 Thiago de Arruda +# Copyright (c) 2016-2021 Eric Freese +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +#--------------------------------------------------------------------# +# Global Configuration Variables # +#--------------------------------------------------------------------# + +# Color to use when highlighting suggestion +# Uses format of `region_highlight` +# More info: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets +(( ! ${+ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE} )) && +typeset -g ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=8' + +# Prefix to use when saving original versions of bound widgets +(( ! ${+ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX} )) && +typeset -g ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig- + +# Strategies to use to fetch a suggestion +# Will try each strategy in order until a suggestion is returned +(( ! ${+ZSH_AUTOSUGGEST_STRATEGY} )) && { + typeset -ga ZSH_AUTOSUGGEST_STRATEGY + ZSH_AUTOSUGGEST_STRATEGY=(history) +} + +# Widgets that clear the suggestion +(( ! ${+ZSH_AUTOSUGGEST_CLEAR_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_CLEAR_WIDGETS + ZSH_AUTOSUGGEST_CLEAR_WIDGETS=( + history-search-forward + history-search-backward + history-beginning-search-forward + history-beginning-search-backward + history-substring-search-up + history-substring-search-down + up-line-or-beginning-search + down-line-or-beginning-search + up-line-or-history + down-line-or-history + accept-line + copy-earlier-word + ) +} + +# Widgets that accept the entire suggestion +(( ! ${+ZSH_AUTOSUGGEST_ACCEPT_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_ACCEPT_WIDGETS + ZSH_AUTOSUGGEST_ACCEPT_WIDGETS=( + forward-char + end-of-line + vi-forward-char + vi-end-of-line + vi-add-eol + ) +} + +# Widgets that accept the entire suggestion and execute it +(( ! ${+ZSH_AUTOSUGGEST_EXECUTE_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_EXECUTE_WIDGETS + ZSH_AUTOSUGGEST_EXECUTE_WIDGETS=( + ) +} + +# Widgets that accept the suggestion as far as the cursor moves +(( ! ${+ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS + ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS=( + forward-word + emacs-forward-word + vi-forward-word + vi-forward-word-end + vi-forward-blank-word + vi-forward-blank-word-end + vi-find-next-char + vi-find-next-char-skip + ) +} + +# Widgets that should be ignored (globbing supported but must be escaped) +(( ! ${+ZSH_AUTOSUGGEST_IGNORE_WIDGETS} )) && { + typeset -ga ZSH_AUTOSUGGEST_IGNORE_WIDGETS + ZSH_AUTOSUGGEST_IGNORE_WIDGETS=( + orig-\* + beep + run-help + set-local-history + which-command + yank + yank-pop + zle-\* + ) +} + +# Pty name for capturing completions for completion suggestion strategy +(( ! ${+ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME} )) && +typeset -g ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME=zsh_autosuggest_completion_pty + +#--------------------------------------------------------------------# +# Utility Functions # +#--------------------------------------------------------------------# + +_zsh_autosuggest_escape_command() { + setopt localoptions EXTENDED_GLOB + + # Escape special chars in the string (requires EXTENDED_GLOB) + echo -E "${1//(#m)[\"\'\\()\[\]|*?~]/\\$MATCH}" +} + +#--------------------------------------------------------------------# +# Widget Helpers # +#--------------------------------------------------------------------# + +_zsh_autosuggest_incr_bind_count() { + typeset -gi bind_count=$((_ZSH_AUTOSUGGEST_BIND_COUNTS[$1]+1)) + _ZSH_AUTOSUGGEST_BIND_COUNTS[$1]=$bind_count +} + +# Bind a single widget to an autosuggest widget, saving a reference to the original widget +_zsh_autosuggest_bind_widget() { + typeset -gA _ZSH_AUTOSUGGEST_BIND_COUNTS + + local widget=$1 + local autosuggest_action=$2 + local prefix=$ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX + + local -i bind_count + + # Save a reference to the original widget + case $widgets[$widget] in + # Already bound + user:_zsh_autosuggest_(bound|orig)_*) + bind_count=$((_ZSH_AUTOSUGGEST_BIND_COUNTS[$widget])) + ;; + + # User-defined widget + user:*) + _zsh_autosuggest_incr_bind_count $widget + zle -N $prefix$bind_count-$widget ${widgets[$widget]#*:} + ;; + + # Built-in widget + builtin) + _zsh_autosuggest_incr_bind_count $widget + eval "_zsh_autosuggest_orig_${(q)widget}() { zle .${(q)widget} }" + zle -N $prefix$bind_count-$widget _zsh_autosuggest_orig_$widget + ;; + + # Completion widget + completion:*) + _zsh_autosuggest_incr_bind_count $widget + eval "zle -C $prefix$bind_count-${(q)widget} ${${(s.:.)widgets[$widget]}[2,3]}" + ;; + esac + + # Pass the original widget's name explicitly into the autosuggest + # function. Use this passed in widget name to call the original + # widget instead of relying on the $WIDGET variable being set + # correctly. $WIDGET cannot be trusted because other plugins call + # zle without the `-w` flag (e.g. `zle self-insert` instead of + # `zle self-insert -w`). + eval "_zsh_autosuggest_bound_${bind_count}_${(q)widget}() { + _zsh_autosuggest_widget_$autosuggest_action $prefix$bind_count-${(q)widget} \$@ + }" + + # Create the bound widget + zle -N -- $widget _zsh_autosuggest_bound_${bind_count}_$widget +} + +# Map all configured widgets to the right autosuggest widgets +_zsh_autosuggest_bind_widgets() { + emulate -L zsh + + local widget + local ignore_widgets + + ignore_widgets=( + .\* + _\* + ${_ZSH_AUTOSUGGEST_BUILTIN_ACTIONS/#/autosuggest-} + $ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX\* + $ZSH_AUTOSUGGEST_IGNORE_WIDGETS + ) + + # Find every widget we might want to bind and bind it appropriately + for widget in ${${(f)"$(builtin zle -la)"}:#${(j:|:)~ignore_widgets}}; do + if [[ -n ${ZSH_AUTOSUGGEST_CLEAR_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget clear + elif [[ -n ${ZSH_AUTOSUGGEST_ACCEPT_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget accept + elif [[ -n ${ZSH_AUTOSUGGEST_EXECUTE_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget execute + elif [[ -n ${ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS[(r)$widget]} ]]; then + _zsh_autosuggest_bind_widget $widget partial_accept + else + # Assume any unspecified widget might modify the buffer + _zsh_autosuggest_bind_widget $widget modify + fi + done +} + +# Given the name of an original widget and args, invoke it, if it exists +_zsh_autosuggest_invoke_original_widget() { + # Do nothing unless called with at least one arg + (( $# )) || return 0 + + local original_widget_name="$1" + + shift + + if (( ${+widgets[$original_widget_name]} )); then + zle $original_widget_name -- $@ + fi +} + +#--------------------------------------------------------------------# +# Highlighting # +#--------------------------------------------------------------------# + +# If there was a highlight, remove it +_zsh_autosuggest_highlight_reset() { + typeset -g _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + + if [[ -n "$_ZSH_AUTOSUGGEST_LAST_HIGHLIGHT" ]]; then + region_highlight=("${(@)region_highlight:#$_ZSH_AUTOSUGGEST_LAST_HIGHLIGHT}") + unset _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + fi +} + +# If there's a suggestion, highlight it +_zsh_autosuggest_highlight_apply() { + typeset -g _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + + if (( $#POSTDISPLAY )); then + typeset -g _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT="$#BUFFER $(($#BUFFER + $#POSTDISPLAY)) $ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE" + region_highlight+=("$_ZSH_AUTOSUGGEST_LAST_HIGHLIGHT") + else + unset _ZSH_AUTOSUGGEST_LAST_HIGHLIGHT + fi +} + +#--------------------------------------------------------------------# +# Autosuggest Widget Implementations # +#--------------------------------------------------------------------# + +# Disable suggestions +_zsh_autosuggest_disable() { + typeset -g _ZSH_AUTOSUGGEST_DISABLED + _zsh_autosuggest_clear +} + +# Enable suggestions +_zsh_autosuggest_enable() { + unset _ZSH_AUTOSUGGEST_DISABLED + + if (( $#BUFFER )); then + _zsh_autosuggest_fetch + fi +} + +# Toggle suggestions (enable/disable) +_zsh_autosuggest_toggle() { + if (( ${+_ZSH_AUTOSUGGEST_DISABLED} )); then + _zsh_autosuggest_enable + else + _zsh_autosuggest_disable + fi +} + +# Clear the suggestion +_zsh_autosuggest_clear() { + # Remove the suggestion + unset POSTDISPLAY + + _zsh_autosuggest_invoke_original_widget $@ +} + +# Modify the buffer and get a new suggestion +_zsh_autosuggest_modify() { + local -i retval + + # Only available in zsh >= 5.4 + local -i KEYS_QUEUED_COUNT + + # Save the contents of the buffer/postdisplay + local orig_buffer="$BUFFER" + local orig_postdisplay="$POSTDISPLAY" + + # Clear suggestion while waiting for next one + unset POSTDISPLAY + + # Original widget may modify the buffer + _zsh_autosuggest_invoke_original_widget $@ + retval=$? + + emulate -L zsh + + # Don't fetch a new suggestion if there's more input to be read immediately + if (( $PENDING > 0 || $KEYS_QUEUED_COUNT > 0 )); then + POSTDISPLAY="$orig_postdisplay" + return $retval + fi + + # Optimize if manually typing in the suggestion or if buffer hasn't changed + if [[ "$BUFFER" = "$orig_buffer"* && "$orig_postdisplay" = "${BUFFER:$#orig_buffer}"* ]]; then + POSTDISPLAY="${orig_postdisplay:$(($#BUFFER - $#orig_buffer))}" + return $retval + fi + + # Bail out if suggestions are disabled + if (( ${+_ZSH_AUTOSUGGEST_DISABLED} )); then + return $? + fi + + # Get a new suggestion if the buffer is not empty after modification + if (( $#BUFFER > 0 )); then + if [[ -z "$ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE" ]] || (( $#BUFFER <= $ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE )); then + _zsh_autosuggest_fetch + fi + fi + + return $retval +} + +# Fetch a new suggestion based on what's currently in the buffer +_zsh_autosuggest_fetch() { + if (( ${+ZSH_AUTOSUGGEST_USE_ASYNC} )); then + _zsh_autosuggest_async_request "$BUFFER" + else + local suggestion + _zsh_autosuggest_fetch_suggestion "$BUFFER" + _zsh_autosuggest_suggest "$suggestion" + fi +} + +# Offer a suggestion +_zsh_autosuggest_suggest() { + emulate -L zsh + + local suggestion="$1" + + if [[ -n "$suggestion" ]] && (( $#BUFFER )); then + POSTDISPLAY="${suggestion#$BUFFER}" + else + unset POSTDISPLAY + fi +} + +# Accept the entire suggestion +_zsh_autosuggest_accept() { + local -i retval max_cursor_pos=$#BUFFER + + # When vicmd keymap is active, the cursor can't move all the way + # to the end of the buffer + if [[ "$KEYMAP" = "vicmd" ]]; then + max_cursor_pos=$((max_cursor_pos - 1)) + fi + + # If we're not in a valid state to accept a suggestion, just run the + # original widget and bail out + if (( $CURSOR != $max_cursor_pos || !$#POSTDISPLAY )); then + _zsh_autosuggest_invoke_original_widget $@ + return + fi + + # Only accept if the cursor is at the end of the buffer + # Add the suggestion to the buffer + BUFFER="$BUFFER$POSTDISPLAY" + + # Remove the suggestion + unset POSTDISPLAY + + # Run the original widget before manually moving the cursor so that the + # cursor movement doesn't make the widget do something unexpected + _zsh_autosuggest_invoke_original_widget $@ + retval=$? + + # Move the cursor to the end of the buffer + if [[ "$KEYMAP" = "vicmd" ]]; then + CURSOR=$(($#BUFFER - 1)) + else + CURSOR=$#BUFFER + fi + + return $retval +} + +# Accept the entire suggestion and execute it +_zsh_autosuggest_execute() { + # Add the suggestion to the buffer + BUFFER="$BUFFER$POSTDISPLAY" + + # Remove the suggestion + unset POSTDISPLAY + + # Call the original `accept-line` to handle syntax highlighting or + # other potential custom behavior + _zsh_autosuggest_invoke_original_widget "accept-line" +} + +# Partially accept the suggestion +_zsh_autosuggest_partial_accept() { + local -i retval cursor_loc + + # Save the contents of the buffer so we can restore later if needed + local original_buffer="$BUFFER" + + # Temporarily accept the suggestion. + BUFFER="$BUFFER$POSTDISPLAY" + + # Original widget moves the cursor + _zsh_autosuggest_invoke_original_widget $@ + retval=$? + + # Normalize cursor location across vi/emacs modes + cursor_loc=$CURSOR + if [[ "$KEYMAP" = "vicmd" ]]; then + cursor_loc=$((cursor_loc + 1)) + fi + + # If we've moved past the end of the original buffer + if (( $cursor_loc > $#original_buffer )); then + # Set POSTDISPLAY to text right of the cursor + POSTDISPLAY="${BUFFER[$(($cursor_loc + 1)),$#BUFFER]}" + + # Clip the buffer at the cursor + BUFFER="${BUFFER[1,$cursor_loc]}" + else + # Restore the original buffer + BUFFER="$original_buffer" + fi + + return $retval +} + +() { + typeset -ga _ZSH_AUTOSUGGEST_BUILTIN_ACTIONS + + _ZSH_AUTOSUGGEST_BUILTIN_ACTIONS=( + clear + fetch + suggest + accept + execute + enable + disable + toggle + ) + + local action + for action in $_ZSH_AUTOSUGGEST_BUILTIN_ACTIONS modify partial_accept; do + eval "_zsh_autosuggest_widget_$action() { + local -i retval + + _zsh_autosuggest_highlight_reset + + _zsh_autosuggest_$action \$@ + retval=\$? + + _zsh_autosuggest_highlight_apply + + zle -R + + return \$retval + }" + done + + for action in $_ZSH_AUTOSUGGEST_BUILTIN_ACTIONS; do + zle -N autosuggest-$action _zsh_autosuggest_widget_$action + done +} + +#--------------------------------------------------------------------# +# Completion Suggestion Strategy # +#--------------------------------------------------------------------# +# Fetches a suggestion from the completion engine +# + +_zsh_autosuggest_capture_postcompletion() { + # Always insert the first completion into the buffer + compstate[insert]=1 + + # Don't list completions + unset 'compstate[list]' +} + +_zsh_autosuggest_capture_completion_widget() { + # Add a post-completion hook to be called after all completions have been + # gathered. The hook can modify compstate to affect what is done with the + # gathered completions. + local -a +h comppostfuncs + comppostfuncs=(_zsh_autosuggest_capture_postcompletion) + + # Only capture completions at the end of the buffer + CURSOR=$#BUFFER + + # Run the original widget wrapping `.complete-word` so we don't + # recursively try to fetch suggestions, since our pty is forked + # after autosuggestions is initialized. + zle -- ${(k)widgets[(r)completion:.complete-word:_main_complete]} + + if is-at-least 5.0.3; then + # Don't do any cr/lf transformations. We need to do this immediately before + # output because if we do it in setup, onlcr will be re-enabled when we enter + # vared in the async code path. There is a bug in zpty module in older versions + # where the tty is not properly attached to the pty slave, resulting in stty + # getting stopped with a SIGTTOU. See zsh-workers thread 31660 and upstream + # commit f75904a38 + stty -onlcr -ocrnl -F /dev/tty + fi + + # The completion has been added, print the buffer as the suggestion + echo -nE - $'\0'$BUFFER$'\0' +} + +zle -N autosuggest-capture-completion _zsh_autosuggest_capture_completion_widget + +_zsh_autosuggest_capture_setup() { + # There is a bug in zpty module in older zsh versions by which a + # zpty that exits will kill all zpty processes that were forked + # before it. Here we set up a zsh exit hook to SIGKILL the zpty + # process immediately, before it has a chance to kill any other + # zpty processes. + if ! is-at-least 5.4; then + zshexit() { + # The zsh builtin `kill` fails sometimes in older versions + # https://unix.stackexchange.com/a/477647/156673 + kill -KILL $$ 2>&- || command kill -KILL $$ + + # Block for long enough for the signal to come through + sleep 1 + } + fi + + # Try to avoid any suggestions that wouldn't match the prefix + zstyle ':completion:*' matcher-list '' + zstyle ':completion:*' path-completion false + zstyle ':completion:*' max-errors 0 not-numeric + + bindkey '^I' autosuggest-capture-completion +} + +_zsh_autosuggest_capture_completion_sync() { + _zsh_autosuggest_capture_setup + + zle autosuggest-capture-completion +} + +_zsh_autosuggest_capture_completion_async() { + _zsh_autosuggest_capture_setup + + zmodload zsh/parameter 2>/dev/null || return # For `$functions` + + # Make vared completion work as if for a normal command line + # https://stackoverflow.com/a/7057118/154703 + autoload +X _complete + functions[_original_complete]=$functions[_complete] + function _complete() { + unset 'compstate[vared]' + _original_complete "$@" + } + + # Open zle with buffer set so we can capture completions for it + vared 1 +} + +_zsh_autosuggest_strategy_completion() { + # Reset options to defaults and enable LOCAL_OPTIONS + emulate -L zsh + + # Enable extended glob for completion ignore pattern + setopt EXTENDED_GLOB + + typeset -g suggestion + local line REPLY + + # Exit if we don't have completions + whence compdef >/dev/null || return + + # Exit if we don't have zpty + zmodload zsh/zpty 2>/dev/null || return + + # Exit if our search string matches the ignore pattern + [[ -n "$ZSH_AUTOSUGGEST_COMPLETION_IGNORE" ]] && [[ "$1" == $~ZSH_AUTOSUGGEST_COMPLETION_IGNORE ]] && return + + # Zle will be inactive if we are in async mode + if zle; then + zpty $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME _zsh_autosuggest_capture_completion_sync + else + zpty $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME _zsh_autosuggest_capture_completion_async "\$1" + zpty -w $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME $'\t' + fi + + { + # The completion result is surrounded by null bytes, so read the + # content between the first two null bytes. + zpty -r $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME line '*'$'\0''*'$'\0' + + # Extract the suggestion from between the null bytes. On older + # versions of zsh (older than 5.3), we sometimes get extra bytes after + # the second null byte, so trim those off the end. + # See http://www.zsh.org/mla/workers/2015/msg03290.html + suggestion="${${(@0)line}[2]}" + } always { + # Destroy the pty + zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME + } +} + +#--------------------------------------------------------------------# +# History Suggestion Strategy # +#--------------------------------------------------------------------# +# Suggests the most recent history item that matches the given +# prefix. +# + +_zsh_autosuggest_strategy_history() { + # Reset options to defaults and enable LOCAL_OPTIONS + emulate -L zsh + + # Enable globbing flags so that we can use (#m) and (x~y) glob operator + setopt EXTENDED_GLOB + + # Escape backslashes and all of the glob operators so we can use + # this string as a pattern to search the $history associative array. + # - (#m) globbing flag enables setting references for match data + # TODO: Use (b) flag when we can drop support for zsh older than v5.0.8 + local prefix="${1//(#m)[\\*?[\]<>()|^~#]/\\$MATCH}" + + # Get the history items that match the prefix, excluding those that match + # the ignore pattern + local pattern="$prefix*" + if [[ -n $ZSH_AUTOSUGGEST_HISTORY_IGNORE ]]; then + pattern="($pattern)~($ZSH_AUTOSUGGEST_HISTORY_IGNORE)" + fi + + # Give the first history item matching the pattern as the suggestion + # - (r) subscript flag makes the pattern match on values + typeset -g suggestion="${history[(r)$pattern]}" +} + +#--------------------------------------------------------------------# +# Match Previous Command Suggestion Strategy # +#--------------------------------------------------------------------# +# Suggests the most recent history item that matches the given +# prefix and whose preceding history item also matches the most +# recently executed command. +# +# For example, suppose your history has the following entries: +# - pwd +# - ls foo +# - ls bar +# - pwd +# +# Given the history list above, when you type 'ls', the suggestion +# will be 'ls foo' rather than 'ls bar' because your most recently +# executed command (pwd) was previously followed by 'ls foo'. +# +# Note that this strategy won't work as expected with ZSH options that don't +# preserve the history order such as `HIST_IGNORE_ALL_DUPS` or +# `HIST_EXPIRE_DUPS_FIRST`. + +_zsh_autosuggest_strategy_match_prev_cmd() { + # Reset options to defaults and enable LOCAL_OPTIONS + emulate -L zsh + + # Enable globbing flags so that we can use (#m) and (x~y) glob operator + setopt EXTENDED_GLOB + + # TODO: Use (b) flag when we can drop support for zsh older than v5.0.8 + local prefix="${1//(#m)[\\*?[\]<>()|^~#]/\\$MATCH}" + + # Get the history items that match the prefix, excluding those that match + # the ignore pattern + local pattern="$prefix*" + if [[ -n $ZSH_AUTOSUGGEST_HISTORY_IGNORE ]]; then + pattern="($pattern)~($ZSH_AUTOSUGGEST_HISTORY_IGNORE)" + fi + + # Get all history event numbers that correspond to history + # entries that match the pattern + local history_match_keys + history_match_keys=(${(k)history[(R)$~pattern]}) + + # By default we use the first history number (most recent history entry) + local histkey="${history_match_keys[1]}" + + # Get the previously executed command + local prev_cmd="$(_zsh_autosuggest_escape_command "${history[$((HISTCMD-1))]}")" + + # Iterate up to the first 200 history event numbers that match $prefix + for key in "${(@)history_match_keys[1,200]}"; do + # Stop if we ran out of history + [[ $key -gt 1 ]] || break + + # See if the history entry preceding the suggestion matches the + # previous command, and use it if it does + if [[ "${history[$((key - 1))]}" == "$prev_cmd" ]]; then + histkey="$key" + break + fi + done + + # Give back the matched history entry + typeset -g suggestion="$history[$histkey]" +} + +#--------------------------------------------------------------------# +# Fetch Suggestion # +#--------------------------------------------------------------------# +# Loops through all specified strategies and returns a suggestion +# from the first strategy to provide one. +# + +_zsh_autosuggest_fetch_suggestion() { + typeset -g suggestion + local -a strategies + local strategy + + # Ensure we are working with an array + strategies=(${=ZSH_AUTOSUGGEST_STRATEGY}) + + for strategy in $strategies; do + # Try to get a suggestion from this strategy + _zsh_autosuggest_strategy_$strategy "$1" + + # Ensure the suggestion matches the prefix + [[ "$suggestion" != "$1"* ]] && unset suggestion + + # Break once we've found a valid suggestion + [[ -n "$suggestion" ]] && break + done +} + +#--------------------------------------------------------------------# +# Async # +#--------------------------------------------------------------------# + +_zsh_autosuggest_async_request() { + zmodload zsh/system 2>/dev/null # For `$sysparams` + + typeset -g _ZSH_AUTOSUGGEST_ASYNC_FD _ZSH_AUTOSUGGEST_CHILD_PID + + # If we've got a pending request, cancel it + if [[ -n "$_ZSH_AUTOSUGGEST_ASYNC_FD" ]] && { true <&$_ZSH_AUTOSUGGEST_ASYNC_FD } 2>/dev/null; then + # Close the file descriptor and remove the handler + exec {_ZSH_AUTOSUGGEST_ASYNC_FD}<&- + zle -F $_ZSH_AUTOSUGGEST_ASYNC_FD + + # We won't know the pid unless the user has zsh/system module installed + if [[ -n "$_ZSH_AUTOSUGGEST_CHILD_PID" ]]; then + # Zsh will make a new process group for the child process only if job + # control is enabled (MONITOR option) + if [[ -o MONITOR ]]; then + # Send the signal to the process group to kill any processes that may + # have been forked by the suggestion strategy + kill -TERM -$_ZSH_AUTOSUGGEST_CHILD_PID 2>/dev/null + else + # Kill just the child process since it wasn't placed in a new process + # group. If the suggestion strategy forked any child processes they may + # be orphaned and left behind. + kill -TERM $_ZSH_AUTOSUGGEST_CHILD_PID 2>/dev/null + fi + fi + fi + + # Fork a process to fetch a suggestion and open a pipe to read from it + exec {_ZSH_AUTOSUGGEST_ASYNC_FD}< <( + # Tell parent process our pid + echo $sysparams[pid] + + # Fetch and print the suggestion + local suggestion + _zsh_autosuggest_fetch_suggestion "$1" + echo -nE "$suggestion" + ) + + # There's a weird bug here where ^C stops working unless we force a fork + # See https://github.com/zsh-users/zsh-autosuggestions/issues/364 + autoload -Uz is-at-least + is-at-least 5.8 || command true + + # Read the pid from the child process + read _ZSH_AUTOSUGGEST_CHILD_PID <&$_ZSH_AUTOSUGGEST_ASYNC_FD + + # When the fd is readable, call the response handler + zle -F "$_ZSH_AUTOSUGGEST_ASYNC_FD" _zsh_autosuggest_async_response +} + +# Called when new data is ready to be read from the pipe +# First arg will be fd ready for reading +# Second arg will be passed in case of error +_zsh_autosuggest_async_response() { + emulate -L zsh + + local suggestion + + if [[ -z "$2" || "$2" == "hup" ]]; then + # Read everything from the fd and give it as a suggestion + IFS='' read -rd '' -u $1 suggestion + zle autosuggest-suggest -- "$suggestion" + + # Close the fd + exec {1}<&- + fi + + # Always remove the handler + zle -F "$1" +} + +#--------------------------------------------------------------------# +# Start # +#--------------------------------------------------------------------# + +# Start the autosuggestion widgets +_zsh_autosuggest_start() { + # By default we re-bind widgets on every precmd to ensure we wrap other + # wrappers. Specifically, highlighting breaks if our widgets are wrapped by + # zsh-syntax-highlighting widgets. This also allows modifications to the + # widget list variables to take effect on the next precmd. However this has + # a decent performance hit, so users can set ZSH_AUTOSUGGEST_MANUAL_REBIND + # to disable the automatic re-binding. + if (( ${+ZSH_AUTOSUGGEST_MANUAL_REBIND} )); then + add-zsh-hook -d precmd _zsh_autosuggest_start + fi + + _zsh_autosuggest_bind_widgets +} + +# Mark for auto-loading the functions that we use +autoload -Uz add-zsh-hook is-at-least + +# Automatically enable asynchronous mode in newer versions of zsh. Disable for +# older versions because there is a bug when using async mode where ^C does not +# work immediately after fetching a suggestion. +# See https://github.com/zsh-users/zsh-autosuggestions/issues/364 +if is-at-least 5.0.8; then + typeset -g ZSH_AUTOSUGGEST_USE_ASYNC= +fi + +# Start the autosuggestion widgets on the next precmd +add-zsh-hook precmd _zsh_autosuggest_start diff --git a/home-config/zsh/zshrc b/home-config/zsh/zshrc new file mode 100644 index 0000000..1428182 --- /dev/null +++ b/home-config/zsh/zshrc @@ -0,0 +1,71 @@ +# Zsh shell initalization file + +# Export 'SHELL' to child processes +export SHELL + +if [[ $- != *i* ]] +then + # We are being invoked from a non-interactive shell. If this + # is an SSH session (as in "ssh host command"), source + # /etc/profile so we get PATH and other essential variables. + [[ -n "$SSH_CLIENT" ]] && source /etc/profile + + # Don't do anything else. + return +fi + +# vim mode >:) +# no ryan i am not copying you +set -o vi +set show-mode-in-prompt on + +# Set shell prompt using starship +eval "$(starship init zsh)" + +# Set guix reconfigure aliases +alias reconfigure-system="sudo -E guix system -L $HOME/.config/guix/modules reconfigure $HOME/.config/guix/$(hostname).scm" +alias reconfigure-user="guix home -L $HOME/.config/guix/modules reconfigure $HOME/.config/guix/home-config/home-configuration.scm && home-manager switch" + +# Set other usefull aliases +alias neo="pfetch" +alias rf="rm -fr" # remove le french hon hon hon +alias config="/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME" +alias ls="ls --color=auto" +alias su="doas -s" + +# Make sure cargo is working with nix packages +alias cargo="CC=$NIX_PROFILE/bin/gcc $NIX_PROFILE/bin/cargo" + +# Have manpages use colors +man() { + env \ + LESS_TERMCAP_md=$'\e[1;36m' \ + LESS_TERMCAP_me=$'\e[0m' \ + LESS_TERMCAP_se=$'\e[0m' \ + LESS_TERMCAP_so=$'\e[1;92m' \ + LESS_TERMCAP_ue=$'\e[0m' \ + LESS_TERMCAP_us=$'\e[1;35m' \ + man "$@" +} + +# Enable zsh auto suggestions +autoload compinit && compinit +source $HOME/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#696e8a" +ZSH_AUTOSUGGEST_STRATEGY=(completion history) + +# Enable zsh keybinds for home, end, and other movement keybinds +bindkey "\e[1;5D" backward-word +bindkey "\e[1;5C" forward-word +bindkey "\e[3;5~" kill-word +bindkey "\C-_" backward-kill-word +bindkey "\e[3~" delete-char +bindkey "\e[H" beginning-of-line +bindkey "\e[F" end-of-line +bindkey "\e\d" undo + +# GPG SETUP FOR SSH +export GPG_TTY=$(tty) + +# ricing +pfetch diff --git a/modules/home-config/base-system.scm b/modules/home-config/base-system.scm new file mode 100644 index 0000000..0276bfd --- /dev/null +++ b/modules/home-config/base-system.scm @@ -0,0 +1,182 @@ +(define-module (home-config base-system) + #:use-module (gnu) + #:use-module (nongnu packages linux) + #:use-module (gnu system setuid) + #:use-module (gnu packages admin) + #:use-module (gnu packages avahi) + #:use-module (gnu packages) + #:use-module (guix packages) + #:use-module (gnu packages shells) + #:use-module (guix build-system trivial) + #:use-module (guix licenses) + #:use-module (gnu packages tls) + #:use-module (srfi srfi-1) + #:use-module (home-packages wm) + #:use-module (gnu packages security-token) + #:use-module (gnu services security-token) + #:use-module (gnu services cups) + #:use-module (gnu services desktop) + #:use-module (gnu services networking) + #:use-module (gnu services xorg) + #:use-module (gnu services ssh) + #:use-module (gnu services nix) + #:use-module (gnu services sound) + #:use-module (gnu services docker) + #:use-module (gnu services avahi) + #:use-module (gnu services authentication) + #:use-module (gnu services virtualization)) + +(define %my-base-packages + (remove (lambda (package) + (member (package-name package) + (list "sudo" "nano"))) + %base-packages)) + +(define %backlight-udev-rule + (udev-rule + "90-backlight.rules" + (string-append "ACTION==\"add\", SUBSYSTEM==\"backlight\", " + "RUN+=\"/run/current-system/profile/bin/chgrp video /sys/class/backlight/%k/brightness\"" + "\n" + "ACTION==\"add\", SUBSYSTEM==\"backlight\", " + "RUN+=\"/run/current-system/profile/bin/chmod g+w /sys/class/backlight/%k/brightness\""))) + +(define-public base-operating-system + (operating-system + (kernel linux) + (firmware (list linux-firmware intel-microcode sof-firmware)) + (locale "en_US.utf8") + (timezone "America/New_York") + (keyboard-layout (keyboard-layout "us")) + (host-name "ThisWillChange") + + ;; The list of user accounts ('root' is implicit). + (users (cons* (user-account + (name "tylerm") + (comment "Tyler") + (group "users") + (home-directory "/home/tylerm") + (shell (file-append zsh "/bin/zsh")) + (supplementary-groups '("wheel" "audio" "lp" "docker" "plugdev" "libvirt" "kvm" "netdev" "video" "tty"))) + %base-user-accounts)) + + (packages (append (map specification->package (list "swayfx" + "swaybg" + "wlogout" + "sof-firmware" + "intel-microcode" + "alsa-utils" + "swayidle" + ;"swaylock" + "alacritty" + "gnome-themes-extra" + "adwaita-icon-theme" + "hicolor-icon-theme" + "git" + "nss-certs" + "gnupg" + "light" + "waybar" + "avahi" + "mako" + "grim" + "slurp" + "wl-clipboard" + "bluez" + "blueman" + "opendoas" + "xdg-desktop-portal" + "xdg-desktop-portal-wlr" + "v4l2loopback-linux-module" + "docker" + "linux-pam" + "pulseaudio" + ;;"pipewire" + "fprintd" + "wireplumber" + "virt-manager" + "wireshark" + "zsh" + "neovim")) + (list swaylock-effects-new) + %my-base-packages)) + + ;; Below is the list of system services. TO search for available + ;; services. run 'guix system search KEYWORD' in a terminal. + (services + (append (list + + ;; To configure OpenSSH, pass an 'openssh-configuration' + ;; record as a second argument to 'service' below. + (service openssh-service-type) + (service pcscd-service-type) + (service cups-service-type + (cups-configuration + (web-interface? #t))) + ;; Avahi is only present for CUPS to support "automagic" printing + (service avahi-service-type + (avahi-configuration + (publish? #f) ;; do not advertise this machiene + (publish-workstation? #f))) ; do not advertise, I want this to be as silent as possible + (service docker-service-type) + (service nix-service-type) + (service libvirt-service-type + (libvirt-configuration + (unix-sock-group "libvirt"))) + (service virtlog-service-type) + (service bluetooth-service-type) + (service pam-limits-service-type) + (service fprintd-service-type) + (udev-rules-service 'fido2 libfido2 #:groups '("plugdev"))) + + ;; This is the default list of services we + ;; are appending to. + (modify-services %desktop-services + (guix-service-type config => + (guix-configuration + (inherit config) + (substitute-urls + (append (list "https://substitutes.nonguix.org") + %default-substitute-urls)) + (authorized-keys + (cons* (plain-file "non-guix.pub" + "(public-key + (ecc + (curve Ed25519) + (q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#) + ) + )" ) %default-authorized-guix-keys)))) + (udev-service-type config => + (udev-configuration + (inherit config))) + (delete pulseaudio-service-type) + (delete gdm-service-type) + (delete avahi-service-type) + (delete alsa-service-type)))) + + (name-service-switch %mdns-host-lookup-nss) + + (setuid-programs + (append (list (file-like->setuid-program + (file-append + ;;(specification->package "swaylock") + swaylock-effects-new + "/bin/swaylock")) + (file-like->setuid-program + (file-append + (specification->package "opendoas") + "/bin/doas"))) + (delete sudo %setuid-programs))) + + (file-systems (cons* + (file-system + (mount-point "/tmp") + (device "none") + (type "tmpfs") + (check? #f)) + %base-file-systems)) + + (bootloader (bootloader-configuration + (bootloader grub-efi-bootloader) + (targets (list "/boot/efi")) + (keyboard-layout keyboard-layout))))) diff --git a/modules/home-packages/easyeffects.scm b/modules/home-packages/easyeffects.scm new file mode 100644 index 0000000..a675168 --- /dev/null +++ b/modules/home-packages/easyeffects.scm @@ -0,0 +1,56 @@ +(define-module (home-packages easyeffects) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (guix gexp) + #:use-module (gnu packages) + #:use-module (gnu packages gettext) + #:use-module (gnu packages glib) + #:use-module (gnu packages gtk) + #:use-module (gnu packages pkg-config) + #:use-module (guix build-system meson) + #:use-module (guix licenses) + #:use-module (guix packages) + #:use-module (guix utils)) + +(define-public easyeffects + (package + (name "easyeffects") + (version "6.3.0") + (native-inputs + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("pkg-config" ,pkg-config) + ("gtk" ,gtk))) + (inputs + (append (specifications->packages (list "itstool" + "zita-convolver" + "rnnoise" + "tbb" + "pipewire" + "glib" + "libadwaita" + "libsigc++" + "lilv" + "libbs2b" + "libsndfile" + "fftwf" + "libebur128" + "libsamplerate" + "rubberband" + "speexdsp" + "nlohmann-json" + "fmt" + "gtk+:bin" + "desktop-file-utils")))) + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/wwmm/easyeffects/archive/refs/tags/v" version + ".tar.gz")) + (sha256 + (base32 + "08l84qbv7jwnq1ffpf9sw013bshnkn18h487gpqhn5s4ha4gchkg")))) + (build-system meson-build-system) + (synopsis "Limiter, compressor, convolver, equalizer and auto volume and many other plugins for PipeWire applications") + (description "Limiter, compressor, convolver, equalizer and auto volume and many other plugins for PipeWire applications") + (home-page "https://github.com/wwmm/easyeffects") + (license gpl3+))) diff --git a/modules/home-packages/wm.scm b/modules/home-packages/wm.scm new file mode 100644 index 0000000..9de5dc0 --- /dev/null +++ b/modules/home-packages/wm.scm @@ -0,0 +1,22 @@ +(define-module (home-packages wm) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (guix gexp) + #:use-module (gnu packages) + #:use-module (guix git-download) + #:use-module (guix utils) + #:use-module (gnu packages wm)) + +(define-public swaylock-effects-new + (package + (inherit swaylock-effects) + (version "1.6.11") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jirutka/swaylock-effects") + (commit (string-append "v" version)))) + (sha256 + (base32 + "0j7dxn66xqlf6iv2arqzz7mxlh7nf85anvpyf30d2frcidarda9h")))) + (inputs (modify-inputs (package-inputs swaylock-effects) (delete "linux-pam"))))) diff --git a/modules/home-services/pipewire.scm b/modules/home-services/pipewire.scm new file mode 100644 index 0000000..3a96977 --- /dev/null +++ b/modules/home-services/pipewire.scm @@ -0,0 +1,99 @@ +(define-module (home-services pipewire) + #:use-module (gnu packages) + #:use-module (gnu packages linux) + #:use-module (gnu services) + #:use-module (gnu services configuration) + #:use-module (gnu home services) + #:use-module (gnu home services shepherd) + #:use-module (guix gexp)) + +(define (home-pipewire-profile-service config) + (map specification->package + (list "pipewire" + "wireplumber"))) + +(define (home-pipewire-shepherd-service config) + (list + ;; Pipewire daemon + (shepherd-service + (requirement '(dbus)) + (provision '(pipewire)) + (stop #~(make-kill-destructor)) + (start #~(make-forkexec-constructor + (list #$(file-append pipewire "/bin/pipewire")) + #:log-file (string-append + (or (getenv "XDG_LOG_HOME") + (format #f "~a/.local/var/log" + (getenv "HOME"))) + "/pipewire.log") + #:environment-variables + (append (list "DISABLE_RTKIT=0") + (default-environment-variables))))) + ;; Pipewire-pulse + (shepherd-service + (requirement '(pipewire)) + (provision '(pipewire-pulse)) + (stop #~(make-kill-destructor)) + (start #~(make-forkexec-constructor + (list #$(file-append pipewire "/bin/pipewire-pulse")) + #:log-file (string-append + (or (getenv "XDG_LOG_HOME") + (format #f "~a/.local/var/log" + (getenv "HOME"))) + "/pipewire-pulse.log") + #:environment-variables + (append (list "DISABLE_RTKIT=0") + (default-environment-variables))))) + ;; Wireplumber + (shepherd-service + (requirement '(pipewire)) + (provision '(wireplumber)) + (stop #~(make-kill-destructor)) + (start #~(make-forkexec-constructor + (list #$(file-append wireplumber "/bin/wireplumber")) + #:log-file (string-append + (or (getenv "XDG_LOG_HOME") + (format #f "~a/.local/var/log" + (getenv "HOME"))) + "/wireplumber.log") + #:environment-variables + (append (list "DISABLE_RTKIT=0") + (default-environment-variables))))))) + +(define (home-pipewire-xdg-configuration-service config) + `(("alsa/asoundrc" + ,(mixed-text-file + "asoundrc" + #~(string-append + "<" + #$(file-append + pipewire "/share/alsa/alsa.conf.d/50-pipewire.conf") + ">\n<" + #$(file-append + pipewire "/share/alsa/alsa.conf.d/99-pipewire-default.conf") + ">\n" + " + pcm_type.pipewire { + lib " #$(file-append pipewire "/lib/alsa-lib/libasound_module_pcm_pipewire.so") + " + } + ctl_type.pipewire { + lib " #$(file-append pipewire "/lib/alsa-lib/libasound_module_ctl_pipewire.so") + " + } + "))))) + +(define-public home-pipewire-service-type + (service-type (name 'home-pipewire) + (extensions + (list (service-extension + home-profile-service-type + home-pipewire-profile-service) + (service-extension + home-shepherd-service-type + home-pipewire-shepherd-service) + (service-extension + home-xdg-configuration-files-service-type + home-pipewire-xdg-configuration-service))) + (default-value #f) + (description "Configures and runs Pipewire and Wireplumber"))) diff --git a/shinji.scm b/shinji.scm new file mode 100644 index 0000000..cf71c9e --- /dev/null +++ b/shinji.scm @@ -0,0 +1,23 @@ +(use-modules (home-config base-system) + (gnu)) + +(operating-system + (inherit base-operating-system) + (host-name "shinji") + + (mapped-devices (list (mapped-device + (source (uuid + "5c5dcb22-62b1-41af-9116-b8fdfba83ca2")) + (target "cryptroot") + (type luks-device-mapping)))) + + (file-systems (cons* (file-system + (mount-point "/") + (device "/dev/mapper/cryptroot") + (type "btrfs") + (dependencies mapped-devices)) + (file-system + (mount-point "/boot/efi") + (device (uuid "AD5A-4DF3" + 'fat32)) + (type "vfat")) %base-file-systems)))